From ef4320a7aa286450c9e5ea19804e8774043b759f Mon Sep 17 00:00:00 2001 From: cdeline Date: Fri, 9 Mar 2018 14:57:30 -0700 Subject: [PATCH 1/2] Python 3.6 compatibility Rev to 0.1.5 --- bifacialvf/bifacialvf.py | 38 +- bifacialvf/data/Output/test.csv | 4760 ++++++++++++++++++++++++++++++- bifacialvf/loadVFresults.py | 4 +- bifacialvf/sun.py | 10 +- bifacialvf/vf.py | 14 +- setup.py | 4 +- 6 files changed, 4795 insertions(+), 35 deletions(-) diff --git a/bifacialvf/bifacialvf.py b/bifacialvf/bifacialvf.py index e3b11f4..8b29aaa 100644 --- a/bifacialvf/bifacialvf.py +++ b/bifacialvf/bifacialvf.py @@ -20,17 +20,19 @@ # c. Calculate irradiance on back of PV module +from __future__ import division, print_function # ensure python3 compatible division and printing import math import csv import pvlib -import os +import os, sys from vf import getBackSurfaceIrradiances, getFrontSurfaceIrradiances, getGroundShadeFactors from vf import getSkyConfigurationFactors, trackingBFvaluescalculator, rowSpacing from sun import hrSolarPos, perezComp, solarPos, sunIncident import pandas as pd +#from builtins import str, range def simulate(TMYtoread, writefiletitle, beta = 0, sazm = 180, C = 0.5, D = None, rowType = 'interior', transFactor = 0.01, cellRows = 6, @@ -66,20 +68,20 @@ def simulate(TMYtoread, writefiletitle, beta = 0, sazm = 180, C = 0.5, D = None dataInterval = (myTMY3.index[1]-myTMY3.index[0]).total_seconds()/60 ## Distance between rows for no shading on Dec 21 at 9 am - print " " - print "********* " - print "Running Simulation for TMY3: ", TMYtoread - print "Location: ", name - print "Lat: ", lat, " Long: ", lng, " Tz ", tz - print "Parameters: beta: ", beta, " Sazm: ", sazm, " Height: ", C, " rtr separation: ", rtr, " Row type: ", rowType, " Albedo: ", albedo - print "Saving into", writefiletitle - print " " - print " " + print( " ") + print( "********* ") + print( "Running Simulation for TMY3: ", TMYtoread) + print( "Location: ", name) + print( "Lat: ", lat, " Long: ", lng, " Tz ", tz) + print( "Parameters: beta: ", beta, " Sazm: ", sazm, " Height: ", C, " rtr separation: ", rtr, " Row type: ", rowType, " Albedo: ", albedo) + print( "Saving into", writefiletitle) + print( " ") + print( " ") DD = rowSpacing(beta, sazm, lat, lng, tz, 9, 0.0); ## Distance between rows for no shading on Dec 21 at 9 am - print "Distance between rows for no shading on Dec 21 at 9 am solar time = ", DD - print "Actual distance between rows = ", D - print " " + print( "Distance between rows for no shading on Dec 21 at 9 am solar time = ", DD) + print( "Actual distance between rows = ", D ) + print( " ") if tracking==False: ## Sky configuration factors are the same for all times, only based on geometry and row type @@ -92,8 +94,8 @@ def simulate(TMYtoread, writefiletitle, beta = 0, sazm = 180, C = 0.5, D = None if not os.path.exists(os.path.dirname(writefiletitle)): os.makedirs(os.path.dirname(writefiletitle)) - with open (writefiletitle,'wb') as csvfile: - sw = csv.writer(csvfile, delimiter=',', quotechar='|', quoting=csv.QUOTE_MINIMAL) + with open (writefiletitle,'w') as csvfile: + sw = csv.writer(csvfile, delimiter=',', quotechar='|', quoting=csv.QUOTE_MINIMAL, lineterminator='\n') # Write Simulation Parameters (from setup file) outputheader=['Latitude(deg)','Longitude(deg)', 'Time Zone','Tilt(deg)', @@ -127,8 +129,8 @@ def simulate(TMYtoread, writefiletitle, beta = 0, sazm = 180, C = 0.5, D = None outputtitles+=allrowfronts outputtitles+=allrowbacks if tracking == True: - print " ***** IMPORTANT --> THIS SIMULATION Has Tracking Activated" - print "Backtracking Option is set to: ", backtrack + print( " ***** IMPORTANT --> THIS SIMULATION Has Tracking Activated") + print( "Backtracking Option is set to: ", backtrack) outputtitles+=['beta'] outputtitles+=['sazm'] outputtitles+=['height'] @@ -282,7 +284,7 @@ def simulate(TMYtoread, writefiletitle, beta = 0, sazm = 180, C = 0.5, D = None # End of while strLine != null loop - print "Finished" + print( "Finished") return; diff --git a/bifacialvf/data/Output/test.csv b/bifacialvf/data/Output/test.csv index 8b13789..8b46308 100644 --- a/bifacialvf/data/Output/test.csv +++ b/bifacialvf/data/Output/test.csv @@ -1 +1,4759 @@ - +Latitude(deg),Longitude(deg),Time Zone,Tilt(deg),PV Azimuth(deg),GroundClearance(panel slope lengths),Row-to-Row-Distance rtr,RowType(first interior last single),TransmissionFactor(open area fraction),CellRows(# hor rows in panel),PVfrontSurface(glass or AR glass),PVbackSurface(glass or AR glass),CellOffsetFromBack(panel slope lengths),Albedo,Tracking +37.517,-77.317,-5.0,10,180,1,1.5,interior,0.013,6,glass,glass,0,0.62,False +Year,Month,Day,Hour,Minute,DNI,DHI,decHRs,ghi,inc,zen,azm,pvFrontSH,aveFrontGroundGHI,GTIfrontBroadBand,pvBackSH,aveBackGroundGHI,GTIbackBroadBand,maxShadow,Tamb,Vwind,No_1_RowFrontGTI,No_2_RowFrontGTI,No_3_RowFrontGTI,No_4_RowFrontGTI,No_5_RowFrontGTI,No_6_RowFrontGTI,No_1_RowBackGTI,No_2_RowBackGTI,No_3_RowBackGTI,No_4_RowBackGTI,No_5_RowBackGTI,No_6_RowBackGTI +1987,1,1,8,0,2,9,7.5,9.1013750179576789,81.86332370298969,87.09457464008314,121.88953186426373,0.4628092650514352,2.831854235592711,9.1236557529762337,1.0,2.831854235592711,5.5344410429929338,1.5,1.1000000000000001,3.6000000000000001,8.2139527096901688,8.3391775580430103,8.4481532809739548,8.5524446926833768,8.5375118385044679,8.5305744653534585,1.6532738313180309,1.647998581232474,1.6452285067017434,1.6395619141053668,1.6284524933989373,1.6154143854261722 +1987,1,1,9,0,3,58,8.5,58.524760178051906,73.69113552146337,79.92599390889312,129.41391417115975,0.06564858360609532,17.490528453499053,59.478774220758694,1.0,17.490528453499053,35.692359814007602,1.5,1.7,5.2000000000000002,53.012933008243266,55.32619841585246,55.779018609318847,55.690086208568154,55.62282500842209,55.590332096113883,10.216367121739379,10.187877400077891,10.170755203329238,10.140931272606766,10.078650275055857,9.9980222674065296 +1987,1,1,10,0,5,74,9.5,75.58207113171035,63.953545673652194,71.5537895265779,140.7113649619976,0.0,23.192051872240778,75.429896909970623,1.0,23.192051872240778,46.097070770556869,1.5,2.2000000000000002,4.0999999999999996,69.938376984488372,70.953820609000516,71.549322643635989,71.435677823598112,71.349936077209904,71.3082935508437,13.538072627982885,13.506044228662107,13.488720279885216,13.453758455926659,13.372540309270292,13.262420568241385 +1987,1,1,11,0,10,110,10.5,114.20704516289094,56.23943874260479,65.12092546296138,153.85145937145785,0.0,34.484477480681782,115.09662650503861,1.0,34.484477480681782,69.724093415304324,1.5,2.2000000000000002,5.2000000000000002,107.05970777396793,108.53977748052235,109.40745466588312,109.25852324185395,109.14731969196787,109.09213467433038,20.171476222358145,20.132325300337616,20.092454453488735,20.017523112597377,19.876260320178783,19.702828706701897 +1987,1,1,12,0,10,126,11.5,130.80340059559509,51.50836704748011,61.29238580686506,168.71236787183352,0.0,39.485110777698146,131.80330940508918,1.0,39.485110777698146,79.885304394649978,1.5,2.2000000000000002,5.2000000000000002,122.76333783486629,124.45057011380447,125.4395923952647,125.27893506802268,125.15967075667463,125.09978817098931,23.125240408237236,23.05974728430164,22.992843570923039,22.899305077459207,22.742718173230582,22.554490273290792 +1987,1,1,13,0,8,142,12.5,145.92951881184669,50.615564702367365,60.5811829000067,184.48751990082627,0.0,44.096551250835688,147.13681065667353,1.0,44.096551250835688,89.144766781903428,1.5,2.2000000000000002,5.7000000000000002,137.07516036304372,138.95243233527231,140.05277233773023,139.88092179921568,139.7538693787381,139.68952613978689,25.835802651962371,25.758412656577235,25.677627861565501,25.571610807157388,25.397412387430975,25.188756523206322 +1987,1,1,14,0,5,116,13.5,118.26253072854747,53.7542868284702,63.09541029535042,199.88742523120266,0.0,36.137960816966228,118.41927065872478,1.0,36.137960816966228,72.199992879546471,1.5,2.7999999999999998,7.2000000000000002,110.11422470873238,111.67488888441046,112.58990394362037,112.43657654871521,112.32229301958412,112.26538783422257,21.143076102615613,21.091639117209191,21.044477730294744,20.966895153891098,20.826159515766903,20.651442640494434 +1987,1,1,15,0,3,120,14.5,121.10087643812111,60.292858913882334,68.47181879665378,213.83136213146454,0.0,36.473239230462028,122.16668178303681,1.0,36.473239230462028,73.93832095528974,1.5,2.7999999999999998,7.2000000000000002,113.42936830680466,115.0036589113203,115.92663167004706,115.77092190276348,115.6546880067021,115.59692517206564,21.302520563428537,21.270759933417267,21.246353415211036,21.184585014802213,21.045655014278466,20.860012059758851 +1987,1,1,16,0,2,62,15.5,62.4810735580323,69.25872118717089,76.08177635024639,225.91411254779985,0.0,19.196096197531148,62.262263965170682,1.0,19.196096197531148,38.093849556205939,1.5,2.7999999999999998,9.8000000000000007,57.620746278604294,58.46765704952459,58.964385624094227,58.866113565931421,58.791754636182908,58.755867848933718,11.212770339383278,11.180424871920287,11.161178573571716,11.128488238898287,11.060427878106136,10.972427691039995 +1987,1,1,17,0,0,21,16.5,21.0,79.48582038259293,84.99611056735412,236.06076703204292,0.283012484552679,6.6045848408382763,20.644603708423762,1.0,6.6045848408382763,12.785837930627219,1.5,2.7999999999999998,8.8000000000000007,19.165885048007464,19.458076360830752,19.629458469700065,19.59045641384774,19.560669034129901,19.546579324250601,3.8568987905332204,3.8454183844383154,3.8389611003297546,3.826799856333873,3.8021925380527657,3.7718018304198049 +1987,1,2,8,0,20,10,7.5,11.011067395180175,81.89007236502295,87.10227011713297,121.76094868189031,0.46247565358907805,3.0074365822091709,13.119666621592762,1.0,3.0074365822091709,6.8620146683551289,1.5,2.7999999999999998,4.0999999999999996,8.6784355679820493,8.8107412819692179,9.3453377934233259,10.952816464527011,10.981716072240415,10.992909733934056,1.7650951790595948,1.7668143788405912,1.7638743336352363,1.7671766650016747,1.7668376914631305,1.7529746996296545 +1987,1,2,9,0,36,84,8.5,90.293700669183323,73.71610433358771,79.93152456488666,129.27241605930888,0.06476320046365788,22.66682710733409,101.11981010226458,1.0,22.66682710733409,55.562473377762224,1.5,2.7999999999999998,5.2000000000000002,80.009158112121369,90.501534256822623,91.083201123108054,91.114833304034505,91.146600083861699,91.153812597581762,13.264432787288868,13.247018546985615,13.224736780153762,13.210685322451992,13.160026520741436,13.05487370326674 +1987,1,2,10,0,21,154,9.5,160.65016227670102,63.95495104964749,71.53807493007216,140.56514791097268,0.0,44.638690852730235,168.51900573291275,1.0,44.638690852730235,98.224891013068799,1.5,3.2999999999999998,4.5999999999999996,155.91473087744606,157.79753090191957,158.90102858304527,158.73736477076994,158.61680526526413,158.55518669112831,26.006082828556544,25.985811424146064,25.987932324551998,25.954457897934493,25.81077908291082,25.575810507683968 +1987,1,2,11,0,129,174,10.5,228.35581438425061,56.210341634574576,65.07933685829006,153.7043836963056,0.0,54.705482126386407,258.50886912122752,1.0,54.705482126386407,141.72910125685189,1.5,4.4000000000000004,4.5999999999999996,242.06823341586622,243.94492169753883,245.04037755831433,245.52450387211718,245.93166850003567,246.08613129210067,32.372039418273026,32.54548319671737,32.418575562187414,32.207468097140307,31.883233388575047,31.455587317404511 +1987,1,2,12,0,419,125,11.5,326.71135955427997,51.443720635248475,61.222379251204906,168.57424218337803,0.0,61.387190585382399,405.35779632343167,1.0,61.387190585382399,204.60774280709694,1.5,7.2000000000000002,7.2000000000000002,387.76761745813741,388.79110109848483,389.37410764203145,390.65625784658198,391.7140044576629,392.13529604685556,37.70429637329142,37.597058072513576,36.707948422918328,35.948212578636344,35.364231152657553,34.913601998492481 +1987,1,2,13,0,90,236,12.5,280.33943602074055,50.51704669389688,60.48440754201588,184.37128007539857,0.0,72.891539469648876,306.34442881082776,1.0,72.891539469648876,172.82788868653589,1.5,7.7999999999999998,9.3000000000000007,288.81633221185581,291.41622402166388,292.93471008374809,293.12653436574703,293.30270152059541,293.35605171152633,43.271822268027286,43.0917970319028,42.695002645380463,42.329759210882791,41.960242210890343,41.587540356933864 +1987,1,2,14,0,4,172,13.5,173.81733928948105,53.63146607696616,62.97785630504906,199.80181444363518,0.0,51.804258114618229,176.57456103326805,1.0,51.804258114618229,106.23377655382778,1.5,7.2000000000000002,6.7000000000000002,164.52993301355457,166.71853667238261,168.00121164962357,167.81369283512763,167.6760897071251,167.60536813254555,30.355250953921168,30.286640413241223,30.200121938901994,30.066883582317388,29.850347147199308,29.590910009889559 +1987,1,2,15,0,11,120,14.5,124.05987312834255,60.15734377953796,68.34114882118612,213.77670023719142,0.0,36.926508118648073,126.12399770583953,1.0,36.926508118648073,75.758580236713968,1.5,6.7000000000000002,7.7000000000000002,117.17015759033654,118.74553397065149,119.66894469613507,119.51300662303605,119.39668629256599,119.33878085471729,21.566291447621982,21.545053047420399,21.524889378575843,21.459349661796971,21.310864574795001,21.11510870807637 +1987,1,2,16,0,7,129,15.5,130.70001681471726,69.11904484695228,75.94462530186598,225.88513442773993,0.0,35.753406175464463,137.97850761842108,1.0,35.753406175464463,79.895580475583159,1.5,6.0999999999999996,8.1999999999999993,126.28263714641818,127.83686193019713,128.74826047733563,128.6099957855885,128.50777307357637,128.45595643527514,20.892253053004243,20.827670449873434,20.788661725834704,20.736742895939383,20.624733456877781,20.464652836411545 +1987,1,2,17,0,74,33,16.5,39.546878537476431,79.42293584967445,84.92432998771771,236.11638037158386,0.2770290111024271,8.7035723856276839,53.128502839711892,1.0,8.7035723856276839,24.8299545638883,1.5,5.0,6.2000000000000002,24.789975543716928,30.859659260060933,42.237696571266099,42.424507156269911,42.578133088737289,42.639552457133476,5.1226637889991871,5.1391175906997297,5.1305566585701294,5.1545928352688177,5.1713058720738898,5.1308081515436985 +1987,1,3,8,0,136,12,7.5,18.863995430943252,81.9150332219119,87.1070211388622,121.62500108645254,0.4617104837838551,2.621778221821653,34.179229236229432,1.0,2.621778221821653,12.208940788006137,1.5,0.59999999999999998,5.2000000000000002,7.2610397039107308,7.3717343218537037,10.738176583239163,22.023545239895761,22.19905594245494,22.271150314057554,1.5699587529427961,1.5960640102422317,1.5934736960962437,1.627596465308526,1.6656501457500781,1.6532971501376539 +1987,1,3,9,0,548,41,8.5,136.81138773120406,73.73544202117135,79.9307517635597,129.12677103453655,0.06361021152283311,9.784177647681739,205.24788078833214,1.0,9.784177647681739,86.009687721466648,1.5,2.7999999999999998,5.7000000000000002,111.78272369856903,166.18956951627712,166.40567424903492,167.06276658942576,167.59747858732769,167.8166498946911,5.8325220176066299,5.9106140122577999,5.9002984185192648,6.0014840498472672,6.1100746845259426,6.0599078989076887 +1987,1,3,10,0,480,82,9.5,234.18282988142803,63.95001410978936,71.51553239963563,140.41566183757007,0.0,32.725737026316231,308.62519085006085,1.0,32.725737026316231,147.36690674750952,1.5,4.4000000000000004,6.2000000000000002,281.00037995358082,281.69953428685432,282.10269920199426,283.27561968055022,284.23292416439261,284.62227825824169,18.706629090855461,19.196499236546515,19.554722067748855,19.969761850756395,20.143117268319422,19.745572109883142 +1987,1,3,11,0,879,49,10.5,420.0574023383183,56.17425712783941,65.03049446162815,153.5553081234378,0.0,60.900594780484035,548.5271938089727,1.0,60.900594780484035,261.45282341904715,1.5,5.5999999999999996,7.2000000000000002,523.04223873641718,523.47492148223432,523.70666611997433,524.75923578870766,525.62974852393131,525.9746370616283,37.106927573259597,37.782078939079732,37.344140067568446,36.414440045746048,35.281926586433094,34.307414314381496 +1987,1,3,12,0,793,62,11.5,444.69857090218903,51.371701540823835,61.144916136953455,168.4358604251778,0.0,73.509136248034238,568.93160254899283,1.0,73.509136248034238,277.08394399860214,1.5,6.7000000000000002,7.2000000000000002,549.19820532703841,549.73575979691179,550.02329439060259,551.23967966718169,552.24922183249271,552.64660514790148,45.737388534084673,45.478040353713858,44.076080298247184,42.736579699247962,41.687402228340673,41.078613114913026 +1987,1,3,13,0,749,95,12.5,465.18594823340192,50.4113036304618,60.38033587990082,184.25680852029834,0.0,78.739710508036495,590.73418676401104,1.0,78.739710508036495,290.64791097939252,1.5,6.7000000000000002,7.7000000000000002,569.94956762619233,570.66939336994665,571.06304556324847,572.62286233481734,573.91190936027306,574.42339577807491,48.977662663085908,48.508696916472005,46.991837832018561,45.702230449041529,44.824406869082736,44.296549753750483 +1987,1,3,14,0,790,67,13.5,427.45048417401802,53.50216564603984,62.853551426240855,199.71982296601126,0.0,66.259370009452169,552.06209072480328,1.0,66.259370009452169,266.60726658973232,1.5,7.7999999999999998,6.2000000000000002,530.10327096889603,530.57530247980014,530.82749171863168,532.09205987018925,533.13831342255151,533.55369526383379,41.026607482752809,41.160219116238238,40.163086295756337,38.931913355240958,37.922327752560712,37.167499178383899 +1987,1,3,15,0,841,46,14.5,358.25871272800185,60.016426441965116,68.2045225750464,213.7269891493503,0.0,49.320617641111156,475.96497292570996,1.0,49.320617641111156,223.30077114876383,1.5,8.3000000000000007,6.7000000000000002,446.12948715193505,446.54564659028159,446.77129769884556,447.78452997680097,448.61613854158588,448.94917625158223,28.875947379798539,29.98530148920317,30.371650822071736,30.19705840045506,29.520520559883874,28.514756325525351 +1987,1,3,16,0,708,35,15.5,208.64917439010873,68.97506296636378,75.80237530556902,225.86192091727233,0.0,15.430012264792037,296.98368955230251,1.0,15.430012264792037,130.66727516746056,1.5,7.7999999999999998,6.7000000000000002,258.12643991472191,258.46094315959124,258.65436470577782,259.46921535799061,260.13360137123288,260.40473759139064,9.1517972240453833,9.0803679225130409,9.0185494916469899,9.1750723695903016,9.4017998073248261,9.4037335326077116 +1987,1,3,17,0,382,20,16.5,54.288947323696775,79.35884479979423,84.85010530518578,236.18022763438063,0.27085230053765397,4.9702731900835104,97.892778977306335,1.0,4.9702731900835104,34.525555989831453,1.5,6.7000000000000002,4.5999999999999996,12.909594328452489,33.472966320165199,67.548956535752396,67.950882913372837,68.27767721017176,68.411891082514501,2.9746450809891551,3.0232635505383092,3.0181666321373966,3.081298917415622,3.1511615703487976,3.1265577416952506 +1987,1,4,8,0,50,16,7.5,18.521967099851153,81.93818185966833,87.1088117721932,121.4817791733546,0.46050894698003086,4.3095858519178609,24.661287879008988,1.0,4.3095858519178609,11.665524842903457,1.5,-3.2999999999999998,0.0,12.357235580940985,12.545625233629353,14.109735163283247,18.891623505366343,18.974299023869829,19.007450973039472,2.5379095230495947,2.547127196474956,2.5429077347268918,2.556218368143341,2.5662640023573062,2.5463318326494839 +1987,1,4,9,0,261,62,8.5,107.66466363336852,73.74911044060475,79.92364652942715,128.97707620426863,0.06218942359665594,15.044344008530325,146.43739986067476,1.0,15.044344008530325,67.785793784563097,1.5,0.0,2.6000000000000001,91.448625420161392,121.92650881730827,122.29550699123621,122.85814138253129,123.31779800821607,123.50446028529552,8.8944322048582993,8.9547815260552142,8.9396995651806694,9.0211636329539857,9.0985584984725278,9.0266224103952322 +1987,1,4,10,0,516,97,9.5,260.84747422466592,63.93871742165172,71.48615113792016,140.26300144443994,0.0,38.3410725949092,339.0040745652484,1.0,38.3410725949092,163.08979627784925,1.5,1.7,4.5999999999999996,309.63030908766177,310.52727600034024,311.04588244240392,311.98301695889387,312.75083820618431,313.06020293831796,21.935620140587101,22.433432719367662,22.808582000994726,23.174437595936492,23.259521582155628,22.82827713961769 +1987,1,4,11,0,663,93,10.5,373.46428996884345,56.13118908831652,64.97440632039739,153.40432452324487,0.0,58.150473481691456,481.21835597350082,1.0,58.150473481691456,233.70912682617131,1.5,3.2999999999999998,4.5999999999999996,456.83352046589414,457.52259402332959,457.90840684743637,459.29815767560171,460.44065996461654,460.89908084702347,35.337120278392007,35.960220232084936,35.588339835918894,34.894456877657966,34.039445286544307,33.194102491651797 +1987,1,4,12,0,693,123,11.5,458.3379180420884,51.29233390986174,61.060023264848965,168.2973132669551,0.0,80.046509821641678,578.89229203535956,1.0,80.046509821641678,286.67333147430975,1.5,4.4000000000000004,3.1000000000000001,556.40857038131617,557.32753291711833,557.83958445880853,559.49093799366369,560.85425811797302,561.3965108305722,49.585881750417428,49.283867387321436,47.862964483401598,46.656855940025125,45.7911210246737,45.217133504821589 +1987,1,4,13,0,625,142,12.5,451.95522635603385,50.298380533277374,60.26901376354384,184.1441970250412,0.0,81.284083419315806,565.13074499388279,1.0,81.284083419315806,282.99626842188098,1.5,5.0,3.6000000000000001,543.07115546289162,544.17804508700658,544.80143631741146,546.54791288339925,547.98829050372808,548.5619214438907,50.267295700438659,49.772452558673237,48.34159910098024,47.258382427521738,46.551944832026763,46.105804755972692 +1987,1,4,14,0,564,122,13.5,380.48098445272416,53.36645360129887,62.72256073403734,199.64154062049772,0.0,65.556735422407513,480.10504502696722,1.0,65.556735422407513,238.63517730339254,1.5,7.2000000000000002,4.5999999999999996,458.00440033192899,458.95288113094227,459.48961979972597,461.10042121289655,462.42594089113379,462.95753941439091,40.250310827766626,40.424308675236411,39.620414929717541,38.734939224081401,38.027619963382293,37.369439014881969 +1987,1,4,15,0,703,85,14.5,347.64270203141763,59.8701954647467,68.06202218803135,213.68230813816984,0.0,51.464103975457896,455.19067735627351,1.0,51.464103975457896,217.4825391007943,1.5,6.7000000000000002,2.6000000000000001,425.74924591738164,426.41305328242942,426.78565284858678,428.05921056086521,429.10259487157771,429.52262647158921,30.291912042639325,31.321473369509832,31.601811109540403,31.447966358903557,30.869222334570811,29.916530079933448 +1987,1,4,16,0,483,63,15.5,182.66709679891369,68.82687674342634,75.65512036413112,225.84453372493718,0.0,18.706042586001924,250.76627213316067,1.0,18.706042586001924,115.00513081483138,1.5,6.7000000000000002,2.6000000000000001,218.72312977911281,219.28202934014737,219.60760495698207,220.54436717730741,221.30826454768282,221.61988037203955,11.059842150125741,11.057395186811567,11.016147720322206,11.20063185965747,11.423538509897107,11.382909899636104 +1987,1,4,17,0,185,29,16.5,45.852287202047975,79.29359611051588,84.77348474676826,236.25229513731972,0.26449135513327293,7.1081034460091148,71.767676934384667,1.0,7.1081034460091148,29.030494797050334,1.5,4.4000000000000004,3.6000000000000001,19.712551052443427,33.497555659676877,52.835193680892843,53.132934258348371,53.375948445781191,53.474856572649699,4.2078909557222808,4.2406052426633885,4.233528590383119,4.2774818357281585,4.3208607369389593,4.2871707336174545 +1987,1,5,8,0,62,13,7.5,16.128519586189721,81.95949448561827,87.10762702957643,121.33137621098469,0.4588669132694558,3.0714426158548949,24.118387393248518,1.0,3.0714426158548949,10.354927570113565,1.5,-3.2999999999999998,4.5999999999999996,8.7198546537473405,8.8527906809351524,10.887491811610467,17.015510487218137,17.142835955137613,17.194829749903498,1.8229944329368584,1.8407552659817485,1.8377467434465102,1.861470114756022,1.8861259692635841,1.8718693649047344 +1987,1,5,9,0,436,47,8.5,123.38360036638109,73.75707486907433,79.91018338917785,128.8234291251559,0.06050133816667232,11.199244764399982,180.05314665810982,1.0,11.199244764399982,77.864968767980699,1.5,-1.1000000000000001,4.5999999999999996,103.65273820007556,146.61180604204361,146.87103860735277,147.57181826732452,148.14228881809606,148.37591679702092,6.6679921588563573,6.7504314385523037,6.7388953916999101,6.8465290574992892,6.9612950522337522,6.905631480536492 +1987,1,5,10,0,498,70,9.5,228.4304140708158,63.92104719672547,71.44992399609549,140.107261044143,0.0,28.157985779680626,303.71881460617857,1.0,28.157985779680626,143.60831520970777,1.5,0.59999999999999998,6.2000000000000002,276.71650995859778,277.27926811422878,277.60291621704425,278.69477242089653,279.58533619108999,279.94811214100605,16.118626256493187,16.584131330035632,16.909541376576517,17.265594989826148,17.395236255848587,17.056055184118563 +1987,1,5,11,0,475,123,10.5,324.41150960661128,56.08114485783286,64.91108398078903,153.2515237935368,0.0,56.587829702363386,406.56540656956395,1.0,56.587829702363386,202.95062372535025,1.5,1.7,6.2000000000000002,384.67230816624385,385.73259033837877,386.34042367418112,387.54101688087781,388.52986237348591,388.92493155531486,34.202543391355128,34.635500641302649,34.304042758100863,33.753718581886325,33.086782659768154,32.412483429270594 +1987,1,5,12,0,752,90,11.5,454.94720499683615,51.20564502226809,60.9677306792143,168.1586902404481,0.0,76.686722942513171,578.95187159743546,1.0,76.686722942513171,284.22059228709463,1.5,2.7999999999999998,5.7000000000000002,557.83218919810793,558.50869291207516,558.87756802347474,560.39145405834904,561.64271245171972,562.13930334806344,47.686098538015031,47.353217925611155,45.88751594479271,44.610308868840981,43.688257100821346,43.122180637842135 +1987,1,5,13,0,866,70,12.5,501.02865634692864,50.17832531960775,60.15049004822258,184.03353635592154,0.0,82.818972410045092,637.64928779077081,1.0,82.818972410045092,311.98798763538548,1.5,3.8999999999999999,5.7000000000000002,617.19509542705487,617.80140274887526,618.12527957104976,619.4272263721241,620.50902986115705,620.93302927830212,51.643606743350247,50.940409179904456,49.19922563047102,47.740529171466513,46.739836019709905,46.269390201279613 +1987,1,5,14,0,842,66,13.5,453.68453611173595,53.224400813080436,62.58495209409188,199.56705609587982,0.0,71.311194031171183,582.52431073766002,1.0,71.311194031171183,282.74334778159135,1.5,5.0,5.7000000000000002,559.68307376375412,560.26344786301661,560.57788489824713,561.8427907324658,562.89085164620508,563.30540702306064,44.148885055237223,44.172348813888391,43.047780811732324,41.739816627024965,40.723991358316759,39.973139605098865 +1987,1,5,15,0,795,57,14.5,355.92173972547897,59.718741929280974,67.91373225787156,213.64273476425194,0.0,49.224578875668584,471.15395769886771,1.0,49.224578875668584,222.15356520536034,1.5,5.5999999999999996,5.7000000000000002,441.94784252175083,442.37757712494914,442.61161009486858,443.72775901026057,444.64315965508126,445.01059898971602,29.068146935016014,30.115679475552341,30.356787717965577,30.100737962195648,29.419977586366432,28.414980654972798 +1987,1,5,16,0,658,44,15.5,208.71717111153694,68.67458929186513,75.50295646346112,225.83303206537735,0.0,18.0481996218817,293.97834402044464,1.0,18.0481996218817,130.87533036161076,1.5,5.0,6.2000000000000002,256.45508635954462,256.83173828268377,257.04917390018585,257.92334726793672,258.63660419240591,258.92721665193517,10.576455836524572,10.531507500819229,10.495633007720375,10.712588474331303,10.993170574938976,10.983093367678446 +1987,1,5,17,0,320,24,16.5,53.784092388004403,79.18737057312282,84.65944889453715,236.29718593558627,0.2557859351323557,5.6785888308125996,92.715183281949578,1.0,5.6785888308125996,34.17311807370038,1.5,3.2999999999999998,4.0999999999999996,15.073496363238759,38.493618250806442,65.279067103371801,65.667233508182008,65.983078496977328,66.112565415640404,3.3867143051079291,3.4328214071563119,3.4270534028353681,3.4873041500894253,3.5526310788516557,3.5249096004349925 +1987,1,5,18,0,0,0,17.5,0.0,84.56968774467806,89.38479436992989,241.04545342715355,0.8298120279805372,0.0,0.0,1.0,0.0,0.0,1.5,1.1000000000000001,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1987,1,6,8,0,120,12,7.5,18.063930376053268,81.9789479394824,87.10345287444919,121.17388847427034,0.4567809634201511,2.6108020548192887,31.742804829600381,1.0,2.6108020548192887,11.716841163108624,1.5,-4.4000000000000004,2.1000000000000001,7.2592021194605723,7.3698689591273885,10.791451897391987,20.595269920958245,20.770829162988903,20.842946544102016,1.5635624200620428,1.5896831324848806,1.5871100311366602,1.6212639947430594,1.6593847725246675,1.6471236562958949 +1987,1,6,9,0,565,33,8.5,132.17597700479601,73.75930404598476,79.89034040715083,128.66592768048562,0.05854715756616092,8.221975637781048,199.95457728722539,1.0,8.221975637781048,83.190362084978005,1.5,-1.7,2.6000000000000001,111.27796640219937,161.17390055166823,161.34934916674905,162.01594337984289,162.55792503952307,162.78052190797132,4.9202790981198881,5.0011247044260525,4.9923337105019225,5.0964377349773917,5.2108948499237568,5.167898706702319 +1987,1,6,10,0,750,49,9.5,288.13452858613755,63.896993306354474,71.40684748528811,139.9485344490763,0.0,32.661563049668452,390.7983843216029,1.0,32.661563049668452,180.06674941418774,1.5,1.1000000000000001,1.5,357.12766435787756,357.51260206808564,357.72828144200992,358.71454848721896,359.52015456163605,359.84701997200858,18.445372440306713,19.099621587271081,19.6180774359546,20.065658963117553,20.122038235311461,19.631838090787358 +1987,1,6,11,0,757,64,10.5,385.83016975591761,56.02413524787631,64.84054247702741,153.09699576246558,0.0,60.300047847553522,501.45562126437841,1.0,60.300047847553522,240.86333579384595,1.5,3.8999999999999999,1.5,477.51860215183154,477.98317567129112,478.2341773176986,479.45388246895845,480.46008513641192,480.86127684721544,36.919563275574845,37.47875020479421,36.955735814856986,35.998998323367367,34.924721613594251,34.033865069967902 +1987,1,6,12,0,846,64,11.5,475.85159715527567,51.11166526730555,60.868071638232735,168.02007965654855,0.0,78.41625523228916,607.34060614367615,1.0,78.41625523228916,296.31671219369593,1.5,5.5999999999999996,1.5,586.8354358431302,587.39050935932266,587.68597325248356,588.92401467750631,589.95268196866834,590.35614568517894,48.878579383913923,48.334666698611073,46.739653344632259,45.315040842599608,44.316345315954742,43.78060991158214 +1987,1,6,13,0,716,114,12.5,471.7313933933313,50.05118876329875,60.024816548772705,183.92491618794156,0.0,80.71031111050182,595.7834849783635,1.0,80.71031111050182,294.83453787160261,1.5,6.7000000000000002,2.1000000000000001,574.78818989529816,575.59205217496992,576.03469164839078,577.65338942724884,578.99035244157403,579.52084233302901,50.186017735220126,49.497042893122924,47.871218352979263,46.642852373110074,45.886099165998189,45.4892546064616 +1987,1,6,14,0,630,122,13.5,413.47889801086876,53.076080904677404,62.44079610181475,199.49645688657378,0.0,70.129524141188185,522.19537779425877,1.0,70.129524141188185,258.96029770861526,1.5,7.7999999999999998,2.1000000000000001,499.17644598410686,500.11822232432058,500.64868946902902,502.26522345715392,503.59692658756796,504.12946463665332,43.223104548437767,43.227245434160963,42.195854135569952,41.191917553883492,40.446900558230169,39.825642655173439 +1987,1,6,15,0,648,79,14.5,324.26234829201729,59.56215936383813,67.75973977292504,213.6083448185535,0.0,47.682310769542127,423.86812668313962,1.0,47.682310769542127,202.98240765061345,1.5,8.9000000000000004,4.0999999999999996,396.94321839394735,397.5392606422904,397.87336944309573,399.10494259912485,400.11381686068211,400.52016556984387,28.263809249686705,29.162809847243945,29.321336811628981,29.091154706951155,28.520736959665303,27.646409968034995 +1987,1,6,16,0,319,88,15.5,168.70113145108829,68.51830554876994,75.3459814792764,225.82747260844593,0.0,25.011836843752125,218.63248091674691,1.0,25.011836843752125,105.97086730958932,1.5,8.3000000000000007,4.0999999999999996,192.63339394692045,193.4913772762263,193.99256524583268,194.782679964279,195.42954762782375,195.69097250213156,14.66675059249588,14.675462332170738,14.652331590176765,14.824467389675021,15.017615480837907,14.935179752168741 +1987,1,6,17,0,85,35,16.5,43.137828587541513,79.0380353303045,84.50613552520052,236.3129559064736,0.2447897355220091,9.2275372721516558,57.627614490722728,1.0,9.2275372721516558,27.071420522813487,1.5,6.0999999999999996,3.1000000000000001,26.234762293310776,36.785517386260324,45.976201901860762,46.174958986875076,46.338400399245771,46.403752436870619,5.4311505373921571,5.4486930618890037,5.4396066182105463,5.4651903488715874,5.4830132566181478,5.4400124885486107 +1987,1,6,18,0,0,0,17.5,0.0,84.52183985017419,89.32207348838901,241.1380409917073,0.8140950364268505,0.0,0.0,1.0,0.0,0.0,1.5,3.8999999999999999,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1987,1,7,8,0,30,17,7.5,18.519735461366725,81.99651971226062,87.0962762341926,121.00941507441557,0.45424841947621186,4.9078063532672198,22.049122258078832,1.0,4.9078063532672198,11.522913627755951,1.5,3.2999999999999998,3.6000000000000001,14.151953603436791,14.367704887534133,15.497151470500885,18.199326290828218,18.242453077163894,18.259046934290449,2.8795955385025187,2.8817428289097164,2.8769417408226752,2.8814853765668125,2.8798867159236292,2.8572455553419771 +1987,1,7,9,0,197,62,8.5,96.668762967391359,73.7557702126567,79.86409921858595,128.50466995687125,0.056328786529202264,16.142507868697223,125.18575853449994,1.0,16.142507868697223,60.407897135558208,1.5,7.2000000000000002,5.2000000000000002,84.938908517946331,105.98415802414326,106.3868312173236,106.73507519152021,107.02143526778271,107.13594300784663,9.5008809575076665,9.5317375334574255,9.5156618636489849,9.5601982794063911,9.5907550350315649,9.5143809887597151 +1987,1,7,10,0,409,125,9.5,255.74576828872281,63.86654929454018,71.35692178436007,139.78691486175728,0.0,42.668922591086407,322.50480016551995,1.0,42.668922591086407,160.09943801656462,1.5,10.0,6.2000000000000002,294.48932391633548,295.68639424077253,296.3818427066708,297.38117892764762,298.20073061296591,298.53026912920552,24.612917024231322,25.073581529872065,25.388127888940314,25.712179907742268,25.746569315128077,25.318415551320946 +1987,1,7,11,0,518,114,10.5,334.8579335222733,55.960174530476394,64.76280031722416,152.94082909240916,0.0,58.643465191451874,424.02721734921607,1.0,58.643465191451874,210.30804388452171,1.5,12.199999999999999,7.2000000000000002,401.13348145934447,402.04370200834597,402.56106134728014,404.08328990393522,405.33376032258059,405.83667167652618,35.727246293837126,36.159346938895204,35.6864554337768,35.01992801143949,34.301060641511455,33.595584945427838 +1987,1,7,12,0,583,120,11.5,404.7677886156622,51.01042811608115,60.76108258120229,167.88156852405362,0.0,71.493307009134242,508.80182174044785,1.0,71.493307009134242,253.68957889064916,1.5,14.4,6.7000000000000002,488.51388915078303,489.39417548311064,489.88679919362306,491.53195786832248,492.88729337795422,493.42842438914596,44.321767487669284,43.876670497513928,42.567530122514327,41.584132131668213,40.952990474181114,40.557907177761841 +1987,1,7,13,0,753,89,12.5,466.72799661724571,49.91702445310547,59.89204799121378,183.8184250391981,0.0,82.29478942724171,591.71384934452567,1.0,82.29478942724171,291.47391696965428,1.5,15.6,6.2000000000000002,571.83877253148103,572.48897965742879,572.83914392441307,574.35183364040915,575.60355989610957,576.09803753513893,51.306986172171214,50.474368412340496,48.71910266672613,47.382589009561045,46.534614513134144,46.170176319987426 +1987,1,7,14,0,618,119,13.5,406.36629429280561,52.921570198903524,62.29016601959709,199.4298292344473,0.0,72.040227574732512,513.08350606162924,1.0,72.040227574732512,254.55788210799042,1.5,15.6,6.2000000000000002,490.66852056302798,491.57401654860331,492.08191103785686,493.68709817923849,495.01034959401875,495.53868623654546,44.484155703738537,44.423464901801104,43.303507036434667,42.23092676692815,41.439060658417347,40.819590909662473 +1987,1,7,15,0,498,113,14.5,302.77197034172161,59.400543671095214,67.60013403332471,213.57921226517715,0.0,50.719804131022421,383.61000417289915,1.0,50.719804131022421,189.34140413419664,1.5,16.100000000000001,5.7000000000000002,358.76702520500737,359.77049434927795,360.34646216018064,361.44438078598864,362.34624387749614,362.70721247364668,30.072940979909355,30.769896500368255,30.850097672501455,30.641086068818932,30.122130626531725,29.391254647180322 +1987,1,7,16,0,274,91,15.5,161.06474743541884,68.35813218069471,75.18429508245077,225.8279094315551,0.0,26.836205247834041,202.30959648363574,1.0,26.836205247834041,100.44922848313654,1.5,15.6,3.6000000000000001,179.65613133529075,180.63228006789996,181.20308640092441,181.70644019781798,182.12156218354716,182.28644084584892,15.680440473837239,15.674012525438737,15.660934264137666,15.788424848754506,15.897122143589284,15.800682817835211 +1987,1,7,17,0,0,30,16.5,30.0,78.88570411218194,84.34883903369722,236.3351420586406,0.23375135798152097,9.249901269480107,30.103775796507662,1.0,9.249901269480107,18.279368496041421,1.5,14.4,3.6000000000000001,26.819181817446115,27.711819612060772,28.277531818516902,28.226458704849058,28.187615411708485,28.16907454234952,5.4022809854125837,5.3866749545743735,5.3776270856837156,5.3611859957780874,5.3274409055067755,5.2848488682390347 +1987,1,7,18,0,0,1,17.5,1.0,84.47312628395925,89.25719197407143,241.23883270701225,0.798093671197832,0.31450404003991794,0.99240387608929914,1.0,0.31450404003991794,0.0075961164082149479,1.5,13.9,6.7000000000000002,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1987,1,8,8,0,109,13,7.5,18.541068384476038,82.01218797307054,87.08608502074883,120.83805778549969,0.45126737375947146,2.8680481920738266,31.237623607037076,1.0,2.8680481920738266,12.041793397572869,1.5,0.59999999999999998,3.1000000000000001,8.0212621277646345,8.1435469888295167,11.769024306339791,20.596656573204918,20.781538996111522,20.857455017485002,1.7159806088922811,1.7433660183953648,1.7405474509689505,1.7764204579387466,1.8162897573770482,1.8028769818925452 +1987,1,8,9,0,568,34,8.5,134.27731439718889,73.74644915022775,79.83144506058427,128.33975412049685,0.05384882902585657,8.4966982551642047,201.96297595285472,1.0,8.4966982551642047,84.518289291051502,1.5,2.2000000000000002,3.1000000000000001,116.66305435397267,162.90360438970916,163.08574286701526,163.76503005149485,164.31736395703172,164.54418163346142,5.0831050875431298,5.1653734855828928,5.1563064343470977,5.262304643690956,5.3786735246042161,5.334358412889852 +1987,1,8,10,0,777,43,9.5,292.11435732960661,63.8297123875976,71.30015074402385,139.62249476570574,0.0,33.233189101173217,394.74190942279319,1.0,33.233189101173217,182.44815570661868,1.5,4.4000000000000004,3.1000000000000001,360.99859003813009,361.39657403301283,361.61947768799155,362.58226906545809,363.36900000049167,363.68790371276685,18.837344906837565,19.531914911281628,20.03850253916756,20.437098500153567,20.425806402902833,19.918615548662149 +1987,1,8,11,0,867,53,10.5,423.82186170120065,55.889280426244575,64.67787946587052,152.7831111850017,0.0,61.862946334457611,549.87538860185532,1.0,61.862946334457611,263.92708501610292,1.5,6.0999999999999996,6.7000000000000002,524.59681980054825,525.06528834115556,525.31780859215439,526.42650413104968,527.34396158834454,527.70778220915429,37.998748795185122,38.412751820544365,37.751488111729941,36.701088277882974,35.590980149695085,34.75233826518825 +1987,1,8,12,0,904,59,11.5,502.13349854203761,50.901970091479605,60.64680309285359,167.74324247017933,0.0,81.848716488330282,640.76717642256096,1.0,81.848716488330282,312.31445455299882,1.5,7.2000000000000002,5.2000000000000002,620.05195004037023,620.56143523469302,620.82796232830799,622.00178671133369,622.97967448049894,623.36078543094948,51.106878038103041,50.373614275278605,48.604080521315346,47.096204285085193,46.052514625416762,45.584822798286019 +1987,1,8,13,0,904,60,12.5,515.38111829648483,49.775888748907214,59.752241961952045,183.71415020780915,0.0,83.910925134612825,655.60441906185997,1.0,83.910925134612825,320.49260355969523,1.493249180581405,8.3000000000000007,4.5999999999999996,635.90557010932775,636.42070671043496,636.68937118955489,637.87248459182274,638.85799810895833,639.24130695646409,52.376778270312819,51.380777922902553,49.488664787970201,48.03333976046887,47.083577877823267,46.747357208063768 +1987,1,8,14,0,892,57,13.5,473.93739067123539,52.76094766309915,62.133137712171525,199.36725807347304,0.0,77.448688258134908,608.10745235873674,1.0,77.448688258134908,294.90396612261338,1.5,7.7999999999999998,4.5999999999999996,585.78050496723165,586.27730618301553,586.53873798991992,587.69191195454323,588.65170988610362,589.0272747511284,48.231762691663505,47.932550713755717,46.421335848956794,44.950357929253975,43.789576298129042,43.141087930830729 +1987,1,8,15,0,835,49,14.5,369.41554203271119,59.23399305425899,67.4350065707296,213.55540918696312,0.0,51.029952582639226,486.13500938542592,1.0,51.029952582639226,230.29006790854518,1.5,8.3000000000000007,4.0999999999999996,457.32064432096467,457.76228363939504,458.00299886224957,459.05999017528052,459.92853036357536,460.27567761235838,30.44908671106154,31.371310731579626,31.452849749756691,31.01038332528249,30.180590284078509,29.234854942190296 +1987,1,8,16,0,715,38,15.5,222.83865447422832,68.19417748830001,75.0179986431836,225.83439397516943,0.0,20.455884588749548,311.91282086285986,1.0,20.455884588749548,139.54106715060013,1.5,8.3000000000000007,3.6000000000000001,273.68022518125792,274.04219089956314,274.25004022761851,275.11460316401559,275.82074633778234,276.10786851351941,11.774156331685552,11.788436790702752,11.826897294017577,12.164534612243788,12.486945467291449,12.456637602188479 +1987,1,8,17,0,412,22,16.5,63.723453195018273,78.73048504791576,84.18766278993645,236.36377318204907,0.22268757641104264,5.4807627953702251,109.92039617443808,1.0,5.4807627953702251,40.440461737421856,1.5,6.7000000000000002,1.5,14.083758739819306,56.255939449501909,77.625048790498326,78.06629703326098,78.425069303970574,78.572410164176773,3.2797666753338333,3.3331368551098692,3.3274832600217725,3.3967122402011358,3.4732090368510296,3.4458673793743375 +1987,1,8,18,0,8,1,17.5,1.1130683495660805,84.4235755540059,89.1901806339542,241.34778980616434,0.7818299828668736,0.31597392858427698,1.7697909501389959,1.0,0.31597392858427698,0.0075961164082149479,1.5,3.8999999999999999,0.0,0.91266339538332442,0.92657726742252877,0.93473771509614734,0.93783639866209256,1.0450628258098034,1.2800157535472358,0.1853566424335201,0.1854650017624126,0.18515618323214691,0.18541136721242193,0.1852630999235674,0.18380734909738372 +1987,1,9,8,0,55,14,7.5,16.808622735115257,82.0259316038722,87.07286815885097,120.65992086867438,0.4478367159702252,3.7975873237545597,23.010792220209083,1.0,3.7975873237545597,10.587090385641702,1.5,-4.4000000000000004,0.0,10.86812707253193,11.033814665145732,13.035905849945891,17.308832778961563,17.383890514313347,17.414018042721647,2.2368444371407801,2.2453297822410696,2.2416076384401884,2.2537889435135181,2.263188931698195,2.2455980597232803 +1987,1,9,9,0,438,45,8.5,122.62054566241835,73.73132021564149,79.7923668006751,128.17127829321558,0.051110580360494054,10.600749855306978,178.53640363948094,1.0,10.600749855306978,77.371815403180364,1.5,-1.1000000000000001,2.1000000000000001,108.76096616781365,145.22223379451464,145.46552855686249,146.15713716809742,146.7200192983106,146.95065778983709,6.316321417278024,6.398124544984535,6.3871613294573137,6.4937342171121193,6.6080475854814225,6.5550657523086384 +1987,1,9,10,0,661,65,9.5,277.61850222774592,63.786483500649425,71.23654188729556,139.45536581715663,0.0,33.638729085315028,371.33820141223168,1.0,33.638729085315028,173.76445497249998,1.5,2.7999999999999998,1.5,339.34986243053709,339.85666049160204,340.14413797476487,341.19392691111699,342.05136995663213,342.39937356364021,19.194039162482561,19.867655721566233,20.309044185242517,20.68284472365054,20.658863275273188,20.170632443289755 +1987,1,9,11,0,753,83,10.5,406.15666374823076,55.81147408961229,64.58580532302423,152.6239280874979,0.0,65.582661204892929,522.3780371999344,1.0,65.582661204892929,253.91396898041216,1.5,4.4000000000000004,2.6000000000000001,496.91802400577342,497.57665887060818,497.94084781814558,499.35769344227651,500.52571768542975,500.9924643135659,40.250688269969665,40.651199869538509,39.973999796535033,38.957357234704858,37.939376808754631,37.106833510800165 +1987,1,9,12,0,714,105,11.5,456.31624394212338,50.78633073561362,60.52527586482345,167.60518566296585,0.0,77.471118627908396,577.25683633500091,1.0,77.471118627908396,285.15095977565301,1.5,5.5999999999999996,1.5,556.37949079274506,557.10585169923593,557.50371979642989,559.05046472794879,560.32818321465027,560.83502110825475,48.214833437493503,47.539078656501708,45.953202499358788,44.749513039346695,44.007093775518882,43.625725935031333 +1987,1,9,13,0,757,88,12.5,471.00535048502604,49.62784073590757,59.60545885467976,183.6121777114783,0.0,78.623943228854429,596.09187562634099,1.0,78.623943228854429,294.08717000121817,1.4817043751085648,6.7000000000000002,2.1000000000000001,576.49211396287592,577.12786455163803,577.47100108518384,578.9781475351532,580.22380827254995,580.71660474005796,49.003731292660433,48.0446931916605,46.336745405837974,45.17668071845555,44.479900591489276,44.222464539372659 +1987,1,9,14,0,782,86,13.5,453.49077343112458,52.59429485267664,61.969789580236686,199.30882697721208,0.0,76.162309904293522,578.17311957997708,1.0,76.162309904293522,283.20063147460922,1.5,7.7999999999999998,2.6000000000000001,555.5380365712906,556.18862522446261,556.5422721904315,558.01163374369298,559.22670230814333,559.70842116526887,47.374383427351866,47.035651644077753,45.569062143721695,44.283309429312517,43.352260389406936,42.788343288061789 +1987,1,9,15,0,673,76,14.5,336.09993157732822,59.06260794186123,67.26445106680873,213.53700573382426,0.0,51.518551008106989,438.23274995767014,1.0,51.518551008106989,210.21451449838219,1.5,7.7999999999999998,4.0999999999999996,411.60546812125898,412.16373037145081,412.47396368235388,413.68419544772405,414.67750134371727,415.07615932195682,30.883556706148987,31.730902273279316,31.698147215405296,31.240112096434746,30.467548636993133,29.587648104036539 +1987,1,9,16,0,566,58,15.5,205.94911469887009,68.0265513096903,74.84719513418152,225.8469750013844,0.0,19.977060841015533,282.72213272529177,1.0,19.977060841015533,129.29120917580329,1.5,7.2000000000000002,2.6000000000000001,248.66143401209501,249.1482305147394,249.43047546194811,250.35018663960665,251.10034268949067,251.40643437900061,11.565307193147847,11.647041581179492,11.702853155558545,11.990908569490731,12.268621613100182,12.187487220620747 +1987,1,9,17,0,219,33,16.5,55.805396701444707,78.57248761220404,84.02271176314652,236.39887476979342,0.21161401401888139,8.1010260029977754,84.908732492806791,1.0,8.1010260029977754,35.257948495147787,1.5,5.5999999999999996,3.1000000000000001,22.32662515824353,52.416714933829425,63.601880076329635,63.937294479424494,64.211083187877961,64.32249234867669,4.7949612916053264,4.8317430355092776,4.8236469061013745,4.8730262526165236,4.9215268537242363,4.8829351600762525 +1987,1,9,18,0,1,1,17.5,1.0153395407232007,84.37321999445204,89.12107458584715,241.46486905590208,0.7653261547673402,0.3147034540693196,1.0904519337331775,1.0,0.3147034540693196,0.0075961164082149479,1.5,3.2999999999999998,3.1000000000000001,0.91266149158324417,0.92657536362244852,0.934736334330172,0.93783544288058251,0.95796939844196261,0.98440709161428719,0.18461520086422351,0.1847244063555244,0.18441762426377126,0.18467532546049356,0.18453356694850001,0.18308873591218969 +1987,1,10,8,0,7,5,7.5,5.3594440922974753,82.03773024192385,87.05661562172166,120.47511089461405,0.4439561580665343,1.5446225970116394,6.0308784206439219,1.0,1.5446225970116394,3.3453967594466651,1.5,2.7999999999999998,3.1000000000000001,4.4664387920179838,4.5345312494802608,4.7868507853009206,5.2249758418826939,5.2407074246701502,5.2468250463657213,0.90674426461120095,0.90777145883928667,0.90626365956972099,0.908148556399758,0.90821087073110773,0.90110438400288917 +1987,1,10,9,0,19,44,8.5,47.381952995582289,73.71036637560483,79.7468569628824,127.99934042878154,0.048118014569262534,13.364225966399996,49.857202589770814,1.0,13.364225966399996,29.111566988789935,1.5,2.7999999999999998,4.0999999999999996,43.174346057103534,45.62363388129755,45.968674029661827,45.971421675352275,45.977274760984628,45.976187351901842,7.8180497387955166,7.8056509866855226,7.7925602217301799,7.7816752475662581,7.7487020011981462,7.687008926195718 +1987,1,10,10,0,8,61,9.5,63.582605069842643,63.736867240955114,71.16610640630064,139.285618737835,0.0,19.422242804657728,63.559610128100822,1.0,19.422242804657728,38.768701751256444,1.5,3.2999999999999998,2.1000000000000001,58.945267088488514,59.794012229654733,60.291729588570796,60.192433817324371,60.117287335425978,60.081029976273442,11.338041677899581,11.312613417197673,11.298512955837584,11.267428020116411,11.196139217091542,11.103029881712452 +1987,1,10,11,0,3,95,10.5,96.292166212500334,55.726780091313486,64.48660670025836,152.46336440063956,0.0,29.794127860458008,95.704681688848382,1.0,29.794127860458008,58.756516336969995,1.5,4.4000000000000004,0.0,88.873445445957628,90.173873234126376,90.936451646186896,90.801864625182674,90.701002856455219,90.651336345557937,17.41956515783377,17.374840380627678,17.340223294335644,17.28251399786188,17.171481980649414,17.030484294978915 +1987,1,10,12,0,6,209,11.5,211.96396563262286,50.66355257487058,60.39654665438566,167.46748073569447,0.0,62.761272501163077,216.54743858443257,1.0,62.761272501163077,129.63791500553998,1.5,3.8999999999999999,3.6000000000000001,202.21633310312109,204.81198532759817,206.33255277393971,206.13288182001091,205.9885195229725,205.91196753641606,36.855920519907443,36.711723131084234,36.549035248889147,36.370220865117652,36.114034860631484,35.826144057607443 +1987,1,10,13,0,3,210,12.5,211.52479080493057,49.47294217691596,59.45176181508972,183.5125922297391,0.0,62.930021556463963,215.40248260315062,1.0,62.930021556463963,129.36345611542535,1.4697006194280031,3.8999999999999999,2.1000000000000001,201.09080546526189,203.70814817127811,205.24160410002287,205.04122340991921,204.89628140581667,204.8194419813166,36.938886287995643,36.786087478884383,36.62798231169554,36.463486162770508,36.219470074431385,35.938091728390695 +1987,1,10,14,0,1,248,13.5,248.47254765019827,52.42169585331324,61.80020249248043,199.2546181091378,0.0,72.014635160717603,256.54522341461825,1.0,72.014635160717603,152.08301131386878,1.5,4.4000000000000004,2.1000000000000001,239.78352799319262,242.71871619255705,244.43773244805428,244.24116857937736,244.10198308591643,244.025108792488,42.334043574565605,42.184679820408256,41.983619836603999,41.754743913707934,41.442749762274907,41.096392576164455 +1987,1,10,15,0,4,158,14.5,159.55723127560503,58.88649091131166,67.08856327058747,213.52407007375893,0.0,47.063557689816776,162.75005833500313,1.0,47.063557689816776,97.504441711978671,1.5,4.4000000000000004,2.6000000000000001,151.31943716889703,153.31465942408545,154.4840808335922,154.30680203219575,154.17603079322402,154.1094329233417,27.534899884671781,27.499485356250901,27.450190091997175,27.346624332949233,27.145950440878956,26.898131561259259 +1987,1,10,16,0,1,129,15.5,129.26434457471663,67.85536492255693,74.67198903300661,225.86569855548183,0.0,36.758230179694941,134.18079562039063,1.0,36.758230179694941,78.990465817376602,1.5,4.4000000000000004,3.1000000000000001,123.4266839526566,125.0102645696562,125.9387211928352,125.79354771549036,125.68594051848798,125.63170451708892,21.445217716904132,21.390482392013705,21.36589074484468,21.327970788415382,21.219956204433473,21.050096271425446 +1987,1,10,17,0,0,37,16.5,37.0,78.41182244618838,83.85409234443593,236.4404690055118,0.20054516423274166,11.204729134375965,37.678084680141723,1.0,11.204729134375965,22.554608890849074,1.5,4.4000000000000004,3.1000000000000001,32.461057023783432,34.429324419375142,35.095492459110687,35.035768052750811,34.990450410303552,34.968710544886392,6.544321972738139,6.5257043827664081,6.5147392211204931,6.4951757324962189,6.454721880253171,6.4030946288991233 +1987,1,10,18,0,0,1,17.5,1.0,84.32209547380702,89.04991296345585,241.59002285667464,0.7486043315520184,0.31450404003991794,0.99240387608929914,1.0,0.31450404003991794,0.0075961164082149479,1.5,4.4000000000000004,3.6000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1987,1,11,8,0,26,17,7.5,18.34382319686156,82.04756432961543,87.0373184739086,120.28373656493635,0.43962625657858834,4.9112195187129135,21.443263600923448,1.0,4.9112195187129135,11.41538612663863,1.5,1.7,4.5999999999999996,14.168225739050255,14.384225148287113,15.703840502688166,17.855974913692613,17.899312130642212,17.915992353784191,2.8816387272375823,2.8838162633317075,2.8790132710792551,2.8836001037151604,2.88205235358109,2.8594044932962235 +1987,1,11,9,0,117,69,8.5,89.930082028878132,73.68357423834289,79.69491175113909,127.82403818952535,0.04487576721061127,18.737490495932857,107.99262009635352,1.0,18.737490495932857,55.79557838729815,1.5,2.7999999999999998,6.7000000000000002,82.343089854494394,93.899196593719211,94.37456517202952,94.562020015826192,94.718891612991783,94.779018245119374,10.991984494652893,10.999008734114724,10.980493125773791,10.995900111138395,10.987048267531671,10.899427079464532 +1987,1,11,10,0,171,130,9.5,185.42133479864029,63.6808719080626,71.0888591554421,139.11334320903808,0.0,41.0843644914994,215.41921071694372,1.0,41.0843644914994,114.98239087917112,1.5,4.4000000000000004,7.7000000000000002,197.80567424079192,199.25826470652515,200.10651487041241,200.46345963250525,200.7629876309137,200.87687644960687,23.886956791981778,24.11920901331758,24.240108753148945,24.318680388175455,24.206213699389032,23.880226401607867 +1987,1,11,11,0,695,95,10.5,395.51490840525696,55.63522639815739,64.38031579343932,152.30150318820776,0.0,64.576768905917902,506.08950400379626,1.0,64.576768905917902,247.34913030907322,1.5,5.5999999999999996,7.7000000000000002,481.41734661732477,482.11635614990075,482.5048223894492,483.91717819554253,485.08184169479733,485.54713614113831,39.748060658250282,39.993743665697139,39.180809975437008,38.155870197055769,37.281996817124814,36.544104704518325 +1987,1,11,12,0,683,128,11.5,466.80549711878814,50.53368108263665,60.26066424054287,167.33020871343118,0.0,85.651032143184437,584.88717213046471,1.0,85.651032143184437,292.0013839773311,1.4891309578080478,6.0999999999999996,7.2000000000000002,562.85032534838479,563.8037065308838,564.33319476074382,566.02582043978703,567.42367042088358,567.97787331707843,53.142786231825596,52.255827148654063,50.556554921507534,49.40112273063793,48.686606548550671,48.368008600728217 +1987,1,11,13,0,307,205,12.5,361.77714068750379,49.31125746281767,59.29121668353478,183.4154770489713,0.0,79.729478672968952,425.58235714515831,1.0,79.729478672968952,225.43836979581425,1.4572567329718291,6.0999999999999996,7.2000000000000002,406.0130915231905,407.96115773022859,409.08780366390897,410.13595725940712,411.0083096276901,411.34729004391045,48.316864684859979,47.709761321135119,46.693811510856186,46.104622206094334,45.734919818182519,45.479944999667332 +1987,1,11,14,0,275,210,13.5,340.69337641127777,52.2432372218998,61.62445971613738,199.2047121757951,0.0,77.067835066128865,399.37234862023797,1.0,77.067835066128865,212.36238851982182,1.5,6.7000000000000002,7.7000000000000002,378.59366651954883,380.60809489510223,381.77520445629762,382.79006128527533,383.63509046455283,383.96400971610683,46.602300968450798,46.327729759467303,45.507413835623801,44.87609596989563,44.396403658729682,43.984308862058853 +1987,1,11,15,0,561,110,14.5,330.03410585284001,58.705746611303574,66.90744091479492,213.51666834648387,0.0,52.86669904260286,420.24539953843384,1.0,52.86669904260286,207.10605771545951,1.5,6.7000000000000002,7.7000000000000002,393.82782908128843,394.74713827240379,395.27244377695712,396.71533070424402,397.89831079682483,398.37508586588206,31.803524859915967,32.429573536941966,32.281086344452575,31.879988489368859,31.299938174458887,30.569107300291641 +1987,1,11,16,0,92,54,15.5,78.597556485455925,67.680730945269,74.49248622377193,225.8906079303799,0.0,15.632677477833603,94.436973948738597,1.0,15.632677477833603,49.326411787503361,1.5,7.7999999999999998,9.3000000000000007,84.367745964961841,84.959922893327928,85.306310414168109,85.664501353493336,85.958621419455909,86.076596942869429,9.1252783908712214,9.1623484396151724,9.1780570337464731,9.2665035645820737,9.3319906249777898,9.2570179877205891 +1987,1,11,17,0,150,37,16.5,53.507213694617519,78.24860118030303,83.68191217167703,236.48857475416057,0.18949441787403354,9.0053410357592689,76.403387787899192,1.0,9.0053410357592689,33.912987232936409,1.5,6.7000000000000002,11.800000000000001,25.154343657195245,54.254131548885034,59.036300260099409,59.397425085362421,59.692277432422912,59.812183754491357,5.3283928073658329,5.3676889571826729,5.3587590595574888,5.4117939595479605,5.4635638016023638,5.4211168684566688 +1987,1,11,18,0,9,2,17.5,2.1607249800275605,84.27024108516115,88.97673860334278,241.72319934823113,0.7316864582758063,0.63109750482019411,2.8833367856704655,1.0,0.63109750482019411,0.015192232816429896,1.5,6.0999999999999996,6.7000000000000002,1.8253255165176574,1.8531532605960661,1.8694745060198097,1.875672157601749,2.1242574891915718,2.2819349703863585,0.37021702416113839,0.37043430917124531,0.36981803513708783,0.37033008791767313,0.37003790978601914,0.36713371695319363 +1987,1,12,8,0,144,12,7.5,19.498807999235733,82.0554151711908,87.01496892078323,120.08590853324989,0.43484843200099366,2.61543983982483,34.880254312114523,1.0,2.61543983982483,12.603906692183918,1.5,1.1000000000000001,6.2000000000000002,7.2147604693498453,7.3247493228612193,13.106443591629983,22.232077767039293,22.408816935591794,22.481422421536401,1.5664948620567527,1.5928104942304635,1.5902206621861872,1.6245950156958429,1.6629559948801884,1.6505949386676393 +1987,1,12,9,0,546,32,8.5,130.22102969360287,73.65093408298995,79.636531069905,127.64546882375106,0.04138911370102082,7.8761071079410581,194.32954163788742,1.0,7.8761071079410581,81.968527744122127,1.5,2.7999999999999998,7.2000000000000002,122.36926059752331,156.89852260884427,157.06530200586937,157.72475724442893,158.26086448564325,158.48111620294412,4.7167660957177953,4.7969937820135353,4.7885463038064522,4.8917488605059392,5.0056143209334776,4.9642485242036152 +1987,1,12,10,0,659,55,9.5,269.4970098757866,63.61850949080528,71.00481864097301,138.93862776722756,0.0,34.23446368022293,360.02929894718272,1.0,34.23446368022293,168.81745744977104,1.5,5.0,6.7000000000000002,329.2790298980687,329.7233968988005,329.97296720221732,331.0379883351203,331.90774132698988,332.2608303574375,19.64529246102164,20.426473006284922,20.842124408376915,21.125695955217736,20.965373040809588,20.407801469460914 +1987,1,12,11,0,757,82,10.5,410.67312181884529,55.53684435015795,64.2669681524226,152.13842588840473,0.0,66.019182433291178,526.48561224863488,1.0,66.019182433291178,256.68243919359884,1.5,6.7000000000000002,7.2000000000000002,501.3670854479987,502.01016989346988,502.36451158287173,503.77634016508762,504.94144765597031,505.40626017666204,40.759287357456991,40.910431749257491,39.982465323629157,38.878969262027283,37.982407169325008,37.262141982292746 +1987,1,12,12,0,911,60,11.5,513.87860978910953,50.396764639787726,60.11768037759232,167.19344894179352,0.0,88.411012623689786,652.45831044604745,1.0,88.411012623689786,319.57196463960287,1.4764936651287943,8.3000000000000007,6.7000000000000002,632.0564338506731,632.57311033887879,632.84109628057786,634.02422202726461,635.01077406468607,635.39293385139547,55.186367227177634,53.913009156268203,51.859752953934596,50.406077864387917,49.511618603364028,49.270125862052566 +1987,1,12,13,0,865,49,12.5,492.90364135429678,49.142853561334235,59.123891935757335,183.32091401020412,0.0,83.919639174531028,625.01053196581688,1.0,83.919639174531028,306.21719864291032,1.4443917989530295,9.4000000000000004,7.7000000000000002,607.51703774550663,607.93181397724663,608.14230037688026,609.16492080432033,610.01967010227224,610.34811711517546,52.3472995844526,50.899793147613771,48.864860753874325,47.560524195656825,46.820598621700533,46.744370610589996 +1987,1,12,14,0,820,60,13.5,451.99133891510826,52.05900792633859,61.44264684620464,199.15918838274348,0.0,78.508458142072612,575.65040609798928,1.0,78.508458142072612,281.50420312155347,1.5,10.6,6.2000000000000002,555.0050425829412,555.52686084102788,555.80225939713671,556.99266891348236,557.98261259718731,558.36971276674001,49.003870805166123,48.270295004270238,46.570651805863996,45.156461482149936,44.20661648520624,43.780063619502315 +1987,1,12,15,0,848,50,14.5,385.13460638931411,58.52048168315536,66.7211836313408,213.51486461960297,0.0,56.51660638901707,502.89940376913944,1.0,56.51660638901707,240.00432408222667,1.5,11.1,8.8000000000000007,474.70458676931753,475.15291477469646,475.3958742955607,476.46462853735551,477.34652287162112,477.69737827797309,34.332898731114774,35.030768916098914,34.697973269514236,33.899342823895964,32.891985356331254,31.966405883749417 +1987,1,12,16,0,725,38,15.5,234.07819769248971,67.50276323702661,74.3087938983378,225.9217436338601,0.0,23.167922409355924,323.61336356731175,1.0,23.167922409355924,146.47618529571571,1.5,11.1,5.2000000000000002,286.16462617352056,286.52413328677295,286.72840123053777,287.60014958370289,288.31094272762255,288.60032264742097,13.114328770391278,13.290075926195966,13.536061247329402,13.945956128830284,14.244798522049283,14.077216208403781 +1987,1,12,17,0,439,23,16.5,72.648402842319854,78.08293625993763,83.50627995761194,236.5432075559907,0.1784740956062884,5.6966071405715191,121.04455296251767,1.0,5.6966071405715191,46.012155688591434,1.5,10.6,4.5999999999999996,14.386084093711867,81.953866734082965,87.217259073481131,87.686946649757203,88.06880516284015,88.225663127514309,3.4106842389200418,3.4676495393712434,3.4617210959456508,3.5354509431282168,3.6170391103017674,3.5882819159606516 +1987,1,12,18,0,19,2,17.5,2.3642216786463868,84.21769882582643,88.90159772129736,241.86434252014323,0.7145941324402197,0.63374296190223878,3.8990382001389099,1.0,0.63374296190223878,0.015192232816429896,1.5,8.9000000000000004,4.5999999999999996,1.8253294807226417,1.8531572248010506,1.8694773811322851,1.8756741477864673,2.4905654666312724,2.7386487308060095,0.37176089759372277,0.37197642067447956,0.37135590624775844,0.37186271753156541,0.37155698644025709,0.36863005577592589 +1987,1,13,8,0,179,12,7.5,21.400706191591635,82.06126499576413,86.9895603641266,119.8817392264813,0.4296249849032845,2.6362271526329715,39.713301950860796,1.0,2.6362271526329715,13.775302918674543,1.5,-3.8999999999999999,1.5,7.2022753527306111,7.3120732923479101,14.680100397266944,24.891279623645474,25.068349358015674,25.141086477147784,1.5786894642655835,1.6050467326977456,1.6024209624352641,1.6368184242552919,1.6751468025856837,1.6625901593627566 +1987,1,13,9,0,646,27,8.5,143.9289836191144,73.61243988639889,79.57171854179754,127.463729044177,0.037663943402736745,7.6080323313200919,215.9253060032602,1.0,7.6080323313200919,90.38250011113557,1.5,1.1000000000000001,3.1000000000000001,138.51572932081413,174.15095545366879,174.30557379442175,174.95714251940603,175.4867910367052,175.7044349617741,4.5583580598721225,4.6378644683647714,4.6295534526954238,4.7314366580147338,4.8438263340173808,4.8028968973902959 +1987,1,13,10,0,816,39,9.5,305.82129331604011,63.54979566113734,70.91400700699488,138.76155970138092,0.0,36.620176185997181,410.85482217498014,1.0,36.620176185997181,190.71656255655387,1.5,3.8999999999999999,2.6000000000000001,376.75653396494471,377.11501272882009,377.31219679137769,378.2141774695757,378.95222157794859,379.25031580264528,20.965551260172852,21.861506268988215,22.332637093392481,22.561794174269028,22.282573943091016,21.616110918364253 +1987,1,13,11,0,894,48,10.5,437.84655404809928,55.4316686350769,64.14660264774788,151.97421222723787,0.0,67.099910406718607,565.1639531857237,1.0,67.099910406718607,272.35282016163364,1.5,6.7000000000000002,2.6000000000000001,540.45892727270359,540.88075900624119,541.10248465542622,542.13493007295551,542.99357288335136,543.33069884881286,41.622206619597414,41.619747785001117,40.510624882038201,39.182711590117073,38.140920325857564,37.413810049203107 +1987,1,13,12,0,933,53,11.5,519.95613827844886,50.252854493037034,59.96764974627937,167.0572790180406,0.0,83.883944861785636,660.38001222771913,1.0,83.883944861785636,323.04266399305118,1.4634003985231385,8.9000000000000004,4.0999999999999996,640.47563739534667,640.92927195490302,641.16175550261175,642.24930270693062,643.15695609361205,643.50755309090562,52.384946872167191,51.106712386312523,49.096542761837142,47.745371762480914,46.90058711117576,46.712839797933185 +1987,1,13,13,0,938,54,12.5,537.80915548727182,48.967799964183186,58.94985862182116,183.22898345975793,0.0,96.612381547189983,680.78256642158294,1.0,96.612381547189983,334.05369060786217,1.4311250974233127,10.0,5.7000000000000002,661.96632319385606,662.4243962258829,662.65559372497626,663.74824110357508,664.6636199079021,665.01330979684337,60.244721193079997,58.49789900472117,56.138503198134288,54.630923310376708,53.817101117733536,53.776632925854479 +1987,1,13,14,0,876,37,13.5,458.28112573317469,51.869099284307524,61.254851733459205,199.11812439327974,0.0,77.260162183520947,586.22594632192136,1.0,77.260162183520947,284.37580596688031,1.5,11.1,5.2000000000000002,567.26196639683076,567.57916690709374,567.73285846882072,568.56346041869597,569.2616914463506,569.52785080451474,48.354054660779475,47.400792114039447,45.588530769633991,44.084909924963455,43.072327828990709,42.730937871398375 +1987,1,13,15,0,719,70,14.5,356.35653113056645,58.330804681171934,66.5298928660504,213.5187208472276,0.0,54.02967396203676,461.95259444644267,1.0,54.02967396203676,222.87139614820626,1.5,11.1,6.2000000000000002,435.34217698992063,435.88895034181166,436.19168820141823,437.46750866810135,438.51661117728457,438.9373848374845,32.884266546021244,33.485719646741181,33.124538339662941,32.433570394627523,31.586366513041952,30.772174146797344 +1987,1,13,16,0,529,63,15.5,207.73776458679851,67.32157679721676,74.12102045718557,225.95914335847925,0.0,24.249991329872028,280.25186115066464,1.0,24.249991329872028,130.55076233994524,1.5,11.699999999999999,5.2000000000000002,248.25853694500975,248.78945881970697,249.0955833075524,250.07262686388825,250.86928199613618,251.19384791137676,13.863295158187698,14.073758338036475,14.283523540376377,14.662560444348324,14.938044310016867,14.748962755309943 +1987,1,13,17,0,239,41,16.5,68.771181168230783,77.91494077463624,83.32730532192429,236.60437962359327,0.1674954847226206,10.136834095476747,100.24612861765351,1.0,10.136834095476747,43.370322021067707,1.5,10.6,5.7000000000000002,27.978984019871952,76.4269900662282,76.916968478713841,77.302480525941746,77.617386630286717,77.745311712083179,5.9941919362682663,6.0356865028167208,6.0255576974775851,6.081586094987558,6.1351988621543594,6.0869383494577303 +1987,1,13,18,0,25,2,17.5,2.5128553839797636,84.1645132728585,88.82453958463495,242.0133923266708,0.6973484707312316,0.63567520007157285,4.5266194347940267,1.0,0.63567520007157285,0.015192232816429896,1.5,6.0999999999999996,1.5,1.8253323761724427,1.8531601202508512,1.8694794811104334,1.8756756014146145,2.8141308701739649,3.0266853926432953,0.37288854059927634,0.37310277676928943,0.37247916516574364,0.37298214806760183,0.37266651791343253,0.36972297956862787 +1987,1,14,8,0,25,15,7.5,16.325354131421236,82.06509702586541,86.96108746305389,119.67134266710637,0.4239591083947766,4.3909775705632184,19.091208765551794,1.0,4.3909775705632184,10.164004037361215,1.5,-0.59999999999999998,2.1000000000000001,12.666512787665592,12.859618066371358,14.293261909740409,15.914764846529444,15.954707738781307,15.970117163441405,2.5766379119200806,2.5787804456206547,2.5744863464212493,2.5788365398891626,2.5777593161238137,2.5575105203115998 +1987,1,14,9,0,161,60,8.5,89.338589193003543,73.56808934718319,79.50048152207107,127.27891490769314,0.033706729723466305,15.587039244569736,112.8751921938597,1.0,15.587039244569736,55.894343452834192,1.5,3.8999999999999999,2.1000000000000001,85.02124839215864,96.170541995561194,96.560790286133255,96.9072337503612,97.191985170544271,97.305971843891371,9.1757439010819919,9.206868275037797,9.1913818911560483,9.2361644700878571,9.2679267531827421,9.1944061739511529 +1987,1,14,10,0,420,113,9.5,251.01010838093131,63.47474976483909,70.81645001793665,138.58222495229901,0.0,43.43040380589332,316.69287780914243,1.0,43.43040380589332,157.21636077925635,1.5,11.699999999999999,4.5999999999999996,289.76936441687172,290.82547396685646,291.43591170063274,292.4407304871014,293.26463215063097,293.59595684899244,25.223593214019289,25.875579610788865,26.158787997015384,26.316522448702248,26.135853344247973,25.571263834470418 +1987,1,14,11,0,548,124,10.5,364.06179530307043,55.319737260461075,64.01926143443687,151.8089401340263,0.0,66.83413829547915,456.34038444859493,1.0,66.83413829547915,228.44109729685778,1.5,11.699999999999999,4.5999999999999996,432.60696715225714,433.61334188336713,434.1838779617392,435.7641177351536,437.06521042488032,437.5860795857634,41.075836431290213,41.125263944284676,40.22115885833734,39.337621826199644,38.659103912583603,38.053920108438696 +1987,1,14,12,0,644,147,11.5,470.84157714190451,50.10200471123976,59.81062990266306,166.92177472455842,0.0,88.480422523072363,583.81382995755143,1.0,88.480422523072363,294.68849764311113,1.4498710419883092,14.4,5.2000000000000002,561.27457083917591,562.42480893801644,563.07150981420136,564.84285521762661,566.3046638693155,566.88442807998604,54.683937607896006,53.661772827960014,51.933359630312673,50.934476948502322,50.401751267758812,50.190172890840685 +1987,1,14,13,0,241,187,12.5,311.95534049811312,48.7861686327458,58.7691903033774,183.13976420273906,0.0,71.717746333213881,363.99384189107622,1.0,71.717746333213881,194.6887725992467,1.4174760402016062,18.300000000000001,5.7000000000000002,346.69343358452323,348.47746676912118,349.51045742800454,350.52198802645586,351.36201960767289,351.68995018432696,43.38035237135179,42.751245185320087,41.86671806249101,41.413261741293582,41.18062828045894,41.030130932265358 +1987,1,14,14,0,258,192,13.5,316.83992281642981,51.673604901084104,61.06116441140102,199.08159628986834,0.0,71.419098206019697,370.79436490391214,1.0,71.419098206019697,197.62642303892864,1.4908343004427587,19.399999999999999,5.7000000000000002,351.76037978865043,353.61113748885163,354.68297053581682,355.6729496850561,356.4958103227051,356.8169012983866,43.216140074980459,42.803899921894754,41.988523438701527,41.4635997156632,41.097614068454853,40.804163644724589 +1987,1,14,15,0,183,156,14.5,229.45795448357242,58.13682599210851,66.33367179278511,213.52829683095177,0.0,53.733107822004676,263.33285861976458,1.0,53.733107822004676,142.31214670599127,1.5,18.899999999999999,6.7000000000000002,246.17626215925424,247.88822072541217,248.88586544822533,249.33035395552773,249.70552083117548,249.84690383521161,31.942086193751773,32.087031773236596,31.894435349601387,31.588445173340887,31.191202356327668,30.758975621726943 +1987,1,14,16,0,41,106,15.5,117.3497718971754,67.13728766407417,73.92927541010745,226.0028419540353,0.0,31.228385753661552,126.35715720972837,1.0,31.228385753661552,72.211565308099836,1.5,17.199999999999999,6.7000000000000002,115.49483807054932,116.7876467649738,117.54508374450972,117.58586229653017,117.62719658945591,117.63623450500992,18.191183296594581,18.193215696653386,18.203473501656944,18.222978272093584,18.171684086722451,18.006896758421593 +1987,1,14,17,0,2,32,16.5,32.238710765986653,77.74472829137541,83.1450986278383,236.67209984186775,0.1565688793983508,9.9711971223579816,32.148770016531579,1.0,9.9711971223579816,19.641933103644494,1.5,16.100000000000001,5.2000000000000002,28.956953880750419,30.056533601336117,30.315084841269936,30.259710890081887,30.217580979394796,30.197487461923547,5.8234922345942417,5.8066266886369036,5.7968740670807781,5.7790986453522661,5.7426594471902463,5.6967513319990788 +1987,1,14,18,0,0,0,17.5,0.0,84.11073126000143,88.7456161860257,242.17028480537,0.6799699915508864,0.0,0.0,1.0,0.0,0.0,1.5,15.0,5.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1987,1,15,8,0,1,8,7.5,8.0535638819626492,82.06689555068174,86.92954619946462,119.45483429690219,0.4178548965956693,2.5167286507848576,7.9947522181557895,1.0,2.5167286507848576,4.895624944985947,1.5,12.800000000000001,7.2000000000000002,7.3012905855460026,7.4126015618596384,7.5155446558953942,7.5365609363418375,7.5228895842920558,7.5165582283222729,1.4692165231338907,1.4644627183137919,1.4620010896014708,1.4568820954011528,1.4469073158027075,1.4353215678394449 +1987,1,15,9,0,26,61,8.5,65.772551104627709,73.51788390676646,79.4228311097504,127.0911216967386,0.029524496535290927,17.749352581845436,70.511267823203653,1.0,17.749352581845436,40.43545933850293,1.5,12.800000000000001,6.7000000000000002,61.119976978334293,64.04820343782032,64.505443201572021,64.516847962822311,64.530901333967108,64.532061336831106,10.3846002245708,10.369172567160534,10.351763861007887,10.33857559525976,10.296297784784144,10.214213905463961 +1987,1,15,10,0,6,68,9.5,69.981882798810204,63.393394809104926,70.71217703755823,138.40070801409718,0.0,21.547223073527018,69.672499835465104,1.0,21.547223073527018,42.676692465123324,1.5,12.199999999999999,6.7000000000000002,64.618314800380389,65.561785371245705,66.115067097326616,66.008226016384768,65.927549416303322,65.888436998437598,12.583285242871417,12.554746946101911,12.537157415962641,12.50065164425534,12.421007061809332,12.317646115164406 +1987,1,15,11,0,78,123,10.5,157.33360444216632,55.20109152323833,63.884989912986725,151.64268565919824,0.0,40.213925793448901,174.42265942745118,1.0,40.213925793448901,97.855104368941539,1.5,12.199999999999999,4.5999999999999996,163.00316166888274,164.40304018474205,165.22026741026244,165.62945662821102,165.9723572464535,166.10373753388438,23.937370913207687,23.919116065019729,23.705428093949696,23.527383625118823,23.354867845008748,23.122215092681152 +1987,1,15,12,0,219,158,11.5,268.66746073458108,49.94427213975292,59.646681224816554,166.78700996480634,0.0,60.151434226964888,314.12360399227157,1.0,60.151434226964888,167.78185046945882,1.4359257500108402,13.300000000000001,5.2000000000000002,298.68240486043192,300.21431477256198,301.10161239469795,302.01149626834012,302.76592007469867,303.06160735986765,36.396480774296499,35.944870353379841,35.217526977741201,34.838943060261506,34.623561783519996,34.453509370263347 +1987,1,15,13,0,207,209,12.5,316.90460981144975,48.598033942355976,58.58196298940106,183.05333345941597,0.0,75.220821827457115,360.37018998790393,1.0,75.220821827457115,196.55121239609028,1.4034641079966312,14.4,5.2000000000000002,342.68641103263809,344.88004472760991,346.15580765117693,346.76409678479069,347.27824399199528,347.47041705385982,45.121966441152559,44.546335880752444,43.80375551745469,43.405295574172087,43.135822254675105,42.946476753432236 +1987,1,15,14,0,603,138,13.5,431.61258196548221,51.47262060653713,60.86167702225737,199.04967853824087,0.0,81.376412018671161,536.23628380830553,1.0,81.376412018671161,270.39932671503908,1.4748267808479714,16.100000000000001,6.2000000000000002,513.86112709257486,514.94015795477185,515.54701130354943,517.26447850846796,518.68061178923131,519.2437222828745,50.320400784700922,49.470709111693488,47.930653504026161,46.979480953919804,46.45043517918586,46.199530622315358 +1987,1,15,15,0,467,112,14.5,300.95797375206979,57.93865775381443,66.13262522707133,213.54365018308116,0.0,54.618760851467144,376.54903849079483,1.0,54.618760851467144,188.31251598940179,1.5,16.100000000000001,5.7000000000000002,354.06418880847724,355.0358620848441,355.5916155339001,356.71611902983955,357.64317183319531,358.0130543129477,33.140005502201788,33.482539851586068,33.072646580143669,32.466648176496143,31.801529845966254,31.176396396000719 +1987,1,15,16,0,449,91,15.5,216.76608570235638,66.95001281279373,73.73366927689011,226.05287140249897,0.0,32.268360202166086,280.64909090994422,1.0,32.268360202166086,135.72291822360904,1.5,16.100000000000001,4.0999999999999996,250.53128535879426,251.39758396140797,251.90046777036144,252.75207570787038,253.44943117402957,253.73084878520842,18.493724625786815,18.787322933103837,19.010532534583373,19.368356741797189,19.560729837123539,19.236675578900869 +1987,1,15,17,0,107,49,16.5,62.114584609955379,77.57241269231982,82.95977082365657,236.74637377076982,0.1457036236035468,12.736545588231223,79.547955369291344,1.0,12.736545588231223,38.916873169858263,1.5,15.0,3.1000000000000001,39.658083608630989,64.869357140045111,65.192129828802095,65.455120247453905,65.671524869913767,65.757917823897515,7.494522650426453,7.5172456943542105,7.5046796947130181,7.5380375675340083,7.5601880576675216,7.5006863737315559 +1987,1,15,18,0,27,4,17.5,4.6291026345117459,84.05640156058898,88.66488192342968,242.3349521988747,0.6624785138560941,1.2661944944083248,6.7654496405652509,1.0,1.2661944944083248,0.030384465632859792,1.5,13.9,2.6000000000000001,3.6506570262444118,3.7063125144012297,3.738953358724594,3.7833788414008018,5.0364141919414029,5.0403854721026162,0.74276812447083773,0.74320003075114671,0.74196107192471117,0.7429772532270964,0.74237240717543918,0.73652964574486512 +1987,1,16,8,0,0,9,7.5,9.0,82.06664600306759,86.89493394710708,119.23233080277897,0.411317348785141,2.8305363603592624,8.8397137072990475,1.0,2.8305363603592624,5.4716712350080412,1.5,7.7999999999999998,5.7000000000000002,8.2139507348603367,8.3391755832131746,8.4126250584428792,8.3930944636787128,8.3780487536835402,8.371064925318958,1.6524811906617263,1.6471883705020292,1.6444203795008354,1.6387328553700553,1.6276011927968053,1.6145742978700028 +1987,1,16,9,0,8,67,8.5,68.480011724718381,73.4618287672258,79.33878215523438,126.90044380258833,0.025124781263205626,19.936082293149752,70.35125864045699,1.0,19.936082293149752,41.782931045174422,1.5,7.7999999999999998,6.2000000000000002,63.250961312733395,65.123680462069046,65.639181196808849,65.54115500831017,65.467194382241871,65.431280088924737,11.645368472831285,11.613345515191243,11.593814905051985,11.560359284964754,11.490003602760178,11.398008708747918 +1987,1,16,10,0,5,101,9.5,102.66070515607532,63.30575744705828,70.60122100455008,138.21709183806598,0.0,31.032373947739284,103.35031573911795,1.0,31.032373947739284,62.656691783460126,1.5,8.3000000000000007,5.2000000000000002,95.811012126045881,97.153332627630448,97.940337874138208,97.800483320799714,97.695620437488458,97.64400052221464,18.122155780845688,18.092886330078304,18.072226403933385,18.019780674024922,17.901373779398991,17.745123434615124 +1987,1,16,11,0,10,177,10.5,181.42385164343955,55.07577597696901,63.743836687678424,151.47552289447248,0.0,53.623029039180892,185.30726448386338,1.0,53.623029039180892,110.90754701141388,1.5,8.3000000000000007,5.7000000000000002,172.73555586487359,174.96732094266949,176.27490456351762,176.08607823445351,175.94798273959253,175.87651201284262,31.467052424733645,31.372638461707144,31.25135041306104,31.097421638173472,30.866304636171051,30.605587236387262 +1987,1,16,12,0,5,216,11.5,218.53950619269739,49.77971635295645,59.47586685749289,166.65305670179126,0.0,64.713375980399576,222.95901208860229,1.0,64.713375980399576,133.67215290473337,1.4215848764631245,8.3000000000000007,5.7000000000000002,208.23559234308385,210.91215822286088,212.48025124344986,212.27889689784661,212.13363554369241,212.05615937157506,37.992429038024135,37.813274706917355,37.639603979353872,37.474030548834307,37.233060450926288,36.957116621611398 +1987,1,16,13,0,7,201,12.5,204.6691234194748,48.40347262531752,58.38825507052873,182.9697668244483,0.0,60.94467898803493,208.03692774435166,1.0,60.94467898803493,125.15644042923306,1.3891087900100962,8.3000000000000007,4.0999999999999996,194.2452479575968,196.78258191910354,198.26933430201777,198.07061571605175,197.92641101791435,197.85041405005916,35.755654183895189,35.585485819989685,35.433093978669483,35.289374897130031,35.070641698639534,34.816327032725603 +1987,1,16,14,0,4,212,13.5,213.96017859549337,51.26624439138321,60.656483742175624,199.0224439540837,0.0,63.370376342486125,218.39472468949549,1.0,63.370376342486125,130.86355805988194,1.4585000477629042,8.3000000000000007,4.0999999999999996,203.8785571482681,206.50025821662939,208.036153263579,207.83636095462131,207.69202170419254,207.61528978543572,37.208822807521273,37.044656178664795,36.874688403968655,36.706980802289927,36.462410330436853,36.183698865423999 +1987,1,16,15,0,1,175,14.5,175.40790249037124,57.736413773129335,65.92685953935501,213.56483629200167,0.0,51.769918401488731,178.87263601013044,1.0,51.769918401488731,107.22108258531232,1.5,8.3000000000000007,3.6000000000000001,166.42369289856015,168.60617673274012,169.88522776776315,169.70055105256216,169.56522844586434,169.4954736959524,30.333502402858084,30.27090758564977,30.188929021834866,30.055171342157909,29.833800651751488,29.570613069884349 +1987,1,16,16,0,1,118,15.5,118.28344107263507,66.7598700531861,73.53431348811682,226.10926079527064,0.0,34.697206466384557,120.89186686920372,1.0,34.697206466384557,72.239652076760734,1.5,8.3000000000000007,3.6000000000000001,111.6000185485165,113.09590527679498,113.97294334497391,113.8271970603539,113.7185372961868,113.66440092149742,20.237084480372328,20.201775476479234,20.18725708359225,20.147450652760888,20.033862145328705,19.861830597454091 +1987,1,16,17,0,0,49,16.5,49.0,77.39810801733766,82.77143328952812,236.82720365069758,0.13490815594357186,14.520665052766775,50.434880861925535,1.0,14.520665052766775,29.886398599212487,1.5,7.7999999999999998,3.6000000000000001,42.725904650952785,46.33848176848371,46.714266319242242,46.640652776948073,46.584989161027551,46.558086790198033,8.4816740098624255,8.458052562071634,8.443834226926727,8.4191051730079316,8.3674304914398743,8.3004707950337639 +1987,1,16,18,0,0,4,17.5,4.0,84.00157458007,88.5823932898405,242.50732307927942,0.6448930723343705,1.2580161601596718,3.9696155043571966,1.0,1.2580161601596718,0.030384465632859792,1.5,7.2000000000000002,3.6000000000000001,3.6506447710490395,3.7063002592058569,3.7389444704190598,3.7513411714434151,3.7617204932184514,3.7656939192204715,0.73799529596608326,0.73843264918682483,0.73720679937960898,0.73823918457844262,0.73767623700809526,0.73190376875574437 +1987,1,17,8,0,0,17,7.5,17.0,82.06433503931375,86.85724954326585,119.0039499452472,0.40435236892634985,5.3185989365675352,16.769500498664936,1.0,5.3185989365675352,10.352925317079356,1.5,1.7,4.0999999999999996,15.431909097923713,15.667174489554519,15.851123803243341,15.854513160523922,15.831071437872561,15.819951461426834,3.1060306550369745,3.0968750673755134,3.0916747601021006,3.0819944807287984,3.0623167721903908,3.037841039085285 +1987,1,17,9,0,104,68,8.5,87.401436340102407,73.39993290572,79.24835326419317,126.70697461082624,0.02051559503047206,18.559091749043777,103.14487679436289,1.0,18.559091749043777,54.24909729093072,1.5,1.7,7.2000000000000002,84.871704300818237,90.186132774684751,90.657573223788432,90.8481442883147,91.007490714172448,91.068690552475687,10.888187875777675,10.895786328407029,10.877462227107721,10.893574875970769,10.885884787413199,10.799192524570307 +1987,1,17,10,0,2,91,9.5,91.668152717658373,63.211867959221266,70.48361840479033,138.03145773911308,0.0,28.114093336870521,91.517867749636736,1.0,28.114093336870521,55.927303913576552,1.5,1.7,6.7000000000000002,84.861348871066653,86.087693186782488,86.806810919130868,86.675651151476657,86.577057350237283,86.528790817264053,16.420676822079017,16.386955647769526,16.364463471935824,16.316504217393028,16.212152844418217,16.07489020898884 +1987,1,17,11,0,12,162,10.5,167.33640000481444,54.94383839683277,63.595853522308815,151.30752389555963,0.0,49.674351250242012,170.43827334366651,1.0,49.674351250242012,102.26813413325057,1.5,1.7,5.2000000000000002,158.84087506116353,160.91767343869765,162.13455819299554,161.95130614968483,161.81661654755067,161.74760214200529,29.141438443155838,29.049205022932728,28.938776887844814,28.800592223486856,28.591909785206781,28.353869494791461 +1987,1,17,12,0,740,113,11.5,490.82116398832477,49.60839960504105,59.29825265488659,166.51998489911736,0.0,87.598551257266919,614.00683402403706,1.0,87.598551257266919,306.59662008398163,1.4068689053648726,2.2000000000000002,5.2000000000000002,593.14814217136677,593.92600335147722,594.35250200200676,595.97434513134351,597.31459286048971,597.84391151534533,54.294775381500095,52.830184585280506,50.917190841672458,49.921736501489079,49.471855870156688,49.496351519690386 +1987,1,17,13,0,563,114,12.5,410.77509140557282,48.202563712767386,58.188147252137284,182.88913822898917,0.0,74.564273723406174,510.66043404271852,1.0,74.564273723406174,257.41294527989311,1.3744295262704105,3.8999999999999999,4.0999999999999996,493.15437993968425,493.91812800782287,494.34270261472568,495.99294274451074,497.35168090144441,497.8930040374118,46.030922202958621,44.751554333275635,43.210013727174932,42.556520310923801,42.387583151027556,42.511425733000877 +1987,1,17,14,0,801,69,13.5,464.0920323724165,51.054576342803465,60.445680705728385,198.99996367223702,0.0,81.304813234332499,584.90793043090605,1.0,81.304813234332499,289.23344770929015,1.4418757005777243,4.4000000000000004,4.0999999999999996,564.69635714316576,565.29446424979324,565.6154552915865,566.90866273297274,567.98144322145447,568.40135252853281,50.583766125151548,49.310811396719771,47.455580963800394,46.326658844170034,45.716924354080469,45.624949840941127 +1987,1,17,15,0,670,89,14.5,364.53894289160758,57.53020944311208,65.71648256800577,213.59190828958708,0.0,59.751567089594182,466.13736625780109,1.0,59.751567089594182,228.09393386433925,1.5,5.0,4.5999999999999996,440.30240702548161,440.96533135253259,441.33440207157162,442.6779853787956,443.78536285858388,444.22822790293947,36.771303193683359,37.002592357681038,36.256021631452043,35.322920472409415,34.529519674568377,33.850101819873025 +1987,1,17,16,0,549,72,15.5,229.47345306282386,66.56697792699713,73.3313202862375,226.1720363126541,0.0,29.194780118794036,304.29315999201549,1.0,29.194780118794036,144.15588250047037,1.5,4.4000000000000004,3.6000000000000001,271.57594907152458,272.19553903510342,272.55281209441227,273.61318538809917,274.47855751522553,274.8305998230669,16.683433062514318,17.117771909398961,17.423445497746414,17.810369382061651,17.971515765287094,17.6217375010491 +1987,1,17,17,0,242,43,16.5,74.251474848067133,77.22192831144834,82.5801976896248,236.9145884103757,0.12419005577003345,10.541440888384287,105.54415785887296,1.0,10.541440888384287,46.82899375063004,1.5,3.2999999999999998,5.2000000000000002,42.380662889475829,81.978597166711623,82.237575720341113,82.654142953089931,82.994304673705173,83.132596816454907,6.236044000776106,6.281280974056183,6.2707278966911426,6.3315990163746907,6.3905161041190546,6.3401938276405021 +1987,1,17,18,0,23,4,17.5,4.6027886881950035,83.94630206092474,88.4982085756243,242.68732247457194,0.6272318485242415,1.2658524131062066,6.3952067502399714,1.0,1.2658524131062066,0.030384465632859792,1.5,2.2000000000000002,4.0999999999999996,3.6506565136371911,3.706312001794009,3.7389529869467926,4.0164271185054208,4.8820563587423056,4.8860277286592062,0.7425684878039992,0.743000621917558,0.74176221141187315,0.74277907048675129,0.74217597695420201,0.7363361557289575 +1987,1,18,8,0,0,5,7.5,5.0,82.05995062065111,86.81649336206495,118.7698103900174,0.3969667603113785,1.5725202001995897,4.9081945999868521,1.0,1.5725202001995897,3.0370598945098282,1.5,0.0,5.2000000000000002,4.563305963811298,4.6328753240073217,4.6736805880238252,4.6618566155124874,4.6527095165677865,4.6485026765469906,0.91788068956688407,0.9148113640140938,0.9132733894384244,0.90994919299281596,0.90356239770198821,0.89632443640432857 +1987,1,18,9,0,6,33,8.5,34.129269560804062,73.33220908529988,79.15156679759207,126.51080638928582,0.015705380278255854,10.393313825607747,34.166727834224602,1.0,10.393313825607747,20.785816898638835,1.5,0.59999999999999998,5.2000000000000002,31.379166230790588,31.96954696747293,32.238855666252256,32.177193581588156,32.130086682028264,32.107818211332919,6.069346231983209,6.0512470780364938,6.0410763096537128,6.0218744979295424,5.9830540456419827,5.9351707381241807 +1987,1,18,10,0,6,96,9.5,98.016713273753524,63.11176023199807,70.35940924034853,137.84388530495255,0.0,29.692765832291773,98.512737784725914,1.0,29.692765832291773,59.815534762661457,1.5,0.59999999999999998,4.5999999999999996,91.342449510854578,92.628452561186265,93.38245742340564,93.246668100856454,93.144746440017656,93.094686575024568,17.34504463929191,17.314337194541835,17.291684393325831,17.238445484508887,17.123949894110783,16.97516051765286 +1987,1,18,11,0,0,101,10.5,101.0,54.80532974244964,63.44109529347078,151.1387586074791,0.0,31.440945167145347,100.03197319352282,1.0,31.440945167145347,61.631572632956946,1.5,0.59999999999999998,4.5999999999999996,92.846186328317188,94.223903356676374,95.031853602245747,94.891981638241717,94.787283847592704,94.735585823080953,18.381119765918228,18.329651696354318,18.292015300485666,18.234729248147314,18.12229129187725,17.976852960510787 +1987,1,18,12,0,6,130,11.5,133.07999777845072,49.43038677917628,59.11390712162781,166.38786246462965,0.0,40.660102039807654,133.27454187785312,1.0,40.660102039807654,81.27688104981722,1.3917983838720764,1.1000000000000001,3.6000000000000001,124.04001603455318,125.78344082693434,126.80550839229606,126.64334900473443,126.52313915716951,126.46253666753702,23.805817860566929,23.715623024093905,23.643514262095294,23.561336056097115,23.417275478490737,23.239305074174968 +1987,1,18,13,0,2,219,12.5,220.06037953395406,47.9953884754947,57.981722486296455,182.8115199056228,0.0,65.487928115341774,223.68035046915196,1.0,65.487928115341774,134.6005095133043,1.3594456529089611,1.7,3.1000000000000001,208.855565538701,211.58004568773515,213.17650366517975,212.97410900153275,212.828148999012,212.75023399431063,38.413392614683517,38.223438492782535,38.061403527009119,37.915448508069822,37.694488983986481,37.427517526211773 +1987,1,18,14,0,2,204,13.5,204.99305827613307,50.837718579520875,60.22936592986046,198.98230711832312,0.0,61.111902917986875,208.35273998702931,1.0,61.111902917986875,125.35483919334825,1.424974998002885,1.7,4.5999999999999996,194.38197578636266,196.92977732862474,198.42264359370648,198.22392638612811,198.0797883648253,198.0037608634606,35.858071678268637,35.697568556372346,35.545525806856688,35.396056509544209,35.17077406481112,34.907831072749744 +1987,1,18,15,0,3,190,14.5,191.24400332645254,57.32016165965373,65.50160353216849,213.62491702050178,0.0,56.092523936298193,195.93851440718404,1.0,56.092523936298193,116.94171932793604,1.5,1.7,4.0999999999999996,182.43980222273115,184.77511409133166,186.14340210110714,185.95477833766444,185.81753327463656,185.7458024513524,32.902712576323552,32.825848363245598,32.715567868464895,32.553775672553094,32.308609625215063,32.023780033493694 +1987,1,18,16,0,1,78,15.5,78.290287973728326,66.37145560500814,73.12480262704878,226.24122120543987,0.0,24.094809939384277,77.987133451807622,1.0,24.094809939384277,47.749830946143035,1.5,1.7,4.5999999999999996,72.243529945912073,73.299847348020364,73.919328541012192,73.80211999413963,73.713739377180929,73.670763890541267,14.067418659832882,14.033909026617231,14.01536676574958,13.97804612552245,13.892878588049397,13.778923688648529 +1987,1,18,17,0,1,34,16.5,34.13249554420063,77.04398747729107,82.38617582981567,237.00852367710107,0.11355608997915993,10.620820723399621,33.835593896458313,1.0,10.620820723399621,20.794873986684852,1.5,1.7,4.0999999999999996,30.954545134462151,31.741015261347659,32.016484957876301,31.957637904572156,31.912872147241064,31.89151470296024,6.2029192276394829,6.1849717568537228,6.1745855342948008,6.1556777923361663,6.1168997214729588,6.0680120017365891 +1987,1,18,18,0,0,4,17.5,4.0,83.89063680205933,88.41238758555473,242.87487199658156,0.6095121171784095,1.2580161601596718,3.9696155043571966,1.0,1.2580161601596718,0.030384465632859792,1.5,1.7,2.6000000000000001,3.6506447710490395,3.7063002592058569,3.7389444704190598,3.7513411714434151,3.7617204932184514,3.7656939192204715,0.73799529596608326,0.73843264918682483,0.73720679937960898,0.73823918457844262,0.73767623700809526,0.73190376875574437 +1987,1,19,8,0,0,11,7.5,11.0,82.0534820954215,86.7726673883378,118.53003154322302,0.38916821511679117,3.4595444404390974,10.806740073013517,1.0,3.4595444404390974,6.6902437166947122,1.5,2.7999999999999998,3.6000000000000001,10.039273120384857,10.192325712816103,10.282097293652409,10.259160691332648,10.241527863564881,10.23330573930159,2.0198569761765346,2.0135116131900914,2.0101287066843541,2.0033350741043678,1.9899240265662042,1.9740030311832562 +1987,1,19,9,0,0,52,8.5,52.0,73.25867386191287,79.04844886769003,126.3120301787245,0.01070296630001682,16.030230785538869,51.727240647607189,1.0,16.030230785538869,31.696405231952827,1.5,2.7999999999999998,4.5999999999999996,47.713464024550738,48.506837688574741,48.922437274821753,48.838202368130688,48.774348345092832,48.743652413415447,9.3629634999539366,9.336483952903972,9.3208046529650641,9.2930340457085627,9.2354423444304246,9.161632630919307 +1987,1,19,10,0,0,91,9.5,91.0,63.005471733210705,70.22863699531116,137.65445230824213,0.0,28.060448093510711,90.555323691307393,1.0,28.060448093510711,55.515789805146596,1.5,3.2999999999999998,3.6000000000000001,83.976191672546463,85.203975704254233,85.923979903009226,85.792742530403984,85.694081984509708,85.645794258984708,16.392552801508863,16.35584565277497,16.330856465192277,16.2820792612786,16.178737489968505,16.043521908991604 +1987,1,19,11,0,1,137,10.5,137.44963674160374,54.66030411863135,63.27961994150467,150.9692947925887,0.0,41.956964850412902,137.72605729996408,1.0,41.956964850412902,83.940583883114016,1.5,4.4000000000000004,3.1000000000000001,128.04916504604421,129.85336324325232,130.91105901637971,130.74193764303243,130.61647588225566,130.55336449573639,24.565649392338589,24.489583588646418,24.420334565136727,24.32900021979243,24.170928559479538,23.976385040149786 +1987,1,19,12,0,1,148,11.5,148.5161910342371,49.24574533516936,58.9229013521447,166.25675519669727,0.0,45.477874851759793,148.54548547293001,1.0,45.477874851759793,90.721490053239179,1.376393857817615,3.8999999999999999,5.2000000000000002,138.19357001582065,140.14841212891136,141.29447943932104,141.11988453881142,140.99091092186475,140.92540845615193,26.621816538642413,26.523054828516933,26.445503362304002,26.358044261421799,26.200802954309676,26.002100098843609 +1987,1,19,13,0,1,150,12.5,150.53333305963801,47.78203036382845,57.76906590272944,182.7369823561128,0.0,46.197330727758832,150.48844627963837,1.0,46.197330727758832,91.95908037677377,1.3441763505540947,3.2999999999999998,6.7000000000000002,140.00929994511267,141.99276547488583,143.15560936698836,142.98060070331493,142.85148615464848,142.78573598977388,27.041950349646413,26.938955865425854,26.859593680366132,26.772437729337362,26.615860396171563,26.4157392693097 +1987,1,19,14,0,1,138,13.5,138.49988452852335,50.615775186429524,60.007639237397036,198.9695419827146,0.0,42.530199748116068,138.32311160735898,1.0,42.530199748116068,84.585633650617353,1.4078188121570543,3.2999999999999998,4.5999999999999996,128.62384765632984,130.4576931404867,131.53285993589446,131.36427238316855,131.23936136752303,131.17632292855777,24.893230279508387,24.805651789358965,24.735929211280524,24.653146379676791,24.503105227970334,24.314032037655394 +1987,1,19,15,0,1,206,14.5,206.41814719087103,57.10638873755187,65.28233294458173,213.6639110132934,0.0,60.421612225339615,212.15475165255873,1.0,60.421612225339615,126.26116248643672,1.5,3.2999999999999998,2.6000000000000001,197.62434542839387,200.11339423630497,201.57145971676411,201.3810954180021,201.24368044104372,201.17069924794609,35.474335602502983,35.382298680259453,35.244073537954236,35.057694096011204,34.787904254555066,34.481773833859549 +1987,1,19,16,0,0,122,15.5,122.0,66.1734227839964,72.91487408169031,226.31683577845735,0.0,36.053686474699283,124.41675605752447,1.0,36.053686474699283,74.512067592524929,1.5,3.8999999999999999,4.5999999999999996,114.94834371134783,116.49431561873199,117.40060621920182,117.25123053982112,117.13998018112669,117.08442761608923,21.030677567891008,21.004715744519618,20.993994206923251,20.950093832762111,20.821781745195395,20.639524396058917 +1987,1,19,17,0,0,53,16.5,53.0,76.86439913264316,82.18947952086513,237.10900178922066,0.10301225998766185,15.673755740510163,54.43154044897021,1.0,15.673755740510163,32.328918950397039,1.5,3.8999999999999999,3.1000000000000001,46.901207730919047,50.087939139368089,50.493525936533771,50.414851753263022,50.355403523482636,50.326628430697028,9.1553370924764046,9.129944258443512,9.1145960785198703,9.0880342887228114,9.0324156332988679,8.9601333848856228 +1987,1,19,18,0,0,6,17.5,6.0,83.83463239400086,88.32499137186507,243.06988996994664,0.5917502069014143,1.8870242402395072,5.9544232565357946,1.0,1.8870242402395072,0.045576698449289688,1.5,3.8999999999999999,5.7000000000000002,5.4759671565735619,5.5594503888087878,5.6084167056285912,5.6270117571651239,5.6425807398276779,5.6485408788307101,1.1069929439491251,1.1076489737802371,1.1058101990694131,1.1073587768676634,1.1065143555121439,1.0978556531336165 +1987,1,20,8,0,29,27,7.5,28.656332198962751,82.0449202808522,86.72577529101567,118.2847333906879,0.3809652987179514,7.4162091173370603,33.068336570875445,1.0,7.4162091173370603,17.799902246146406,1.5,-0.59999999999999998,2.1000000000000001,21.370109942575301,21.695904324817135,25.730995877813452,27.338233008746659,27.396152775437461,27.418221559720866,4.3498516049591416,4.351913115427017,4.3446530796571547,4.3500011399777003,4.3457097975167649,4.3114686607686554 +1987,1,20,9,0,233,76,8.5,120.70185964126512,73.17934758743797,78.93902932988757,126.11073568648622,0.005517523147000991,19.567890772763086,152.44367748583517,1.0,19.567890772763086,75.33665789864159,1.5,1.1000000000000001,2.1000000000000001,126.72471838218358,130.02875261794603,130.51561324322148,130.91804035171981,131.24920310568874,131.38138964876782,11.513542322694541,11.548353355767,11.52883249959398,11.579437999722725,11.612256041478725,11.5194686859556 +1987,1,20,10,0,239,118,9.5,199.38464460695744,62.89304348476319,70.09134859853727,137.46323462181275,0.0,41.216097985612009,238.41474960549664,1.0,41.216097985612009,124.44558005716621,1.5,3.8999999999999999,4.5999999999999996,219.01252392367638,220.23694215946043,220.94898087105031,221.6051575718067,222.14715105620829,222.36127712728086,24.285550321643555,24.64232372831264,24.683283759933104,24.601826302732881,24.355359986164103,23.90674211243568 +1987,1,20,11,0,504,139,10.5,366.93696615782119,54.50881873417004,63.11148841925498,150.79919796140948,0.0,72.171384771918596,450.93494157464568,1.0,72.171384771918596,229.40150829769397,1.5,4.4000000000000004,5.7000000000000002,428.56943803248197,429.75767334279743,430.43370156104527,431.73360970685729,432.80879926234786,433.23370806637024,44.389321651359403,43.852763903157317,42.659605459639728,41.797639040191669,41.246216854149843,40.923983782948781 +1987,1,20,12,0,11,193,11.5,198.71055788077265,49.054545255731874,58.725308968533255,166.12672673312184,0.0,59.253810205297434,202.13245150104942,1.0,59.253810205297434,121.50390838441531,1.3606758100879723,5.0,5.2000000000000002,188.76751323695265,191.21830841197618,192.65424274909242,192.45768818960298,192.31477220078753,192.23975643092695,34.769235354042642,34.588787708750338,34.433069741456698,34.291923033329837,34.085403253554993,33.845165470374475 +1987,1,20,13,0,20,228,12.5,238.73119013709425,47.56257494670761,57.55026473891722,182.665594321919,0.0,69.891587852244044,245.27843930576825,1.0,69.891587852244044,146.07729179060607,1.3286405959817515,5.0,3.6000000000000001,229.69614930377304,232.51489803934919,234.16581556613698,233.96150110705361,233.81525691452006,233.73597115929076,41.053761787280578,40.792241537241409,40.574995163158754,40.401081499079687,40.173486894585139,39.91171929994254 +1987,1,20,14,0,332,174,13.5,341.09975765698431,50.38885214885988,59.78060218022771,198.9617341967188,0.0,73.424180717204493,402.33107014285338,1.0,73.424180717204493,212.48264270313931,1.3904275870586504,5.5999999999999996,1.5,383.96404581847406,385.64160751443274,386.61076397317652,387.5688480511152,388.36608076931748,388.67572411241713,44.480803604848063,43.691541740219762,42.702294257446269,42.22165710827948,41.988537979259853,41.908714803573758 +1987,1,20,15,0,376,142,14.5,300.55476857145317,56.88901032610143,65.05878252446229,213.7089364531446,0.0,58.05509189043422,366.29994145859393,1.0,58.05509189043422,188.41696117263851,1.5,6.0999999999999996,0.0,344.46483388339783,345.71797991325548,346.43958319750129,347.69764506871616,348.73432867348629,349.14809537241621,35.381043463833578,35.349586804018365,34.668485869439955,34.1021443999959,33.677061490881769,33.265662601926458 +1987,1,20,16,0,157,109,15.5,155.68354177259275,65.97299958367793,72.70164873929879,226.3988973760032,0.0,34.901658253307453,180.25761162442799,1.0,34.901658253307453,96.572955831882453,1.5,6.7000000000000002,2.1000000000000001,163.79406765127891,165.04025372767936,165.76817067999465,166.07980636907348,166.34108785434017,166.44065360260822,20.286102795707073,20.476465072156753,20.578066048635147,20.65518970641066,20.572499249762995,20.301999822095251 +1987,1,20,17,0,152,61,16.5,82.180002731062388,76.68327647294956,81.99022044711123,237.21601181070906,0.09256384844539366,15.723976819054148,104.57003353232396,1.0,15.723976819054148,51.383493406376644,1.5,5.0,2.1000000000000001,62.529208131914032,85.896598062695958,86.293114321529004,86.602397486863339,86.857096954005328,86.958585087572871,9.2497090081309921,9.2757494121110575,9.2601861114556723,9.2986875936387641,9.322640988751898,9.2488722480563226 +1987,1,20,18,0,3,5,17.5,5.0923439426302366,83.77834297074823,88.23608198417304,243.27229156158285,0.57396147394161,1.573720671453783,5.287144751222856,1.0,1.573720671453783,0.03798058204107474,1.5,3.8999999999999999,2.1000000000000001,4.5633077627118208,4.6328771229078436,4.6736818927094683,4.7743246966002344,4.8552305555884816,4.8601970231099711,0.92319470802932468,0.92374060001646829,0.92220636352688212,0.92349446650783129,0.92278463190223092,0.9155587284783292 +1987,1,21,8,0,1,15,7.5,15.057985299173099,82.03425754342018,86.67582249504089,118.03403634166024,0.37236742867967887,4.7183144094880198,14.882747297517971,1.0,4.7183144094880198,9.166166894638069,1.5,2.2000000000000002,4.5999999999999996,13.689919021012974,13.898627101601038,14.079940554246203,14.06929929391235,14.047378655161269,14.03704733916345,2.7552333312923145,2.7469272786589407,2.7423135597625534,2.7334911323224307,2.7157451819484439,2.6940304032612934 +1987,1,21,9,0,10,87,8.5,88.938347030611013,73.09425440859305,78.8233417703075,125.90701118341454,0.00015851436893676426,24.910380348692147,92.82816764789645,1.0,24.910380348692147,54.312020285531638,1.5,2.2000000000000002,5.2000000000000002,84.283955549821002,85.391953422256393,86.034872666811282,85.922601273837003,85.838456570399543,85.797010797073298,14.552695730083526,14.514049811364691,14.489619551938816,14.449492117531543,14.363589585830368,14.248466392792933 +1987,1,21,10,0,148,157,9.5,207.74616459678577,62.774520032497406,69.94759438344344,137.27030613715345,0.0,48.83582737521612,236.44963563428601,1.0,48.83582737521612,128.81686497784963,1.5,2.2000000000000002,5.7000000000000002,217.82926722615633,219.52987047516609,220.52270259999574,220.92093220833755,221.25634536906603,221.38269467723239,28.741019977055064,28.957513155821623,28.943124901964115,28.822805370488226,28.550112419868036,28.145622119724454 +1987,1,21,11,0,358,148,10.5,310.88054736333709,54.350933858769444,62.9367646387643,150.62853130631856,0.0,64.081594787784752,376.36390021853953,1.0,64.081594787784752,194.99456640850713,1.4866718994516148,3.2999999999999998,6.2000000000000002,356.28778212755412,357.56060731068897,358.29080564793537,359.62674190310599,360.72809873990212,361.16634700221465,39.228312667940713,38.776961188438648,37.824472361565377,37.241884860243054,36.890020725664286,36.637166527368848 +1987,1,21,12,0,232,243,11.5,364.14644523063134,48.85685899146733,58.52120605707247,165.99783850270632,0.0,87.74278006069612,413.30682802200687,1.0,87.74278006069612,225.70465412609946,1.3446646020805506,3.8999999999999999,5.7000000000000002,393.23496364332271,395.70669290622152,397.143855700286,397.78879560718542,398.33600206125686,398.53851676065824,52.544608359334163,51.713187412048356,50.82801314962461,50.427962686922406,50.230815464533727,50.117203533058579 +1987,1,21,13,0,16,151,12.5,159.63787348344178,47.33710985004074,57.325408269474025,182.5974227574234,0.0,47.893712102402283,161.65706080050217,1.0,47.893712102402283,97.559163066880032,1.3128571171261658,4.4000000000000004,5.2000000000000002,150.93084461157545,152.92788169914175,154.09818085295646,153.92244078561933,153.79323689889662,153.72694627766342,28.071860223566407,27.926796395510006,27.815693673040755,27.713220119253535,27.554503262821868,27.363204738563908 +1987,1,21,14,0,263,235,13.5,368.29128310758949,50.15705728656928,59.54835796228289,198.95894791088114,0.0,83.660953819981515,425.94788150106837,1.0,83.660953819981515,229.56551335431237,1.3728213014781256,4.4000000000000004,3.6000000000000001,404.75546030101191,406.96385645453262,408.24539411361837,409.34444807584714,410.25841874024786,410.61394657236929,50.381642197605025,49.607067292605407,48.660497761577382,48.263621802954148,48.091337509661223,47.981646535592084 +1987,1,21,15,0,94,154,14.5,193.9771323685614,56.66814732425054,64.83106511054835,213.76003715614206,0.0,49.250107301180989,215.22812959461942,1.0,49.250107301180989,120.5217238606225,1.5,5.0,2.6000000000000001,200.8637715371562,202.56168817700834,203.55264144081886,204.01234078851982,204.39875554344661,204.54567028370928,29.342709321945293,29.275008393477009,28.980689687667038,28.756808866034138,28.544325505478248,28.280281250662554 +1987,1,21,16,0,79,121,15.5,144.77516523219208,65.77030644370824,72.48524111041601,226.4874203690145,0.0,36.948622025115945,158.57958082818826,1.0,36.948622025115945,89.109900751878257,1.5,5.0,2.6000000000000001,145.27508311847595,146.72789656241994,147.57814605150986,147.6314824402412,147.68437760543284,147.6968350914222,21.535157490691574,21.623834808723025,21.660789914037903,21.654141552407626,21.518862080188775,21.277171997750948 +1987,1,21,17,0,5,53,16.5,53.714137091047377,76.50073213878365,81.78851004053487,237.3295395477165,0.08221546530984457,15.789541352574705,55.243656941164403,1.0,15.789541352574705,32.764404316003215,1.5,4.4000000000000004,2.1000000000000001,47.927826279885458,50.810893043643098,51.219360680148782,51.139449402712629,51.079030913280512,51.049823008441741,9.2228531236600677,9.1971873566902094,9.1817229201334403,9.1548493915717355,9.0986722424670994,9.0258380001815706 +1987,1,21,18,0,0,5,17.5,5.0,83.72182297859145,88.14572223657154,243.48198891023603,0.5561602878918557,1.5725202001995897,4.9620193804464954,1.0,1.5725202001995897,0.03798058204107474,1.5,3.2999999999999998,1.5,4.563305963811298,4.6328753240073217,4.6736805880238252,4.6891764643042677,4.7021506165230633,4.7071173990255888,0.92249411995760355,0.92304081148353057,0.92150849922451117,0.92279898072305289,0.9220952962601191,0.91487971094468068 +1987,1,22,8,0,1,11,7.5,11.058908851118082,82.0214878767903,86.62281625080307,117.77806107735904,0.3633848484053353,3.4603102555036314,10.945416485620267,1.0,3.4603102555036314,6.7260870368005428,1.5,-0.59999999999999998,6.7000000000000002,10.039274267955125,10.192326860386373,10.345305511123497,10.336130308887698,10.318382338326238,10.310112263725001,2.0202798881573298,2.0139151934784132,2.0105310299779866,2.0037118603239183,1.9902673084094296,1.9743396143402918 +1987,1,22,9,0,5,90,8.5,90.979608906159029,73.0034222616141,78.70142348904642,125.70094340423067,0.0,25.727633827545514,94.625862582026343,1.0,25.727633827545514,55.560033227705887,1.5,0.0,9.3000000000000007,86.03729184017341,87.165486514982788,87.82713191013012,87.712976912430136,87.627531390170574,87.585329068533412,15.033471145404695,14.990649520974898,14.963300490089877,14.9208994356399,14.832524244173067,14.715061946363566 +1987,1,22,10,0,1,146,9.5,146.34534032674301,62.64994941330977,69.7974280449247,137.07573868630658,0.0,43.386555437538235,149.16575215071543,1.0,43.386555437538235,89.416835659944098,1.5,-0.59999999999999998,7.7000000000000002,138.28625281212712,140.12186838555064,141.19769331732152,141.03034314883811,140.90658638274664,140.84386831714636,25.3780010913949,25.350221370834042,25.308663661019843,25.213630796857608,25.026835018492143,24.795890521204502 +1987,1,22,11,0,2,175,10.5,175.9155766685536,54.186712778234174,62.755515416045874,150.45735563816675,0.0,52.840088601189748,178.10399390522997,1.0,52.840088601189748,107.51844541649778,1.4677890067125015,-0.59999999999999998,7.7000000000000002,165.87170864465685,168.09410648608136,169.39644252431566,169.20760526265269,169.06920172353446,168.99778357736076,30.988993426860393,30.867761712663832,30.7493205575743,30.619214373845562,30.416735488648747,30.179262103435409 +1987,1,22,12,0,3,256,11.5,257.57593954565817,48.65276140470183,58.310671103527405,165.87014967944316,0.0,75.733059428839084,264.06896481066434,1.0,75.733059428839084,157.65499249134419,1.3283804184458283,0.0,7.7000000000000002,247.00378305440458,250.07647204006108,251.87629654433124,251.67345136451357,251.52998635977502,251.45031262245192,44.474444391271355,44.204776501077468,43.979379001643032,43.799462798024301,43.557412241665972,43.269775132422112 +1987,1,22,13,0,3,142,12.5,143.62976127870721,47.10572469447053,57.09458773492956,182.53253280583,0.0,44.15890675147994,143.51747053136802,1.0,44.15890675147994,87.73577413859428,1.2968443515210746,-0.59999999999999998,9.3000000000000007,133.53381704359592,135.42681748632069,136.53663391501516,136.36753348414288,136.2426447939298,136.17918221905205,25.840785907278075,25.738030230268226,25.66415622463574,25.585127694477691,25.440778648138714,25.253210605832262 +1987,1,22,14,0,1,145,13.5,145.51037765818012,49.92050018754265,59.311011362416245,198.96124547529533,0.0,44.666671978327869,145.44772105812959,1.0,44.666671978327869,88.879862485093383,1.3550194360765238,-0.59999999999999998,7.2000000000000002,135.28779104640418,137.20612323565103,138.33078687330712,138.15785736645194,138.03000863210445,137.96518839629786,26.144879848792648,26.045151076563606,25.968749339458515,25.884033301315927,25.731916672417139,25.538303164335172 +1987,1,22,15,0,1,126,14.5,126.42894625523419,56.44392179537658,64.59929457439821,213.81725454494008,0.0,38.717591941918066,126.4491184616557,1.0,38.717591941918066,77.192379730102758,1.5,-1.1000000000000001,7.7000000000000002,117.49041091001303,119.1605649473984,120.13973674814265,119.97823039576009,119.85804029333514,119.79797865198671,22.662402920037596,22.59470761282353,22.534594169422537,22.451651834001755,22.305811245428036,22.125123310812576 +1987,1,22,16,0,0,82,15.5,82.0,65.56546402084287,72.26576603126738,226.58241614389016,0.0,25.301857571496601,81.557306298418524,1.0,25.301857571496601,50.015270730494485,1.5,-1.1000000000000001,7.2000000000000002,75.578563567108716,76.687609674223637,77.338002885176365,77.216328667935471,77.124659079914053,77.080002308242726,14.776354644998923,14.742759395396758,14.721712816943578,14.679927909626945,14.587948654052788,14.467246657485646 +1987,1,22,17,0,0,61,16.5,61.0,76.31687808815884,81.58445936012497,237.4495675669852,0.07197109296975852,17.806310594416953,62.936052082687482,1.0,17.806310594416953,37.22097826127726,1.5,-1.1000000000000001,6.2000000000000002,54.62961845084893,57.793451585188976,58.253940104217648,58.167380208351133,58.102125778066096,58.070382031227879,10.401464562764092,10.372993456587427,10.355550903048297,10.325839680846158,10.26321259647556,10.181055238796928 +1987,1,22,18,0,0,8,17.5,8.0,83.6651269618865,88.05397549186063,243.6988912556488,0.5383600280125056,2.5160323203193435,7.9392310087143931,1.0,2.5160323203193435,0.060768931265719583,1.5,-1.1000000000000001,6.2000000000000002,7.301289542098079,7.4126005184117139,7.4778889408381195,7.5026823428868301,7.5234409864369027,7.531387838440943,1.4759905919321665,1.4768652983736497,1.474413598759218,1.4764783691568852,1.4753524740161905,1.4638075375114887 +1987,1,23,8,0,37,31,7.5,33.215759449917556,82.0066069764138,86.56676570020507,117.51692840467832,0.35402859550728305,8.3718933832736599,38.820587041208341,1.0,8.3718933832736599,20.616169760311948,1.5,-1.7,4.5999999999999996,24.091650660058995,24.458935572930269,30.758360311688477,31.695059402293591,31.757355846695599,31.780988299202065,4.9097334768037548,4.9115597433667855,4.9033563824362627,4.9087375821254549,4.9030716712038913,4.8643704247294357 +1987,1,23,9,0,247,89,8.5,137.93412423906184,72.90688286259955,78.57331547903549,125.49261745162113,0.0,23.985993895509459,171.9814050490674,1.0,23.985993895509459,86.027738697237709,1.5,-1.1000000000000001,6.2000000000000002,146.48738930945319,147.44878596130894,148.01186930899274,148.44886382123605,148.80926090313574,148.95236365205875,14.134485141273466,14.125395944230632,14.070491699665268,14.114374469370775,14.154351668712483,14.058978157791403 +1987,1,23,10,0,639,110,9.5,332.3098774536428,62.51938311962747,69.640906593543,136.8796019672812,0.0,54.231431070554514,421.57395170245007,1.0,54.231431070554514,208.19811399171491,1.5,-1.1000000000000001,7.2000000000000002,387.9678125679178,388.96558738784785,389.5369903720707,390.87379774279663,391.97089231053286,392.41175364945434,32.498800943090771,33.157216511274854,33.05128318075915,32.684515192971148,32.081108585360319,31.327495120100398 +1987,1,23,11,0,622,185,10.5,471.55446667219422,54.01622174802594,62.56781041407114,150.2857293258812,0.0,94.014189841721972,573.25070131220809,1.0,94.014189841721972,293.98596964766659,1.4485799266773585,-0.59999999999999998,7.7000000000000002,545.80946625301158,547.45076997066644,548.38799170714435,549.77316856584059,550.92348153223998,551.37289674512976,57.621841709842379,56.647675614210321,55.06009013657966,54.100297230225486,53.534019097313042,53.279433707246945 +1987,1,23,12,0,7,347,11.5,350.69971295768914,48.44232971227389,58.09378492737917,165.74371713931754,0.0,100.05198638520764,366.95987867724671,1.0,100.05198638520764,215.00800006112078,1.3118432152790094,-1.1000000000000001,9.3000000000000007,344.7862916365512,348.59983709329668,350.83142097555486,350.66749630569086,350.56240619028114,350.49192345913838,58.911746679557233,58.41363157465026,57.994901221875246,57.728121015127989,57.441033350572191,57.129160492743004 +1987,1,23,13,0,679,182,12.5,553.22112141265143,46.86851103264685,56.85789627004051,182.47098777764154,0.0,114.04346121170892,671.86965037377684,1.0,114.04346121170892,345.72001051750931,1.280620408209474,-1.1000000000000001,10.800000000000001,648.90424714662527,650.36264253544869,651.18875794905478,653.08566764253055,654.6551452648705,655.2725875587812,69.0792362081352,66.958541816190348,65.106616986367058,64.636050200918675,64.92564584145758,65.323204203955797 +1987,1,23,14,0,975,68,13.5,569.16013537114191,49.679292141668505,59.06866865728783,198.96868742176918,0.0,103.25618232794392,711.40982593478941,1.0,103.25618232794392,353.84178517181203,1.3370409447270335,-2.2000000000000002,10.300000000000001,690.06339499543344,690.64298286799828,690.94800522616595,692.21980508794104,693.28079561385255,693.6898698801881,63.59035895234824,61.213736820652954,58.93932101423151,57.893313499054024,57.746070191089096,58.143221295601876 +1987,1,23,15,0,357,181,14.5,335.45919877967947,56.216456881727424,64.36358573403146,213.88062762568055,0.0,71.592582420225966,396.75958936930635,1.0,71.592582420225966,208.84996797643362,1.5,-2.2000000000000002,10.800000000000001,373.97306717137201,375.75348151084495,376.78330148823585,377.68823334457107,378.44259598006653,378.73523692519313,43.385508993277782,43.022750667878725,42.177408518709612,41.551206849728096,41.113579901416998,40.771615144307809 +1987,1,23,16,0,249,147,15.5,223.76608402555351,65.35859308632935,72.0433385689979,226.68389309283688,0.0,47.000972131932258,265.60174353361077,1.0,47.000972131932258,139.49668380024892,1.5,-2.7999999999999998,11.300000000000001,241.14106200182701,242.65092332451894,243.53054999912612,244.21311483654648,244.7777023993865,244.99999141713255,27.47457119021982,27.872533273556297,28.006932284284879,28.033466987994402,27.837992784602822,27.371188357756839 +1987,1,23,17,0,369,53,16.5,108.31749079759564,76.13182547354369,81.37817897637812,237.5760752160007,0.06183413015968082,13.199077554102127,151.01514643273836,1.0,13.199077554102127,67.980718821521393,1.5,-3.2999999999999998,10.800000000000001,87.891942451127122,119.22501953274707,119.54380427566829,120.03084169004381,120.42878538346129,120.59034082361848,7.8021238954162593,7.8542621536381381,7.840910998635465,7.9110673104044027,7.9771186939656893,7.9132491786769137 +1987,1,23,18,0,56,12,17.5,13.992558471010881,83.60830936540901,87.96090546251814,243.92290506695772,0.5205730888674759,3.7999517406021592,18.143035820536589,1.0,3.7999517406021592,0.091153396898579375,1.5,-4.4000000000000004,8.8000000000000007,10.951973129060482,11.118939593530932,11.216861563211275,13.875610503632529,14.275921036345498,14.287834517824182,2.2291028804939197,2.2303976880470184,2.2266786183934459,2.2297244513450205,2.2279029034611217,2.2103628589311035 +1987,1,24,8,0,155,17,7.5,26.441780661243506,81.98961230993581,86.50768193852336,117.25075911533352,0.34431046503596474,3.9089856192367747,42.378961692784642,1.0,3.9089856192367747,17.045164233002122,1.5,-10.6,5.7000000000000002,10.852871706173127,11.018324058456745,26.602617854895442,27.97340457189582,28.200237607560567,28.293276713495825,2.3335018591281531,2.3667245132702881,2.3628593286003778,2.4064757675284976,2.4542836414364175,2.4358675594241683 +1987,1,24,9,0,397,66,8.5,145.56278266241191,72.80467169345877,78.43906240049208,125.28211670424332,0.0,17.076676726818114,194.01259831732403,1.0,17.076676726818114,91.280587650293427,1.5,-7.2000000000000002,5.7000000000000002,161.88145491213373,162.53731424663377,162.92115645446435,163.54638214600391,164.05732167440902,164.26465863213213,10.10230554651463,10.144334293181494,10.10746756830517,10.196389442383147,10.292108743732538,10.222198417506156 +1987,1,24,10,0,203,236,9.5,307.16480372800316,62.382876061317035,69.47809030709655,136.68196347313352,0.0,70.637492902379961,352.77156824971144,1.0,70.637492902379961,189.9467070001825,1.5,-6.0999999999999996,5.7000000000000002,326.06086957854234,328.36120644275695,329.70236846599624,330.10076551581835,330.44281736377354,330.56612227367896,41.78390324932014,42.038910670622542,41.897181680479328,41.54243091888879,41.008848644768506,40.410162587525669 +1987,1,24,11,0,4,275,10.5,276.85480972551665,53.83952994531091,62.37372208412086,150.1137082390859,0.0,79.27518539219858,287.78243456642747,1.0,79.27518539219858,169.56006805949377,1.429070583054303,-3.8999999999999999,5.2000000000000002,269.14371779622178,272.28922459260758,274.13065728933958,273.94441019766765,273.81553103011254,273.74081433863279,46.67404360367744,46.397764032050318,46.106024208223992,45.858349523950729,45.54891902163407,45.226443377045449 +1987,1,24,12,0,15,299,11.5,306.97749107000783,48.225643427401195,57.87063061511963,165.61859541969903,0.0,88.684041997189482,318.67807709526181,1.0,88.684041997189482,188.05140842025256,1.2950726718871337,-2.2000000000000002,5.2000000000000002,299.01736213619182,302.47046081267877,304.49192209370494,304.29902195756495,304.16725678464923,304.08884030860503,52.137449059566947,51.731230626804255,51.406246385966753,51.196395621134513,50.943391539402455,50.656254968733066 +1987,1,24,13,0,101,293,12.5,348.57584681191213,46.62556228611664,56.61542883175839,182.41284913165745,0.0,92.579795261536987,379.05726894030033,1.0,92.579795261536987,215.04326107316825,1.2642030331306606,-1.1000000000000001,5.2000000000000002,358.83602843202726,361.91156673730313,363.7073507667169,363.9920139280091,364.24841867156277,364.32941566056638,54.737044555376428,54.031075640863122,53.465368975557915,53.272899860599885,53.187470988822319,53.031314602841874 +1987,1,24,14,0,888,85,13.5,544.72375710712345,49.43354607437715,58.821437544362176,198.9813324477443,0.0,99.204519236497873,679.52051120342242,1.0,99.204519236497873,339.3802881235045,1.318904229892822,0.59999999999999998,4.0999999999999996,658.55111597821474,659.14224528362467,659.4564038652386,660.93290876042988,662.15826635420797,662.6367628423244,60.935569600558814,58.667079260738845,56.565866393918554,55.722248710094227,55.702108367655441,56.151270507174395 +1987,1,24,15,0,797,82,14.5,429.83000131021504,55.98587671856355,64.12405426799022,213.95019296603488,0.0,76.275405746512376,543.32820780954683,1.0,76.275405746512376,268.47480701529298,1.4919372081607487,1.1000000000000001,3.6000000000000001,516.80660870028998,517.44968599823324,517.79826289281527,519.20849946942724,520.37500037006157,520.83583807037564,47.509187308930976,46.631733371602422,45.001094287761191,43.856313880909759,43.137885114893699,42.859436020882008 +1987,1,24,16,0,659,67,15.5,272.63121968005299,65.14981442362424,71.81807392796728,226.79185660565074,0.0,38.279156493145813,357.45960806123179,1.0,38.279156493145813,170.71413113271598,1.5,2.7999999999999998,7.7000000000000002,323.15238658432395,323.68948781491343,323.9923778976106,325.04837321175728,325.91228849630858,326.26127505099828,22.439094128428941,23.2165968519028,23.486064229179711,23.455804752233284,23.086016331518731,22.402342058246685 +1987,1,24,17,0,437,53,16.5,120.08258710897175,75.94568452345959,81.16977886079212,237.70903864478396,0.05180743445958989,13.563455300687297,168.59987357055337,1.0,13.563455300687297,75.726020411402928,1.5,2.7999999999999998,6.2000000000000002,102.35648949856898,132.69032544625878,133.01477396332655,133.68084512045152,134.2238536922907,134.44547140090677,8.0453171760659217,8.120851682305652,8.1070917403769798,8.2070262249452632,8.3090428066912185,8.2430699665912375 +1987,1,24,18,0,31,10,17.5,11.154026739434686,83.5514243527776,87.86657602787415,244.1539341699466,0.5028108940078384,3.16004274801183,13.405692577411994,1.0,3.16004274801183,0.075961164082149479,1.5,-1.1000000000000001,4.0999999999999996,9.1266344085698687,9.2657731289619143,9.3473774807675625,11.03052669684941,11.084817326644746,11.094746955316463,1.8537435230996395,1.8548269142764582,1.8517382425555045,1.8542894811026207,1.8528052535449158,1.8382451370110673 +1987,1,25,8,0,4,19,7.5,19.247986328190816,81.97050318264392,86.44557807131233,116.97967385069778,0.33424296778101625,5.9307294622521347,19.339530945756195,1.0,5.9307294622521347,11.724601756124773,1.5,-6.7000000000000002,3.6000000000000001,17.196845912036654,17.459018356550274,18.062750114604398,18.031234242269537,18.005326177686943,17.99302243185609,3.4635545293228409,3.4533843535311859,3.4475831796171517,3.4368329333188745,3.4149401408500859,3.3876322874048275 +1987,1,25,9,0,6,122,8.5,123.21685579196883,72.69682798344454,78.29871255098519,125.06952272883757,0.0,32.925538122126362,131.42257584821229,1.0,32.925538122126362,75.349683268531038,1.5,-6.7000000000000002,3.1000000000000001,118.46681768576721,119.89349561288755,120.73006344528567,120.60858407745836,120.51918715082958,120.47343107173785,19.240951245323007,19.180224937626591,19.143620490383505,19.097065603490829,18.996145592261509,18.84946533374686 +1987,1,25,10,0,10,188,9.5,191.53327203359183,62.24048652513328,69.30904267971164,136.4828884248039,0.0,54.64788373635789,199.02362316117598,1.0,54.64788373635789,117.16565761425262,1.5,-6.7000000000000002,4.0999999999999996,184.56790346032324,186.8080213432726,188.12021143532908,187.94479428947255,187.81772663315863,187.75065257076457,32.040137757038686,32.01127987998423,31.928153235202807,31.7695015630194,31.502380939174444,31.19644808277544 +1987,1,25,11,0,4,214,10.5,215.86719364707693,53.65670941961934,62.173325605645466,149.9413456937585,0.0,63.643679213747333,220.70728406290564,1.0,63.643679213747333,132.04275507691321,1.4092865677870856,-6.0999999999999996,3.6000000000000001,205.92508693549695,208.54367241054683,210.0776869866533,209.87975957282299,209.73697993021148,209.66081283615546,37.372976973479091,37.184399641325683,37.005935554062496,36.842745350505425,36.606465514821892,36.340846852198659 +1987,1,25,12,0,11,273,11.5,278.88739957378317,48.002784300746406,57.64129345275313,165.49483668127374,0.0,81.526152803881217,287.4000575277085,1.0,81.526152803881217,170.75997039257757,1.2780881462207607,-5.5999999999999996,4.5999999999999996,269.26758968581981,272.50427400940504,274.39969890972554,274.19833997701267,274.05769520767342,273.97757615564683,47.867552137893981,47.529457411261397,47.270182866922504,47.095694004087278,46.868758133520608,46.588792857986405 +1987,1,25,13,0,2,335,12.5,336.10773417169406,46.37697368193362,56.36728212697395,182.35817645839063,0.0,97.051486811947498,348.65302056521779,1.0,97.051486811947498,205.98890434167163,1.2476095779657128,-5.5999999999999996,4.5999999999999996,327.29012332953232,331.06568980848033,333.27618250922035,333.09749276823294,332.97957818742532,332.90464901623665,56.987184587220987,56.535154537828326,56.210346452072031,56.029051551465727,55.811967740067523,55.508236082262684 +1987,1,25,14,0,2,266,13.5,267.0429300219306,49.18337648029703,58.56942706510666,198.99923740180915,0.0,78.228172180946842,274.18741357240509,1.0,78.228172180946842,163.4790875536782,1.3006271219121537,-5.5999999999999996,5.7000000000000002,256.52402490055277,259.68161660550226,261.5311279716891,261.33034910430399,261.18923343790652,261.10985601663725,45.922723583588109,45.632940045804297,45.399592678792857,45.227482336598307,44.992640926384205,44.709430917029863 +1987,1,25,15,0,1,252,14.5,252.4402398164714,55.75230634804239,63.88081662990158,214.02598467423311,0.0,72.851696613247086,261.53341557151492,1.0,72.851696613247086,154.55057061698909,1.4686553935086333,-6.0999999999999996,5.7000000000000002,244.12307348209939,247.04272808087589,248.75209091583142,248.56394590703144,248.4317883546027,248.35749198396746,42.876398158230572,42.661578528817884,42.414612744795697,42.180262601514144,41.876994337113707,41.556617721819983 +1987,1,25,16,0,1,170,15.5,170.31581319560519,64.93924872649515,71.59008735717423,226.9063090628188,0.0,48.802364616209992,176.69380137002162,1.0,48.802364616209992,104.15855582033872,1.5,-6.7000000000000002,4.0999999999999996,163.21382011843679,165.24012361677026,166.42726440023688,166.26283158253236,166.14280674994461,166.08025660763923,28.526595657404673,28.530054490501708,28.504309151582454,28.40474441148508,28.188666497232049,27.904998143767287 +1987,1,25,17,0,1,80,16.5,80.157134852034233,75.75856442851605,80.95936828018577,237.84843082921708,0.04189336321888897,22.394616939975691,84.37659717394753,1.0,22.394616939975691,48.956927645820649,1.5,-7.2000000000000002,5.7000000000000002,72.939139797442664,76.71267835183923,77.290595712917238,77.191920289944193,77.118101416642375,77.081599360549689,13.083359147919436,13.048915877711091,13.026951654531096,12.991255151161937,12.914490759286236,12.810985110400784 +1987,1,25,18,0,0,13,17.5,13.0,83.4945256401823,87.77105106669867,244.39187987279016,0.48508391647620874,4.0885525205189337,12.901250389160889,1.0,4.0885525205189337,0.098749513306794323,1.5,-7.7999999999999998,6.2000000000000002,11.864595505909371,12.045475842419027,12.151569528861932,12.191858807191091,12.225591602959954,12.238505237466523,2.3984847118897696,2.3999061098571808,2.3959220979837292,2.3992773498799393,2.3974477702763108,2.3786872484561714 +1987,1,26,8,0,0,30,7.5,30.0,81.94928079729917,86.38046926571259,116.70379297256349,0.32383928393414957,8.7957460893373938,30.827535777213313,1.0,8.7957460893373938,18.297022811133186,1.5,-6.7000000000000002,12.4,25.467192022828229,25.962626875909098,27.96466568518073,27.919204488305542,27.884781931690139,27.868193776897016,5.137545931533853,5.1231210791884685,5.114510485391917,5.0993878615883244,5.06791433105961,5.0273674982349901 +1987,1,26,9,0,0,102,8.5,102.0,72.58339468625887,78.15231783114963,124.85491519664053,0.0,28.867678334713439,106.07003263590643,1.0,28.867678334713439,62.310795173754229,1.5,-6.7000000000000002,12.4,96.475194688149614,97.730048450825777,98.465885470706965,98.344835544298149,98.254682890678211,98.209684023932226,16.862904545728711,16.810269099736971,16.780134292861121,16.738812183495938,16.647735159588464,16.518638568100815 +1987,1,26,10,0,0,200,9.5,200.0,62.09227613179903,69.13383036858615,136.28243970782233,0.0,57.174349498023176,207.51279947555568,1.0,57.174349498023176,122.36812464578878,1.5,-6.0999999999999996,11.300000000000001,192.45031250804763,194.79787390551874,196.17304087084747,195.99829084269274,195.87251848652903,195.80530184378631,33.537564299131986,33.494164951601455,33.396930351046315,33.226039717461802,32.950795935319881,32.638861830879257 +1987,1,26,11,0,1,311,10.5,311.46998466598046,53.4678350422302,61.966698824774,149.7686924009728,0.0,87.965159824947477,325.79895524692517,1.0,87.965159824947477,190.88849281869159,1.389253073152871,-5.5999999999999996,9.8000000000000007,305.08978556874467,308.51773228783281,310.52399320399007,310.35602032664457,310.24434263888861,310.17440683335496,51.832478125472868,51.476405930291598,51.119556379178377,50.845587523761864,50.517443843708314,50.188799207546985 +1987,1,26,12,0,0,334,11.5,334.0,47.77383626079819,57.405860857639254,165.37249067246543,0.0,96.323730885055781,346.83396852396521,1.0,96.323730885055781,204.70377212651022,1.2609086340235063,-6.0999999999999996,11.300000000000001,325.4756646523121,329.21521963584627,331.40445498427795,331.22881457517838,331.11314357868019,331.03933852120838,56.589256634768709,56.138780829452159,55.801532635694215,55.607497507764947,55.37468183641333,55.069455266084326 +1987,1,26,13,0,0,381,12.5,381.0,46.122842189091784,56.113554540158454,182.30702746583967,0.0,108.42086150867087,398.29586502703501,1.0,108.42086150867087,233.68035966281232,1.5,-5.5999999999999996,9.3000000000000007,374.61391868801456,378.72784502224653,381.13563238485494,380.99036469688275,380.90277445517307,380.83726179896246,63.679981867515366,63.120374471235309,62.724994649866794,62.534835699516904,62.341990116561682,62.033115589423858 +1987,1,26,14,0,1,318,13.5,318.5252823442155,48.92889935699956,58.312747528487975,199.0224572706838,0.0,92.114952903814427,330.41237574287743,1.0,92.114952903814427,195.1763623579715,1.2822268620249138,-5.0,8.8000000000000007,309.83304963367789,313.42584951900648,315.52923328030926,315.34740369050826,315.22552713920072,315.15029922015719,54.129088492793223,53.712584540565601,53.388449317933507,53.186565161840349,52.942879059745295,52.643077434349024 +1987,1,26,15,0,1,295,14.5,295.44410373181756,55.5158716328726,63.6339899636088,214.10803437894722,0.0,83.478989321190738,309.44793102860876,1.0,83.478989321190738,181.04179977645344,1.445323450923027,-3.8999999999999999,10.300000000000001,289.31127825628164,292.56661500794428,294.47164850729951,294.30355322864608,294.19063088341431,294.12132411815054,49.213782642404581,48.912191443546376,48.571333076111948,48.285800031528133,47.943703864534641,47.60082582484663 +1987,1,26,16,0,67,176,15.5,197.4151608101046,64.72701649760243,71.35949405890491,227.02724982986604,0.0,50.69660121839015,216.24155526588277,1.0,50.69660121839015,121.64550678594168,1.5,-3.8999999999999999,10.300000000000001,198.60305818227494,200.52840876258011,201.65447818036307,201.77277223432424,201.88208833864252,201.91416722806792,29.73176622146174,29.85254465951207,29.836212812735237,29.723400028722434,29.462527397606429,29.101958023044194 +1987,1,26,17,0,111,85,16.5,102.84805463145153,75.5705732317378,80.7470556956757,237.99422159580857,0.03209381278462746,21.847690313467766,121.88154301576108,1.0,21.847690313467766,63.722064269241883,1.5,-3.2999999999999998,8.8000000000000007,95.338921719841622,104.2155783617618,104.77057072100342,104.95437741464552,105.10913943309687,105.16757329063053,12.810688293452296,12.814268110545806,12.792688993862283,12.804810815370617,12.787327789325374,12.685242998081904 +1987,1,26,18,0,16,8,17.5,8.6492533148572637,83.43766634460607,87.674394304353,244.63664109001743,0.4674017049871646,2.5244726134124877,9.7677763003640568,1.0,2.5244726134124877,0.060768931265719583,1.5,-4.4000000000000004,7.2000000000000002,7.3013021898375481,7.412613166151182,7.6526095222838837,8.3959430195539859,8.4167016631040568,8.424646300534226,1.4809162981014992,1.4817853831325176,1.4793201546060835,1.481368202083029,1.4801990664178388,1.4685815851859827 +1987,1,27,8,0,103,26,7.5,32.624631516798125,81.9259483077851,86.31237279561833,116.42323644000885,0.3131132124722285,6.9121238971904893,43.391312791228586,1.0,6.9121238971904893,20.462607650864516,1.5,-12.800000000000001,5.2000000000000002,19.685255527370856,21.452646913103351,32.255598632560556,32.401898728341514,32.522236420808248,32.570322366850192,4.0679217195417712,4.0807165226771227,4.0739167729165446,4.0926569117230498,4.1054995550226145,4.07333269474125 +1987,1,27,9,0,481,71,8.5,171.00606766083905,72.46441845276746,77.99993370612887,124.63837180426634,0.0,21.382762555020591,226.94642886037866,1.0,21.382762555020591,107.61891385946916,1.5,-11.1,4.5999999999999996,189.69998884727124,190.42130217095504,190.84250715710027,191.70989074835538,192.41828730327003,192.70622419130194,12.580565466139447,12.605946349546484,12.584838827851605,12.75465090434399,12.964333830741568,12.890344899200395 +1987,1,27,10,0,619,132,9.5,354.30853705326763,61.938309790833074,68.9525231385366,136.08067781295657,0.0,65.311187586325602,440.19784895186206,1.0,65.311187586325602,221.04930049422862,1.5,-8.3000000000000007,6.2000000000000002,407.08663568885805,408.31186023036514,409.01408554691398,410.1126994801516,411.02220477745942,411.38191425102923,39.613111239707322,39.900631325673771,39.381890829997509,38.621464001594092,37.834366664641635,37.140120574448879 +1987,1,27,11,0,750,151,10.5,505.94452342103142,53.272984454416964,61.753922191628696,149.59579641870334,0.0,99.458025702454208,621.27610936627127,1.0,99.458025702454208,316.09781207064719,1.3689948292639476,-7.2000000000000002,6.2000000000000002,593.69970984835084,594.95905547210918,595.66905650076035,597.37449347585891,598.78516808348741,599.34096761582259,61.058056770927443,59.389456486064795,57.492227264761389,56.629818959666856,56.411259945215747,56.549835543262056 +1987,1,27,12,0,610,166,11.5,496.76033283390097,47.53888535368665,57.16442230981453,165.25160469629841,0.0,102.11573198235476,602.17324523723096,1.0,102.11573198235476,310.95596604640343,1.5,-6.0999999999999996,4.0999999999999996,580.66668213086473,581.9453607573131,582.67015619457766,584.55572559661755,586.11287096916055,586.72859313207482,61.585708224589496,59.639755201809066,58.102411507671135,57.901994057876486,58.429726940196247,58.852967575423939 +1987,1,27,13,0,835,129,12.5,597.68435150461551,45.86326645487573,55.85434606101092,182.25945796747914,0.0,116.26977693894852,733.65496518894588,1.0,116.26977693894852,372.79155039843619,1.5,-4.4000000000000004,4.0999999999999996,713.45117780734677,714.3029323514736,714.76990828339956,716.54158292008788,718.01172159469991,718.58651062634169,69.86540606426226,67.23183154109087,65.423303063131328,65.271219777499439,66.126659271972215,66.812396139336826 +1987,1,27,14,0,890,113,13.5,583.94940275771137,48.670232138886554,58.051510434850286,199.05104516751564,0.0,113.92232221880337,719.90796233465767,1.0,113.92232221880337,364.11875221415329,1.263720088959976,-3.2999999999999998,4.0999999999999996,697.27526778008962,698.14225526249959,698.61746642905234,700.31260090249498,701.71927005138241,702.26862039906621,69.105661598343872,66.54165046197356,64.486440970126125,64.012276463656207,64.434442657062434,65.013101852614568 +1987,1,27,15,0,866,81,14.5,468.97975248429964,55.2766991697632,63.38369201893522,214.19637120989202,0.0,82.334862424848481,589.77337401169621,1.0,82.334862424848481,292.56401376265444,1.4219601472753336,-2.7999999999999998,3.1000000000000001,562.82395314547296,563.44376901171211,563.777771096067,565.18568786528499,566.3514337010289,566.8096851564186,51.174841792982399,49.813261408319562,47.94222690627452,46.862640102922342,46.342242218810306,46.31657127047675 +1987,1,27,16,0,763,62,15.5,308.81623855790565,64.5132379476113,71.12640909866109,227.15467525284043,0.0,47.48786725890298,402.43183189293552,1.0,47.48786725890298,193.20816190398926,1.5,-3.2999999999999998,4.0999999999999996,365.73749221660165,366.26194686089434,366.55379581888531,367.6867491607232,368.61643960604533,368.9897524766136,28.467132818264705,29.246264729445368,29.215976737195572,28.800267238523805,28.096904757532172,27.289553438924976 +1987,1,27,17,0,529,39,16.5,126.01013293955678,75.38181772305118,80.53294866614876,238.14637764780923,0.022410255949832782,9.3218586895682716,181.67638910518542,1.0,9.3218586895682716,79.273379114656279,1.5,-4.4000000000000004,3.1000000000000001,125.71865150004726,141.99008259038462,142.19752621801535,142.82229588826749,143.33071034640972,143.53909764525162,5.5567879442528643,5.6310016485954399,5.621210054501546,5.7174628767383453,5.820807734219529,5.7732454931109425 +1987,1,27,18,0,58,10,17.5,12.452384582455371,83.38089884564708,87.57666917358877,244.8881144643556,0.4497729147268145,3.176921399971099,16.609600900951826,1.0,3.176921399971099,0.075961164082149479,1.5,-5.0,2.1000000000000001,9.1266597011503769,9.2657984215424225,10.33743584549476,12.663589845973764,12.689538150411353,12.699463350442834,1.8635938066346154,1.8646659562787429,1.8615502298341513,1.8640680263721461,1.8624973276746988,1.8477921383113172 +1987,1,28,8,0,94,25,7.5,31.162123591000697,81.90051086614884,86.24130808029273,116.1381236925131,0.302079116686136,6.6601716481802198,41.052855786614629,1.0,6.6601716481802198,19.556839726985864,1.5,-17.199999999999999,0.0,18.975485102731589,21.373184142012594,30.677752319639701,30.821647016022965,30.939968624959295,30.987284764020981,3.9201407042540315,3.9328556897634876,3.9263060813132933,3.9448604921420443,3.9578508126127963,3.9268695708180994 +1987,1,28,9,0,329,84,8.5,153.29225414585858,72.33994959937941,77.84161916284758,124.41996819920777,0.0,24.116073570968723,195.43665586758397,1.0,24.116073570968723,96.17596841480254,1.5,-15.0,0.0,165.47003929609252,166.3234045473813,166.82217317608257,167.50157995248861,168.05851896677598,168.28292167055901,14.107197569007608,14.136061769573693,14.127593355469596,14.298395201030019,14.439677410361559,14.360653595069477 +1987,1,28,10,0,706,87,9.5,342.70675698200614,61.77865565322581,68.76519380448678,135.8776607808919,0.0,57.128492284954639,436.51182416517508,1.0,57.128492284954639,214.43728452373207,1.5,-8.3000000000000007,0.0,403.94110186298769,404.64106217678102,405.03338344759175,406.30045745522938,407.34492191813627,407.76243697413076,35.100946992346636,35.316068974351268,34.625260883842572,33.767217331393176,33.035846079342292,32.399793588774095 +1987,1,28,11,0,625,125,10.5,422.88789060755204,53.07223801467084,61.535078696585614,149.42270310671174,0.0,82.0801651490669,520.89882495923212,1.0,82.0801651490669,264.85259265533915,1.3485360470661596,-5.5999999999999996,1.5,497.75909511013691,498.70952827751012,499.2430272002332,500.89316031209017,502.25380068585582,502.79393075606197,50.401153022245225,48.957620295871806,47.35754503384635,46.740081773790266,46.665076938355256,46.838930791336999 +1987,1,28,12,0,724,191,11.5,586.19711418220288,47.298019682547604,56.91706928292336,165.13222357963468,0.0,121.10158093478498,707.21209184730333,1.0,121.10158093478498,365.95940638006579,1.5,-2.2000000000000002,1.5,682.80913720476667,684.38017720562277,685.2728248360238,687.15348385668176,688.71248110835381,689.32339894818233,72.72000765317776,70.431101158885696,68.70761526236258,68.511921693223456,69.200509753816377,69.697101669370113 +1987,1,28,13,0,931,94,12.5,620.12158632029877,45.5983467412299,55.58975821222758,182.21552187239823,0.0,118.17286516816758,763.72765523634098,1.0,118.17286516816758,386.05488583999403,1.5,0.0,2.1000000000000001,744.81994724929132,745.44753510557803,745.78047985636942,747.35141686042266,748.66009543862845,749.16706439795757,70.817881262778286,67.958872949848839,66.137523635177146,66.084260995879049,67.056408940972432,67.825446001505171 +1987,1,28,14,0,848,120,13.5,572.05655326596934,48.40749363126828,57.785828400251745,199.0850523213386,0.0,111.21675431380702,704.66729121960361,1.0,111.21675431380702,356.77921049813654,1.5,0.0,2.1000000000000001,682.88440732025185,683.69309443801308,684.13543104456676,685.82142223776725,687.2201513694896,687.76693228200531,67.288746481125585,64.742486129289134,62.808792231467002,62.450396519770962,63.019094082173233,63.640406984669688 +1987,1,28,15,0,665,134,14.5,434.55809744845806,55.03491620270008,63.1300410681499,214.29102177902882,0.0,85.591726763158889,535.32455194321039,1.0,85.591726763158889,271.97192205745671,1.3985832703717325,0.59999999999999998,2.1000000000000001,508.71047880163093,509.8090656851071,510.4279195483158,512.06045765124225,513.40831918415972,513.9418726085039,52.712475508613622,51.440062448842077,49.77147887492476,48.962636044500783,48.632161377791775,48.64745405831119 +1987,1,28,16,0,624,118,15.5,322.27713030663534,64.2980328949126,70.89094731644086,227.28857865486367,0.0,56.980940214549747,404.09785162083836,1.0,56.980940214549747,201.08008192464044,1.5,-1.1000000000000001,2.6000000000000001,368.46281218522358,369.57429055869432,370.21231500126373,371.21867670334063,372.04916815085835,372.37870199535217,34.093160929534015,34.686915559224097,34.555608650770075,34.098229298641108,33.423484396717981,32.654203345627337 +1987,1,28,17,0,315,68,16.5,120.9811927591328,75.1924033377912,80.3171537560623,238.30486259259646,0.012843777568353377,16.867964026773375,158.78588581943541,1.0,16.867964026773375,75.947379459458929,1.5,-1.7,2.1000000000000001,122.32629873436545,129.38009394340366,129.79372569882375,130.34732863696638,130.80016741162893,130.98352280621413,9.9595358395129043,10.016979380785317,10.000050975266632,10.07834044428659,10.149041730517379,10.068308147018575 +1987,1,28,18,0,26,13,17.5,14.144105564638627,83.32427466001667,87.47793868802891,245.1461944862464,0.4322053418051698,3.8185935535679327,16.318019074927911,1.0,3.8185935535679327,8.8063176866023429,1.5,-1.7,2.1000000000000001,11.020452610020289,11.188463183886819,12.142690355848632,13.432237252806194,13.466961281614815,13.480356988120537,2.240761151930001,2.2426218281535935,2.2388885778800467,2.2426710666191636,2.2417356237363433,2.2241333383760677 +1987,1,29,8,0,96,31,7.5,37.416967808888693,81.8729756626714,86.1672967160918,115.84857353945891,0.2907518663337409,8.1471752564967979,48.233912420096033,1.0,8.1471752564967979,23.45206943025558,1.5,-10.0,2.6000000000000001,23.240297672679358,26.832667627763854,36.476361453322063,36.638682959435457,36.772328708628081,36.825608664785236,4.7930822127478931,4.8068194432727616,4.7988107652605168,4.8192041351407564,4.8322696756067955,4.7943989542249339 +1987,1,29,9,0,400,92,8.5,177.36605388261796,72.21004207218114,77.67743666324766,124.19977791010103,0.0,28.18510426415288,226.27555786731392,1.0,28.18510426415288,110.99910205727636,1.5,-6.7000000000000002,1.5,191.84871033874185,192.7936754013931,193.34545671015238,194.0306645495854,194.59323739904357,194.81922291152421,16.389896475969667,16.431304354766624,16.456175217280542,16.668966097139602,16.847045328394138,16.734224847642572 +1987,1,29,10,0,596,154,9.5,371.73850966263763,61.613385062090394,68.57191817205812,135.67344415098512,0.0,73.297358838324897,455.45328824896319,1.0,73.297358838324897,231.81116505124862,1.5,-3.2999999999999998,1.5,421.79480403120215,423.25263645270343,424.08973979689006,425.2070655957192,426.13482230742147,426.49939259452242,44.580160514733464,44.645994556427361,43.862749035851358,42.990138640113983,42.247317635581297,41.599989214214752 +1987,1,29,11,0,352,295,10.5,463.98341269396724,52.865678745030976,61.310253805631994,149.24945508450037,0.0,107.41535932921484,535.07015168021098,1.0,107.41535932921484,288.29776231711963,1.327900366872632,0.0,2.6000000000000001,507.40321416755876,510.12759552212032,511.70779821405552,512.76656851314647,513.65464015832504,513.99275997739448,64.525436628246794,63.319195438715077,62.109353416175615,61.600849948358892,61.474581050854873,61.424378954445004 +1987,1,29,12,0,286,276,11.5,433.1711259282381,47.0513293465543,56.66389517489174,165.01438964469952,0.0,102.4858778521829,496.25438624897038,1.0,102.4858778521829,269.78707804208153,1.5,0.59999999999999998,2.6000000000000001,473.66048579612959,476.17442222954168,477.63359890563299,478.84430902343092,479.8543552911467,480.2442439889694,60.886032045175689,59.650709912747381,58.752951745245639,58.704724310814207,59.066457047801649,59.169966137162746 +1987,1,29,13,0,542,235,12.5,543.39476319859716,45.32818486123422,55.31989397749466,182.17527117745803,0.0,116.91310346494234,643.58582666085363,1.0,116.91310346494234,338.97893415978132,1.5,3.2999999999999998,0.0,620.73203464268545,622.67288594814477,623.7865578580039,625.45477800388312,626.84071377170358,627.38140063168305,69.466607610753783,67.529056540925296,66.306107229652568,66.455281230132556,67.251069034774716,67.628574267022316 +1987,1,29,14,0,269,278,13.5,422.47096665912881,48.140803944686056,57.51581508134154,199.1245280675497,0.0,102.71370038388879,477.89868010107574,1.0,102.71370038388879,261.68536233452556,1.5,3.2999999999999998,2.6000000000000001,455.66642004425387,458.40553157691386,459.99838855522376,460.68161984474625,461.26431210214196,461.47715468365686,60.944226246638827,59.78187267404936,58.916337105140009,58.749069374512423,58.920602148161613,58.950362355551043 +1987,1,29,15,0,529,219,14.5,460.20386577001909,54.79065053605006,62.87315582317352,214.3920101622199,0.0,96.327118901799409,547.19615589604882,1.0,96.327118901799409,286.74207648628845,1.3752096447411466,3.2999999999999998,3.1000000000000001,518.6743109600236,520.68938698932027,521.85057910690148,523.15793574041595,524.24468634543348,524.66778166518498,58.460710269784222,57.277492992877804,55.881833533783421,55.250999920292749,54.993490646300678,54.964066028715827 +1987,1,29,16,0,520,110,15.5,282.26810098434959,64.08152066601579,70.65322323943127,227.42895033366742,0.0,50.538502059222104,351.96139852095854,1.0,50.538502059222104,176.44726767184736,1.5,2.7999999999999998,3.1000000000000001,321.0828991597258,322.10438382323105,322.69169099121621,323.69080268663652,324.51442997859982,324.84264405509077,30.432500960198805,30.835395800634107,30.582915137059317,30.141954347369307,29.579567663486891,28.974662586740983 +1987,1,29,17,0,422,52,16.5,124.5557023289176,75.00243405910476,80.09977644741522,238.4696369702474,0.0033951083094429955,12.721864295292455,170.88803346545765,1.0,12.721864295292455,78.629017920721537,1.5,1.1000000000000001,4.0999999999999996,133.96602719676935,136.56522767944855,136.86528225760753,137.58329927955674,138.16814057108698,138.4073275870563,7.5616556085684543,7.6449031541391976,7.631915047931507,7.7412292488847632,7.8559056314878237,7.793456210297304 +1987,1,29,18,0,30,18,17.5,19.372258078489057,83.26784432779365,87.37826532738129,245.4107736107854,0.41470596049679354,5.1291334685391083,22.106636720324161,1.0,5.1291334685391083,12.047899562088222,1.5,0.0,3.1000000000000001,14.797162658489359,15.02275042673414,16.66109046618736,18.149951790325424,18.193502587902916,18.210214073058943,3.0091425269422771,3.0111372376140215,3.0061207572577802,3.0105546379882284,3.0084993265658739,2.9848452282935085 +1987,1,30,8,0,2,25,7.5,25.136366212542544,81.84335195875852,86.09036250110354,115.55470405609869,0.2791467769467184,7.6097827152941671,25.413406164852486,1.0,7.6097827152941671,15.319262793088347,1.5,-0.59999999999999998,2.1000000000000001,22.053057089283865,22.690635514697721,23.513415086305937,23.471618273602896,23.439840841200116,23.42466150740643,4.4444240309075793,4.4316155543874949,4.4241697029234288,4.4106770374013795,4.3829517253660235,4.3478971133123157 +1987,1,30,9,0,43,91,8.5,100.30144315723025,72.07475340693318,77.50745209364113,123.97787228187654,0.0,26.19510671611787,108.54233550751462,1.0,26.19510671611787,61.713074422579389,1.5,1.1000000000000001,3.6000000000000001,97.264463883978706,98.364813493743597,99.009674678000465,99.041721676069585,99.074709745083339,99.081575014403597,15.282705157284472,15.261927171458257,15.253422873423665,15.261998555424263,15.221825669957891,15.098593759530514 +1987,1,30,10,0,11,128,9.5,132.05422940519549,61.44257250138949,68.3727749764012,135.4680809141758,0.0,39.491782671466169,133.97312958483099,1.0,39.491782671466169,80.655510577647959,1.5,2.2000000000000002,4.0999999999999996,124.34622134729987,126.00990431570261,126.9848729326707,126.8235107381641,126.70371994184882,126.64360330724092,23.150047233338398,23.083439681815342,23.006437080928123,22.898926892039842,22.732135306763197,22.539879448113631 +1987,1,30,11,0,396,276,10.5,467.50363830880468,52.653392276642684,61.07953539496227,149.07609219231406,0.0,109.18942025565107,541.78495706199419,1.0,109.18942025565107,290.52729958251439,1.3071108124200337,4.4000000000000004,4.0999999999999996,514.60351088265838,517.17040628827226,518.656727912272,519.73144966042787,520.63307752921719,520.97608793118195,65.575944293718834,64.207442161080593,62.915301249085765,62.433385847790724,62.372734434978085,62.419012704882817 +1987,1,30,12,0,247,373,11.5,509.66977577654154,46.79890637972732,56.404995238469226,164.89814268283232,0.0,127.13314140193896,573.63278137057273,1.0,127.13314140193896,315.3234193164572,1.5,7.2000000000000002,2.1000000000000001,547.67978323533885,551.04425055303341,553.00034210058686,553.69336578991533,554.29136364764202,554.50358900179629,75.10635988440842,73.645276788621516,72.722210354768563,72.659479898123493,72.975040289978324,73.031399189702739 +1987,1,30,13,0,75,312,12.5,354.9701200604722,45.052884115776344,55.04485772980753,182.13875596135637,0.0,95.225695216284592,382.37608239207316,1.0,95.225695216284592,219.06491179859395,1.5,7.7999999999999998,3.6000000000000001,361.65283669125597,364.88321067971373,366.77043635076507,367.09068093051837,367.37693711572115,367.46957451462845,55.937862825173525,55.282171295383485,54.877247943569728,54.874600494238116,54.951384236647343,54.791592957643019 +1987,1,30,14,0,253,346,13.5,482.89779070989101,47.87028442951565,57.24158510084319,199.16951983924918,0.0,118.02941523766944,544.07523175881647,1.0,118.02941523766944,298.84129361395844,1.5,9.4000000000000004,0.0,518.83942804670551,522.03529270466572,523.89440453987595,524.58099313921707,525.17087648674624,525.38243118123114,69.892101583827127,68.56885863723933,67.653551292752837,67.503205043412862,67.718128811653528,67.751387470702042 +1987,1,30,15,0,609,197,14.5,477.13751922837923,54.544030447526396,62.61315535359194,214.49935788123673,0.0,99.780868236287233,572.66774464785294,1.0,99.780868236287233,297.3749977471781,1.3518551503228808,10.0,4.0999999999999996,544.16192768032215,545.92909305430021,546.94193946719747,548.31426645373858,549.4547412346086,549.89894589765845,60.682170253989547,59.204804300934086,57.606464545231916,56.937516307858814,56.763193185530859,56.84855692765499 +1987,1,30,16,0,385,154,15.5,283.06433675090477,63.863819996675694,70.41335099616407,227.5757775600473,0.0,57.843365689775361,338.12905505225172,1.0,57.843365689775361,176.1213387328757,1.5,11.699999999999999,2.6000000000000001,309.62616380260977,311.19487808426533,312.1053362784138,312.83437446067273,313.44149364347106,313.67792830977731,34.622899103697335,34.851508968478178,34.569915674997397,34.137159791020331,33.621041722476221,33.08903846564359 +1987,1,30,17,0,186,74,16.5,106.67918564270448,74.81201232414347,79.88092105574779,238.64065828323976,0.0,18.951445526194426,131.08701934866488,1.0,18.951445526194426,66.646438427207016,1.5,10.6,2.1000000000000001,109.48250904595562,110.29308465542154,110.76826112108688,111.14817905087348,111.46094856098932,111.58566949706582,11.149355020668121,11.181721701718335,11.162900578614904,11.210400993250069,11.240494259374172,11.151176032104393 +1987,1,30,18,0,3,13,17.5,13.14248509862694,83.21165730953975,87.27771093345531,245.68174237189456,0.3972809625028093,4.090404826801084,13.132643335878265,1.0,4.090404826801084,8.0000859448912678,1.5,5.5999999999999996,3.1000000000000001,11.864598281581618,12.045478618091272,12.26082064621396,12.303761481981091,12.28457080368994,12.27553673183866,2.388528412617414,2.3812975207539395,2.3772969931480796,2.3696082958612652,2.3541728000611348,2.3353428246794885 +1987,1,31,8,0,7,24,7.5,24.487011782545949,81.81165111252747,86.01053145259621,115.25663248603692,0.26727954685655925,7.3635540296816071,25.011906571088325,1.0,7.3635540296816071,14.923274567464002,1.5,2.2000000000000002,5.7000000000000002,21.331089069980131,22.108933188233699,22.98913640949101,22.948263499490579,22.917167312080512,22.902335246911328,4.3005402349765456,4.2880904533527611,4.2808836233844021,4.2677520263462965,4.2408272757077663,4.2068949902609036 +1987,1,31,9,0,7,82,8.5,83.535140923991406,71.9341446850687,77.33173471036113,123.75432041590133,0.0,24.599244069692485,85.208793711168667,1.0,24.599244069692485,50.983894805304566,1.5,1.7,5.2000000000000002,78.073696684064558,79.139917978157825,79.765081434032552,79.650552022500477,79.564449378537461,79.522296907155422,14.351071024738363,14.315116195324629,14.299972758436621,14.269226479617856,14.189783366006326,14.074566894477627 +1987,1,31,10,0,8,131,9.5,133.97511071897387,61.26629554287533,68.16784581943718,135.26162147006843,0.0,40.189347591772403,135.63512013152871,1.0,40.189347591772403,81.828850991216342,1.5,2.2000000000000002,5.7000000000000002,125.89157631821287,127.58995717442983,128.585308222842,128.42199737935908,128.30080915135338,128.23992060584607,23.557358543158671,23.483814975385194,23.403756926711409,23.29921791391353,23.13423123695728,22.943065095563675 +1987,1,31,11,0,131,204,10.5,267.82374922528811,52.435466794672784,60.8430136849614,148.9026514551692,0.0,67.93602501337638,296.72858866957495,1.0,67.93602501337638,166.25328421182397,1.286189750388833,2.7999999999999998,8.1999999999999993,279.4291720185368,281.57627742395078,282.82859490302587,283.40309097464166,283.88730293727156,284.06943789305632,40.349544107831754,39.818921952143853,39.328948328770508,39.190172458154152,39.169230241132944,39.078452152963919 +1987,1,31,12,0,405,279,11.5,504.64929534332492,46.54084468963628,56.14046651176385,164.78351993034923,0.0,118.76195123891073,583.22978112604278,1.0,118.76195123891073,313.81091682822824,1.5,3.8999999999999999,8.8000000000000007,559.30804807380412,561.83925529953649,563.30304634927734,564.52396478962748,565.5477647431826,565.93826369279782,70.266849096978646,68.616931602257651,67.594508787696768,67.713112677810102,68.328770179721872,68.555849532183316 +1987,1,31,13,0,183,352,12.5,457.57908017867487,44.7725492305069,54.76475516021368,182.10602438048906,0.0,116.22710920415031,509.60159877201448,1.0,116.22710920415031,283.44650718026992,1.5,3.8999999999999999,9.3000000000000007,485.77092225607976,489.02616696243024,490.92102247710443,491.67502582794333,492.31937352941969,492.55392839976366,68.289167702592025,67.155556152518429,66.518870098276452,66.674879107595956,67.090117786822887,67.077028682907297 +1987,1,31,14,0,466,274,13.5,528.05238657927237,47.59605761088488,56.963253973707396,199.22007315927453,0.0,122.95558102945641,613.53909825092455,1.0,122.95558102945641,328.14086311793102,1.5,4.4000000000000004,9.8000000000000007,588.63297199297699,591.13387839402822,592.57825888846537,593.77199399832784,594.77499060155242,595.15556748470226,72.933441872651088,71.112798762239223,69.953931199873495,69.95752581831492,70.534507516514935,70.80274270228422 +1987,1,31,15,0,368,233,14.5,403.77656726877944,54.295184601012075,62.35015900550936,214.61308388598337,0.0,91.910245034748939,468.94208009464194,1.0,91.910245034748939,251.19241616320201,1.328534743682909,5.0,8.8000000000000007,443.76124594172654,445.980290300653,447.26567403217666,448.28932693026644,449.14461072316226,449.47338152301097,55.314809294859735,54.229527192078137,53.133260552955718,52.685059923610922,52.597178757983237,52.578787833325514 +1987,1,31,16,0,215,185,15.5,257.92946323893079,63.645048933820206,70.17144423218969,227.72904457716984,0.0,59.249864948988268,294.91764603788988,1.0,59.249864948988268,159.6954475580655,1.5,5.0,8.1999999999999993,271.03875273476797,272.96556258732505,274.08885996842412,274.49172328737978,274.83502635305763,274.96167133970573,35.247893435248855,35.317767253936644,35.057890426753175,34.696840215659194,34.28713175144653,33.853692886715692 +1987,1,31,17,0,189,83,16.5,116.92118975138149,74.62123893393516,79.66069065002296,238.81788102720859,0.0,21.567818287543769,142.45015431106225,1.0,21.567818287543769,73.002389464807422,1.5,4.4000000000000004,9.3000000000000007,119.5192820246582,120.42068527201802,120.94894686236057,121.35050970393246,121.68154239651446,121.81311824394156,12.69015671804706,12.707939222565695,12.678028727041246,12.72549243955052,12.75589540790984,12.66525635899198 +1987,1,31,18,0,8,13,17.5,13.394098212072517,83.15576189341692,87.17633661608996,245.95898949355208,0.37993579756295426,4.0832828094383782,13.810931683263576,1.0,4.0832828094383782,8.220302310320303,1.5,3.8999999999999999,7.7000000000000002,11.833722597066222,12.014132141446256,12.481920447455582,12.620424298130271,12.619917845229443,12.618633945890085,2.3882546367807773,2.3840862419820872,2.3800952473717634,2.3763068449145894,2.365680749916407,2.3468883411909705 +1988,2,1,8,0,63,28,7.5,32.474717644124198,81.77741840942076,85.92700800286934,114.95229998899156,0.2550578910850362,7.8473599722585714,39.122524054587636,1.0,7.8473599722585714,20.170571041011691,1.5,12.199999999999999,5.7000000000000002,22.500761650605146,26.699441248583778,31.25453077167947,31.331582328655525,31.396102476825615,31.42079505676563,4.6033592786244482,4.6060820424351414,4.5983766348628068,4.6046684369371116,4.6008597695115752,4.5644772370034783 +1988,2,1,9,0,218,90,8.5,138.48827263778975,71.78674342573458,77.14859677434956,123.52782487723617,0.0,26.895973979656318,167.19163648027921,1.0,26.895973979656318,86.458239269831779,1.5,15.0,6.2000000000000002,144.38188524280542,145.35204264556927,145.91897419115128,146.38719604598339,146.77322616656528,146.92650144542472,15.612799013441736,15.705887089234619,15.7772323255484,15.929137460260501,16.006604444225495,15.833452854654052 +1988,2,1,10,0,41,153,9.5,168.38853527272042,61.08287120165963,67.95528173429197,135.052953459483,0.0,47.014805519872446,178.47094751272459,1.0,47.014805519872446,103.69894694527301,1.5,17.199999999999999,6.7000000000000002,165.33428798608651,167.13858476565886,168.19402605485928,168.27791010109468,168.35906323117598,168.38010686192936,27.782892322774657,27.682790176955244,27.489634601236354,27.318360761054166,27.119926718485019,26.892292282246842 +1988,2,1,11,0,258,165,10.5,291.65833599022221,52.20998914658323,60.598682755763456,148.7283530591952,0.0,68.129239678239273,337.58935477291095,1.0,68.129239678239273,181.95887815429259,1.2649910436862797,19.399999999999999,8.8000000000000007,320.19360874932056,321.79547692103364,322.72376443528918,323.64490801110054,324.4103387700581,324.70847921436655,40.746278049117102,39.896273885802771,39.171949332060386,39.045220847839481,39.18651027055715,39.246672606782454 +1988,2,1,12,0,224,227,11.5,352.68605576865394,46.27505307964604,55.86820211786701,164.67028485706606,0.0,85.916877234517727,402.00212116933926,1.0,85.916877234517727,220.13639119102078,1.5,19.399999999999999,8.8000000000000007,383.23537861485033,385.33226229272191,386.5491022334968,387.70407200958175,388.66454302394027,389.03844151728163,50.70976088050574,49.737734460541887,49.145651883422538,49.324380139347269,49.807821390650673,49.892455113639485 +1988,2,1,13,0,532,180,12.5,489.10403486984706,44.48509554912877,54.47749939511001,182.07753019793552,0.0,105.72306729512951,582.9806232625541,1.0,105.72306729512951,305.52881202709557,1.5,21.100000000000001,8.8000000000000007,563.98022635400662,565.37920465019124,566.17455981707622,567.80968527024675,569.16649413689834,569.69758382442058,62.230115642960747,60.433228077231654,59.527503768099656,60.017380474624687,61.153070761485289,61.524242691565092 +1988,2,1,14,0,492,176,13.5,446.27070914229483,47.31627341363246,56.67889103680644,199.27726062906345,0.0,97.647512146211554,531.97430740660775,1.0,97.647512146211554,278.9880079086642,1.5,22.199999999999999,8.1999999999999993,512.20647639875097,513.61586144595822,514.42021973457861,515.99330214921633,517.296725790751,517.80854149304582,58.015568803467048,56.315415729007434,55.251179067873451,55.447953549317766,56.234977573379354,56.612617559398849 +1988,2,1,15,0,367,156,14.5,327.8294729350099,54.042594635303644,62.08246917078576,214.73465079204405,0.0,69.784628015779418,390.72622027915622,1.0,69.784628015779418,205.54676942089969,1.3050910712675639,22.800000000000001,8.8000000000000007,370.10983180603296,371.44219731798358,372.20895802128638,373.58963537034839,374.72780272621412,375.17980350928622,42.186270586610462,41.2122047127325,40.236316495433428,39.992943174747417,40.119122492138601,40.242388567099802 +1988,2,1,16,0,363,123,15.5,247.59351026951904,63.423993952435154,69.92604276842307,227.89040357917474,0.0,49.265519606188597,300.53228844111078,1.0,49.265519606188597,155.25223445938178,1.5,21.100000000000001,9.3000000000000007,274.77147170874872,275.91917922675617,276.58200321444696,277.63516717664584,278.5031188605073,278.84965024631259,29.858187272533442,29.962881386441829,29.523673131696484,29.077284332919014,28.708808535104989,28.293871436512621 +1988,2,1,17,0,148,59,16.5,86.128734810781481,74.42914745341415,79.43783334231937,239.00304645214783,0.0,16.087104588569598,104.8689600530184,1.0,16.087104588569598,53.912437276513415,1.5,20.0,5.7000000000000002,88.022559888965247,88.677687514877363,89.061494050975497,89.404900224260587,89.68738488603978,89.800253996156243,9.4671957340106072,9.474031239109916,9.4507254202997011,9.4992200408833298,9.5442487159063525,9.4799218011890822 +1988,2,1,18,0,36,16,17.5,17.837918862379514,83.09997655144572,87.07358908821315,246.24476060337352,0.36256268863467334,4.6535778976537587,20.805280173682174,1.0,4.6535778976537587,11.098817417400666,1.5,17.199999999999999,3.6000000000000001,13.405987710415745,13.610366391903277,16.285984923812151,16.879184917072863,16.920656180084848,16.936630358443686,2.7305448749710832,2.7326769822729395,2.7281219605081004,2.732546107130148,2.7311675210973965,2.7096820177886647 +1988,2,2,8,0,35,25,7.5,27.538083343329408,81.74159230410216,85.84145085653942,114.64614243991718,0.24271355891549107,7.0977499206772672,31.699940302150239,1.0,7.0977499206772672,17.12415411382818,1.5,15.0,6.2000000000000002,20.41888386049958,23.61825462263031,26.22445142690011,26.297401166267925,26.358396522344151,26.381824503667545,4.1642096122323746,4.1670957787262894,4.1601416696111926,4.1664079981134075,4.1637004472622454,4.1308890052923362 +1988,2,2,9,0,3,81,8.5,81.676812257049875,71.6356571572645,76.96159689329207,123.3011647308376,0.0,24.404982243284291,82.678385429361114,1.0,24.404982243284291,49.840513246126555,1.5,16.100000000000001,7.2000000000000002,75.96538378130208,77.025024121676651,77.646360115247958,77.531649044571466,77.445357366885887,77.403179541461284,14.238249502622375,14.207708311143589,14.19350961308489,14.161371643963037,14.079674929152612,13.960617806115442 +1988,2,2,10,0,10,110,9.5,113.78826333077788,60.89587424029777,67.7389980384422,134.84443163250697,0.0,34.490972891334245,114.57690770013917,1.0,34.490972891334245,69.467969583186701,1.5,17.199999999999999,7.7000000000000002,106.36743332530786,107.83324612798005,108.69237795984813,108.54341689007802,108.43225641798392,108.37702794819603,20.209538194341704,20.137655325775565,20.070283776671864,19.9854229432921,19.849067235842774,19.690656545354411 +1988,2,2,11,0,6,213,10.5,215.96813039595708,51.981022137392806,60.35079486328274,148.5548527359674,0.0,64.371651712295986,219.82985197482105,1.0,64.371651712295986,132.09663331987804,1.5,19.399999999999999,7.7000000000000002,205.17065376441965,207.80595589003389,209.35001420896424,209.14961710562611,209.0050033688762,208.92789535046273,37.722226419524709,37.496461612899147,37.339199555943395,37.222632975842075,37.04581225774735,36.80822926260845 +1988,2,2,12,0,364,185,11.5,390.68638451592199,46.00596400665675,55.592675056414684,164.55902108028346,0.0,87.581351267061109,460.77514951709657,1.0,87.581351267061109,244.92859974498268,1.5,20.600000000000001,9.3000000000000007,442.53552911728377,444.00497132818157,444.84840215515004,446.47702445470253,447.82240846416812,448.35464120377947,51.727341036510254,50.428495007106918,49.676138985628967,50.038881305875144,50.858374583944205,51.120727813579812 +1988,2,2,13,0,686,113,12.5,514.40184467632878,44.194977036076,54.18755110909173,182.05252819922498,0.0,104.10982047845826,625.78560976137715,1.0,104.10982047845826,321.28454442327995,1.5,21.699999999999999,7.2000000000000002,609.46469462844868,610.14025687787273,610.50618450560034,612.18135244020903,613.57118839942598,614.11547606054842,61.050407030789096,58.984349059589697,58.058180981705,58.721104790739666,60.151628736063003,60.679023233958191 +1988,2,2,14,0,496,203,13.5,477.53499452929032,47.03497849085823,56.39267892141316,199.33910445423632,0.0,105.82346893599336,565.39004841628844,1.0,105.82346893599336,298.36630402558899,1.5,22.199999999999999,9.3000000000000007,544.01525852248187,545.67344172755554,546.62284861031287,548.25240974855546,549.60407835603621,550.1335682975747,62.63280161706269,60.897261712481075,59.892204010640832,60.177763513019578,61.064615273522243,61.428689196977921 +1988,2,2,15,0,14,207,14.5,213.61273472202279,53.7896691100453,61.813818851616595,214.8612236557338,0.0,63.187369457044703,218.54394544245204,1.0,63.187369457044703,130.66093090750041,1.2818805012422065,21.699999999999999,7.2000000000000002,204.01379315143922,206.57021931391742,208.0677154053966,207.86953842590034,207.72639762777283,207.65019153917476,37.065658540314224,36.828202793067291,36.650448094203703,36.517356760916492,36.33031160703252,36.101021986408483 +1988,2,2,16,0,7,112,15.5,114.43079632961178,63.203425175752876,69.68039083837594,228.05653436601,0.0,34.524702366872724,115.33449958103559,1.0,34.524702366872724,69.861499821121711,1.5,21.699999999999999,7.2000000000000002,106.91115533731526,108.38574108839288,109.25010990168636,109.10082770938915,108.98941644349374,108.93410362586003,20.21779413973049,20.161519533697838,20.104234166074082,20.020121140474476,19.880699920206819,19.714543206941702 +1988,2,2,17,0,12,44,16.5,46.245459692748142,74.23796265294513,79.21514610108065,239.19256507541536,0.0,13.516167328367693,47.483533615273466,1.0,13.516167328367693,28.411636082154487,1.5,17.800000000000001,4.0999999999999996,43.101939775922105,43.692773973550253,44.039262807246459,44.041817584542983,44.04756401563904,44.046385722057053,7.9049192000341133,7.8901214066849894,7.8765997254647573,7.8669693694787037,7.8360227187348785,7.7749820699897612 +1988,2,2,18,0,1,7,17.5,7.0528457748986204,83.04480593609618,86.97074906327634,246.53426586237103,0.3453908045208727,2.2022152753531077,6.9948475057067796,1.0,2.2022152753531077,4.2864324090351804,1.5,16.699999999999999,3.1000000000000001,6.3886293787947031,6.4860264830691339,6.6002312800651239,6.5888466555706513,6.5766219786363953,6.5709732699480465,1.285555114986304,1.2813526167114575,1.2791984999078168,1.2746645197540891,1.2658688171407895,1.2557303545231391 +1988,2,3,8,0,0,18,7.5,18.0,81.70373606179763,85.75308860552744,114.33612937916325,0.2301559510600014,5.6610727207185247,17.693700305516131,1.0,5.6610727207185247,10.957615353939595,1.5,3.2999999999999998,5.7000000000000002,16.427901469720673,16.678351166426349,16.825250116885758,16.791228597631644,16.765217866841557,16.752942460793943,3.3058134170733022,3.2958948204817697,3.2903598830023268,3.2798361006257828,3.2586211343088918,3.2325714721345178 +1988,2,3,9,0,4,96,8.5,96.915504104334033,71.47945548900955,76.7690922576073,123.07305195360114,0.0,28.448552503774476,99.122756282770197,1.0,28.448552503774476,59.174736673900497,1.5,2.7999999999999998,6.7000000000000002,90.768042855955187,91.989458263115822,92.705527597438078,92.580724028417634,92.487327499423003,92.441162537301352,16.587502097878918,16.562020578155806,16.552981158329512,16.521249926179649,16.425440153820297,16.282560125908066 +1988,2,3,10,0,2,162,9.5,162.76481244686781,60.703664291660985,67.5171904610985,134.63494901218368,0.0,48.598948027702924,165.36266616930644,1.0,48.598948027702924,99.473805657409144,1.4772352715804664,2.7999999999999998,4.5999999999999996,153.53636776007531,155.56625764956138,156.75562955340277,156.57754140384461,156.44669666262141,156.37952319419253,28.514564097763799,28.396879472702189,28.279755747371567,28.15277575538973,27.96180317805732,27.744069018229915 +1988,2,3,11,0,3,208,10.5,209.49558175638148,51.746696193567004,60.09738847573001,148.38136845214393,0.0,62.757993588313319,212.53570064631873,1.0,62.757993588313319,128.11940901564353,1.5,3.2999999999999998,5.7000000000000002,198.24971164323571,200.83886077405501,202.35607604837477,202.15635142726305,202.01183459949377,201.93521364733979,36.755072786944901,36.548795518717469,36.408048735842002,36.301015269971096,36.132408710563013,35.89579445497175 +1988,2,3,12,0,2,259,11.5,260.13821977826711,45.73152930297493,55.311821085691236,164.44947770657834,0.0,77.602868582509871,264.78919605618523,1.0,77.602868582509871,159.21858311590452,1.5,3.2999999999999998,4.5999999999999996,247.60322389373988,250.74939264093948,252.59254213580115,252.38720621406443,252.24237268050408,252.16157138453374,45.370244400228792,45.101406060438613,44.955293637622013,44.88164504626485,44.73790105358561,44.455952967555582 +1988,2,3,13,0,0,292,12.5,292.0,43.9001472508074,53.892861541208774,182.0314428896415,0.0,86.562078512386577,298.21387968953832,1.0,86.562078512386577,178.80935626034758,1.5,3.2999999999999998,3.6000000000000001,279.20498566176673,282.67520138374607,284.70784307932786,284.50684864373488,284.3680944206809,284.28734325029598,50.568815775195432,50.265987359504095,50.11706464360045,50.06667879965994,49.933168263320987,49.626117086484541 +1988,2,3,14,0,1,169,13.5,169.55770573969849,46.75035109185083,56.10271761966594,199.4066349941178,0.0,52.091299615716352,169.7138497661459,1.0,52.091299615716352,103.6188607952442,1.5,3.2999999999999998,3.1000000000000001,157.99805235090963,160.20639311696419,161.50093545534821,161.31622064733162,161.18091484907515,161.11099662143272,30.446650370477023,30.315899888172442,30.239823836783117,30.172053949361281,30.033363743170153,29.819453573056446 +1988,2,3,15,0,1,136,14.5,136.47650625735182,53.534906095183224,61.54253232324317,214.99421598786273,0.0,41.999617751620448,136.22950851478188,1.0,41.999617751620448,83.34498937895971,1.25874367714292,3.2999999999999998,4.0999999999999996,126.63246210159714,128.43533041766088,129.49234529804082,129.32431097062533,129.19969589702924,129.13691938823035,24.568972776444429,24.47109628972148,24.404319962881949,24.331703560516761,24.196545725219824,24.017920889990215 +1988,2,3,16,0,1,175,15.5,175.35130176742081,62.98213574577507,69.43304229070068,228.229039215032,0.0,51.178012851095062,179.90935019575943,1.0,51.178012851095062,107.2202031070242,1.5,3.8999999999999999,2.6000000000000001,166.68274143843365,168.80370899598375,170.0462741395234,169.87142070374742,169.74397703870815,169.67756076440565,30.042062340389382,29.948770008765521,29.827012215655145,29.677055114479391,29.455888624197708,29.207023307224411 +1988,2,3,17,0,0,76,16.5,76.0,74.04671846576012,78.99138539437388,239.38813041063858,0.0,22.507092170253181,77.336364425374967,1.0,22.507092170253181,46.380047689814482,1.5,3.8999999999999999,3.1000000000000001,70.648931766203219,71.629394645711358,72.204350729517685,72.098720599516241,72.019321095528142,71.980458854492113,13.139260622771754,13.101163762653522,13.080496338430022,13.049279297042737,12.976119654452953,12.87470546366171 +1988,2,3,18,0,0,17,17.5,17.0,82.99006417622049,86.8672675637445,246.82970502089918,0.3283110949117233,5.3173975244919474,16.754390176137854,1.0,5.3173975244919474,10.35297155560885,1.5,3.2999999999999998,3.6000000000000001,15.428337075326105,15.665600245883843,15.869613457958478,15.838894191514637,15.815464032865325,15.804349167961696,3.1053303056047761,3.0961778207521942,3.0909786711753182,3.0813018540936481,3.0616301251253009,3.0371598084317881 +1988,2,4,8,0,0,24,7.5,24.0,81.66386955365668,85.66195619210984,114.02237387126567,0.2174016420053097,7.4139344911673755,23.903168624686103,1.0,7.4139344911673755,14.621446951513592,1.5,5.0,5.2000000000000002,21.500062894799406,22.120153930536333,22.440331246167748,22.398770574699238,22.367131180591745,22.352060594528108,4.3299055210087083,4.3173138831725844,4.310062633710146,4.2967808390906068,4.2696072723508047,4.2354742379298438 +1988,2,4,9,0,1,56,8.5,56.232237438602453,71.31821319377359,76.57116501450791,122.8435461590211,0.0,17.501810131154244,55.644564791912899,1.0,17.501810131154244,34.275791047218014,1.5,5.5999999999999996,4.5999999999999996,51.527030473851582,52.297967381812811,52.750120825425626,52.659027151726292,52.590013155634587,52.556794717018192,10.220147565084373,10.193141373067482,10.177761888200344,10.148535166910214,10.085552171584595,10.003897282252922 +1988,2,4,10,0,0,100,9.5,100.0,60.50633073643407,67.28995143489799,134.4245452678545,0.0,30.998353027529685,99.296268862304018,1.0,30.998353027529685,61.018021201687304,1.4477421046300738,6.0999999999999996,5.7000000000000002,92.128084454782524,93.478507295050917,94.270373236992484,94.130236064530976,94.025207580485414,93.973476106580051,18.129366797490412,18.072275502957904,18.029520586475087,17.970412421091577,17.858687385033157,17.717553971445245 +1988,2,4,11,0,0,143,10.5,143.0,51.50710917326886,59.838562536729164,148.20792564889356,0.0,44.109864555629542,142.62704991156039,1.0,44.109864555629542,87.340218232178486,1.5,6.0999999999999996,4.5999999999999996,132.59664982215406,134.48919915546492,135.59880790661259,135.42685303527219,135.2996518901472,135.23524129623695,25.793589935976797,25.690918461558063,25.625184143677018,25.555229309417388,25.420825337250363,25.234505242109243 +1988,2,4,12,0,1,296,11.5,296.57320832329253,45.451849769967005,55.02574370438623,164.3416815295495,0.0,88.029251115206691,303.61166632997117,1.0,88.029251115206691,181.6280800838484,1.5,6.7000000000000002,5.2000000000000002,284.3504545238896,287.83648716990342,289.8780325835213,289.67883634142947,289.54198771660907,289.46159497714893,51.435594582702841,51.101154710603126,50.93612844216225,50.883637994604946,50.763033449386306,50.462257834641761 +1988,2,4,13,0,1,166,12.5,166.59350961973129,43.600716003193774,53.593540959880485,182.0143147113343,0.0,51.219104479941578,166.38625214697043,1.0,51.219104479941578,101.80929461451258,1.5,7.7999999999999998,4.5999999999999996,154.85509748746486,157.04097933460298,158.32246618615446,158.14224104103644,158.01032885323261,157.94205434773096,29.918509980606792,29.804872171330214,29.743413622648688,29.684319566003655,29.548108893787994,29.33242340434558 +1988,2,4,14,0,1,276,13.5,276.5619516416516,46.46251780217601,55.809125495258954,199.4798900452107,0.0,82.454884279634811,282.38303358431102,1.0,82.454884279634811,169.31909296118454,1.5,8.9000000000000004,4.5999999999999996,264.22093090134308,267.51635614401863,269.44654381670517,269.24342803785885,269.10179879129322,269.02097158183375,48.198924525924184,47.894000745810068,47.731936120731064,47.667408532735493,47.533853289050136,47.246118576301974 +1988,2,4,15,0,1,226,14.5,226.48070215268487,53.27843492372275,61.26872924303159,215.13363625544378,0.0,67.337277494526603,230.85223707129188,1.0,67.337277494526603,138.55716042436273,1.5,8.3000000000000007,6.2000000000000002,215.38325397391276,218.1293460511356,219.73826719180954,219.53828348876152,219.39484019986298,219.31741497040639,39.452598906694959,39.212709390650382,39.048135003699784,38.932236835390924,38.759370976183632,38.514385780613921 +1988,2,4,16,0,1,167,15.5,167.35536623887563,62.76023998272473,69.18410802086231,228.40789024693248,0.0,49.377315984396041,170.98066261540811,1.0,49.377315984396041,102.30604535058642,1.5,7.2000000000000002,6.2000000000000002,158.46385026171231,160.5151352525958,161.71691446823735,161.54205880808328,161.41410432246073,161.34793227116813,28.984420927474098,28.879352427013092,28.758760527335898,28.617477049353361,28.411408745305433,28.180340191858473 +1988,2,4,17,0,0,72,16.5,72.0,73.8555083034572,78.76664856578013,239.58968523405017,0.0,21.531231119054276,72.826278873129624,1.0,21.531231119054276,43.92834740089566,1.5,6.7000000000000002,5.7000000000000002,66.719569263895522,67.659946669588052,68.211412456294539,68.107951132762494,68.03001540251401,67.992048686462866,12.568291963695566,12.533646930770477,12.515649114340382,12.485004388111255,12.413984023493391,12.315082017304293 +1988,2,4,18,0,5,7,17.5,7.2823136919213551,82.93579410474192,86.7632019940865,247.13096060401637,0.3113264528316611,2.2051983582744028,7.5257981538901744,1.0,2.2051983582744028,4.4636772799744318,1.5,6.0999999999999996,7.7000000000000002,6.3886338489304189,6.5277164944547481,6.8588576313835325,6.8557516720339056,6.8538354329740452,6.8524608226519081,1.2894458698746027,1.2869264381107142,1.2847701783582843,1.2823807140904082,1.2762180417278759,1.2660643665101081 +1988,2,5,8,0,29,32,7.5,34.240954587570073,81.6220147676509,85.5680907595471,113.7049877596864,0.20446726053906666,9.2608343773933264,37.762972781484152,1.0,9.2608343773933264,21.043234970409678,1.5,-2.7999999999999998,2.1000000000000001,26.697726385745295,31.009914768300114,32.394134701803743,32.397522984093982,32.402780754574138,32.402525633031921,5.4178035930806345,5.409413224332142,5.4003328869700722,5.3930247193970544,5.3704464552653279,5.3276376098218998 +1988,2,5,9,0,286,74,8.5,141.4063709953378,71.15200831547709,76.36790036082128,122.61270449532947,0.0,24.489461189797439,176.54821845110081,1.0,24.489461189797439,88.977731877052634,1.5,-1.1000000000000001,2.1000000000000001,151.16214608536777,151.88021899444647,152.29770397112151,153.01302438235513,153.59823812525076,153.83495733854403,14.216130258443304,14.50623006168585,14.652327542626541,14.824701391151766,14.83832954526447,14.595914998303003 +1988,2,5,10,0,399,135,9.5,290.5338469589534,60.3039657547949,67.05737592654216,134.21325732642745,0.0,60.233322706842493,348.80071424534196,1.0,60.233322706842493,182.02297714829544,1.4182682007925105,0.0,4.0999999999999996,323.98187621196428,325.20206408547386,325.90363424366114,327.07949569985414,328.04957646132124,328.43433994053589,36.758799105455992,36.154693819542679,35.240230365666598,34.791633550410218,34.595413073104943,34.487555474549339 +1988,2,5,11,0,763,82,10.5,468.39755776716225,51.2623612075278,59.57441799926964,148.03454681619544,0.0,90.184495361099138,574.77793123028107,1.0,90.184495361099138,292.32129218352281,1.5,1.7,5.7000000000000002,554.18456102375762,554.7548700153983,555.06322468247572,556.5078664872907,557.70570983464859,558.17523214665164,53.839633512874023,51.778965411835451,50.517525097326754,50.649512949375648,51.508648960897887,52.061994742852747 +1988,2,5,12,0,820,81,11.5,554.43963603365171,45.16702777779321,54.73454785278762,164.23565669543498,0.0,116.67462072305422,672.2163682871211,1.0,116.67462072305422,345.0892686749666,1.5,3.2999999999999998,5.7000000000000002,655.40019778185979,656.06829362080214,656.42533977160963,657.80234350856483,658.95522262554437,659.39704591511952,67.912240241885257,65.644735892412541,64.798778783031409,65.709120971453629,67.276638558818647,67.873551944936793 +1988,2,5,13,0,826,96,12.5,589.75741140285481,43.296794219182004,53.28970060424737,182.00118218571637,0.0,117.92605442649915,715.10062187492531,1.0,117.92605442649915,367.44275179318453,1.5,4.4000000000000004,6.2000000000000002,698.68216027836388,699.29590493452929,699.62002454933099,701.21416252797053,702.54357611355056,703.05808518071774,68.238145409977733,66.142083351887294,65.469857555775874,66.644345053003377,68.382269409351508,68.967440820941675 +1988,2,5,14,0,771,118,13.5,554.56588308560276,46.171606061860814,55.512021446377005,199.5589054588134,0.0,112.37452563096947,672.92008323755249,1.0,112.37452563096947,346.06835149988945,1.5,4.4000000000000004,5.2000000000000002,654.05529179820712,654.79902775784376,655.20253801104877,656.90233678899358,658.3149904173473,658.86602610714215,65.628950397198508,63.470856064604213,62.604327232805495,63.462644830567363,65.000094471773536,65.555645048356993 +1988,2,5,15,0,799,62,14.5,449.45400319127276,53.02038487652793,60.99252915260636,215.27949026418574,0.0,86.391197378627211,553.29611186528177,1.0,86.391197378627211,280.00895950466003,1.5,4.4000000000000004,4.5999999999999996,531.82729931971801,532.35926042733513,532.64627843153755,533.85921059602333,534.86787679571034,535.26015511940625,51.930665980576237,49.895346509204295,48.511685490976433,48.372902754140632,49.005266229993218,49.543354191601324 +1988,2,5,16,0,473,104,15.5,274.01892145736372,62.537851041196305,68.93369804346409,228.593056562431,0.0,52.37185824668304,335.72371264065487,1.0,52.37185824668304,171.45778384199724,1.5,4.4000000000000004,4.5999999999999996,308.94187452617467,309.87624214222171,310.40980664894857,311.43475796310429,312.28094739016467,312.61665371881048,32.146014084240115,31.767849630673567,30.934007868798865,30.37778700789891,30.033674925585583,29.814761969746403 +1988,2,5,17,0,320,54,16.5,117.57316080053539,73.66442354286727,78.54103136540698,239.79716948314118,0.0,16.845124842991854,152.32472167644667,1.0,16.845124842991854,73.918600805497562,1.5,4.4000000000000004,3.1000000000000001,125.20819760685683,125.73315611453597,126.03888636527694,126.61004967161102,127.07666729961402,127.26596151017577,9.7638843009900054,9.8486724200826554,9.9141634664676666,10.08527269351478,10.2214457706263,10.125442153555326 +1988,2,5,18,0,49,17,17.5,19.855976213307681,82.88203704106589,86.6586086772724,247.43791383524183,0.29443923538995376,4.5792507826155884,24.345710438137353,1.0,4.5792507826155884,12.506578319550124,1.5,2.7999999999999998,2.6000000000000001,13.114540403433518,14.495962046957139,18.494557143633006,18.602710287440509,18.691526557023046,18.72715414404707,2.6969093743556205,2.7068638139433516,2.7023771345669876,2.7167165453337918,2.7276252820407851,2.7064249132891396 +1988,2,6,8,0,200,25,7.5,40.790884231144645,81.57819579247742,85.4715316289407,113.38408160844841,0.19136942569993146,6.150657848849681,59.2281745367723,1.0,6.150657848849681,25.816685264710276,1.5,-8.3000000000000007,6.7000000000000002,17.036907672404876,36.841221330921712,40.394348062369204,40.655717920610819,40.869022325494498,40.955861667103051,3.6417187910541409,3.6705231557438149,3.6643960796704524,3.7030520824850011,3.7413467656645065,3.7121696581806707 +1988,2,6,9,0,429,79,8.5,181.6261420009518,70.9809221048363,76.1593864709709,122.38058161710451,0.0,30.268644059471757,229.41404370690404,1.0,30.268644059471757,113.78486664983863,1.5,-8.3000000000000007,6.2000000000000002,196.38243463374096,197.15273636793873,197.59865333834466,198.33549014334369,198.9393229307617,199.18251878919145,17.556349988923749,17.990832230538867,18.189875662192726,18.337352639067877,18.245790281448947,17.882343146184294 +1988,2,6,10,0,845,55,9.5,387.61573131052575,60.096664265143545,66.81956136770458,134.00111935496932,0.0,67.890862820039274,485.93314936064814,1.0,67.890862820039274,241.71380558165237,1.3888426123175006,-7.2000000000000002,5.2000000000000002,454.83158828563569,455.32880442166572,455.59682420611023,456.72741384634281,457.66373253265493,458.03152289821139,42.087920908436772,40.82300975550276,39.292592648564252,38.500012816417964,38.168261447717384,38.267020030137829 +1988,2,6,11,0,952,50,10.5,535.96459623734359,51.01255464380625,59.30505775887581,147.86125147416777,0.0,105.9322507698455,658.5936602721124,1.0,105.9322507698455,332.75810023791172,1.5,-6.0999999999999996,5.2000000000000002,637.92029247584605,638.33828556626895,638.55072341983498,639.58243535543807,640.45147178840023,640.77946408382411,62.782444691178682,60.205893771500151,58.829161518288579,59.054659227048475,60.151294427187473,60.864043518969353 +1988,2,6,12,0,971,55,11.5,619.71296447893178,44.877167205651546,54.43833984565933,164.13142468960385,0.0,127.92420216397564,753.6171454985639,1.0,127.92420216397564,384.40514854282679,1.5,-5.0,5.2000000000000002,737.68716408806256,738.13045504920785,738.34991724541283,739.41529366900522,740.32008777447504,740.65508557684518,74.028722660844622,71.473563261663159,70.664767344164645,71.773720924049087,73.583998687504604,74.28168541049682 +1988,2,6,13,0,998,56,12.5,656.86937318993739,42.98849388100166,52.98145261720136,181.99208191731492,0.0,135.39860853007687,796.84285090558524,1.0,135.39860853007687,407.27372959450418,1.5,-4.4000000000000004,3.6000000000000001,781.84780950575453,782.29417167824931,782.51261564954746,783.57736071718921,784.48385905467217,784.81796072052975,77.666743951757468,75.28887917788515,74.712697177374025,76.222043122317359,78.328493187307402,78.915875529657598 +1988,2,6,14,0,977,54,13.5,611.42577211935782,45.87774410259936,55.21152483692469,199.6437151339228,0.0,120.49448847746574,744.57689666725435,1.0,120.49448847746574,379.28222068235891,1.5,-3.2999999999999998,3.6000000000000001,727.91795436182076,728.35579411372294,728.57460923003543,729.63411519583997,730.53161760138187,730.86597539877596,69.888498632724108,67.421632349145639,66.607266506093367,67.574694181408546,69.277731131510123,69.940344799748559 +1988,2,6,15,0,946,48,14.5,510.75346527342515,52.76088509439766,60.71405140247703,215.43178113986596,0.0,101.01249790845625,629.76876664477368,1.0,101.01249790845625,317.17900078443728,1.5,-2.7999999999999998,3.6000000000000001,607.4242530968454,607.82967195605136,608.03635129607812,609.04596810530313,609.89508432618038,610.21646002032116,60.374970831968696,57.838700006173049,56.303555369332052,56.258481407267205,57.095266702099323,57.782805340129308 +1988,2,6,16,0,877,38,15.5,356.82913132087418,62.315080818185876,68.68192141786137,228.78450424578713,0.0,61.241855623079466,453.00481522052189,1.0,61.241855623079466,222.06349777236957,1.466393760650706,-2.7999999999999998,5.7000000000000002,419.20238487502871,419.54762429146706,419.72570055659651,420.6025022936422,421.3322602646615,421.61619956671046,38.249172867619308,37.369685362780807,35.940081043382236,34.9369109211911,34.325804045439298,34.159181496815478 +1988,2,6,17,0,706,26,16.5,168.99132561896545,73.47355345652743,78.31462789071124,240.01052029277824,0.0,16.579922533251594,232.37938295966768,1.0,16.579922533251594,105.79735585603038,1.5,-2.2000000000000002,3.6000000000000001,187.47377816613638,187.72493620193038,187.86762928332325,188.51417454789137,189.04131964506649,189.25614242617928,9.3697752592124033,9.5642694930511354,9.7622611240418138,10.067139922030549,10.26391668309102,10.078689102044638 +1988,2,6,18,0,218,12,17.5,25.105235202852715,82.82883274325758,86.55354280456989,247.75044472793866,0.27765130302839247,2.756169398060023,41.63021661926301,1.0,2.756169398060023,16.187141022102615,1.5,-3.2999999999999998,4.5999999999999996,7.4028645947675633,13.195377426516856,24.582100986746099,24.846750570454638,25.06178907406666,25.150240225330364,1.6566966863873889,1.6891574318294345,1.6863924045240533,1.7285475073771908,1.7761924740807304,1.762919587971802 +1988,2,7,8,0,341,15,7.5,42.512037281965917,81.53243879551842,85.37232027039636,113.05976465010814,0.17812468454440458,3.5678325020964481,69.614856328650134,1.0,3.5678325020964481,27.075826016392586,1.5,-10.0,1.5,9.1422183336211678,40.758768686576786,43.164091438367372,43.492473058424714,43.759336480900615,43.869065952433225,2.1419773939011506,2.1821682870435377,2.1784908705884489,2.2304966346547568,2.2888293030526783,2.2710285429592183 +1988,2,7,9,0,752,30,8.5,212.61651115750414,70.80503895236484,75.94571442285324,122.14722966223512,0.0,27.906480844706895,283.35989919091077,1.0,27.906480844706895,132.88306607249936,1.5,-8.3000000000000007,3.6000000000000001,239.94109338553645,240.22640480466853,240.38382274819367,241.11425862882078,241.71177851444116,241.95319754496208,16.16725160111482,16.834484217252971,17.137456430896979,17.193202614631307,16.918346014112593,16.379866451258021 +1988,2,7,10,0,889,42,9.5,395.39755004112118,59.88452386189561,66.57660758541995,133.788162747513,0.0,67.793240148196716,496.18244804902349,1.0,67.793240148196716,245.97929525834499,1.359492826819619,-6.0999999999999996,2.1000000000000001,465.68991892844321,466.06392684515384,466.25958156701967,467.20123240871419,467.98426391836108,468.28868065616484,41.92968954844234,40.461947762218038,38.905984460033231,38.14913908836791,37.943060715740046,38.152199404351606 +1988,2,7,11,0,959,51,10.5,544.48261723878591,50.757793989742304,59.030586587090035,147.68805615707876,0.0,107.62538198869115,667.41534096407679,1.0,107.62538198869115,338.03748610698636,1.5,-5.0,1.5,646.80364663558339,647.22936436923897,647.44579430848808,648.49059144299667,649.3710046293927,649.70300800597738,63.530363854290862,60.986813634771806,59.679274820388109,60.056153305637586,61.265519244222766,61.967879263360771 +1988,2,7,12,0,988,57,11.5,635.81576630024244,44.582373382613234,54.13722730586188,164.0290043244302,0.0,131.28182288090662,771.49861920412866,1.0,131.28182288090662,394.38538147885487,1.5,-4.4000000000000004,1.5,755.42143957574763,755.88053554104727,756.10810446548396,757.19823111684434,758.1242959501318,758.46706409454328,75.644245214685284,73.206253916329686,72.509654163657416,73.804238189840888,75.734758845351294,76.403010663335266 +1988,2,7,13,0,990,58,12.5,658.35575388193968,42.67592796813161,52.66890997937144,181.98704859846717,0.0,135.82310936460641,796.85064231546994,1.0,135.82310936460641,408.25854139034709,1.5,-2.2000000000000002,6.2000000000000002,781.94286713399629,782.40485299649868,782.63229955552788,783.72212028806848,784.64859946716024,784.99168879727654,77.59234292425738,75.388290172680243,75.024964267809821,76.657802423006032,78.807484354120277,79.336741843492504 +1988,2,7,14,0,978,56,13.5,618.24682477318208,45.581060885337465,54.907755428716754,199.73435100970536,0.0,127.71403000708953,751.11400645927904,1.0,127.71403000708953,383.55290695546785,1.5,-1.1000000000000001,3.1000000000000001,734.49228788675259,734.94600100451191,735.17160150948757,736.25489623718897,737.17424014274309,737.5153516132915,73.594112944220683,71.228653041266796,70.55174335351866,71.813375579807186,73.693478536636007,74.341902839825579 +1988,2,7,15,0,930,52,14.5,510.89426211935239,52.50006449001935,60.433415077713796,215.59050930926747,0.0,101.34528891709373,627.8752559078323,1.0,101.34528891709373,317.43204262730592,1.5,-0.59999999999999998,4.5999999999999996,605.69530012021096,606.13511124748766,606.36209168328412,607.4315283516911,608.3293800185246,608.67085405130535,60.338510931521867,57.861556392004481,56.41626791589016,56.530090144577322,57.477057822159281,58.158557319121691 +1988,2,7,16,0,869,40,15.5,359.49284749407298,62.09203986237198,68.4288861755521,228.98219636893825,0.0,61.86897579542962,454.49557196730984,1.0,61.86897579542962,223.79705891791014,1.4331258262549254,0.0,6.2000000000000002,421.08863300132367,421.45125383480752,421.64033179195434,422.55118855655036,423.30835262884398,423.60323502682496,38.56591579906469,37.545420606010133,36.078876652322947,35.168009039367753,34.667957549109282,34.606568338897837 +1988,2,7,17,0,698,27,16.5,171.07916138158765,73.28298514643836,78.08753053050248,240.2296720320998,0.0,18.399946383163538,233.41861184586358,1.0,18.399946383163538,107.13546522467951,1.5,-0.59999999999999998,6.7000000000000002,189.09184943655302,189.35234779000876,189.50002164269151,190.16519611402884,190.70784272129677,190.92874036814683,10.367368077240487,10.674975506036885,10.924317903117558,11.231287912389771,11.38629677541021,11.119209891087129 +1988,2,7,18,0,216,12,17.5,25.381929113479131,82.77621936576608,86.44805839059929,248.06843217319448,0.2609640575934629,2.7428842843987384,41.651488366060676,1.0,2.7428842843987384,16.362661905571176,1.5,-2.2000000000000002,5.7000000000000002,7.3492120127915799,14.895151781180743,24.647177959246335,24.913663420103141,25.130184848107938,25.219254461164574,1.6492284417293654,1.6819466337730271,1.6791916985384137,1.7216624877494509,1.7697092256538576,1.7564780941645015 +1988,2,8,8,0,143,27,7.5,38.790583645436186,81.48477199518851,85.27050026883354,112.73214473990835,0.16474945220729645,6.5954659889808749,53.547150850721003,1.0,6.5954659889808749,24.624878189944493,1.5,-2.2000000000000002,3.1000000000000001,18.670527751331651,37.648118267960029,37.813024731613638,38.088812196207641,38.313911522842517,38.405525178099012,3.9044099189447898,3.9346825984240952,3.9281512170381343,3.9689138717852823,4.0092072664768459,3.9781700184278272 +1988,2,8,9,0,448,55,8.5,165.45113742568378,70.62444631890544,75.72697812185135,121.91269823423639,0.0,26.590654381324676,213.75048663054116,1.0,26.590654381324676,104.2466875931615,1.5,-0.59999999999999998,3.1000000000000001,182.03868863621034,182.5058757767392,182.7724927054372,183.64549881530837,184.35871545918837,184.64795030853958,15.643425821943875,16.144172726243273,16.292815341747918,16.295695352531649,16.103992817268651,15.669256916991859 +1988,2,8,10,0,802,51,9.5,372.99529533437419,59.667644752439294,66.32861673208497,133.57441611608718,0.0,68.456480270390728,465.05850602502869,1.0,68.456480270390728,232.57524496274405,1.3302447683748495,1.1000000000000001,2.6000000000000001,436.25980078550458,436.71600677017648,436.96106280438784,438.03986389209609,438.93400953674814,439.28438078351849,42.145091946459218,40.644761885951525,39.176141153362366,38.543635943627372,38.49780942355212,38.745596499010887 +1988,2,8,11,0,752,105,10.5,495.10502322953397,50.49818585716638,58.751111065379206,147.51497439999375,0.0,104.93448757998864,601.91721420979957,1.0,104.93448757998864,309.08704654365971,1.5,4.4000000000000004,2.1000000000000001,580.78747783477115,581.47491626700332,581.84767683182429,583.40853594302189,584.70592646194484,585.21176591948461,61.642389466400346,59.513666657464306,58.496867309281484,59.113666782428808,60.462503519700242,61.007615073654264 +1988,2,8,12,0,688,151,11.5,557.03316061427017,44.282753029140785,53.831319098807555,163.92841172840903,0.0,124.82762414141335,667.0615688853153,1.0,124.82762414141335,348.18666482590669,1.5,6.7000000000000002,2.1000000000000001,647.89485473461991,648.91236850408598,649.47392122575536,651.39106091707481,652.98307579658137,653.60598751972293,71.806498531855311,70.101761686978335,69.705581688676503,71.129782212855744,73.024746952781527,73.409576098901113 +1988,2,8,13,0,801,132,12.5,621.255702305348,42.359210399079316,52.35218644412118,181.98611501472857,0.0,131.18152495652149,746.70415971790726,1.0,131.18152495652149,387.48350548762141,1.5,7.7999999999999998,4.0999999999999996,728.98046598433837,729.78443717358539,730.21664382686947,732.04577694404838,733.56852139802129,734.16136999057358,74.917979108776436,73.189400663448652,73.0212097956706,74.745865824821479,76.87991021296979,77.229203889480843 +1988,2,8,14,0,678,144,13.5,536.7445969217938,45.28168603823611,54.60083331466406,199.8308430574061,0.0,115.57997087716315,643.79354535610105,1.0,115.57997087716315,335.57790003111364,1.5,8.9000000000000004,1.5,624.6087422794252,625.57700524797042,626.11250643914445,627.98692294829402,629.54172511634022,630.15145600947426,66.643409079581929,64.994481944581764,64.549889078766327,65.848464416307266,67.611949969968862,67.986092421200553 +1988,2,8,15,0,239,201,14.5,319.95504515030092,52.238051659776126,60.1507389246689,215.7556724805892,0.0,78.090295214630288,364.06376989835667,1.0,78.090295214630288,199.64016334306748,1.5,8.3000000000000007,2.6000000000000001,344.52171831834909,346.44051722588273,347.55418440195979,348.57902056597186,349.43189005807108,349.7633361432861,45.993944987283747,45.14129143509642,44.639194903217863,44.849573707475706,45.314395371597868,45.380056081150919 +1988,2,8,16,0,11,116,15.5,120.08955581543108,61.8688372846954,68.17469924935277,229.18609299624035,0.0,36.330858918741029,121.10566768568457,1.0,36.330858918741029,73.327066520766891,1.40024494453395,7.7999999999999998,3.1000000000000001,112.36462828070432,113.89626520143604,114.79391452361835,114.64045143673829,114.52613095368774,114.46908639384668,21.293214240158498,21.198552604207308,21.118419415717124,21.033342730373192,20.897842832796826,20.742185427663873 +1988,2,8,17,0,13,93,16.5,95.733952460793418,73.09280348108517,77.8598299120594,240.45455634216574,0.0,27.56770037380879,98.838807132252938,1.0,27.56770037380879,58.46753818104942,1.5,6.7000000000000002,2.6000000000000001,89.798861629950991,90.971996810206576,91.659652181887026,91.540330886806714,91.451117981791541,91.406931675777798,16.068274865056797,16.049977984708395,16.047015435422253,16.017548900395052,15.923060497822336,15.781370994793882 +1988,2,8,18,0,13,28,17.5,28.829362997770506,82.72423342231173,86.34220823323383,248.391754024253,0.24437847910115937,8.0778865466456686,30.468914212751073,1.0,8.0778865466456686,17.715885434027836,1.5,5.0,5.7000000000000002,23.343120271804757,25.142847479747697,26.61293210642582,26.615626645220463,26.620001534875808,26.619691376471906,4.7257328496764028,4.7183732733970283,4.7104647961936408,4.7040668224325328,4.6843674135752087,4.6471033545966973 +1988,2,9,8,0,42,29,7.5,32.539219023362712,81.43522562813224,85.16611728492525,112.40132831603269,0.151259954696715,8.1972601605315916,37.499244348971487,1.0,8.1972601605315916,20.228457488111307,1.5,-2.2000000000000002,2.6000000000000001,24.167263175019446,30.712019316833711,30.922453102229646,31.006406766454859,31.076610645071586,31.103568226505118,4.8092155603647813,4.8125147215909312,4.8044736224956939,4.8116438622090678,4.8084157044955314,4.7704594859836096 +1988,2,9,9,0,241,102,8.5,162.3282473748549,70.43923466390957,75.50327422323265,121.67703438989601,0.0,33.971190720819877,191.73756623681606,1.0,33.971190720819877,101.28450089496584,1.5,-0.59999999999999998,3.1000000000000001,167.67901910376867,168.76576359483465,169.39893995240385,169.92489719636217,170.35967878045548,170.53115085789932,20.020809522275314,20.263994272426057,20.279704789007365,20.225974598221629,20.049936949261035,19.723248854208414 +1988,2,9,10,0,607,97,9.5,343.15635029039288,59.44612969336636,66.07569321520786,133.3599052859357,0.0,66.417210804955644,421.17556035430897,1.0,66.417210804955644,215.07223044434164,1.301122806558133,1.7,2.6000000000000001,393.83241325830159,394.58454198889308,395.00735144599582,396.40076371580705,397.54864007886545,398.00514946628016,40.496560926499008,39.259534031222692,38.063798202497118,37.722772587406808,37.863265934293253,38.110860942107713 +1988,2,9,11,0,560,167,10.5,459.87632552596995,50.23383890649157,58.466739519574716,147.34201672798702,0.0,99.825577169357558,545.46225831212325,1.0,99.825577169357558,287.16089510421409,1.5,5.0,1.5,523.53341131096386,524.89624550866881,525.67197043939507,527.17191937480038,528.41773549649406,528.90433820293606,58.363829490942216,56.823331392313499,56.179314052535688,56.829474301454006,57.949925299430845,58.265606690824825 +1988,2,9,12,0,496,195,11.5,489.88785880332586,43.978414199368736,53.520725267830485,163.82966033641364,0.0,114.41203901943413,575.44177421334268,1.0,114.41203901943413,306.18333103970707,1.5,7.2000000000000002,4.5999999999999996,556.11103100732578,557.62517350727285,558.48542972705195,560.18187921709273,561.59086982154599,562.14206767018504,65.813134981838985,64.552971651060304,64.360565574967396,65.604832945006152,67.113374399744956,67.286586666925743 +1988,2,9,13,0,556,207,12.5,549.06764381840821,42.03845597401934,52.03139647360855,181.98931205085037,0.0,123.11908559815062,644.9563052436398,1.0,123.11908559815062,342.77348043086818,1.5,8.3000000000000007,3.6000000000000001,625.20036314147944,626.78784449967577,627.68849197928921,629.44695311910323,630.90859544302862,631.47973568994587,70.469164239467162,69.278256128984268,69.25611847868872,70.706036085028714,72.408575881760541,72.534769633324927 +1988,2,9,14,0,482,205,13.5,486.32917272149774,44.97974979498747,54.290878852966884,199.93321927153752,0.0,110.84361509692143,569.88094112016472,1.0,110.84361509692143,303.97785949401219,1.5,8.9000000000000004,3.6000000000000001,549.60849578628756,551.23324434776555,552.16049471240331,553.85693169709475,555.26488654521972,555.81641913352371,63.918280682576309,62.72540004256436,62.481005592279885,63.598201249088419,65.011558899257992,65.184853416823316 +1988,2,9,15,0,186,161,14.5,254.37607479062314,51.97497479542525,59.86614127877533,215.9272656232977,0.0,62.383671703742003,288.66596164022496,1.0,62.383671703742003,159.00917488788153,1.5,8.3000000000000007,2.1000000000000001,272.86145184035365,274.42059339919717,275.32586234837794,276.24342633905707,277.00483710101696,277.30280441995393,36.687514149939751,36.048901519808524,35.694119667748751,35.907409476321064,36.33058517675056,36.358041796364759 +1988,2,9,16,0,46,116,15.5,133.29183473164221,61.6455806703355,67.91946640440995,229.3961511898383,0.0,37.713121011387578,140.07569435908744,1.0,37.713121011387578,82.030191256831131,1.3677534166041139,8.9000000000000004,3.6000000000000001,129.65626378336731,131.10322068819957,131.94989889884505,131.99748069715287,132.04644167454018,132.05661248866966,22.251747717457054,22.095082757759538,21.931291227901028,21.832286947595758,21.725085324119522,21.593687189639148 +1988,2,9,17,0,23,76,16.5,80.926516811363101,72.90309103573048,77.631614851318,240.68510217435548,0.0,22.81467080210945,84.861235365841068,1.0,22.81467080210945,49.768928738180492,1.5,7.7999999999999998,3.1000000000000001,76.446538783436694,77.400005783012503,77.958693573036896,77.978294305428236,78.000260002224493,78.003442505087691,13.311977679037959,13.326354993715217,13.330995788611141,13.327202840948608,13.26376797664089,13.139494483155431 +1988,2,9,18,0,3,17,17.5,17.196938558132398,82.67290975354676,86.23604387794329,248.72028717745627,0.22789516109727315,5.349128881934325,17.094906190368707,1.0,5.349128881934325,10.470694356897093,1.5,6.0999999999999996,3.1000000000000001,15.515244113407952,15.879081416048102,16.091742889375301,16.059843995310601,16.03546728998656,16.023951550701767,3.1236906479160846,3.1143522714485483,3.1091207751333463,3.0992159985788024,3.0792150769079334,3.0545908042952035 +1988,2,10,8,0,272,21,7.5,44.426289049146185,81.38383191163634,85.0592190115456,112.06742036581566,0.13767217480092508,4.8624487361075461,67.599606883022034,1.0,4.8624487361075461,28.314143615606316,1.5,-1.7,2.6000000000000001,18.286872677339485,43.710035505582525,43.825885482769941,44.177387892140182,44.46332402907121,44.580622411363606,2.903227799486217,2.9452317755687769,2.9403112330751222,2.9951579626283591,3.055133394660642,3.0315043772600192 +1988,2,10,9,0,616,44,8.5,200.57795997057877,70.24949737166419,75.2747020531615,121.44028263223267,0.0,29.570832643447908,260.80149067362225,1.0,29.570832643447908,125.87792656719603,1.5,1.7,3.6000000000000001,222.74242077570301,223.11660296005826,223.32678818499906,224.2012778403907,224.91711358648931,225.20634152993418,17.76557954745239,18.241827933388507,18.202334716998834,17.979648825584626,17.596724144902357,17.117086180241579 +1988,2,10,10,0,801,62,9.5,390.11952551013695,59.22008392609069,65.81794362704622,133.14465329489062,0.0,74.909480268427117,483.91253876094805,1.0,74.909480268427117,243.41497844874854,1.2721497726871265,5.0,7.7000000000000002,454.7842387927646,455.2390508842343,455.48246680936273,456.66642236275675,457.64746691673741,458.03187409592528,45.651353852599492,43.93278546768876,42.472135111832657,42.055115368822683,42.257653758391058,42.64781631101787 +1988,2,10,11,0,867,76,10.5,533.15894878200766,49.96486379157483,58.17758195495327,147.1691906478622,0.0,107.40225232111672,645.87530775947459,1.0,107.40225232111672,331.90996087093248,1.5,6.7000000000000002,6.2000000000000002,625.09092856963355,625.73479550138359,626.0805516716473,627.42973748562861,628.55713697873523,628.99126177611436,62.403400015237764,60.387299770531591,59.697623838962649,60.582176162636976,62.091936059746423,62.619880168889232 +1988,2,10,12,0,901,83,11.5,622.6502872714608,43.669466224229346,53.205556970551584,163.7327608809421,0.0,136.08544538500647,747.98862976611429,1.0,136.08544538500647,387.07965373979033,1.5,7.7999999999999998,6.7000000000000002,731.18069918957474,731.85764165202954,732.21262049987763,733.58945398967842,734.74729682674263,735.18786698794429,77.430101490177861,75.60160139705367,75.512164961162028,77.301532811497154,79.500202020940378,79.8475026686354 +1988,2,10,13,0,910,86,12.5,649.91596363355791,41.71378031833492,51.70665517595437,181.99666869718004,0.0,136.02642097904834,778.96872945864754,1.0,136.02642097904834,403.89383721179979,1.5,8.3000000000000007,6.2000000000000002,763.0064188948628,763.70047411467226,764.0647974384791,765.45597613534142,766.62447639504694,767.07044713715129,76.961532998662037,75.399074248413427,75.589218726386576,77.553264278644235,79.773819855560461,80.054268571632576 +1988,2,10,14,0,896,82,13.5,608.93372147147772,44.67538293345445,53.97801260232664,200.04150566018237,0.0,127.63734496356034,732.24405427792829,1.0,127.63734496356034,378.63046306394853,1.5,8.9000000000000004,4.0999999999999996,714.89322458749325,715.56618351219913,715.92174910370863,717.29823182629275,718.45346567423871,718.8948620152031,72.779277518333515,71.003693660916412,70.839078516342482,72.482394630992118,74.52039594746428,74.880706584716322 +1988,2,10,15,0,881,65,14.5,511.08441285567727,51.71096159562968,59.57973999341961,216.1052809473515,0.0,107.03119082098105,621.87124549588032,1.0,107.03119082098105,318.01807661457332,1.5,9.4000000000000004,3.1000000000000001,600.11353155281256,600.66575193542246,600.9573433325412,602.19404163848515,603.23004011937019,603.6264905309514,62.560283336290453,60.328963691563509,59.415380868481499,60.101727047282338,61.532352905648985,62.106716061112763 +1988,2,10,16,0,801,53,15.5,357.41911924915746,61.42237599213253,67.6632921710506,229.61232501565243,0.0,66.045398407522612,445.23759852305744,1.0,66.045398407522612,223.05562853478654,1.3356527503108806,9.4000000000000004,4.0999999999999996,413.52288800136307,414.00341790066278,414.26388806059549,415.36715395941673,416.28035060225477,416.63937982773695,40.641146255379354,39.226698406103125,37.831830940971884,37.244039441749919,37.214379067260509,37.44467213088592 +1988,2,10,17,0,619,37,16.5,171.99932802310667,72.71392803595309,77.40297230605752,240.92123582948315,0.0,22.387841756046441,228.62755198958098,1.0,22.387841756046441,107.95803607986207,1.5,8.3000000000000007,3.6000000000000001,187.54131879096246,187.86017082774481,188.04022852895605,188.79691390492826,189.41449590322796,189.66560139986888,12.900088939087754,13.410867079102017,13.658896395723257,13.825151961035942,13.726812190702871,13.358957954397853 +1988,2,10,18,0,169,17,17.5,28.407430555237681,82.62228149918302,86.12961558624667,249.05390764978094,0.2115143445486518,3.8449878130146802,42.027278322756601,1.0,3.8449878130146802,18.281720875073034,1.5,6.0999999999999996,2.6000000000000001,10.569415797768411,22.193908334375543,26.508572703159125,26.796833979894231,27.031286801186592,27.127502663109105,2.2976133384753998,2.3321569006271368,2.3283350556089686,2.3735622520068902,2.4234058601951891,2.4051569438132012 +1988,2,11,8,0,143,29,7.5,41.587942800892563,81.33062500170243,84.94985512618533,111.73052439777354,0.12400180143588678,7.0833966808953788,56.425239216543829,1.0,7.0833966808953788,26.393225829019443,1.5,-1.7,3.1000000000000001,24.903762257668678,40.023405753611755,40.200397296611499,40.493447156927196,40.732656535743523,40.829993281808243,4.1927210206788468,4.2248190775329908,4.2178011312799653,4.2610442594828299,4.3036541845588729,4.2703008480509972 +1988,2,11,9,0,440,80,8.5,193.57352473012685,70.05533067565489,75.04136352854461,121.2024849087423,0.0,35.521883421455328,240.32517779582804,1.0,35.521883421455328,121.24405760349293,1.5,0.0,4.5999999999999996,207.85394493990077,208.62009498783138,209.06162246505426,209.8338866890129,210.46930095984266,210.72346339124798,21.338193275206049,21.646025130831912,21.502457408489391,21.237350153171032,20.882061501509106,20.457761836091503 +1988,2,11,10,0,517,123,9.5,336.9407925414427,58.98961511194514,65.55547667425068,132.9286803968773,0.0,71.202947095295144,404.35693927456884,1.0,71.202947095295144,210.61494028880702,1.5,2.7999999999999998,4.0999999999999996,378.65058703679063,379.71984977383914,380.33082578359921,381.51110898605623,382.4878341920039,382.87211964257767,42.835515316280699,41.575920879364823,40.582818998705861,40.444094435201954,40.76267447946514,41.008801336160957 +1988,2,11,11,0,235,275,10.5,399.93512166453752,49.69137310513524,57.88374999205358,146.99650064231793,0.0,102.45300093191038,444.94979303473383,1.0,102.45300093191038,247.79661222740359,1.5,4.4000000000000004,6.2000000000000002,422.75655658749497,425.47243805689607,427.05124688508567,427.72503085002097,428.3010444944743,428.51068137807823,59.592037790838596,58.748815069866943,58.455780900924232,58.897916993896111,59.472234863769195,59.433469608588069 +1988,2,11,12,0,0,214,11.5,214.0,43.356019655494734,52.885926416308656,163.63772138427248,0.0,65.376314014071312,215.04217245019132,1.0,65.376314014071312,130.88060546673196,1.5,5.5999999999999996,5.7000000000000002,200.52416056760313,203.2440465411799,204.83799260948285,204.63858936524656,204.49504828831363,204.41823040655925,38.122560997007902,37.977836147711358,37.921493003685562,37.890579311258129,37.75942525205857,37.488451544803951 +1988,2,11,13,0,2,154,12.5,155.2483571322133,41.385299827096134,51.378078243555706,182.0082120563285,0.0,47.948878597228891,154.63932785187342,1.0,47.948878597228891,94.869069937604806,1.5,4.4000000000000004,4.0999999999999996,143.85161014173431,145.90458999389585,147.10818667127336,146.9383197870707,146.8138468721169,146.74959179941811,27.980228779791414,27.893774407844745,27.852500256843001,27.808714252431791,27.682850970992199,27.47209975422177 +1988,2,11,14,0,6,142,13.5,145.55525539456534,44.36871671460919,53.6623552581911,200.15572623428022,0.0,44.784375419550273,145.33313946712471,1.0,44.784375419550273,88.930989339009741,1.5,3.8999999999999999,5.2000000000000002,135.29766964235017,137.20161394952012,138.31774409658274,138.15249917521854,138.03094437248561,137.96870542139649,26.132566575596368,26.041681551326349,25.999874991556457,25.959359091957957,25.846093755960542,25.653943842254066 +1988,2,11,15,0,5,113,14.5,115.5533409374562,51.44613917735057,59.29165236990446,216.28970788177267,0.0,35.714105703855488,114.98765670535651,1.0,35.714105703855488,70.549731392459506,1.5,3.8999999999999999,4.5999999999999996,106.88667086421185,108.42389966260124,109.32521471558543,109.1770412233529,109.06681962019785,109.01166470020345,20.859877210480924,20.784309456253066,20.743310418197499,20.695928680307443,20.591511068034244,20.437855815671217 +1988,2,11,16,0,2,117,15.5,117.76838826780093,61.199327525547154,67.40627977950938,229.83456555001226,0.0,36.109046367444442,117.70889307247764,1.0,36.109046367444442,71.894253695216435,1.3039437277377557,2.7999999999999998,5.7000000000000002,109.21543016923489,110.76395641949676,111.67181930471955,111.51746208141191,111.40231575712957,111.34502264725165,21.128208117682352,21.042822602203856,20.982197403746724,20.914000140347984,20.792082654403846,20.638333642663447 +1988,2,11,17,0,6,47,16.5,48.33194719468483,72.52539230446904,77.1739873320699,241.16288099764003,0.0,14.930468383522438,48.033186269082321,1.0,14.930468383522438,29.456082778564419,1.5,2.2000000000000002,6.2000000000000002,44.378921086075579,45.032873819896494,45.416374765769731,45.336323836481945,45.27554918512908,45.246425457962374,8.7188018256140989,8.6979980346206176,8.6854841629133226,8.6587960278501619,8.6023135165343589,8.5307139314878953 +1988,2,11,18,0,1,11,17.5,11.069356502412136,82.57238007432173,86.02297230800244,249.39249065295544,0.19523595023140985,3.4604460749704549,10.934593224056332,1.0,3.4604460749704549,6.7311709928364554,1.5,2.2000000000000002,6.2000000000000002,10.03927447147996,10.249166549400444,10.350696587073314,10.327142787424158,10.309010450842159,10.300580945064073,2.0202789913228769,2.0138513763714325,2.010466896781399,2.0035672760600263,1.9900232818927401,1.9740940316566395 +1988,2,12,8,0,0,40,7.5,40.0,81.27564094716763,84.83807723973403,111.39074241929826,0.11026418269987592,11.703137063561831,41.40871322949404,1.0,11.703137063561831,24.400294876006889,1.5,1.7,2.1000000000000001,34.826025333623349,37.24681517906815,37.549502593568178,37.490341800875107,37.445615827093278,37.423990258628379,6.8359455858019285,6.8169322296295372,6.8054684820357405,6.7855588672892351,6.7439284953305885,6.6899339828743773 +1988,2,12,9,0,1,115,8.5,115.26213253485905,69.8568335812769,74.80336307594337,120.96368061486702,0.0,34.167986882825815,117.2758534995518,1.0,34.167986882825815,70.400234114910901,1.5,2.2000000000000002,1.5,107.7193549958054,109.16483289287787,110.01201966129946,109.87138653155525,109.76686408216675,109.71452468772262,20.007791378455597,19.969009858928608,19.920572743029606,19.834119963873221,19.684586210980889,19.509601459304953 +1988,2,12,10,0,0,197,9.5,197.0,58.754833266856245,65.28840310763945,132.71200406951564,0.0,58.730760159484639,200.37292378348005,1.0,58.730760159484639,120.47404390255065,1.5,2.7999999999999998,3.6000000000000001,186.33168090672098,188.73683472586507,190.14608792368097,189.95599542514307,189.81820110152384,189.74541907043894,34.393472081102423,34.188076272325901,34.054400396719259,33.956836799325444,33.805596384324886,33.590318019168599 +1988,2,12,11,0,0,161,10.5,161.0,49.41348132481821,57.585356803325865,146.82394816649315,0.0,49.570061684706815,160.75989152740325,1.0,49.570061684706815,98.370340993185152,1.5,2.7999999999999998,5.2000000000000002,149.55268629177175,151.6627573791921,152.89975122914527,152.71817009778624,152.58471313192771,152.51623933841091,28.940651540727803,28.83345087975734,28.778363740387491,28.727463009197464,28.599156249818073,28.389239355662472 +1988,2,12,12,0,1,200,11.5,200.60790331901697,43.038186210813386,52.56194680472298,163.5445471513616,0.0,61.448949084584598,201.17192915253776,1.0,61.448949084584598,122.66598593510687,1.5,2.2000000000000002,4.5999999999999996,187.49643030228447,190.06801872360967,191.57516567149156,191.38051353341183,191.23970370806802,191.16508647220712,35.831756614110631,35.705020470388909,35.655235084787819,35.623194443941948,35.491703078573941,35.23209880099494 +1988,2,12,13,0,0,192,12.5,192.0,41.05313161051471,51.04578189258566,182.02396734999158,0.0,59.037317542800075,192.02062847867757,1.0,59.037317542800075,117.39070275103084,1.5,2.2000000000000002,3.6000000000000001,178.83849964627234,181.32983899588086,182.79009860820136,182.60073079916825,182.46347528430044,182.39100655039437,34.424636323350292,34.317731901448731,34.276383575815991,34.242059588010299,34.104951805002706,33.84834488336989 +1988,2,12,14,0,1,297,13.5,297.59700886501548,44.059882821720585,53.344027590026776,200.27590299573043,0.0,88.979759473721458,303.3250168777468,1.0,88.979759473721458,182.25154508049835,1.5,2.2000000000000002,4.5999999999999996,283.99409053942554,287.51778524748437,289.58122032271041,289.38081376094453,289.24303528347383,289.16232055602268,51.788624803847796,51.558461705154009,51.500351528111899,51.539439867003594,51.45100328462258,51.106480771664572 +1988,2,12,15,0,1,152,14.5,152.51500822729241,51.18063398709624,59.001995088505744,216.48053305252282,0.0,46.968234540722634,152.28177100912842,1.0,46.968234540722634,93.170927798772709,1.5,2.7999999999999998,4.5999999999999996,141.63620747799968,143.63636634656922,144.80893475014798,144.63163323237418,144.50093383022755,144.43428279255568,27.42565857795358,27.321551296519971,27.267386100437918,27.215554245683808,27.090904905417766,26.893336166384927 +1988,2,12,16,0,0,119,15.5,119.0,60.976537765227505,67.14853109654885,230.0628208869512,0.0,36.632362991321912,118.74847115521588,1.0,36.632362991321912,72.645499136410336,1.2726264690252598,2.7999999999999998,4.0999999999999996,110.17888940860489,111.75204325211074,112.67437427194052,112.51845495663136,112.40218440213306,112.34428791953114,21.429607233041661,21.34397153444489,21.285120684386111,21.218674103746398,21.097135578937735,20.940805343639436 +1988,2,12,17,0,0,64,16.5,64.0,72.33755921122456,76.94474304225531,241.40995879874097,0.0,19.784184207669313,63.61276990270283,1.0,19.784184207669313,39.02315845046413,1.5,2.7999999999999998,3.6000000000000001,58.763091458419233,59.628767021243917,60.136421415662518,60.036803692454022,59.961502452904384,59.92507733526643,11.556167803193979,11.529468181583134,11.512092783240922,11.476635642156788,11.402252764752307,11.306966812541493 +1988,2,12,18,0,0,28,17.5,28.0,82.5232351497229,85.91616165725375,249.73591066423262,0.17905960959825232,8.4244617067341068,28.184801813121886,1.0,8.4244617067341068,17.068188306608025,1.5,1.7,6.2000000000000002,24.408302507927875,25.705398935957653,25.997957951293447,25.952631659986622,25.918217540423349,25.901730526020494,4.9203868683819394,4.906332912986759,4.8980889008304427,4.8833092840751116,4.8528073914591623,4.8139928831849135 +1988,2,13,8,0,384,19,7.5,54.310548756716742,81.21891764029085,84.7239388420597,111.04817491986664,0.09647428284739282,4.6595320649973822,82.664907104845895,1.0,4.6595320649973822,34.517173469988279,1.5,-6.0999999999999996,7.2000000000000002,28.945087911760968,52.461100553385059,52.56789249928039,52.961731255084878,53.281892521637303,53.413437425799593,2.7914869993075171,2.8393368519815279,2.8345331122083008,2.8965467125930555,2.9654680049745852,2.9422311714182272 +1988,2,13,9,0,754,35,8.5,235.72651152294304,69.6541077870552,74.56080754974307,120.7239066026633,0.0,37.427624571134615,303.65911100955515,1.0,37.427624571134615,147.35826060102596,1.5,-6.0999999999999996,10.800000000000001,261.4974508263831,261.82891775036001,262.0101223608408,262.82726172064105,263.50123690841269,263.77045664869212,23.096272474569187,23.242590260843169,22.74581757729435,22.110262851595305,21.569124209098305,21.126356557713375 +1988,2,13,10,0,886,48,9.5,422.20381549862719,58.515850695679774,65.01683565221114,132.4946390257813,0.0,84.263194922086086,519.36669174192832,1.0,84.263194922086086,262.73188572252127,1.5,-5.5999999999999996,9.3000000000000007,490.4379026191101,490.85882427536819,491.08038947344329,492.10947827190563,492.96903354044298,493.29992234370718,50.372799668699592,48.334202559752754,47.082895294842238,47.079516045152197,47.798529661735145,48.348784124626455 +1988,2,13,11,0,951,58,10.5,572.01271332254714,49.131304759974725,57.282517050693755,146.65153164685566,0.0,123.96363942801302,690.61471109958268,1.0,123.96363942801302,355.22858806793164,1.5,-4.4000000000000004,8.8000000000000007,671.08136024804071,671.56210847249895,671.80480672191902,672.93362709145561,673.88735469782387,674.24600596020332,70.729701482088061,68.820843193450173,68.585733478525682,70.158747575366604,72.116919796045735,72.532122823135381 +1988,2,13,12,0,974,64,11.5,660.51826675071845,42.71607871980465,52.233732265461995,163.45324076339114,0.0,142.80751285703056,790.98427055691332,1.0,142.80751285703056,409.79794014260159,1.5,-3.2999999999999998,7.7000000000000002,775.66730227089897,776.1782724116581,776.42919340589947,777.59409959829554,778.57851197821481,778.94808904611864,79.954491585135514,78.7499275541347,79.39804039569232,81.762223676760229,84.043817207539519,84.107282121024767 +1988,2,13,13,0,977,65,12.5,683.68269560492865,40.717393440399846,50.70988280370529,182.04395792575224,0.0,147.69318426872218,817.06849132627406,1.0,147.69318426872218,424.04580448094924,1.5,-2.7999999999999998,8.1999999999999993,802.79544008044661,803.30794124919078,803.55735667453087,804.71958393857301,805.70205654799747,806.07016510535925,82.359026791126624,81.363869907270669,82.241111284142363,84.764154842602494,87.13440184615645,87.071228145497216 +1988,2,13,14,0,976,63,13.5,650.05647023822894,43.74901329976338,53.02315037963357,200.40205592419713,0.0,140.56942639639308,779.24768358330823,1.0,140.56942639639308,403.34489988986206,1.5,-1.7,10.300000000000001,763.33046156301123,763.83644392280519,764.08592245213811,765.24507119594421,766.22530012935783,766.59312123929453,78.960865389545916,77.566743820112293,78.00614388588204,80.247331885398893,82.557531496996887,82.667537312507733 +1988,2,13,15,0,938,56,14.5,543.1566652797045,50.914571712026564,58.71088414062431,216.67774025966327,0.0,112.77805752398065,657.39054549569585,1.0,112.77805752398065,337.41953380147692,1.5,-0.59999999999999998,7.2000000000000002,636.43399274791784,636.9030615820335,637.14282982738007,638.25637366735566,639.19484063582922,639.54929544093318,64.759656307571788,62.850981472689469,62.378901457645917,63.649041860378624,65.411719987926219,65.879943334869608 +1988,2,13,16,0,874,45,15.5,388.0408895881626,60.75410734328253,66.8901465640115,230.29703614620476,0.0,74.016287817374646,480.16222016800867,1.0,74.016287817374646,241.58700413178283,1.5,0.0,8.8000000000000007,448.29813419237547,448.69836319375804,448.91074967863386,449.89898886440471,450.72162654237081,451.04049681437709,44.824277112556551,43.022638060533644,41.674458384866469,41.39490606275271,41.76218036222415,42.213518422099668 +1988,2,13,17,0,714,32,16.5,196.06970758348305,72.15050162679512,76.71532056862688,241.6623878237846,0.0,28.097988996983688,256.88568901203689,1.0,28.097988996983688,122.77478745172633,1.5,0.59999999999999998,5.7000000000000002,212.74770633301273,213.05519649147439,213.22611134190916,213.98258908754954,214.60214278784656,214.85187957805908,16.780405537881688,17.281855782488712,17.322143852249919,17.12845498680575,16.740514410851674,16.245136949614377 +1988,2,13,18,0,258,16,17.5,34.854004494373129,82.47487463579031,85.80922989139027,250.08404149389412,0.16298469412710434,3.8213639068322949,53.120086940125681,1.0,3.8213639068322949,22.373529017615883,1.5,-0.59999999999999998,7.2000000000000002,10.711392796065681,32.320381737690965,32.411703320465193,32.744016563793551,33.014132384218343,33.125143865451541,2.291108297968385,2.3315367658225656,2.3276879233759806,2.3802738447048921,2.4390986196316886,2.4206165137020865 +1988,2,14,8,0,303,23,7.5,51.475357144141086,81.16049476417788,84.6074952447704,110.70292085960808,0.08264664333487985,5.3657422888177182,75.342554897112876,1.0,5.3657422888177182,32.733353796199253,1.5,-5.5999999999999996,1.5,31.727282719513518,49.167761729967737,49.294695252038665,49.67568936855389,49.985641933565191,50.112767545935711,3.2025207629606629,3.2479718623482379,3.2425190185238737,3.3018415302980002,3.3665033093940275,3.3402852346471872 +1988,2,14,9,0,692,44,8.5,231.09497795404306,69.44725760456342,74.31380614978731,120.48319719459116,0.0,37.177533131646229,295.47682789205447,1.0,37.177533131646229,144.69460649755374,1.5,-2.7999999999999998,3.1000000000000001,255.10926660148158,255.47355812466753,255.67423858143326,256.55836080800839,257.2865527043673,257.57800067700174,23.038638082760247,23.035511906562306,22.428582580173529,21.824888072754206,21.37898279292952,21.030906914234901 +1988,2,14,10,0,839,61,9.5,419.01183716129623,58.27278192628285,64.74088893750671,132.2765972296968,0.0,84.718159358487171,512.13704823668866,1.0,84.718159358487171,261.24670173241236,1.5,-0.59999999999999998,2.6000000000000001,483.35786468477852,483.89835093825394,484.19077218909166,485.3931052444251,486.39332207036898,486.782421002788,50.242310145907936,48.35783927551897,47.318410563287209,47.555676465681358,48.455783260460606,48.968193044070567 +1988,2,14,11,0,908,73,10.5,567.85986107199562,48.844961499241265,56.97534682411844,146.47924648234675,0.0,124.06218373240816,682.33768176842307,1.0,124.06218373240816,353.16695923977272,1.5,1.1000000000000001,2.1000000000000001,662.29082891010387,662.90173915284367,663.22165581117758,664.52956501427695,665.62780670297559,666.04715329943087,70.595185648404026,68.933022680845994,68.851549226703213,70.493677057393924,72.511682020793074,72.829473319691431 +1988,2,14,12,0,939,80,11.5,659.37865945272711,42.389811071278864,51.90139779925809,163.3638020718342,0.0,143.56431176789445,786.40657144310683,1.0,143.56431176789445,409.57500600537014,1.5,3.2999999999999998,0.0,770.27592395804197,770.92011561057234,771.24944510588921,772.58872580550451,773.71337195949377,774.14155030751783,80.194659526400571,79.279493934438051,80.107491036485769,82.535952235756568,84.822968768571727,84.746825213115102 +1988,2,14,13,0,948,82,12.5,686.6539734135813,40.37820369764252,50.370498064016296,182.06820526374068,0.0,149.36450844566644,817.37297801956333,1.0,149.36450844566644,426.36953938118012,1.5,5.5999999999999996,4.0999999999999996,802.13419839197525,802.78654076535565,803.11794491819114,804.46059888313994,805.58843213949945,806.01710280022212,83.162391269037329,82.415159504054103,83.483537199861615,86.068188811563388,88.410814674174702,88.22135105457582 +1988,2,14,14,0,931,79,13.5,643.17721238885474,43.43624049498533,52.69984436048633,200.53420296245056,0.0,140.12520856589336,767.74278206046097,1.0,140.12520856589336,399.59859826461246,1.5,6.0999999999999996,3.6000000000000001,751.1150924790511,751.75527070625901,752.08405989612959,753.42093304184061,754.54375868844579,754.97148768364787,78.575831730366374,77.448763130754742,78.06592325612614,80.363754991540972,82.585548002611901,82.6307944635046 +1988,2,14,15,0,880,73,14.5,533.866417454253,50.64807719092802,58.41843476204736,216.88131045379282,0.0,116.96770256195366,642.59943693434752,1.0,116.96770256195366,332.26655565490876,1.5,7.2000000000000002,4.0999999999999996,621.23022847686343,621.84882721217241,622.17589239283711,623.49231719745569,624.59551028158376,625.01836481959492,66.845634535136952,65.14172418107384,64.923703800215264,66.401364059037547,68.234271159417233,68.593799058857243 +1988,2,14,16,0,778,67,15.5,375.59188912604725,60.53213494932157,66.6312251393049,230.5371534819255,0.0,72.864295263683687,461.63173059660267,1.0,72.864295263683687,234.61639081467231,1.5,7.7999999999999998,4.5999999999999996,430.58827979239993,431.10260822569353,431.38369711165564,432.61982334928729,433.64305321341072,434.04550977164399,43.811748520719085,42.165495178191684,41.024463835880894,40.948812338501114,41.514603303959227,41.94996929953917 +1988,2,14,17,0,538,50,16.5,175.72326286205868,71.96428987910284,76.48579902719106,241.9200841768128,0.0,28.656280076564208,225.59269046509428,1.0,28.656280076564208,110.39882740622691,1.5,7.2000000000000002,4.0999999999999996,188.1149940084504,188.53765356714354,188.77722404861123,189.58782578370958,190.25205498607482,190.52004272123733,17.254374751572715,17.643097927727265,17.569787006707035,17.335172041928629,16.987432931356683,16.551652600615821 +1988,2,14,18,0,153,21,17.5,32.465828655494448,82.42732467012628,85.70222189347754,250.43675634950804,0.1470103431748455,5.0857418355648125,44.540913242545798,1.0,5.0857418355648125,20.620923481200304,1.5,3.8999999999999999,4.0999999999999996,15.952436327708057,29.665418946742452,29.791839219720067,30.025982709073503,30.216952479555488,30.294809733002012,3.0142685677548848,3.0404647967560687,3.0354153745992036,3.0704460806696687,3.1059138410677658,3.081886702250721 +1988,2,15,8,0,44,33,7.5,37.225771723763422,81.10041373740883,84.48880352152459,110.35507766302833,0.06879534803499161,9.2842013598222941,42.102231028700388,1.0,9.2842013598222941,23.139558429771046,1.5,3.2999999999999998,6.2000000000000002,31.156124973355929,34.737536128445313,34.975697010483252,35.070775477119739,35.150282346394448,35.180812005008946,5.4468984086293766,5.4506363030980092,5.4415247854253801,5.4496373349527083,5.4459625432117695,5.4029466978917924 +1988,2,15,9,0,85,127,8.5,150.34007485779949,69.23638987719042,74.06247033864986,120.24158420237585,0.0,40.104672228552062,162.27728112556449,1.0,40.104672228552062,92.556226370495068,1.5,6.0999999999999996,5.2000000000000002,146.55259275220314,148.0332131595851,148.89863879232291,148.95936418673702,149.01992250521309,149.03425784952631,23.748235199160877,23.668189331554515,23.478649221823549,23.296340036793968,23.095794684458827,22.888275263724303 +1988,2,15,10,0,2,160,9.5,160.86226083137322,58.025743643443434,64.46067942841512,132.05788791601574,0.0,48.887465543155059,161.84076849721021,1.0,48.887465543155059,98.291406149591509,1.5,9.4000000000000004,7.7000000000000002,150.43209495557278,152.47875276851684,153.67830797270122,153.49662293035081,153.36292886662153,153.29449559783734,28.570894942712062,28.432327588122973,28.356106666323971,28.294896259867468,28.172555271415202,27.97801233468212 +1988,2,15,11,0,5,278,10.5,280.74774196943338,48.55457135897493,56.663963581231116,146.30708504776686,0.0,83.320191353303514,286.55165346716399,1.0,83.320191353303514,171.89847574239613,1.5,11.1,8.8000000000000007,268.12675982330779,271.42544832256743,273.35715096691723,273.15516073482706,273.01459968429947,272.93419081982574,48.498680082221036,48.274596805719433,48.216678836372004,48.246439491770595,48.161607163307636,47.844282428450889 +1988,2,15,12,0,11,204,11.5,210.83788144404454,42.059498161639986,51.56505922023198,163.27622819292054,0.0,63.970412951229548,212.56551915626585,1.0,63.970412951229548,128.9560233299448,1.5,12.800000000000001,7.2000000000000002,198.54849953073045,201.16940681303601,202.70487660624593,202.50974966490423,202.36912448550814,202.29399232924089,37.23194602289589,37.117454122575566,37.097587283021355,37.097891283196127,36.983117808058886,36.706332239017925 +1988,2,15,13,0,6,229,12.5,232.85449949364929,40.03568132075035,50.0277451102767,182.09672898299937,0.0,70.676238652471355,234.69290932816773,1.0,70.676238652471355,142.46701038201462,1.5,13.9,9.3000000000000007,219.2011938922461,222.09923055650108,223.79705714780084,223.59753392660053,223.45512495983903,223.37752091431463,41.131653582510552,41.01461160191689,40.999059230388596,41.004364116746771,40.877666232260303,40.567541807316651 +1988,2,15,14,0,6,250,13.5,253.66300869502237,43.121696994586344,52.3742301581037,200.67236000012633,0.0,76.517937094241788,256.76793925150719,1.0,76.517937094241788,155.23989201512813,1.5,14.4,6.7000000000000002,240.04479005576636,243.13842397903016,244.95048774615196,244.74554259209356,244.60043309153698,244.5201097016465,44.521116252946925,44.371996381737468,44.346685009907674,44.366195516884353,44.253393136040351,43.931269142974422 +1988,2,15,15,0,4,185,14.5,187.1122855500401,50.38127432506425,58.12476136731872,217.091221711761,0.0,57.10876998557665,188.12529819108013,1.0,57.10876998557665,114.38238248629708,1.5,13.9,5.7000000000000002,175.30333608847738,177.67433772863569,179.06380214317065,178.87014883131584,178.72902613045363,178.6553732383432,33.304127566181371,33.169128832846241,33.114579775205961,33.082332329243847,32.964976516457469,32.730592937444825 +1988,2,15,16,0,1,154,15.5,154.40079897489608,60.310717252374005,66.37186423786754,230.7831120921716,0.0,46.775836603937471,155.46475085327231,1.0,46.775836603937471,94.335772998438628,1.5,13.9,5.2000000000000002,144.33945361747411,146.30207382590234,147.45241385061337,147.2753760680861,147.14483839808912,147.0782936750139,27.35881499324837,27.223014160283583,27.140653982537078,27.070156261256333,26.940987842270292,26.756017580779048 +1988,2,15,17,0,0,77,16.5,77.0,71.77899171347586,76.25625548567868,242.18296151757355,0.0,23.567555986522237,76.961765927618828,1.0,23.567555986522237,46.971264458626315,1.5,13.300000000000001,4.0999999999999996,70.939624586842257,71.961648923500562,72.560906869918071,72.447981828685357,72.36296259746446,72.321505517482791,13.78007231645755,13.747269301610721,13.720282915015799,13.671242655129095,13.577816718631022,13.463461235686678 +1988,2,15,18,0,0,22,17.5,22.0,82.3806096084314,85.59518115751557,250.79392789704133,0.13113549035992325,6.8709257258096628,21.717934924246855,1.0,6.8709257258096628,13.399674617341363,1.5,12.199999999999999,4.0999999999999996,19.961307877364259,20.367830373148426,20.546075757326378,20.506910545547406,20.477063365355114,20.462878811500598,4.0126703031515811,4.0009141218188589,3.9941955887655567,3.9817800653695006,3.9564690028725655,3.9248466146322558 +1988,2,16,8,0,33,40,7.5,43.238622355626511,81.03871765623033,84.36792244626835,110.004741217765,0.054933992667134716,11.492799363406554,46.966660278319047,1.0,11.492799363406554,26.578125763527797,1.5,4.4000000000000004,6.2000000000000002,37.521574983254887,40.205964406517687,40.501797016055093,40.507640321049138,40.515491905050496,40.515725456365061,6.7238114668148858,6.7136209222436856,6.7023428482278176,6.6935334885411537,6.665815202365649,6.6126289245320553 +1988,2,16,9,0,74,133,8.5,153.63676682986758,69.02161389791762,73.80691375872428,119.99909695086568,0.0,41.6800666503134,165.02875946389764,1.0,41.6800666503134,94.598254977888359,1.5,4.4000000000000004,7.7000000000000002,149.28849954311318,150.82458600123149,151.72235047064709,151.78944897990891,151.85556268561598,151.87171283899096,24.692658299435973,24.563444943364683,24.350301714448598,24.169719637095213,23.98105468388718,23.790819426660118 +1988,2,16,10,0,8,161,9.5,164.48482459483154,57.77485462263747,64.17632535651673,131.83851761386563,0.0,49.698434093208199,166.00057519788078,1.0,49.698434093208199,100.51733644983005,1.5,5.0,5.2000000000000002,154.39257983238633,156.45274306399182,157.66004416519087,157.47751823642375,157.34339943443422,157.27454493325439,29.036568332669514,28.887741096410412,28.810101051820219,28.75382081512177,28.639038725643427,28.445851944165607 +1988,2,16,11,0,9,293,10.5,297.98726174999155,48.26025583261217,56.34848608810761,146.13503669933394,0.0,88.400121077720399,305.08486043039113,1.0,88.400121077720399,182.50516989417079,1.5,5.5999999999999996,7.2000000000000002,285.76259298010069,289.19783896014002,291.20881259475885,291.01006234148628,290.87342205550368,290.79336679505718,51.389486595919813,51.160966876362004,51.122596105246572,51.194595707062561,51.133974730756577,50.790345440223625 +1988,2,16,12,0,10,256,11.5,262.26265972365542,41.72525584453309,51.22483309957394,163.19051350238962,0.0,78.857349176897387,265.8791855941426,1.0,78.857349176897387,160.52730212627904,1.5,6.7000000000000002,7.2000000000000002,248.77207607799375,251.93654390106636,253.78981229446535,253.58544660269558,253.44132081371166,253.36086991767965,45.842156570486289,45.70703424896314,45.705832489049847,45.744606485312325,45.634597713614255,45.293089947600748 +1988,2,16,13,0,744,144,12.5,625.3923917367872,39.689945755445315,49.6817416733927,182.12954684740868,0.0,143.52844764095559,739.72126063643043,1.0,143.52844764095559,390.32682020330429,1.5,7.2000000000000002,6.2000000000000002,723.01986378338529,723.87085585775321,724.32197280794867,726.25804352587545,727.86323782686145,728.49244950231821,79.930299102804497,79.605334173659998,80.786188264774154,83.420394530772626,85.620615850708504,85.269365768422816 +1988,2,16,14,0,947,64,13.5,646.42652346722184,42.80551556644523,52.04642823143167,200.81654085576193,0.0,145.85373187986133,769.90073982504759,1.0,145.85373187986133,401.12274219906885,1.5,8.9000000000000004,6.7000000000000002,754.77784595887476,755.28795420675624,755.53565931955063,756.69979908794164,757.68145399628497,758.05081782095738,80.996526929106338,80.314111809789765,81.490058565544786,84.078789579063212,86.338399247040357,86.106109386000782 +1988,2,16,15,0,922,57,14.5,547.90365930942721,50.11428598891382,57.82997748522135,217.30744921165683,0.0,113.77270324316265,658.19959484156573,1.0,113.77270324316265,340.36539543653913,1.5,9.4000000000000004,5.2000000000000002,638.20289388030812,638.67778612061727,638.9197098085815,640.04190904674169,640.98583610126445,641.34493623807953,64.307317481356606,62.96292890313115,63.128358954289126,64.800678099381088,66.694395620595387,66.946874695233745 +1988,2,16,16,0,856,47,15.5,393.63510179177621,60.08994882477244,66.11215967763209,231.0348482292116,0.0,78.768963840736447,482.07484935952954,1.0,78.768963840736447,245.11402742585483,1.5,10.0,5.7000000000000002,451.58607471222564,452.00184543082179,452.22217784683249,453.23877409921499,454.08682365706591,454.41453097309602,46.710047354491969,44.891415746059181,43.899073310204848,44.105424068015509,44.944553570489269,45.445264402552041 +1988,2,16,17,0,704,33,16.5,202.99390069261176,71.5946722560857,76.0267649341167,242.45093110488725,0.0,32.610001422723272,261.26733207129115,1.0,32.610001422723272,127.09711429931815,1.5,10.0,5.7000000000000002,218.45872724735494,218.77454341067869,218.94860173829551,219.72429709414035,220.36291121852096,220.61892820585251,20.074558164252402,20.247408361868569,19.865517483988381,19.342399450658995,18.872526814555666,18.472514751044006 +1988,2,16,18,0,273,17,17.5,38.475621956281628,82.33475201866196,85.48814977653198,251.15542831891844,0.11535888851856463,4.0752028716561108,57.114162522610393,1.0,4.0752028716561108,24.656569774801785,1.5,8.3000000000000007,2.1000000000000001,18.219402884275102,34.972209015032533,35.069012833319533,35.420905306060135,35.706943582676757,35.824491330667215,2.4428475165109624,2.4856386668086508,2.4815197685561325,2.537153377094036,2.5993100067656223,2.5795095963485153 +1988,2,17,8,0,417,20,7.5,61.815262678188084,80.97545123460316,84.24491242968631,109.6520058781417,0.041075658436351595,4.9177552928251478,90.244255445617611,1.0,4.9177552928251478,39.199566371357449,1.5,-2.2000000000000002,2.1000000000000001,46.470875078495901,57.786059755345889,57.897163155047643,58.314079398757407,58.652996867892554,58.792252062530778,2.9463173259010862,2.9970050103885466,2.9918971366711133,3.0574929507491606,3.1303383000896758,3.1055710451976029 +1988,2,17,9,0,729,38,8.5,244.47066357599743,68.80304132624512,73.54725214928584,119.75576230680751,0.0,43.310710686157499,308.2286753012005,1.0,43.310710686157499,152.88771319148151,1.4572196610457833,2.7999999999999998,2.6000000000000001,268.35537780676117,268.71426379787653,268.90901343690956,269.7779771468293,270.4953216186604,270.77962386693224,26.961799693778868,26.375150533315264,25.407803518280467,24.828820624997078,24.518210468796973,24.428949854949519 +1988,2,17,10,0,863,53,9.5,432.8305319410037,57.5202356637625,63.88794665203868,131.61849017433346,0.0,86.659837465483051,525.42951947366259,1.0,86.659837465483051,269.46841604611149,1.5,5.0,2.6000000000000001,497.9915322663972,498.45447710736818,498.69983619407634,499.79882893972496,500.71697444999035,501.0707025373996,50.344315421023772,48.690142942417381,48.125607070866543,48.851371479129973,50.0923337175741,50.532380600641389 +1988,2,17,11,0,898,74,10.5,575.7779033507519,47.96213804099643,56.02903436124012,145.9630877823944,0.0,125.7563371456951,687.0322741781755,1.0,125.7563371456951,358.05398306157571,1.5,8.9000000000000004,3.6000000000000001,667.80710108703727,668.42230474269195,668.74157591467451,670.05629445249485,671.15702767114703,671.57948945734654,70.564309046396588,69.576585582197211,70.124969704181623,72.190563838795157,74.191654977522006,74.227320444251163 +1988,2,17,12,0,960,66,11.5,671.6979173460536,41.38720088178609,50.88083671062072,163.10664963041435,0.0,145.23911122760893,797.63360144938167,1.0,145.23911122760893,416.71033962833758,1.5,11.1,4.0999999999999996,783.04560393858947,783.56716076266616,783.82128753766222,785.00041133339857,785.99252064496045,786.367571293016,80.353430175896108,79.994830595963151,81.377944209787472,84.105981595395079,86.281357180452332,85.877050085819988 +1988,2,17,13,0,950,77,12.5,696.08351820230666,39.34111690534463,49.3326057242069,182.166674771051,0.0,157.43400381867511,824.28882578772766,1.0,157.43400381867511,432.00980692207872,1.5,13.300000000000001,3.1000000000000001,809.94588686218606,810.55072632794258,810.8495108029814,812.13225203649722,813.21093215254155,813.61915836083028,87.056132895948664,86.779180233686247,88.357566096583113,91.323041508517051,93.658533532709271,93.079604024438339 +1988,2,17,14,0,745,141,13.5,602.56638971222264,42.4878290988383,51.7165588152361,200.96675725700516,0.0,138.63437488454204,712.57277488447176,1.0,138.63437488454204,376.16280776871088,1.5,14.4,2.6000000000000001,694.66230150472438,695.53311309169987,695.99791907228439,697.89421721825954,699.46594011542936,700.08250299811641,77.247937035304602,76.941469070079819,78.070334741837442,80.597585508878225,82.709094893882153,82.367117550974527 +1988,2,17,15,0,729,110,14.5,501.324395898852,49.84723394081329,57.53419569537593,217.52996520709164,0.0,110.81244429008714,598.09703697523628,1.0,110.81244429008714,313.06842740596016,1.5,15.0,3.6000000000000001,577.50065130150438,578.21237751028161,578.59513654982379,580.20958272467794,581.54946426148524,582.0747133978158,62.553738025313528,61.624860786553022,61.939823481648517,63.706422892753189,65.540801735474005,65.586737520871651 +1988,2,17,16,0,523,148,15.5,361.95499904746293,59.869922068089075,65.85220562550802,231.2922952106833,0.0,80.846477439374993,426.1171662569368,1.0,80.846477439374993,226.14217065607528,1.5,15.0,4.0999999999999996,397.25876436278207,398.58712669564966,399.34898064973714,400.58324803567996,401.60742770038144,402.00830401069777,47.576067055520149,46.350669431049781,45.721378503972431,46.069375650361991,46.850915979816783,47.067239787778348 +1988,2,17,17,0,297,99,16.5,171.86935786761347,71.41139398079159,75.79740025822387,242.72390184072137,0.0,38.397468251683158,201.58161476600347,1.0,38.397468251683158,107.12199443007161,1.5,13.300000000000001,4.0999999999999996,174.18694403047573,175.24503450950567,175.85916259574122,176.36997625632455,176.79513246801474,176.96097956096173,23.110293701714863,23.109706846358542,22.796681568259739,22.491203378037881,22.225552495954275,21.951174023351712 +1988,2,17,18,0,96,29,17.5,36.730547277219365,82.28977267826512,85.38116843333056,251.52112936907025,0.0996791332780121,7.7103402646205259,44.828552478296196,1.0,7.7103402646205259,23.046829831041538,1.5,11.699999999999999,0.0,26.402991435856862,33.423863954135953,33.619708751419317,33.787455561451566,33.925375640077817,33.980543047279042,4.5384340823051321,4.5533146125253072,4.5457199176444982,4.567374673986814,4.5826038238929776,4.5466580664170149 +1988,2,18,7,0,0,0,6.5,0.0,86.89821060765797,89.40571092966177,104.64311860286004,0.7124714611972573,0.0,0.0,1.0,0.0,0.0,1.5,-0.59999999999999998,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1988,2,18,8,0,246,29,7.5,54.57704193581958,80.81157554735563,84.0320740837635,109.37293538314636,0.02332258622414083,6.8707751721641195,74.052916122080148,1.0,6.8707751721641195,34.816131997327226,1.5,0.59999999999999998,0.0,45.957959689830659,50.685227694500824,50.851817128645997,51.296403703850707,51.658256566647381,51.806509262675654,4.0936888856191658,4.1461095873398275,4.1392146004028936,4.2080333624636967,4.282223474714284,4.2492307080893781 +1988,2,18,9,0,599,59,8.5,231.29313431378628,68.58078610439267,73.28360326366892,119.51160471247522,0.0,42.479049905459959,287.7284134857162,1.0,42.479049905459959,145.00119124861092,1.4098433503702452,6.0999999999999996,2.1000000000000001,251.30858462781168,251.78384535360956,252.04912086731747,253.00124379516043,253.78519063354102,254.09756001345497,26.269116449180888,25.631323200350987,24.761550955715663,24.344649327589853,24.178942636276052,24.177477428754848 +1988,2,18,10,0,748,81,9.5,413.63780616252029,57.26200952486461,63.595664876509616,131.39780680193965,0.0,88.028116198756834,498.65552011382056,1.0,88.028116198756834,258.5058556906468,1.5,8.9000000000000004,3.1000000000000001,471.69781204445621,472.31656317453735,472.65394294105386,474.05715732594786,475.22199338450827,475.67776799678359,50.912738718770449,49.509775891450417,49.075878489530162,49.986499395257788,51.302719435912636,51.677483268614829 +1988,2,18,11,0,500,173,10.5,454.72171790871579,47.66034268373032,55.705729610768685,145.79122164123822,0.0,105.87366048016973,529.51957190623398,1.0,105.87366048016973,284.23373506635681,1.5,12.800000000000001,3.1000000000000001,509.68672794892564,511.04915256501772,511.82003502930542,513.40520283821968,514.71819784913464,515.23458564838666,59.865494481069305,59.418173611955595,59.878426002652866,61.409015123362693,62.851887443792748,62.705629887631346 +1988,2,18,12,0,678,183,11.5,613.95792526060518,41.045450895698856,50.53318797536981,163.02462545658454,0.0,138.52228765695972,719.15264083620082,1.0,138.52228765695972,383.65828981859715,1.5,14.4,2.1000000000000001,699.7029905360306,700.95077722957535,701.63949780526775,703.72240784643418,705.44401374088523,706.12368886362094,77.264240063584879,77.2846768697203,78.528809879772609,81.033843878276585,82.969426839449511,82.392913157134885 +1988,2,18,13,0,598,184,12.5,576.47722829806526,38.989315083728485,48.98045542058674,182.20812682286027,0.0,135.1753216396074,674.07854351015658,1.0,135.1753216396074,360.69966363737541,1.5,16.100000000000001,3.1000000000000001,656.08275562085487,657.29146643099,657.9581045722756,660.07719400526844,661.82692029258737,662.51931620624327,75.341643957092387,75.481494902272729,76.754872171348026,79.225614934462413,81.100034575186783,80.452530491834295 +1988,2,18,14,0,335,181,13.5,390.06937855373553,42.168770540065466,51.38474186347724,201.12301881884068,0.0,95.033350860518297,450.25956294188461,1.0,95.033350860518297,244.79086983003143,1.5,17.199999999999999,2.1000000000000001,433.978284992353,435.32305536978856,436.0866496279358,437.79508700383082,439.20301209656128,439.76291780894729,53.517632772409733,53.51970586118545,54.205915065799516,55.709911618959254,56.934824662463726,56.563993215073907 +1988,2,18,15,0,441,170,14.5,408.65047521048336,49.580238733541876,57.237527565970915,217.75873900082024,0.0,96.210004173983052,474.89857851230408,1.0,96.210004173983052,255.75564466103833,1.5,17.199999999999999,4.5999999999999996,454.93058195733136,456.29709350963878,457.07433039735395,458.6164405540307,459.8924232093932,460.39572038625568,54.659056419287204,54.162921188027426,54.461112486844179,55.779018901935295,57.051890974405204,56.968703080340816 +1988,2,18,16,0,371,139,15.5,292.30835914766351,59.65072714123803,65.59209454592258,231.55538343167478,0.0,66.69511323488824,341.15086374895276,1.0,66.69511323488824,183.27664252198824,1.5,16.699999999999999,3.6000000000000001,317.41633384014403,318.64712600153155,319.35572492107696,320.58680799890351,321.60409716517256,322.00629459407332,39.062330547413438,38.235778565027289,37.862902481283015,38.285504275324826,38.97078365432936,39.100776181346724 +1988,2,18,17,0,261,99,16.5,164.04821625483385,71.2292166794134,75.56823221560991,243.00178031496554,0.0,37.209242641761996,190.69160897959321,1.0,37.209242641761996,102.32183808036267,1.5,15.0,6.2000000000000002,165.35341274728185,166.41112144952763,167.02546146669698,167.54099824022029,167.96953931894728,168.13700591850758,22.410358244128119,22.343362864648732,22.005749212790292,21.743345795364313,21.53116674163762,21.314012577072269 +1988,2,18,18,0,35,32,17.5,34.883508330368237,82.24569057441137,85.27427639380838,251.89090242509187,0.0840946853009345,8.9034789142740784,38.849126810052347,1.0,8.9034789142740784,21.678924111399159,1.5,12.199999999999999,6.7000000000000002,28.522454663222607,31.902089474024685,32.130853108993911,32.218585148452739,32.292040163658292,32.320160251328424,5.2229707032432451,5.2260943209802901,5.2173645012269008,5.2245771864054076,5.2203717332060684,5.1791730285517232 +1988,2,19,7,0,0,0,6.5,0.0,86.8650971753866,89.31076749535072,104.28397236966633,0.6700568955061823,0.0,0.0,1.0,0.0,0.0,1.5,4.4000000000000004,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1988,2,19,8,0,4,35,7.5,35.432675568598391,80.61575812084594,83.79022903656578,109.11463646743331,0.004914257669911001,10.694919887472288,35.635426473666378,1.0,10.694919887472288,21.597655661565998,1.5,5.0,3.1000000000000001,32.314471542300083,32.827323360962929,33.104335306866027,33.046548862482808,33.002662002878637,32.981649556312526,6.2464250809241317,6.2285519397813554,6.2180845390441348,6.1992778140294149,6.1604984186326712,6.1112132438475637 +1988,2,19,9,0,4,66,8.5,67.16841277603362,68.35496437289049,73.0160867866879,119.2666462240659,0.0,20.875042838912545,66.575055917988266,1.0,20.875042838912545,40.955469713026673,1.36340105384313,5.0,3.6000000000000001,61.651854971548325,62.562236886619431,63.096093040348201,62.991706568752249,62.912862440258138,62.874663238847496,12.204489027561156,12.1631732153902,12.135232645317668,12.095521417404765,12.020314303892969,11.926761553897173 +1988,2,19,10,0,10,185,9.5,189.49325186302121,57.00030085589804,63.299603156170235,131.17646609000357,0.0,56.989865398801392,191.96941471737887,1.0,56.989865398801392,115.8574917919925,1.5,6.0999999999999996,3.1000000000000001,178.72108274148849,181.03938085128999,182.39756440717372,182.20551520010889,182.06574487378901,181.99259698191401,33.230139588175454,33.069027764472402,33.004888934367067,32.981564885446943,32.882067300250256,32.662128433141206 +1988,2,19,11,0,9,150,10.5,155.11334815045481,47.35499599158272,55.378694185013856,145.61941863101464,0.0,47.667201308537358,155.2901798515459,1.0,47.667201308537358,94.783002232756502,1.5,7.2000000000000002,5.7000000000000002,144.68277278185801,146.67610511904886,147.84427492555892,147.67123874182451,147.54405946566064,147.47879468863277,27.766818189008429,27.684769435071882,27.663806374953126,27.6432380377241,27.534489973819205,27.32373731112493 +1988,2,19,12,0,8,265,11.5,270.12280766978472,40.70012432272256,50.18200541246065,162.94442710485342,0.0,81.602954988561223,273.52799288056218,1.0,81.602954988561223,165.35816659893209,1.5,8.3000000000000007,5.2000000000000002,255.9082790954275,259.17174729425744,261.08280584907652,260.87944041510582,260.73666445053425,260.65620891912727,47.392754480003845,47.299215321211257,47.332584369540911,47.39241120948428,47.272746045296209,46.887687065061691 +1988,2,19,13,0,5,164,12.5,167.30489573643121,38.634660966402265,48.6254090558212,182.25391523040625,0.0,51.70988483210801,167.00330507958418,1.0,51.70988483210801,102.27271595208776,1.5,8.9000000000000004,4.5999999999999996,155.52703985812016,157.70508615225819,158.98161724980429,158.81010081681185,158.68517144149018,158.61983614500642,30.121014298586125,30.055088311572863,30.04147262064506,30.020426216648808,29.894502569696296,29.652146252056195 +1988,2,19,14,0,6,258,13.5,261.77176244244123,41.848472837925264,51.05109699366206,201.28533301974872,0.0,79.23854558095951,264.74915833591706,1.0,79.23854558095951,160.22382557881474,1.5,9.4000000000000004,5.2000000000000002,247.54995401544244,250.7359229992116,252.60178900769961,252.39767338036114,252.25372161833826,252.17334266788339,46.043784750572485,45.940208327023754,45.956894258681366,46.004706795510032,45.882993028724236,45.516728319624448 +1988,2,19,15,0,5,139,14.5,141.72757883613951,49.31341962485507,56.94008359261067,217.99373691770896,0.0,43.802946782429821,141.33309631831298,1.0,43.802946782429821,86.574746875490931,1.5,8.9000000000000004,3.1000000000000001,131.49016804821608,133.34829406735875,134.43747725080343,134.27049748113512,134.14719142842873,134.08453513205717,25.537844398703736,25.461680087382828,25.433737263386092,25.401404180861302,25.290091056735243,25.095794108706031 +1988,2,19,16,0,3,108,15.5,109.2520827479689,59.4324518908245,65.33191715142983,231.8240403777655,0.0,33.828805889721771,108.65691189445177,1.0,33.828805889721771,66.682230356136387,1.5,8.9000000000000004,2.1000000000000001,100.85622101723304,102.31144437856203,103.16467046667627,103.01744078421531,102.90747009505893,102.85291662071926,19.756179777439925,19.683910045218294,19.645418818302396,19.600230636510197,19.500260289006636,19.354835645730265 +1988,2,19,17,0,1,64,16.5,64.253093925396882,71.0481974354701,75.33932941477218,243.28447085091332,0.0,20.00043206949044,63.622572502625324,1.0,20.00043206949044,39.173979909506158,1.5,9.4000000000000004,2.6000000000000001,58.876889090241519,59.752103358905664,60.265351808898792,60.164271333171214,60.087869720460091,60.050916648771064,11.691950746778392,11.656370197833592,11.631431438095557,11.592583235241097,11.518529608307803,11.426552970425531 +1988,2,19,18,0,0,18,17.5,18.0,82.20252290709303,85.16751150270917,252.26461853759665,0.06860389125435405,5.6610727207185247,17.690955371888489,1.0,5.6610727207185247,10.954870421657127,1.5,9.4000000000000004,2.1000000000000001,16.427901469720673,16.678351166426349,16.825250116885758,16.790259378397266,16.76346385768101,16.750863001391476,3.3056497475923607,3.2956028664948911,3.2900677281349,3.2793802320182825,3.257963647443272,3.2319131914419437 +1988,2,20,7,0,0,2,6.5,2.0,86.82924249281876,89.21259478206018,103.92281213172187,0.6273214147273232,0.62900808007983589,1.9848077521785983,1.0,0.62900808007983589,0.015192232816429896,1.5,7.2000000000000002,4.0999999999999996,1.8253223855245198,1.8531501296029285,1.8694722352095299,1.8756705857217075,1.8808602466092257,1.8828469596102357,0.36899764798304163,0.36921632459341241,0.36860339968980449,0.36911959228922131,0.36883811850404763,0.36595188437787218 +1988,2,20,8,0,0,43,7.5,43.0,80.41607011639863,83.5442600228377,108.85567287695524,0.0,12.838052213964357,43.479869725103995,1.0,12.838052213964357,26.22210371433988,1.5,7.7999999999999998,4.5999999999999996,39.259080283385337,39.824664750076145,40.156382873563224,40.090203852829994,40.040104457553042,40.01595068048065,7.4991002327641691,7.4772301454159722,7.4643268239692615,7.4420999911319026,7.3964972124039035,7.3375966216476467 +1988,2,20,9,0,1,137,8.5,137.29662784438096,68.12569438567482,72.74482425242718,119.0209065547761,0.0,40.987859583281363,139.41604917377586,1.0,40.987859583281363,83.894564294486301,1.3178955339664302,7.7999999999999998,4.5999999999999996,128.33614660267153,130.03401318756059,131.02889109209153,130.8731020043152,130.7581729788366,130.69962426122206,24.031073829578261,23.899217572785837,23.798213749972959,23.706625052909327,23.56943782723804,23.408387976602562 +1988,2,20,10,0,0,220,9.5,220.0,56.73523613255143,62.99988611619666,130.9544640598713,0.0,66.193825745129189,223.34767030727758,1.0,66.193825745129189,134.58677973815077,1.5,8.9000000000000004,5.2000000000000002,207.98622383010286,210.64660759454881,212.20492021556947,212.00801516911196,211.86685358680279,211.79071533770517,38.567340456578833,38.383611868590883,38.321099906102212,38.315845013501594,38.222558352400895,37.96687775233314 +1988,2,20,11,0,2,276,10.5,277.14577849396835,47.04622567999294,55.0480515163596,145.4476561317055,0.0,83.44967263333487,281.4548859500066,1.0,83.44967263333487,169.67548416191775,1.5,9.4000000000000004,6.2000000000000002,263.21399948370788,266.52171926167489,268.45847663760594,268.25469905375087,268.11225347233511,268.03132498821418,48.476807892868841,48.338993315040028,48.349723074648942,48.414525695587422,48.314345439925241,47.952033086821395 +1988,2,20,12,0,2,347,11.5,348.29018448677135,40.351340368577794,49.82740808665652,162.86603793833635,0.0,103.9067679441207,355.53938043654148,1.0,103.9067679441207,213.45264220610878,1.5,10.0,4.5999999999999996,333.49477669378473,337.50912215744768,339.85845543731386,339.6755178517783,339.55506241613273,339.47821772494979,60.216256137760574,60.13864746631166,60.240960921492835,60.401772588621029,60.302380027158748,59.797029258411158 +1988,2,20,13,0,0,344,12.5,344.0,38.277275545655044,48.267585008327515,182.30405038271698,0.0,103.51189905021597,350.32806839047549,1.0,103.51189905021597,210.80905201797941,1.5,10.6,5.7000000000000002,328.43202357899418,332.4467879656745,334.79652539617155,334.61237787375148,334.49082515855741,334.41363432020489,59.997174216352477,59.927409697216426,60.029693206678715,60.184270610517594,60.074025021533657,59.560290901160023 +1988,2,20,14,0,1,304,13.5,304.63316821698771,41.52706887895507,50.715743432149885,201.45370517568003,0.0,91.659555773904884,309.27679425202132,1.0,91.659555773904884,186.57661454284141,1.5,11.1,6.7000000000000002,289.53065987963453,293.15659335035019,295.27951573246565,295.08095869242061,294.9447439201486,294.86441544413867,53.203088741487498,53.10328644048019,53.153730263400561,53.244653560523204,53.130939013170149,52.697328432436798 +1988,2,20,15,0,1,261,14.5,261.54986900838065,49.04689448802848,56.641973138309766,218.23492227712705,0.0,78.915574674458952,265.31909747937345,1.0,78.915574674458952,160.09020290678137,1.5,11.699999999999999,5.7000000000000002,247.90383757687621,251.04932901182647,252.8912915315214,252.68669963923699,252.54243122702013,252.46188602805688,45.865687573149351,45.722559505952574,45.722157690749476,45.767359840425804,45.666305945036783,45.328832869942559 +1988,2,20,16,0,1,215,15.5,215.42148278967105,59.21518178387359,65.07176235544216,232.09819063911064,0.0,64.287824158215116,219.38322834252693,1.0,64.287824158215116,131.79295408155309,1.5,11.699999999999999,6.2000000000000002,203.99379515387682,206.56824860129967,208.07616085523352,207.88490933815604,207.74787392941226,207.67383624352482,37.490626380766841,37.287583968562139,37.203160818853497,37.186839778110006,37.094650771085291,36.857795276173178 +1988,2,20,17,0,1,120,16.5,120.25695133440662,70.86839060142583,75.11075829689115,243.57187555145936,0.0,35.789624874680328,122.32024118263804,1.0,35.789624874680328,73.468313497158363,1.4494700740616877,11.699999999999999,6.7000000000000002,112.01916924709118,113.50830117683567,114.38078460469362,114.23938724347575,114.13473204993831,114.08181118142872,21.001513236571292,20.908610596252803,20.817648507261083,20.721859772664288,20.57987862359948,20.42185370750688 +1988,2,20,18,0,0,31,17.5,31.0,82.16028509502121,85.0609101817521,252.64214847683238,0.0532050035639848,9.3889766921771827,31.190133789020511,1.0,9.3889766921771827,18.895406856913663,1.5,11.1,6.2000000000000002,27.901216992824509,28.644074863815849,28.887304327036503,28.836667491967496,28.798215213100764,28.779799924836343,5.4836999086837057,5.4680210463520167,5.4588328501138825,5.442340130866417,5.408319642561656,5.3650592314610632 +1988,2,21,7,0,0,0,6.5,0.0,86.79072063142641,89.11128487631315,103.5597330399962,0.584418790589038,0.0,0.0,1.0,0.0,0.0,1.5,3.8999999999999999,6.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1988,2,21,8,0,72,42,7.5,50.407409814540557,80.21263411047036,83.29429769943037,108.59608314319458,0.0,12.10140279529374,56.66914717001265,1.0,12.10140279529374,31.306113060181008,1.5,3.2999999999999998,7.2000000000000002,46.027882192831129,46.537238531410487,46.835779683955565,46.953553766624353,47.052232500636485,47.089947425240922,7.0933621675897687,7.0882693871915095,7.0741533562874306,7.0886565926526082,7.0907228375078013,7.0392141089719864 +1988,2,21,9,0,248,106,8.5,180.69912250194466,67.89309642477637,72.46993896250068,118.77440312247758,0.0,43.402879251212248,206.95453686282482,1.0,43.402879251212248,112.75840082594515,1.2733270387709026,3.2999999999999998,7.7000000000000002,184.58706107360965,185.70377546591996,186.35221252003439,186.93582675525028,187.42074462545679,187.60965730831003,25.94643299935267,25.475334597234102,25.043109820927558,24.94944586529008,25.002732722477894,25.00982772783879 +1988,2,21,10,0,403,164,9.5,348.85677211884399,56.46694359017461,62.696639815793915,130.73179420398571,0.0,81.634130675057662,403.09811074811415,1.0,81.634130675057662,218.46259801018732,1.5,2.7999999999999998,8.1999999999999993,379.3916482350046,380.81659955659637,381.63482584378454,383.0061339807134,384.14076422013488,384.58866108594964,46.816694026653003,46.256193402397322,46.309295422824135,47.229339357386138,48.243416396396427,48.240821869018802 +1988,2,21,11,0,296,240,10.5,410.98713515387942,46.734160903683204,54.713926068512855,145.27590856418894,0.0,102.88185607236396,461.03378174663624,1.0,102.88185607236396,256.13529302270848,1.5,2.7999999999999998,8.1999999999999993,440.53950500889363,442.73216358429488,443.99738805220181,445.19625060889666,446.19367914846725,446.58129691732677,58.394479100169569,58.395415301092612,58.961696338855596,60.174586447189846,61.060347424048551,60.616702402376184 +1988,2,21,12,0,665,162,11.5,594.15193465136804,39.99921896484878,49.469515559848325,162.7894385538562,0.0,137.71402363077675,694.89887905781802,1.0,137.71402363077675,371.36603340983532,1.5,3.2999999999999998,7.2000000000000002,677.44798096411671,678.45645944980458,679.0019388731755,681.04043362403809,682.72287575443784,683.38880584251297,76.134126568584847,76.825391982135628,78.59742996664211,81.283609280236377,83.035882462309601,81.997015163083773 +1988,2,21,13,0,679,155,12.5,610.15722561671009,37.91728008531449,47.907101692668704,182.35854083196605,0.0,145.92102410845814,714.18904468308938,1.0,145.92102410845814,381.1819018496887,1.5,3.2999999999999998,6.7000000000000002,697.96922945049596,698.87448001836651,699.35517706514918,701.37611376005839,703.04583361337484,703.70488731276726,80.469073046784928,81.305424144173031,83.277020642141466,86.162997307688784,88.005771747772172,86.811722731028397 +1988,2,21,14,0,835,111,13.5,643.4870518174024,41.20469142735071,50.378799960387674,201.62813841172922,0.0,146.53916797414985,757.22027437430506,1.0,146.53916797414985,400.87142673273343,1.5,4.4000000000000004,5.7000000000000002,740.78856790523446,741.49549423699432,741.85814245393124,743.58199897904581,745.01227361513315,745.57117558640857,80.705563709147015,81.249685947642007,83.127755762509182,86.065462750530187,88.022804444626743,87.077166322695888 +1988,2,21,15,0,840,73,14.5,538.54099887269945,48.780779722436584,56.3433043746253,218.48225536479822,0.0,117.8684875157514,637.65985444140142,1.0,117.8684875157514,335.11863263259534,1.5,5.0,5.2000000000000002,618.57706641686025,619.18524856555246,619.50156611106752,620.81256879915441,621.90448724679163,622.32772621628442,65.420980366856668,65.188594105083297,66.263376241123993,68.454074945332223,70.22134209044745,69.885301048191081 +1988,2,21,16,0,820,62,15.5,410.98727822490218,58.99899984301981,64.81171722709112,232.37775592560726,0.0,90.604046184741676,493.82811197355812,1.0,90.604046184741676,256.3399802082036,1.5,5.0,7.2000000000000002,464.36846494763341,464.91936149543812,465.21534155287588,466.42585850538609,467.43481032177647,467.82645110279771,51.839668186820155,50.572866742186712,50.405664540931198,51.561184936195424,52.991517426862451,53.256059627244099 +1988,2,21,17,0,665,45,16.5,218.43065856309323,70.68984777944799,74.88258312039372,243.86389434599536,0.0,41.262768497474227,272.75780809924566,1.0,41.262768497474227,136.91320799646135,1.3985738359832824,4.4000000000000004,5.2000000000000002,231.44761993262773,231.82934756266695,232.03954368697572,232.92718710060427,233.65859593129761,233.94950456372584,25.559347955465753,24.881862326253703,23.990257825025832,23.561621848701055,23.398128614157557,23.427996694068195 +1988,2,21,18,0,251,23,17.5,45.074618922033977,82.11899078418605,84.9545074299958,253.02336277669568,0.03789619900788213,5.3798565136329497,62.390638002062055,1.0,5.3798565136329497,28.768171401331148,1.5,2.7999999999999998,4.0999999999999996,33.884412104245051,39.806859077377538,39.936462925379587,40.308133412572317,40.61054039659053,40.734533111602786,3.2093180343682279,3.2534922981530707,3.2480784867462118,3.3059086886883322,3.3688191290638927,3.3428780026150209 +1988,2,22,7,0,7,1,6.5,1.1213195507650873,86.74961201014271,89.00693624727934,103.19482864554413,0.5414947538366607,0.31608119419986408,1.3893007146892851,1.0,0.31608119419986408,0.0075961164082149479,1.5,-5.5999999999999996,3.1000000000000001,0.91266355612034422,0.92657742815954869,0.93473783167362323,1.0230626915449537,1.0539101915785622,1.0549031342635333,0.18541924202557505,0.18552752991334021,0.18521853944744857,0.18547351090022421,0.18532469407814514,0.1838680212988103 +1988,2,22,8,0,368,29,7.5,73.589886428793903,80.00557448680037,83.04047424728721,108.33590343713634,0.0,9.4739231019716144,98.401502468579196,1.0,9.4739231019716144,46.60020758580859,1.5,-2.7999999999999998,3.1000000000000001,67.035659305977191,67.305213563100963,67.462090036410103,67.935384151258262,68.32123780132531,68.47880850404934,5.516248297001261,5.5587722473843488,5.5755019609395902,5.7073086815643652,5.8345768654693533,5.7994285941630332 +1988,2,22,9,0,695,51,8.5,263.5557585869808,67.65729271467602,72.19155590486416,118.52715110191814,0.0,51.63924829048478,323.95246005519004,1.0,51.63924829048478,164.98718669097531,1.5,0.59999999999999998,4.5999999999999996,285.71519141806459,286.12919189004458,286.35777745828,287.35243344542636,288.17348156001179,288.49853710394586,31.146816317824648,30.032619325681264,29.189229062104015,29.110547248749764,29.484796715828235,29.767786079751062 +1988,2,22,10,0,828,69,9.5,452.73728589527968,56.19555315781322,62.3899916841929,130.50844753279785,0.0,98.877546119422803,541.80368028692192,1.0,98.877546119422803,282.24024403276184,1.5,4.4000000000000004,7.2000000000000002,515.63349474027302,516.11646575392444,516.36752825463282,517.64811343542897,518.71424030732692,519.12919241721829,55.69724083645616,54.809610902306027,55.105964424378584,56.712886566691012,58.380850248294699,58.44181393160531 +1988,2,22,11,0,900,81,10.5,605.21149891015796,46.41893221240939,54.376443285178134,145.1041474083641,0.0,137.83726292181521,713.55445318034822,1.0,137.83726292181521,376.322756552356,1.5,6.7000000000000002,8.1999999999999993,694.98765313297599,695.65469720142084,695.99740878293903,697.36963601087132,698.51404889979392,698.95574104939226,76.034615425510154,76.263615653071355,77.900890399520321,80.570310253688831,82.492041091104014,81.706149100649725 +1988,2,22,12,0,859,92,11.5,654.32662155904291,39.64388072708984,49.10844784360152,162.7146067761747,0.0,155.01446812613156,766.76967334285666,1.0,155.01446812613156,406.66918901621017,1.5,8.9000000000000004,11.300000000000001,751.85077422868073,752.57908989282021,752.95076134444753,754.36566235099269,755.54648069482801,756.0009187315967,85.140156630861128,85.961528485631334,88.144700440246268,91.199040661295484,93.079505665206014,91.788376660956317 +1988,2,22,13,0,836,125,12.5,689.31907918574007,37.55479607688752,47.54407751187199,182.41739329389495,0.0,163.42767973028413,807.26394461755638,1.0,163.42767973028413,429.34979914325788,1.5,10.6,9.8000000000000007,791.5205316120705,792.30797812791582,792.7111689846829,794.53228663936704,796.04293170779158,796.63300619139341,89.729306678166168,90.885178227697878,93.312993462943822,96.545410400789592,98.510019904316536,96.990625593233815 +1988,2,22,14,0,846,84,13.5,627.34138884435652,40.881473063490155,50.040384862060826,201.80863363143146,0.0,148.43140815787694,736.14166386800366,1.0,148.43140815787694,389.91529614145685,1.5,12.199999999999999,9.3000000000000007,721.32224242494567,721.98916610341746,722.32691035292464,723.6885865690607,724.82478073853554,725.26223742848333,81.496922276874926,82.28820913154874,84.390269357455793,87.330700316328461,89.142540889901227,87.903367235015338 +1988,2,22,15,0,787,83,14.5,522.58153878025269,48.51519016423305,56.044184223949884,218.7356934041988,0.0,118.7409040740207,618.65640710559796,1.0,118.7409040740207,325.72693361978554,1.5,12.800000000000001,9.3000000000000007,600.1073291246106,600.64234399665634,600.91430541017428,602.37406277215632,603.58548873730024,604.05894895621498,65.662407858229045,65.730838776469298,67.00441174800126,69.352743465984048,71.111238449442894,70.539049088832186 +1988,2,22,16,0,759,69,15.5,395.13763676391591,58.78398658428162,64.55186694826237,232.66265508321942,0.0,86.952744673141851,473.97044345077472,1.0,86.952744673141851,246.75929469733211,1.5,13.300000000000001,10.300000000000001,445.866781325734,446.3756377874509,446.6474257788592,447.91833536862862,448.97428883976625,449.38742009148547,49.395760018568275,48.400612546765217,48.46188260447385,49.724889735785702,51.196990767434968,51.373363078655238 +1988,2,22,17,0,535,56,16.5,197.57854070342003,70.5126178057345,74.65486594830313,244.16042503802132,0.0,38.536952969958442,243.38057633941617,1.0,38.536952969958442,124.10475582309716,1.3489048365817418,13.300000000000001,10.300000000000001,207.42321630959137,207.88549234623551,208.14552605319074,209.04503853508621,209.78487798743106,210.08037636659313,23.671988369949226,23.020234676296134,22.278117363418893,22.014239937818367,22.006255849559405,22.084692755309508 +1988,2,22,18,0,234,24,17.5,45.011417703004454,82.07865185906508,84.84833682643682,253.40813177618992,0.022675596215184737,5.6213913506470714,61.173122741553556,1.0,5.6213913506470714,28.75955226340287,1.5,11.1,6.7000000000000002,36.003779890629758,39.505206186578789,39.641374732211716,40.024071648734775,40.335472464485647,40.463131367921733,3.3524855792909958,3.397884451647863,3.3922441331111051,3.4517452068202865,3.5163749901591208,3.4893777155883736 +1988,2,23,7,0,0,1,6.5,1.0,86.70600201515222,88.89965234452767,102.82819091779702,0.4986854381418557,0.31450404003991794,0.99240387608929914,1.0,0.31450404003991794,0.0075961164082149479,1.5,8.3000000000000007,9.3000000000000007,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1988,2,23,8,0,55,48,7.5,54.909590779479316,79.7950173157972,82.78292325375787,108.075167618558,0.0,13.98075050878583,60.430110553325825,1.0,13.98075050878583,34.10667444049151,1.5,9.4000000000000004,9.3000000000000007,50.03432310253563,50.60946427275946,50.946385144815046,51.076809476805906,51.186127161920638,51.227829906371682,8.1613475629546191,8.1735877784273061,8.1786325032242626,8.2076325878006067,8.2104782941409891,8.1400444096715159 +1988,2,23,9,0,310,116,8.5,212.25928387797239,67.41840733641686,71.90980167327514,118.27916348133911,0.0,51.265087965008384,243.21096073740296,1.0,51.265087965008384,132.27483365557487,1.5,11.1,8.1999999999999993,217.58981209768049,218.80202015830781,219.50494495031026,220.12378878738446,220.63988228474918,220.83933511764798,30.382803988853809,29.747065011882405,29.323835440958348,29.351231905023294,29.580332784536651,29.644262220820949 +1988,2,23,10,0,479,142,9.5,366.28561476043717,55.921196392362596,62.08007045758713,130.28441262551564,0.0,86.01586676494783,425.57078318435316,1.0,86.01586676494783,229.10330081702128,1.5,13.300000000000001,8.1999999999999993,402.30450489393559,403.49993692827519,404.17891994490151,405.51167922559506,406.61475031666339,407.04936216979229,48.706882548328693,48.364223619482736,48.723143022998045,49.938191749169562,51.083056320459335,50.955227831189973 +1988,2,23,11,0,591,172,10.5,519.08285620943821,46.10067150785348,54.03572954016598,144.93234122336605,0.0,122.76840067399525,603.3902065963573,1.0,122.76840067399525,324.98178466401544,1.5,15.6,10.300000000000001,582.73041755529084,583.97400555467152,584.66572465011996,586.64841134628443,588.28327900890758,588.93209159052969,68.303279687984386,68.778971587354391,70.124627969751359,72.364371860111476,73.894667619361783,73.133703843450448 +1988,2,23,12,0,489,232,11.5,554.4565144921437,39.285446914482975,48.74432535326484,162.64151765179008,0.0,138.0801748357068,635.2349898217301,1.0,138.0801748357068,346.44350439062271,1.5,15.6,9.3000000000000007,615.65798908477336,617.38452853099216,618.35730204012543,620.24687722566364,621.80872870733378,622.42459553827609,76.889330916127633,77.735933416665077,79.361141977282585,81.647004770545308,83.051469254170584,81.894797387315904 +1988,2,23,13,0,365,272,12.5,520.09594246942356,37.18994519678626,47.17863081104873,182.48061264686248,0.0,133.92282574231538,584.21984716268548,1.0,133.92282574231538,323.79262630920044,1.5,17.800000000000001,9.3000000000000007,564.13962901197533,566.4848961033822,567.82770684551406,569.20888835906362,570.35842491738686,570.80401584126344,75.104721943652891,75.868469773272182,77.241753960819935,79.060684776692739,80.058493866779699,78.923260330102181 +1988,2,23,14,0,400,241,13.5,499.71263262693287,40.55754612195748,49.700615871123446,201.99518948356373,0.0,126.13138274657152,569.53412930846798,1.0,126.13138274657152,312.6951628464833,1.5,19.399999999999999,9.3000000000000007,549.71210386740609,551.5460556756625,552.58762376507627,554.46193147420865,556.00899684980641,556.62122335472441,70.507021738046632,71.257286185114609,72.638764090377038,74.629774447757583,75.864060533805329,74.838283473966143 +1988,2,23,15,0,300,224,14.5,392.86433684876931,48.2502389971824,55.744718302969865,218.99519052756497,0.0,100.56310256296017,440.22402507856123,1.0,100.56310256296017,244.84639928500809,1.5,18.899999999999999,9.8000000000000007,420.05911766780048,422.12959340946361,423.32275493352245,424.46936828835408,425.4232945728516,425.79390819332713,56.905696901485889,57.039754966422052,57.717664505882688,58.944988280507303,59.799733077545284,59.271226708756558 +1988,2,23,16,0,3,181,15.5,182.30134077679193,58.57021995752443,64.29229477282978,232.95280411152044,0.0,55.111727442502179,183.90357959303077,1.0,55.111727442502179,111.4434926169704,1.5,17.800000000000001,6.7000000000000002,170.96456996291789,173.22968433645516,174.55684834012231,174.36740068074647,174.22909846054296,174.15718439302972,32.106020313468619,31.982363223062023,31.942650436696265,31.928415047118502,31.825396774410322,31.596718574297491 +1988,2,23,17,0,2,38,16.5,38.536909406371457,70.33674673841664,74.42766663835138,244.46136335345741,0.0,12.042922077253891,38.032398178381982,1.0,12.042922077253891,23.466618219734727,1.3004188054666028,13.300000000000001,9.3000000000000007,35.258013868657486,35.786740404330295,36.096825985860406,36.026213354181408,35.972309879504522,35.946785244647423,7.0354430186409269,7.0120541041689064,6.9981789295012549,6.9751226501624917,6.9303887943893185,6.8759990044782944 +1988,2,23,18,0,2,20,17.5,20.183266351474373,82.03927845631797,84.74243053467828,253.7963256584698,0.007541272120607024,6.2924632633675257,19.936300899383312,1.0,6.2924632633675257,12.286672579338108,1.5,10.6,5.7000000000000002,18.399938653883385,18.685169034521259,18.848389109765414,18.810156690438657,18.780907754820259,18.767123423734439,3.6744438084614179,3.6633646533064517,3.6572108148257692,3.6454403813760701,3.6217665554684766,3.5928016568725352 +1988,2,24,7,0,24,1,6.5,1.5069984197717665,86.6599798095183,88.78954038839235,102.45991026669031,0.45611627709435315,0.32109501949695096,2.3906760057811911,1.0,0.32109501949695096,0.0075961164082149479,1.5,3.2999999999999998,4.5999999999999996,0.91267106931395003,0.92658494135315439,1.042400527472189,1.3467133656028314,1.3493081960465902,1.3502998231982757,0.18834528143265095,0.18845023000865549,0.18813320290227223,0.18837824036317927,0.18820373717770181,0.18670397032756123 +1988,2,24,8,0,380,36,7.5,85.456737425661132,79.58109024270475,82.52177960477023,107.81390729026923,0.0,12.853780455846683,110.4844374165757,1.0,12.853780455846683,54.086506932793256,1.5,2.7999999999999998,5.2000000000000002,77.455150157274588,77.804548661643565,78.007474621013742,78.54818582373133,78.989120613252979,79.168872898146986,7.4173644835749046,7.5789948254296453,7.6756011749550579,7.8338309038092175,7.9244531288668112,7.7965062328231465 +1988,2,24,9,0,364,92,8.5,206.7467126832772,67.17656614151294,71.62480438744981,118.03045112345042,0.0,46.959928117629126,242.9404425809625,1.0,46.959928117629126,129.73956703793482,1.5,4.4000000000000004,5.7000000000000002,216.16383860913618,217.01033584848804,217.49739432638921,218.40620213243227,219.15630394278435,219.45365699673735,27.736144938866076,27.079285142862876,26.692144911009873,26.88871323236895,27.318470834827792,27.443001848852223 +1988,2,24,10,0,565,152,9.5,419.27787551381056,55.644006412834955,61.76700611702917,130.0596756846896,0.0,101.07136644122362,486.73396196376461,1.0,101.07136644122362,261.81458829540531,1.5,3.8999999999999999,5.7000000000000002,461.13978140505355,462.42603435393784,463.15287323560528,464.52180252566131,465.65738149827132,466.10206106032138,56.932105357192256,56.643030471470993,57.251137361025535,58.745210399754072,60.054152971677553,59.825021876395205 +1988,2,24,11,0,333,211,10.5,408.17827044818421,45.77951200165287,53.69191208894731,144.76045566991252,0.0,103.02483949267783,458.93937649070028,1.0,103.02483949267783,254.26682150694432,1.5,5.0,4.0999999999999996,440.14323060879167,442.07898311024189,443.19063844413688,444.33118205473937,445.27980739132818,445.64839677600798,57.999579346790135,58.337295685279088,59.220004367975754,60.593474240821742,61.435856455533454,60.753045614435337 +1988,2,24,12,0,782,169,11.5,688.42225830163682,38.92403939107432,48.377268863650926,162.57014344224083,0.0,164.77647675621841,801.46061371296628,1.0,164.77647675621841,429.49332236073406,1.5,6.7000000000000002,4.5999999999999996,783.19637877176081,784.24023744921726,784.79529861290575,786.87154976337979,788.58840855937797,789.26420778756869,90.686253573447289,92.040651331549782,94.504098942606504,97.679706217581412,99.523425868360135,97.859019542895993 +1988,2,24,13,0,79,317,12.5,371.06828497267782,36.822849264622306,46.8108798323004,182.5482019293745,0.0,105.79895605556207,391.7875872696805,1.0,105.79895605556207,229.0390892305428,1.5,6.7000000000000002,4.0999999999999996,371.28213179145416,374.64633967499924,376.60746118383179,376.9550787297876,377.26315783864283,377.36476265364104,60.660788885488486,60.909040561401959,61.390861330428194,61.974372620449806,62.144086622048427,61.439415064698665 +1988,2,24,14,0,2,282,13.5,283.3026185869814,40.23304262899525,49.35961012069986,202.18780232640364,0.0,86.039724198414191,286.27307113403293,1.0,86.039724198414191,173.45870290987295,1.5,6.7000000000000002,6.7000000000000002,267.71358998762133,271.15060147908474,273.16316513962988,272.96184663154111,272.82166062118768,272.74132132861291,49.938603360440986,49.90282944855111,49.973975025655335,50.042680346633688,49.89377738890807,49.444372149774217 +1988,2,24,15,0,130,221,14.5,294.73560011756149,47.986037663710725,55.4450108673008,219.26069774660172,0.0,80.454543880194237,318.71929755495103,1.0,80.454543880194237,183.06141613502598,1.5,6.7000000000000002,7.7000000000000002,301.42751925237872,303.72068220516957,305.0543180788784,305.71892685627603,306.27774198588611,306.48926683974315,46.012455246552562,46.123449161116909,46.488015895563393,47.139651002030888,47.507672266387523,47.078449983487793 +1988,2,24,16,0,233,203,15.5,305.01954381945666,58.3577752897377,64.03308198813355,233.2481161825289,0.0,80.0908321505635,335.6089304634412,1.0,80.0908321505635,189.00283515907469,1.5,6.0999999999999996,6.2000000000000002,313.75056170617609,315.87724931279467,317.11273755696868,317.63378104620529,318.07800688209875,318.24089473977961,46.016525750086508,45.710736382795652,45.824702187527251,46.403261262344891,46.896109302839108,46.703773080746494 +1988,2,24,17,0,51,132,16.5,145.88539942091381,70.16227784907629,74.20104283586024,244.76660298966505,0.0,40.611688131314168,154.02594253898403,1.0,40.611688131314168,89.829450433639664,1.253073471713198,6.7000000000000002,4.0999999999999996,138.9710895634494,140.49009389172346,141.37887571852696,141.44607447613294,141.51172575033632,141.52800505521697,23.90621045649495,23.697814727428863,23.530524508967307,23.466780236091093,23.408808997992875,23.296160339702734 +1988,2,24,18,0,139,24,17.5,36.992125351829571,82.00087898097335,84.63681930968916,254.18781448753342,0.0,5.7500313597723887,47.191902945002155,1.0,5.7500313597723887,23.512148525525099,1.5,5.5999999999999996,4.5999999999999996,32.118396363853144,32.361557458708567,32.504076899906508,32.776541564216622,32.998720832251422,33.089345901654141,3.4092723194750203,3.43991966890552,3.4342024775113345,3.4750988825511655,3.5167688962441317,3.4895469868289628 +1988,2,25,7,0,4,2,6.5,2.0923748332032601,86.61163732040784,88.67671034061217,102.09007556848267,0.41390131019770493,0.63020895291147816,2.2212222333970093,1.0,0.63020895291147816,0.015192232816429896,1.5,-3.8999999999999999,2.1000000000000001,1.8253241850268049,1.8531519291052139,1.9056106761411327,1.945624423176832,1.9508140840643498,1.9528004819789566,0.36969847041303633,0.36991634721716482,0.36930149743930346,0.36981531072547397,0.36952768474030939,0.36663112905409367 +1988,2,25,8,0,297,37,7.5,77.01385064302454,79.3639223830523,82.25717938533447,107.5521518571273,0.0,13.311091236860007,97.513842134619352,1.0,13.311091236860007,48.935075068238291,1.5,-2.7999999999999998,2.1000000000000001,69.695592074844271,70.053357504264198,70.260856814815881,70.81706617593359,71.270639269356138,71.455538166850403,7.7385679288901263,7.9410544174814026,8.0333950247222017,8.1579617367243369,8.1935937850020988,8.0472636929470767 +1988,2,25,9,0,614,67,8.5,263.48387331161643,66.93189666571774,71.33669361398256,117.78102283065967,0.0,54.947317075893309,317.73562969162202,1.0,54.947317075893309,165.11261156575699,1.5,0.0,3.1000000000000001,282.39881655290947,282.92701200077494,283.22214330753417,284.27939096037784,285.15287680893346,285.49838613826819,32.256392251009409,31.284440618597266,30.831684564216292,31.190376184055502,31.922784466949395,32.157403783064076 +1988,2,25,10,0,708,96,9.5,434.36115498535287,55.36411783473264,61.45092982730642,129.83422059465212,0.0,96.287788838586494,513.13858479525868,1.0,96.287788838586494,271.40379307056122,1.5,2.2000000000000002,5.7000000000000002,488.49436941197848,489.14808728959838,489.49988757852054,490.95608921159624,492.1600696958655,492.63514727818392,53.635737888241515,53.506872751390191,54.344434845047253,56.128648241528126,57.591552354290783,57.310381811214128 +1988,2,25,11,0,736,149,10.5,588.38727714596189,45.45558817457154,53.3451190216729,144.58845353478998,0.0,141.3960918130814,686.08139043968777,1.0,141.3960918130814,367.48104181069931,1.5,3.2999999999999998,5.7000000000000002,665.87904178765348,666.86427978883125,667.39416211075206,669.31189609988621,670.89630325866233,671.52156073160563,77.98220928584692,78.977006529031314,80.955552805985079,83.665508756587542,85.342371939878106,84.064397150759817 +1988,2,25,12,0,595,228,11.5,626.07560324561848,38.559780588622715,48.00739946630171,162.50045361683803,0.0,154.23185052723611,717.90250651648523,1.0,154.23185052723611,390.55174164928422,1.5,3.8999999999999999,4.0999999999999996,698.0513685338035,699.72285622025061,700.65580603784088,702.55398856705369,704.12456703115367,704.74185413636826,85.504271046980989,86.795543340005324,88.934988949063111,91.528671872428561,92.953581666182089,91.390537828219806 +1988,2,25,13,0,313,267,12.5,482.68889025088708,36.453630202555914,46.44094267089967,182.6201623359546,0.0,125.00594158399039,539.36421134228817,1.0,125.00594158399039,300.77629229161226,1.5,4.4000000000000004,6.7000000000000002,520.03651196373414,522.33094994683188,523.64676559691532,525.02932543399231,526.17702787315977,526.62460161845252,70.168492423329695,71.081781781701793,72.461878320139078,74.0964968567489,74.872279789766083,73.7111002476381 +1988,2,25,14,0,156,289,13.5,391.30927642880158,39.90809423927433,49.017484092818584,202.3864661893329,0.0,107.19133357110037,424.16203978535486,1.0,107.19133357110037,242.94135528615067,1.5,4.4000000000000004,7.2000000000000002,404.2128743317985,407.03821904477024,408.67774538862523,409.51646192379468,410.22160363040319,410.48826465424281,60.971105362262506,61.421441859802258,62.16887153740646,63.114262065763967,63.547606383133775,62.737207657664179 +1988,2,25,15,0,7,200,14.5,204.00049434107842,47.7226957762613,55.14516475732577,219.53216292299336,0.0,62.43770992467703,205.01376854389846,1.0,62.43770992467703,124.74769297896364,1.5,3.8999999999999999,6.2000000000000002,191.22950200673208,193.78399002537122,195.28041930994726,195.08297426506894,194.93981688134394,194.86421643348447,36.294989404590346,36.235649550082805,36.253772408391988,36.267609846660612,36.137502278867039,35.830684407194433 +1988,2,25,16,0,201,196,15.5,284.82353813148524,58.146725231217125,63.77430787871605,233.54850166088545,0.0,75.417461909871676,311.65252056035689,1.0,75.417461909871676,176.57553920011159,1.5,3.8999999999999999,5.2000000000000002,291.21271139233397,293.28275173998594,294.48602244535425,295.00657306904731,295.44857018568968,295.61208258256352,43.26109353131752,43.091540324718764,43.276153852675307,43.82864688469396,44.266680584050498,44.025918721719961 +1988,2,25,17,0,33,103,16.5,112.10984538850086,69.98925161789113,73.97504996937926,245.07603566516136,0.0,32.619728366289145,116.36664951681659,1.0,32.619728366289145,68.98237717525592,1.5,3.2999999999999998,3.6000000000000001,105.63857527018068,106.90181300827258,107.64138359751776,107.67860758165801,107.71777982365259,107.72526240457373,19.147935415165133,19.006477511145143,18.905532318361789,18.873033045651432,18.834509133977782,18.73522462646816 +1988,2,25,18,0,25,38,17.5,40.382448141421428,81.96346012496572,84.53153250652072,254.58246824266087,0.0,11.082810959738323,42.700613396801899,1.0,11.082810959738323,24.819951501013193,1.5,2.7999999999999998,5.7000000000000002,36.31653137096103,36.798521936981523,37.081163272139435,37.086016028058673,37.092961916769589,37.092920927386459,6.484212949515296,6.4706023466605513,6.458551855804858,6.4505048214566507,6.4256625230871753,6.3760460335888611 +1988,2,26,7,0,30,3,6.5,3.7532359882318298,86.56106838839712,88.56127403956202,101.7187741950823,0.3721428458669285,0.9533041879667673,4.7767510871169057,1.0,0.9533041879667673,0.022788349224644844,1.5,-6.7000000000000002,2.1000000000000001,2.7379982516543544,2.7797398677719669,3.2176929294174328,3.3524922556222916,3.360276746953569,3.3632542472009881,0.55921106606178994,0.55953255925682621,0.55859747623507328,0.55935236391524734,0.55887998742630773,0.55446647294053375 +1988,2,26,8,0,486,25,7.5,92.728340992347754,79.14364422407209,81.98925978703411,107.28992858966399,0.0,13.672283962920307,121.24103222531666,1.0,13.672283962920307,58.527625202177212,1.5,-3.8999999999999999,0.0,83.575479468850688,83.802923762346353,83.932373533981277,84.456728866798699,84.884451818275664,85.058574310119994,7.9970489730562857,8.2870427423620772,8.3931954325254399,8.437689535855009,8.3667634426472812,8.1377879145202119 +1988,2,26,9,0,778,42,8.5,294.70648753126875,66.6845280426782,71.0456002880592,117.5308854144864,0.0,62.273385640405074,356.65655747680955,1.0,62.273385640405074,184.0059353091107,1.5,-1.1000000000000001,3.1000000000000001,317.97436567187083,318.36085763645912,318.56914002106828,319.50598208726569,320.28482902977805,320.58845187414283,36.139907754690469,35.035640345824518,34.66439307206732,35.240939133316509,36.146735576958996,36.444665362305216 +1988,2,26,10,0,893,56,9.5,487.13482370880013,55.08166670450246,61.1319738767989,129.60802898382588,0.0,110.55773565293759,576.15948050706413,1.0,110.55773565293759,302.97910695121652,1.5,0.0,3.1000000000000001,551.08646037614608,551.56613884494539,551.80836333850368,552.93759606949914,553.87935188438155,554.24298237990945,61.082552815633875,61.115791559936596,62.30698401333435,64.463258282151386,66.059589745048143,65.526537236584304 +1988,2,26,11,0,941,66,10.5,632.36723154317428,45.12903573678433,52.99547921765315,144.41629475756847,0.0,148.76286875620099,740.53041325325785,1.0,148.76286875620099,392.56394744973926,1.5,1.1000000000000001,3.6000000000000001,723.74515009224137,724.27564597944513,724.53138571016166,725.7323110780568,726.73634167324667,727.12052090054897,81.360041086946524,82.575257057777762,84.972203154142093,87.920891935392206,89.565566285973119,88.002434116302368 +1988,2,26,12,0,972,72,11.5,726.98535645891377,38.19279347108187,47.6348385283385,162.43241484475985,0.0,177.46583826281801,847.5799952600978,1.0,177.46583826281801,450.8256178803619,1.5,2.7999999999999998,3.1000000000000001,834.0250507793611,834.57892180987983,834.83625944063772,836.04621934577199,837.06115595515769,837.44555836804409,96.835688455225196,98.871724917005437,102.11668896989332,105.54883204383457,107.0615431713142,104.86133776494466 +1988,2,26,13,0,977,74,12.5,751.83514684078864,36.082409995685325,46.06893723273438,182.69649321125314,0.0,176.45535303188896,875.53371650614395,1.0,176.45535303188896,466.12356209996369,1.5,4.4000000000000004,4.5999999999999996,862.63258909876879,863.19481865813054,863.45713610451321,864.67111981176834,865.68869006964087,866.07434506407969,96.279087137454169,98.414160770081736,101.73152555904683,105.10129809611173,106.51022178117718,104.24060638737501 +1988,2,26,14,0,971,71,13.5,712.1880801915396,39.58283217189576,48.67435356896138,202.59117273174311,0.0,167.26141335861203,830.83627203582807,1.0,167.26141335861203,441.72251079030542,1.5,5.0,4.5999999999999996,816.71193541157322,817.26302473841838,817.5228399090098,818.73617926788233,819.75195490017893,820.13873060917069,91.29691470765907,93.096239498086121,96.111820931443717,99.364224676647908,100.89285491106448,98.881153690167395 +1988,2,26,15,0,938,64,14.5,604.08758655352995,47.46032102903816,54.845281345250754,219.80953073882557,0.0,142.20226215056817,708.4901805430037,1.0,142.20226215056817,375.13611132260729,1.5,6.0999999999999996,5.7000000000000002,690.08127581576241,690.6033793181341,690.85707143782292,692.04941812305299,693.0460449997438,693.42785013165064,77.852952929033378,78.833898729198822,81.011796922309031,83.83566340102378,85.513988099170007,84.17212490828679 +1988,2,26,16,0,883,53,15.5,446.77129514139136,57.93713970479107,63.51604969237282,233.85386812545465,0.0,101.54774376616903,530.24054360222715,1.0,101.54774376616903,278.04460363559195,1.5,6.0999999999999996,3.6000000000000001,501.71322857407705,502.17541914866547,502.41131312152299,503.50706523151894,504.42082801413466,504.77400134424846,56.394338997734373,56.116858508165649,56.985864572810513,58.865080268240298,60.419600919518174,60.1786717526156 +1988,2,26,17,0,749,38,16.5,247.5951789003916,69.81770573242196,73.74974124906902,245.38955117002482,0.0,50.391136013563141,302.51085053902034,1.0,50.391136013563141,154.8059978371588,1.5,6.7000000000000002,4.5999999999999996,259.88125383258875,260.23782621014294,260.43260958672317,261.29783947610701,262.01425211076122,262.29610414441936,29.90465870002825,28.825089510417254,28.217326820385008,28.382647870155203,28.939833114606326,29.234887927145024 +1988,2,26,18,0,262,29,17.5,54.445670705608691,81.92702688799118,84.42659809095706,254.98015685070996,0.0,8.3403392249521726,70.527087612457649,1.0,8.3403392249521726,34.693779091776065,1.5,5.0,4.0999999999999996,46.227754162956899,46.518895013970905,46.689017662092112,47.118652238883541,47.468894768142547,47.611867193248472,4.9185319439148838,4.9466770125335042,4.9399895713461781,5.0280865060196547,5.1228057882138556,5.0946384720605842 +1988,2,27,7,0,4,2,6.5,2.1086616872673054,86.50836806184925,88.44334448286843,101.34609204667453,0.33093142610733634,0.63042068201431101,2.2284187964430537,1.0,0.63042068201431101,0.015192232816429896,1.5,2.2000000000000002,3.6000000000000001,1.8253245023018692,1.8542169236142325,1.9433509809089753,1.9495488588938648,1.9547385197813827,1.9567248621422622,0.36982203429127342,0.37003977007942329,0.36942458092183084,0.36993797470491513,0.36964926400890463,0.36675088850081505 +1988,2,27,8,0,8,52,7.5,53.152340629484407,78.92038753096541,81.71815902135445,107.02726269214739,0.0,15.976241504089897,53.653051332282729,1.0,15.976241504089897,32.421455879754944,1.5,2.2000000000000002,2.6000000000000001,48.449766884888327,49.135930383987585,49.538184997180323,49.458796773042621,49.398839180308627,49.369777670760911,9.3369864826392295,9.3206403250836427,9.3065138567036811,9.2730549168176939,9.2061619117163858,9.1245687346916693 +1988,2,27,9,0,1,129,8.5,129.32966334796845,66.4345909175123,70.75165663600386,117.28004376907148,0.0,39.54174850893687,129.8683995275114,1.0,39.54174850893687,78.989199440258929,1.5,3.8999999999999999,3.1000000000000001,120.00816481142716,121.65617359176754,122.62200464624902,122.46360568011183,122.34621355912786,122.28703171745936,23.069401831030198,22.969237018512999,22.924413274008309,22.891414306713639,22.800384962221411,22.640026889386249 +1988,2,27,10,0,11,177,9.5,182.36473475397401,54.79679043404711,60.81027161832242,129.38108029092234,0.0,55.49356765242387,183.61893128627656,1.0,55.49356765242387,111.47857350798284,1.5,6.0999999999999996,4.0999999999999996,171.03674511467801,173.29933122695067,174.62470989097551,174.43382105720295,174.29417598854718,174.22179009738349,32.258736650739856,32.186736499346665,32.195298279509075,32.206744513602153,32.098641965550421,31.837964852007726 +1988,2,27,11,0,5,259,10.5,262.03388885274234,44.799991589259214,52.643122301302355,144.2439364595859,0.0,79.581799916743734,264.63283749339155,1.0,79.581799916743734,160.38262983654175,1.5,7.7999999999999998,3.6000000000000001,247.34700086145432,250.52621131263371,252.38780232978831,252.18264238179373,252.03757882086279,251.9569250469398,46.184383195684084,46.159828717071257,46.233870079595363,46.291381784578462,46.143781803531958,45.721080722736772 +1988,2,27,12,0,4,321,11.5,323.71470527662495,37.82320150074808,47.25970765290652,162.36599098645303,0.0,98.176254727270404,328.19821761937027,1.0,98.176254727270404,198.32084596828713,1.5,7.7999999999999998,3.1000000000000001,307.44405889467583,311.26933689656181,313.50817775217746,313.31654372855832,313.18707289837516,313.10828517716271,56.890589526281182,56.930423890386706,57.089147062130785,57.204717391676553,57.028583195923346,56.46835363902818 +1988,2,27,13,0,1,173,12.5,173.6984779736467,35.70931065344937,45.69498119299139,182.77719204223533,0.0,53.862069466557699,172.81706705430639,1.0,53.862069466557699,106.19922743670352,1.5,10.0,3.1000000000000001,160.76368706667569,163.05399926537052,164.39649006344482,164.22591583191908,164.10224638901653,164.03692386942802,31.388275717356503,31.343610626086086,31.337129373047823,31.304229597879864,31.152911815133567,30.884524222996667 +1988,2,27,14,0,429,235,13.5,520.21420453659698,39.25738714552044,48.33033358139687,202.80191119916168,0.0,130.29275504388164,591.12323383328169,1.0,130.29275504388164,325.41592982251836,1.5,11.1,4.5999999999999996,571.83901588512788,573.58065428284488,574.56474079839779,576.47333016887671,578.04672079544127,578.67053154971097,72.571067836390469,73.889117500827339,75.699889443234966,77.75231274883707,78.710768484532991,77.302987790487933 +1988,2,27,15,0,627,136,14.5,499.6956293698538,47.19901911022982,54.54546048339652,220.09274266702212,0.0,120.40442788570934,580.93873350138756,1.0,120.40442788570934,312.67173743956948,1.5,13.9,4.5999999999999996,561.74453769736238,562.63426892776283,563.11549531284822,564.9524877742432,566.46618859024898,567.06733534072794,66.442759583707158,67.449620658331838,69.196422261374579,71.510656531576871,72.88735787295515,71.689887448542109 +1988,2,27,16,0,56,146,15.5,171.19819622450137,57.7290858581881,63.258382608538035,234.164120392403,0.0,49.333096714156952,178.22202812980683,1.0,49.333096714156952,105.41493371682907,1.5,12.199999999999999,8.1999999999999993,165.97623295169279,167.75545625731334,168.79547688943362,168.87346237187805,168.94979019896653,168.9686473653673,28.531189921013961,28.484175743620984,28.549971182905356,28.709105109384431,28.754855136769823,28.532988929877792 +1988,2,27,17,0,2,46,16.5,46.567188294874029,69.64767509006808,73.52516766783522,245.70703741698273,0.0,14.580924110607315,45.931203706794911,1.0,14.580924110607315,28.367494614857129,1.5,6.7000000000000002,9.3000000000000007,42.585095223927873,43.225130229908359,43.600498070466465,43.519061587175379,43.457086447023535,43.42754499246842,8.5156473319980588,8.4880746956357633,8.4726554986336531,8.4471580017109993,8.3954410342017223,8.3296577847012561 +1988,2,27,18,0,51,44,17.5,49.045783315495669,81.8915826005979,84.32204265203153,255.3807502163464,0.0,12.491780779083188,53.928338710569378,1.0,12.491780779083188,30.44607656422993,1.5,4.4000000000000004,5.2000000000000002,43.453652272817763,43.974201407125875,44.27924013575381,44.389464806194283,44.482078098420189,44.517241176467877,7.301285754807525,7.3036566411941122,7.3000135703642917,7.3213573328982724,7.3236181705826615,7.2657031421430203 +1988,2,28,7,0,0,0,6.5,0.0,86.45363201884703,88.32303523969112,100.97211358753174,0.29034603773379536,0.0,0.0,1.0,0.0,0.0,1.5,1.1000000000000001,7.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1988,2,28,8,0,7,39,7.5,40.041429961484909,78.69428525705332,81.44401623785288,106.76417737490074,0.0,12.320084647295261,39.885366327432386,1.0,12.320084647295261,24.404132074315942,1.5,1.1000000000000001,6.7000000000000002,36.518416458456386,37.054791493077211,37.369312767891202,37.303057439151061,37.252760960658826,37.228662681095969,7.2006951521286933,7.182418433942563,7.1689220904271345,7.1432839379640818,7.0941337163101466,7.0347815137928897 +1988,2,28,9,0,6,129,8.5,131.00728301559946,66.18221736032636,70.45499609867534,117.02850094869959,0.0,39.801172753444362,131.77855436214244,1.0,39.801172753444362,80.019432655630467,1.5,1.7,6.7000000000000002,121.76747316727415,123.41920319284102,124.38714864840537,124.22808455997067,124.11021747096385,124.05079680526192,23.203374327520919,23.107330080732972,23.071194782966622,23.046268474151855,22.960261919203976,22.796705723609712 +1988,2,28,10,0,8,190,9.5,193.94109488223785,54.50962773524246,60.485957410937566,129.15335183508097,0.0,58.987964131127498,195.28048599695811,1.0,58.987964131127498,118.57691114866385,1.5,2.2000000000000002,4.0999999999999996,181.91338464213413,184.31541387187266,185.72242179404728,185.52699453455955,185.38454298860293,185.31013674411244,34.278438919430634,34.218735683178046,34.238941336228685,34.256543365763378,34.136867682806155,33.848919013157037 +1988,2,28,11,0,2,251,10.5,252.22338054855112,44.46859378619249,52.28817859953119,144.07133297530842,0.0,76.870194921538143,254.03412911460106,1.0,76.870194921538143,154.35326537734142,1.5,2.2000000000000002,5.2000000000000002,237.24408189848805,240.34845672605758,242.1665541264843,241.96193817740163,241.81660439477537,241.73653073774977,44.640032504306845,44.617263882078753,44.679734038020413,44.718309279602664,44.557086770374305,44.149741187013021 +1988,2,28,12,0,8,272,11.5,277.46801190651183,37.45112860609039,46.88212864120776,162.30114308429148,0.0,84.594186631419447,280.052228738613,1.0,84.594186631419447,169.8825451706106,1.5,2.7999999999999998,2.6000000000000001,261.97913634638661,265.34081896232055,267.30898510901829,267.11034656526311,266.97174523580736,266.8925493312517,49.081830912052723,49.101412379539852,49.209330111262929,49.272623355403759,49.09074545916404,48.614008416616699 +1988,2,28,13,0,7,344,12.5,348.92209600369125,35.334454172028664,45.319191956070135,182.86225444836296,0.0,104.8938351826815,354.48614921041803,1.0,104.8938351826815,213.84134845330769,1.5,3.2999999999999998,3.1000000000000001,332.44868633817697,336.50446513113195,338.87778174935767,338.69646809129051,338.57697969047052,338.5006483934763,60.760435725689703,60.842628894316398,61.036344470603986,61.171351156792241,60.975495226481605,60.353435237432073 +1988,2,28,14,0,126,201,13.5,285.33408779847889,38.931889312541074,47.985538365283546,203.01866837657812,0.0,78.362852626549383,308.09164870437581,1.0,78.362852626549383,177.38949438597888,1.5,3.8999999999999999,4.5999999999999996,293.26011345186009,295.35344002998056,296.56834540690102,297.26689887223262,297.85118420029715,298.07477944208711,44.613466650741792,45.067687413504949,45.675953370290195,46.341475118220316,46.568192928891676,45.901994647264026 +1988,2,28,15,0,473,187,14.5,463.3782275341311,46.938893614824245,54.245800453754924,220.3817369419305,0.0,119.02877392402459,529.03682876165976,1.0,119.02877392402459,289.76811840557599,1.5,5.0,3.6000000000000001,509.05049125464473,510.50831770256974,511.32833762088922,512.99011995492913,514.36181679399078,514.90421912922341,66.181469250898701,67.22722335449167,68.83416519314045,70.780655627664018,71.823021089207671,70.630078600082896 +1988,2,28,16,0,703,88,15.5,407.14023776040597,57.52262801967112,63.0013797090511,234.47916053982766,0.0,93.784315685975145,478.76225015525006,1.0,93.784315685975145,254.40107450057596,1.5,5.0,4.5999999999999996,452.32019525101219,452.92516110310874,453.24832422198801,454.61468851904624,455.74382541536164,456.18960179376853,51.941261690650336,52.149358133392404,53.214155583251603,55.032454540380229,56.374904209250772,55.844807606445272 +1988,2,28,17,0,665,51,16.5,242.07942648658261,69.4791918041953,73.30137800519894,246.02838049317296,0.0,49.971908414892354,292.00290443125107,1.0,49.971908414892354,151.72709343441005,1.5,5.0,4.0999999999999996,251.99055235379055,252.41845788600347,252.65559699568675,253.63458687844462,254.44336682793653,254.76338435460858,29.114599540057267,28.288396688688451,27.985856961814864,28.433403191301917,29.162149422049939,29.376195556443925 +1988,2,28,18,0,348,24,17.5,59.059478094763563,81.85712894942566,84.21789141633718,255.78411825029247,0.0,8.5915955892474454,77.642868071439636,1.0,8.5915955892474454,37.452527046533326,1.5,2.7999999999999998,3.1000000000000001,48.686515528016137,48.910584238128237,49.040505999661114,49.43949826921736,49.764604410513577,49.897348486968866,4.9463319491676163,5.0309476672536508,5.0946759665441039,5.2226779410945401,5.3217160451500325,5.2492165018454306 +1985,3,1,7,0,4,5,6.5,5.1253918406792582,86.39862568504195,88.20359988518055,100.60525276755637,0.2514155025240449,1.57415029412842,5.2132772144492954,1.0,1.57415029412842,0.03798058204107474,1.5,-2.2000000000000002,0.0,4.5633084064993756,4.6712843631377794,4.7518228492362198,4.7673181802364644,4.78029233245526,4.7852586872518534,0.9234454333341916,0.92399103918371261,0.9224561140536619,0.92374336581465299,0.92303133020612749,0.915801734154569 +1985,3,1,8,0,201,46,7.5,76.840166084346208,78.47151782572728,81.17403491815715,106.50613956547285,0.0,16.609894000856645,91.188220380544493,1.0,16.609894000856645,48.569105442161543,1.5,-0.59999999999999998,2.1000000000000001,69.315567717753808,69.77780616899679,70.046192685797962,70.513230709868836,70.896386777150781,71.050793560107024,10.022750646644058,10.071960826383595,9.9524576673977165,9.8633872543955476,9.7963403715930291,9.6703514919878959 +1985,3,1,9,0,393,94,8.5,227.36096275822925,65.93414117131059,70.1632784625685,116.78136475983763,0.0,54.183634313057212,263.7217335002573,1.0,54.183634313057212,142.54726734035938,1.5,4.4000000000000004,3.6000000000000001,236.95635511344935,237.80421248416607,238.28868804545203,239.23870711160507,240.02360651362787,240.3343889359106,30.916900790134441,30.607604050960774,30.711210057294299,31.412808956864115,32.131422465741814,32.087939330421612 +1985,3,1,10,0,566,147,9.5,428.56806025283424,54.22763861304021,60.167238070145956,128.92924140378562,0.0,105.96174088481396,492.99640575851504,1.0,105.96174088481396,267.60493477246035,1.5,7.2000000000000002,3.6000000000000001,469.12735349385497,470.33526349405838,471.01205774331339,472.4049139800303,473.5570090097109,474.01047432694946,58.882440613554571,59.544004247855241,60.838155990356256,62.638281173629387,63.740377520789764,62.838728786596164 +1985,3,1,11,0,606,193,10.5,566.59560236472521,44.14318180846747,51.93941400308578,143.90138302896673,0.0,143.81508336776727,648.21825655855127,1.0,143.81508336776727,353.4780244744768,1.5,10.6,4.5999999999999996,627.90855666777429,629.36828954468467,630.17867724573262,631.9049630976358,633.33275360942594,633.89387570118424,79.619238270031204,81.215846253119324,83.485284058810706,85.839403621125001,86.869960889515539,85.180816388759737 +1985,3,1,12,0,2,292,11.5,293.37642639170394,37.085593130913644,46.511166260664375,162.23805281125243,0.0,89.481103147191092,295.97211546110395,1.0,89.481103147191092,179.66063346660039,1.5,12.800000000000001,5.2000000000000002,276.80081921043057,280.36211693963202,282.44716732396535,282.25083266663029,282.11536597654367,282.03620557913467,51.928152235335027,51.961619119181215,52.076033468341869,52.138405570440341,51.937500257804075,51.427920095131356 +1985,3,1,13,0,372,311,12.5,574.27174974690729,34.96654759078288,44.95030992428722,182.94830070976988,0.0,147.9884254387926,639.27275021983701,1.0,147.9884254387926,357.42262631939201,1.5,14.4,3.6000000000000001,617.61809540990703,620.22654797954203,621.71861648103743,623.21186207819983,624.45309817285272,624.93432494430158,83.029836482968904,84.585787779951858,86.470824432450428,88.287393570096526,88.794750726870902,87.099551142352823 +1985,3,1,14,0,140,300,13.5,394.31621109306246,38.61353928838983,47.647711747927,203.2351032070928,0.0,108.35949365803361,424.92299105756086,1.0,108.35949365803361,244.87934418362585,1.5,15.6,5.7000000000000002,404.68498525692718,407.58880910271614,409.27404073793787,410.14698006548167,410.87949873363482,411.15738144554825,61.696400213702155,62.375811411650112,63.227440498625299,64.104863682511962,64.351387193033986,63.402325062507465 +1985,3,1,15,0,425,237,14.5,487.09202055503056,46.68537328030722,53.9527790372877,220.66868683169494,0.0,123.75009228700686,549.9349801443193,1.0,123.75009228700686,304.49501267810678,1.5,16.699999999999999,2.6000000000000001,527.61195532050294,529.53192987185525,530.62497348757813,532.35093485296261,533.77553264279686,534.33870931878027,69.174474009632306,70.33621665073639,71.928015695425245,73.741140032016489,74.574816786919783,73.291206376068843 +1985,3,1,16,0,179,172,15.5,253.95836881805349,57.32180310579277,62.75038236513144,234.79075008004887,0.0,69.753254859118897,275.90827724699943,1.0,69.753254859118897,157.55642510019422,1.5,15.6,5.2000000000000002,258.10955882074848,259.97407200964665,261.05668485083709,261.56222195038742,261.98931243643051,262.14903217832307,39.757445285103181,39.873637666516906,40.245592285057157,40.86270423669999,41.197224612277559,40.795292490375608 +1985,3,1,17,0,28,69,16.5,77.14767701060056,69.3153371873623,73.08285677591087,246.34534159033296,0.0,22.910587633614718,79.020889763127897,1.0,22.910587633614718,47.431498068317424,1.5,15.0,3.1000000000000001,72.121213808310287,73.029456878770276,73.561354452738271,73.574731328976725,73.591927282695636,73.59291502682494,13.37164026161663,13.306095467813398,13.275286633901594,13.28564572621495,13.273453347783366,13.191123053120151 +1985,3,1,18,0,1,24,17.5,24.102511042916834,81.82405627198892,84.11621406398434,256.18053784457913,0.0,7.5575238764646588,23.737782288816927,1.0,7.5575238764646588,14.676713608169852,1.5,13.9,3.6000000000000001,21.984110202888264,22.318042854035102,22.513904134446129,22.469770145690564,22.436085358551619,22.420129327664291,4.4131027919494601,4.4002364589091965,4.3930582981220354,4.3793760304430078,4.3513347806294052,4.3164247128230997 +1985,3,2,7,0,11,5,6.5,5.3687530071550578,86.34013862034398,88.07891361469802,100.22896509387276,0.21225179496192362,1.5773139892926056,5.6641845981398502,1.0,1.5773139892926056,0.03798058204107474,1.5,2.2000000000000002,0.0,4.5633131472816872,4.7936114177165594,4.8949263939064407,4.9104206666239101,4.9233948188427048,4.9283603435452994,0.92529174751026821,0.92583524627311542,0.92429525006875479,0.92557623353753893,0.92484798998022055,0.91759120181578779 +1985,3,2,8,0,432,35,7.5,103.3669224873961,78.24016460520437,80.89427290717742,106.2423046213479,0.0,19.294697656973192,128.42146136920448,1.0,19.294697656973192,65.220091949841134,1.5,7.2000000000000002,2.6000000000000001,92.742996200459217,93.056108241694389,93.234149313940307,93.810716695847844,94.283713622970296,94.474287632643893,11.910447720014119,11.827543612618845,11.515283358805515,11.312019029345885,11.195566442154574,11.091293301242805 +1985,3,2,9,0,715,56,8.5,302.16631790181322,65.67732530478621,69.86162733138097,116.52845872259289,0.0,66.877322553375294,359.26997203832843,1.0,66.877322553375294,188.99051946249193,1.5,11.699999999999999,4.5999999999999996,323.06799539141684,323.50859719128761,323.74562249994528,324.82315942333804,325.71435760994837,326.0661469549687,37.532895722638209,37.190139117818326,37.552112955985763,38.702800507902246,39.80426716038366,39.754822664440169 +1985,3,2,10,0,824,74,9.5,488.01420922624516,53.936352302582264,59.83814569737803,128.6999204254086,0.0,115.3484474158941,571.22206498092862,1.0,115.3484474158941,304.14297310096441,1.5,15.6,6.7000000000000002,547.5166805155078,548.01586798631195,548.26649630220822,549.61702642262969,550.73521776184157,551.17386872515704,63.241287624336501,64.221650772071158,66.043387708907048,68.358901872468905,69.695746181420745,68.4968416258492 +1985,3,2,11,0,891,86,10.5,639.68963234339174,43.80752980422157,51.579733142263414,143.72817641702932,0.0,157.25251234415242,741.08123779727225,1.0,157.25251234415242,397.59875059978282,1.5,16.699999999999999,5.7000000000000002,724.08243475623988,724.77477853104881,725.12168387212319,726.51515990798168,727.67419508843886,728.12219670918705,86.141688130362269,88.261560466944601,91.243105101266337,94.113224259610149,95.173507544604533,93.008685886657162 +1985,3,2,12,0,912,93,11.5,725.04860043085034,36.70897661413111,46.12910250220542,162.17622348614205,0.0,177.87047229124011,837.23151061762599,1.0,177.87047229124011,450.10967708586156,1.5,17.800000000000001,4.5999999999999996,823.12932312507303,823.84593528880066,824.19719415692168,825.58338743900231,826.73949316347262,827.1820109950836,97.483964317935289,100.29214031419397,103.82098129514679,106.90652416421291,107.67784214075128,104.94836597380659 +1985,3,2,13,0,923,95,12.5,752.52523729665916,34.58857800272733,44.571242838162014,183.0419987601042,0.0,184.49839254077381,868.25652353163184,1.0,184.49839254077381,466.99783606216818,1.5,18.300000000000001,4.5999999999999996,854.69626604085772,855.41897766534214,855.77104169078893,857.14924752929642,858.30009888135783,858.73909056044658,101.08681591016237,103.9997887849956,107.67077589383435,110.8698661611806,111.66018973048794,108.82344668947854 +1985,3,2,14,0,907,92,13.5,707.07075397138101,38.28832693550155,47.3017248296616,203.4637386925799,0.0,173.55171370158774,816.81815334316377,1.0,173.55171370158774,439.0674386218368,1.5,18.899999999999999,3.6000000000000001,802.17946439825323,802.89542282082255,803.24813682147033,804.64236027833647,805.80418442266728,806.24994691118968,95.139976806312859,97.878943489562985,101.31344368616659,104.3240827481992,105.0831739846425,102.42448346803046 +1985,3,2,15,0,875,84,14.5,602.58080771501011,46.42788551529966,53.65373312863771,220.96894326495183,0.0,142.86335260538351,698.79907872509705,1.0,142.86335260538351,374.76311559911449,1.5,19.399999999999999,5.2000000000000002,680.28278183672148,680.97063861461038,681.32112828432867,682.7175513025079,683.87630460774687,684.32706676467501,78.2933180186985,80.132425200707686,82.800820364753278,85.432640601007904,86.502708349359906,84.589981401280852 +1985,3,2,16,0,808,69,15.5,442.15646697720456,57.11869845919604,62.4949164861133,235.11497822681255,0.0,100.68026627831505,518.88034837236023,1.0,100.68026627831505,275.72840415440368,1.5,20.0,3.6000000000000001,491.91340699943294,492.39739989029152,492.64512214046579,493.92894472563694,494.99082030563602,495.40867695345815,55.308564349554651,55.979393549350235,57.43908139199808,59.483129662346798,60.762683054111172,59.866437875175038 +1985,3,2,17,0,667,50,16.5,246.56133412657877,69.15001888768212,72.86077161058061,246.67398519907997,0.0,54.961343350749878,295.10787818897933,1.0,54.961343350749878,154.47176598426162,1.5,19.399999999999999,4.0999999999999996,255.69639077419046,256.10793654350351,256.33341948915012,257.3050838600285,258.1090645262405,258.42658423147418,31.404430684188302,30.769572951987872,30.732422196979208,31.482084161803328,32.398298599857704,32.513783256376534 +1985,3,2,18,0,315,27,17.5,59.855706286153897,81.79157106393134,84.01294130916197,256.58901518402195,0.0,9.6373315935383896,76.281125910569443,1.0,9.6373315935383896,38.027364871571649,1.5,16.699999999999999,3.1000000000000001,48.91397433134965,49.172375758774564,49.322216124407319,49.752112422929294,50.102527680503378,50.245526952452025,5.6129549145595439,5.7620957987005079,5.8272111424993991,5.9181720382732959,5.9474352204267165,5.8414896304785895 +1985,3,3,7,0,10,5,6.5,5.3573351178878754,86.27989990692917,87.95218462581634,99.85162474564012,0.1738858641203165,1.5771655567321325,5.6108432389568801,1.0,1.5771655567321325,0.03798058204107474,1.5,2.2000000000000002,2.6000000000000001,4.563312924856195,4.8310561727549732,4.8808321122054412,4.8963264345748563,4.909300586793651,4.9142661504421516,0.92520512312758563,0.92574872074960102,0.9242089624671963,0.92549024002836666,0.92476275690693654,0.91750724452753596 +1985,3,3,8,0,357,43,7.5,101.2342909162592,78.00636762764326,80.61188782501566,105.97810865830498,0.0,20.771299122126262,122.83694184938096,1.0,20.771299122126262,64.101412665118133,1.4388326646684528,5.0,3.1000000000000001,90.908697364420107,91.314294922920752,91.547089371686951,92.195127432807425,92.726104579209675,92.940222588338202,12.740088438725133,12.572104534126673,12.247927219833011,12.120968063921776,12.088235574223532,12.041336937721638 +1985,3,3,9,0,633,71,8.5,292.08444709590151,65.4184736221322,69.55766294930734,116.27485090346079,0.0,65.518780365720872,344.39184954011029,1.0,65.518780365720872,182.90033656941867,1.5,6.7000000000000002,5.2000000000000002,310.29185204344242,310.83443160517072,311.13217882936243,312.25457217721629,313.18075940184531,313.54802745866124,36.68110075080817,36.529840382733859,37.017198074263938,38.167613338263301,39.178026454302078,39.031369355590435 +1985,3,3,10,0,738,112,9.5,486.4873227477168,53.6431994224694,59.506846711022504,128.46974081786738,0.0,116.62902259333607,565.0486892339145,1.0,116.62902259333607,303.90127911227103,1.5,7.2000000000000002,4.0999999999999996,540.41313007747874,541.18134361782575,541.59126495561861,543.19849001441219,544.52379220882688,545.04882639194363,64.167054838047989,65.421607552601728,67.34628741168784,69.563958288822988,70.69322739222072,69.3608525158281 +1985,3,3,11,0,768,162,10.5,643.04516080395922,43.46994151189689,51.21785724387356,143.55457309757935,0.0,159.99760495051879,740.59226415737896,1.0,159.99760495051879,401.36607430851166,1.5,8.9000000000000004,3.6000000000000001,720.49427258751336,721.54908954340738,722.1102485532449,724.11788586604689,725.77502885260071,726.4285033143168,88.135705036536933,90.44698764842903,93.350366850517162,96.147025879943797,97.126105141076195,94.905244892778512 +1985,3,3,12,0,777,196,11.5,738.23220026217734,36.330250620140156,45.74495414121934,162.11583803224343,0.0,183.75178949645601,846.98723343462109,1.0,183.75178949645601,460.46401672682686,1.5,10.6,2.1000000000000001,828.20341105679461,829.42770325632193,830.07897771159901,832.27382243897239,834.08681865825099,834.79982010461833,101.38226395268953,104.42645376525056,107.83384570528628,110.83740865987743,111.54581847939544,108.75343251230863 +1985,3,3,13,0,785,200,12.5,762.86374312051703,34.209214276679305,44.19069033401075,183.14003680715754,0.0,189.60563630265457,875.05287414145448,1.0,189.60563630265457,475.71430765611166,1.5,12.199999999999999,1.5,856.75139055036539,857.96475382612039,858.60700601430005,860.83325360396339,862.67271579715521,863.39552374038362,104.55868901065649,107.71594394300361,111.25781219997833,114.37071416089954,115.09881870169312,112.20334554737381 +1985,3,3,14,0,502,288,13.5,630.64951412157848,37.963445644042196,46.9552979396099,203.69833893796047,0.0,163.03583301915765,710.12791581803435,1.0,163.03583301915765,393.43499239141994,1.5,13.300000000000001,4.0999999999999996,687.9830805974899,690.16157237265827,691.39062720938432,693.33136960224817,694.93680784556591,695.56661477624027,90.976055592377833,93.212787134692533,95.66874623236329,97.891582907267747,98.406320061058651,96.237115361648563 +1985,3,3,15,0,537,197,14.5,517.51026728127101,46.17186979670015,53.355131268998036,221.27477893690934,0.0,128.37603024411817,588.37074897737955,1.0,128.37603024411817,323.20313965942034,1.5,13.9,2.1000000000000001,567.43160823611538,568.95976667479806,569.81660470650706,571.52479234891416,572.93459342050062,573.49119809577496,71.347515756889507,72.916937956114708,74.894421135871056,76.878742638068076,77.650462061204053,76.069691601339073 +1985,3,3,16,0,689,104,15.5,424.91141607889045,56.91736467158505,62.24032008514011,235.44368686318765,0.0,102.315899701844,494.21430969963501,1.0,102.315899701844,265.72703921596576,1.5,14.4,3.6000000000000001,467.41805445590893,468.16326939105977,468.56573669240606,470.07430504570169,471.31811515044689,471.81134467253435,56.44159568416967,57.29240170386737,58.781326311765689,60.744179448374872,61.906313788369133,60.887119475837935 +1985,3,3,17,0,551,68,16.5,232.40801283464714,68.98632755802595,72.63960292917267,247.006136223637,0.0,53.099993066074681,274.58120067912125,1.0,53.099993066074681,145.9367316764901,1.5,13.9,3.6000000000000001,238.72092112893199,239.28195366356485,239.59621690348314,240.63599840741301,241.49343125777858,241.83450666324435,30.153323147436787,29.797856601993193,29.926642319954112,30.734805388301336,31.575994633467175,31.569144646462547 +1985,3,3,18,0,211,33,17.5,55.606380650467273,81.69183981193652,83.84956834295919,256.94956782587366,0.0,11.151280287153194,67.328281518479059,1.0,11.151280287153194,35.148552844388931,1.5,10.6,4.0999999999999996,46.24911818256988,46.58806193983775,46.785244863461656,47.124345854414599,47.401728487693006,47.513948449172041,6.5531664226355657,6.6806251106118362,6.713956660222923,6.7434085234657308,6.7254098263668185,6.6042745783791563 +1985,3,3,19,0,0,0,18.5,0.0,87.91438430674538,89.35198613637466,261.63686791644295,0.5338474017497765,0.0,0.0,1.0,0.0,0.0,1.5,8.3000000000000007,5.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,3,4,7,0,6,3,6.5,3.2278651236273652,86.2180039830746,87.82352495357901,99.47331087536591,0.1363559950884657,0.94647436672690999,3.3729737834201652,1.0,0.94647436672690999,0.022788349224644844,1.5,3.8999999999999999,1.5,2.7612742080594392,2.9077713957701032,2.9322533346702979,2.9415498695420337,2.9493343608733107,2.9523136531371326,0.55522522193939505,0.55555126393719945,0.55462712840856265,0.55539554814951708,0.55495816156547395,0.55060334972342195 +1985,3,4,8,0,9,40,7.5,41.512220353648075,77.7702637384982,80.32702181433736,105.71356773951187,0.0,12.817590926750398,41.293409137938234,1.0,12.817590926750398,25.300746179625595,1.3496444979725006,4.4000000000000004,2.6000000000000001,37.851397158873752,38.405916783099777,38.731053022978244,38.662362106486448,38.610232443456795,38.585231600215948,7.4961685140910674,7.4674087491092562,7.4477676381302595,7.4214808622316744,7.3741838802281254,7.317781613185268 +1985,3,4,9,0,10,129,8.5,132.54266183254816,65.15772300246549,69.25152284363216,116.0205378743347,0.0,40.475592517316485,133.1395131632311,1.0,40.475592517316485,80.957300764563641,1.5,5.0,3.1000000000000001,123.15803175431209,124.82357883281392,125.79938032216587,125.63831062608996,125.51880506930875,125.45866295773068,23.542571868717605,23.482235986254508,23.479519820768672,23.47655124282096,23.388407519568304,23.201493355432671 +1985,3,4,10,0,6,231,9.5,234.07464243392525,53.34832320071144,59.17347890987229,128.23867223819775,0.0,71.005088236678873,236.38845160239993,1.0,71.005088236678873,143.21444108415756,1.5,6.7000000000000002,2.6000000000000001,220.48465101892049,223.31055585108066,224.96512732294732,224.76192369580369,224.61608475951911,224.53737064153935,41.190368002735859,41.188859161546759,41.271408179364457,41.321438233028317,41.171376418816031,40.781280951052345 +1985,3,4,11,0,5,275,10.5,278.15649875047427,43.13055921239685,50.853919029014854,143.38051668329595,0.0,84.716395131664356,280.74225706132421,1.0,84.716395131664356,170.29367253078792,1.5,7.7999999999999998,2.1000000000000001,262.52646610404656,265.88011479046997,267.8433594422537,267.64004752758035,267.49761816330181,267.41681686760006,49.147450978478631,49.193557559578615,49.314868049080367,49.374487135175947,49.171733769042795,48.676708794830901 +1985,3,4,12,0,1,277,11.5,277.70266433284917,35.94954064052332,45.35884341658213,162.05684618461703,0.0,84.980016916761969,279.25044463658412,1.0,84.980016916761969,170.03013856924778,1.5,9.4000000000000004,1.5,260.9044030351522,264.32766607796009,266.33228899611692,266.13697822485977,266.00121987290896,265.92303198050286,49.366892014715411,49.412066736277637,49.506706601242669,49.531853777944349,49.302678960960002,48.813488306987828 +1985,3,4,13,0,6,320,12.5,324.32992577763662,33.828578001536314,43.808768362553806,183.24240290999995,0.0,98.472217133142863,327.96680687849141,1.0,98.472217133142863,198.71122218497547,1.5,11.1,1.5,307.16855427440316,311.02156919301473,313.27663865824559,313.09023848315974,312.9650181497488,312.88788057932635,57.106408659587196,57.21556155847265,57.385329146804025,57.465132861709307,57.215886117973874,56.61577282049128 +1985,3,4,14,0,4,338,13.5,340.74791674041035,37.63902263994129,46.608541679653364,203.93888042286792,0.0,103.12541308690032,345.43096497782375,1.0,103.12541308690032,208.80657874227686,1.5,11.1,1.5,323.73880251388903,327.72491049716973,330.05733903181869,329.87217709251297,329.74907464684503,329.67169111469633,59.761329214797463,59.899152137989368,60.102816768277144,60.206998279433158,59.951512049529669,59.308717857604016 +1985,3,4,15,0,0,271,14.5,271.0,45.91742054248861,53.0570650162166,221.58611891178555,0.0,82.654333392739574,273.28065445001874,1.0,82.654333392739574,165.89201928201533,1.5,11.699999999999999,3.1000000000000001,255.32408425742216,258.6134112366571,260.5391883799366,260.33471050850432,260.19083215153603,260.10993517150075,47.966585219960692,48.003996789353259,48.113394000487219,48.163265603654523,47.961931720103777,47.483580401922374 +1985,3,4,16,0,2,212,15.5,212.93935432040476,56.71785447821881,61.98665765242436,235.7767674478242,0.0,64.784129252233114,214.68678043293747,1.0,64.784129252233114,130.24210659750594,1.5,12.199999999999999,2.1000000000000001,199.83325805645723,202.43540521921943,203.95922629966984,203.76093524687968,203.61749883761448,203.54134542011553,37.603117596740738,37.584220605347362,37.643424461617045,37.678150440121229,37.540396342046009,37.194507848969273 +1985,3,4,17,0,92,130,16.5,157.788349956301,68.82428436204029,72.4193907903234,247.34167401230644,0.0,44.685051292159407,166.20370999927587,1.0,44.685051292159407,97.136418232705807,1.5,12.800000000000001,2.6000000000000001,150.45014967452292,151.98522952724406,152.88186064254734,152.94231298299059,153.0034894749212,153.01707225367718,25.83901786859537,25.730334495751915,25.76164287050981,25.914009392960956,25.99822522678501,25.837981445960516 +1985,3,4,18,0,0,20,17.5,20.0,81.55608513446091,83.65381105469345,257.2853740248516,0.0,6.2900808007983589,19.654497242103833,1.0,6.2900808007983589,12.169958409552276,1.5,12.800000000000001,2.6000000000000001,18.253223855245192,18.531501296029287,18.694722352095301,18.655095252054359,18.62471637928941,18.610464091464028,3.6728177664916304,3.6615554946285656,3.6554051857606482,3.6434037583955106,3.6194518490011993,3.5905062848375939 +1985,3,4,19,0,0,0,18.5,0.0,87.90886779730126,89.27431197573435,262.0496753969227,0.47935138340248207,0.0,0.0,1.0,0.0,0.0,1.5,11.699999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,3,5,7,0,0,4,6.5,4.0,86.15454438634855,87.6930456502288,99.09410141849821,0.09969199345185692,1.2580161601596718,3.9696155043571966,1.0,1.2580161601596718,0.030384465632859792,1.5,17.199999999999999,5.2000000000000002,3.6506447710490395,3.7063002592058569,3.7389444704190598,3.7513411714434151,3.7617204932184514,3.7656939192204715,0.73799529596608326,0.73843264918682483,0.73720679937960898,0.73823918457844262,0.73767623700809526,0.73190376875574437 +1985,3,5,8,0,173,64,7.5,93.922727968568523,77.53199055729753,80.03981759486754,105.44869635123834,0.0,23.782971858174573,105.21348844236063,1.0,23.782971858174573,58.726314920353943,1.265060068271072,17.199999999999999,7.2000000000000002,84.786500182254741,85.494209572661504,85.906560165220213,86.255753207950519,86.545217879521331,86.658670601747133,14.151101690715011,13.953395611145485,13.769748881700055,13.753822491467458,13.796292535045067,13.778134461892693 +1985,3,5,9,0,482,106,8.5,279.17821737664349,64.89521131836189,68.94334538725593,115.76551481001553,0.0,67.948219770623425,320.43792176062851,1.0,67.948219770623425,174.6533942951944,1.5,18.300000000000001,8.1999999999999993,290.34171079764184,291.29405351693697,291.83415478131059,292.8640037141883,293.71443525830119,294.05076935444572,38.034786017218927,38.268278342499215,38.920657400915815,40.022237590010334,40.765345148354371,40.35662347874306 +1985,3,5,10,0,645,124,9.5,457.75969782260398,53.051867837419614,58.8381808226504,128.00668263285144,0.0,114.54464824649436,527.6113777390176,1.0,114.54464824649436,286.46781890506657,1.5,19.399999999999999,7.2000000000000002,504.31396196980563,505.18593220375089,505.65774233373168,507.35573440735436,508.75370025822741,509.30914119827167,63.218908033017058,64.731029849174973,66.718988772691205,68.762564649914708,69.608697851652849,68.117069524390388 +1985,3,5,11,0,828,90,10.5,616.80599008085278,42.78952616649152,50.48805172981401,143.20594819518115,0.0,151.90620518544767,709.65657614502356,1.0,151.90620518544767,383.57911749695859,1.5,20.600000000000001,7.7000000000000002,693.5635740329152,694.28351621904324,694.64772227954199,696.06611617155272,697.24360904270065,697.70020202512035,83.470973317918663,86.059113014082712,89.027645320947784,91.561730371290238,92.0950499392073,89.703790419828437 +1985,3,5,12,0,912,92,11.5,737.2089138371731,35.566972498323416,44.97089259941674,161.9991948020081,0.0,180.70617973782856,846.6924877214351,1.0,180.70617973782856,457.53016839401937,1.5,21.100000000000001,8.1999999999999993,833.08016549908189,833.78150925653756,834.12204917952545,835.48495675189372,836.62293320615356,837.05732175191406,99.346008145073597,102.87076322732759,106.5411410497549,109.30848377088711,109.41959653628724,106.36098089574475 +1985,3,5,13,0,887,105,12.5,749.19944611634537,33.446790579516616,43.42559242148034,183.3490831772777,0.0,184.09092380020869,858.95100600495357,1.0,184.09092380020869,465.07099694939888,1.5,21.699999999999999,7.2000000000000002,845.30452267668534,846.10052434748002,846.49605004072509,847.91905611569928,849.10650343793657,849.56059276123574,101.28634292036604,104.8423801448572,108.53851818149614,111.33347070738436,111.45073873467615,108.35977765783434 +1985,3,5,14,0,896,102,13.5,721.46503499858704,37.31518423727728,46.26156562646978,204.1853368908909,0.0,183.96911150453187,828.03925292646136,1.0,183.96911150453187,448.0669448626158,1.5,21.699999999999999,8.8000000000000007,813.22000968624707,814.01180193075584,814.40477236783465,815.84921218112527,817.05379265339354,817.51503444620016,101.1620702438737,104.61277951047531,108.29776488408733,111.14269723761146,111.35232546692538,108.32371955551407 +1985,3,5,15,0,858,93,14.5,612.22751415194989,45.66462965638069,52.75962412638389,221.90288487582066,0.0,150.05682676410947,707.28171732969258,1.0,150.05682676410947,381.18970508729683,1.5,21.699999999999999,8.1999999999999993,689.28907377967221,689.86881719127086,690.15022598031169,691.7150566914712,693.01050023540893,693.51657358799434,82.359102523532897,84.993161836070001,87.993852640781,90.577804593541913,91.15221385355369,88.753091985281714 +1985,3,5,16,0,793,77,15.5,452.53765634576951,56.52021762617223,61.733991471471725,236.1141088490049,0.0,107.49955242304659,526.06091347226561,1.0,107.49955242304659,282.37953625783393,1.5,21.699999999999999,7.7000000000000002,499.45960115855428,500.010700485835,500.2947912720698,501.67368796063226,502.81165620331308,503.26114635868305,58.968569813002411,60.292203939695547,62.212862052247388,64.278366079777683,65.223714440943951,63.883573170331061 +1985,3,5,17,0,656,56,16.5,256.5342330591792,68.66390776427518,72.20017309867039,247.680476355053,0.0,59.695909878107479,302.5649689303857,1.0,59.695909878107479,160.82165435251531,1.5,21.699999999999999,7.7000000000000002,263.75282536264069,264.22313545722812,264.48003357354207,265.52941468355442,266.39475319386474,266.7384159254737,33.377784607289449,33.284334129052915,33.747574714839239,34.833034859427528,35.753305209635698,35.600919353398346 +1985,3,5,18,0,305,30,17.5,64.745659871000839,81.42144050071829,83.45865244650616,257.6237417760956,0.0,12.734505350755949,79.670981962596642,1.0,12.734505350755949,41.145552788050793,1.5,19.399999999999999,6.7000000000000002,52.415393863919277,52.703521543405884,52.869804507356562,53.338053888879898,53.721024812562007,53.876445830845796,7.7305776335398351,7.8142109426739967,7.72658434714947,7.6475800411839501,7.5721758035424962,7.4487015951984992 +1985,3,5,19,0,2,1,18.5,1.0280675846086567,87.90303057744833,89.19589653458786,262.46443720457535,0.4247005192764093,0.31486891863983046,1.0655855773378029,1.0,0.31486891863983046,0.0075961164082149479,1.5,17.199999999999999,3.6000000000000001,0.91266173953112406,0.92657561157032853,0.94122546317662148,0.95219810336369548,0.95479293380745445,0.95578619457069014,0.1847117650293274,0.18482086031778858,0.18451381300353781,0.1847711863620129,0.18462858015732239,0.18318232694502945 +1985,3,6,7,0,50,10,6.5,12.127911243524805,86.08961362564274,87.56085665606241,98.71407314446421,0.06391595952561555,3.1727032465650016,13.333846070440053,1.0,3.1727032465650016,0.075961164082149479,1.5,0.59999999999999998,7.2000000000000002,9.8251854712755406,10.3988452776873,10.480444417367517,10.511426916472512,10.537375220910103,10.547301527705555,1.8611321167351875,1.8622070757570743,1.8590981105736861,1.8616242646229919,1.8600751759767233,1.8454062418457791 +1985,3,6,8,0,503,36,7.5,125.50198888283082,77.29168639798827,79.75041839683385,105.18350749699027,0.0,26.911830933073578,151.65621378959696,1.0,26.911830933073578,79.18323564703428,1.5,0.59999999999999998,7.2000000000000002,112.31264038959041,112.64728911861084,112.83701990269509,113.53332706712317,114.1053257382537,114.33457286459071,16.095110515306914,15.619478274192947,15.290704677003001,15.358148091334046,15.620950223589544,15.740276752166649 +1985,3,6,9,0,752,57,8.5,330.98073978476606,64.63107734892078,68.63326972704232,115.50977558819196,0.0,75.867861896118868,387.90960801387484,1.0,75.867861896118868,206.78948928170291,1.5,3.2999999999999998,7.7000000000000002,352.01810233395872,352.45462968600452,352.6840768915564,353.78545401861055,354.69418387219395,355.05400458314625,41.769316967698565,42.2817487104249,43.353551205630417,44.881887157854344,45.851099923247354,45.183701350694285 +1985,3,6,10,0,865,75,9.5,526.94720618605675,52.753978438113506,58.50109165499674,127.77373833243696,0.0,129.89300288086417,608.76094063141477,1.0,129.89300288086417,328.06408181323218,1.5,3.8999999999999999,6.2000000000000002,585.23777615632537,585.87458815868524,586.19929877995116,587.54072148309615,588.65205460609059,589.08583523674008,71.292398738238063,73.210747713570768,75.679271994064834,77.995483567090716,78.765360995976636,76.907937037304023 +1985,3,6,11,0,916,87,10.5,674.31775692541601,42.446986582335285,50.12038905499457,143.03080611069086,0.0,171.72423444563788,774.92033003833944,1.0,171.72423444563788,418.891298308356,1.5,5.0,6.7000000000000002,758.46923404108907,759.16134013847909,759.50013921429286,760.88566576464052,762.04011832638037,762.48318558197593,94.392232665403725,97.640162295446558,101.10459729602862,103.78408672228913,103.98986354475325,101.14890270072354 +1985,3,6,12,0,947,94,11.5,768.50653225542362,35.18267232633213,44.58122396447402,161.94282785256974,0.0,188.29116417656203,881.05294641099556,1.0,188.29116417656203,476.81229173560212,1.5,6.0999999999999996,6.2000000000000002,867.23331221529486,867.94831644208762,868.2936136623947,869.66350156997623,870.80869803342614,871.24468812334783,103.67179137532295,107.53001938500782,111.32674579844706,114.06064485719266,114.01613627423792,110.65007743464642 +1985,3,6,13,0,951,96,12.5,791.04993384344448,33.06397319388447,43.04127752222255,183.46006174275385,0.0,193.73437077205267,906.31917499918268,1.0,193.73437077205267,490.66015758229577,1.5,6.7000000000000002,6.2000000000000002,893.0169082929757,893.73791531433505,894.08444914219763,895.44493147506239,896.58352307395114,897.01566944954902,106.647594487646,110.61830014480734,114.53244003442749,117.34221988480158,117.28650124541042,113.81827642900572 +1985,3,6,14,0,939,92,13.5,745.29169851183849,36.99205576466295,45.91447828772305,204.43767928547055,0.0,189.53045697998493,854.76526930950968,1.0,189.53045697998493,462.53753046736676,1.5,7.7999999999999998,6.2000000000000002,840.46871041986003,841.17597905623438,841.51603343907789,842.88868196164083,844.03616074537661,844.47273730142626,104.29537159521901,108.07650343116887,111.89188365165441,114.69144908107987,114.7241546868828,111.450113568454 +1985,3,6,15,0,908,84,14.5,637.22175404994528,45.41358644696337,52.462896511641,222.22499511175062,0.0,156.59702299294437,732.94511318350533,1.0,156.59702299294437,396.05377907502253,1.5,7.2000000000000002,4.0999999999999996,714.82808727041606,715.50894498010052,715.8477340279718,717.23265674137099,718.38385273565257,718.82861013530078,86.063373890370428,88.926283884726914,92.073782287719283,94.58755109238389,94.924431990034705,92.377747002414921 +1985,3,6,16,0,819,77,15.5,468.014328955564,56.32450085175921,61.48238160483043,236.4555973796723,0.0,115.27067237675729,542.72512596118804,1.0,115.27067237675729,291.90699664857334,1.5,7.7999999999999998,4.0999999999999996,515.81165345066165,516.35938081253869,516.63764269150874,518.01625092322945,519.15512329851072,519.60342337119152,63.243722229103106,64.831530851163734,66.997038280308118,69.143479324215079,69.987525259333239,68.41020544344218 +1985,3,6,17,0,618,73,16.5,264.15728857302747,68.50521355818984,71.98198562482642,248.02241953889498,0.0,62.287102383230547,308.55533481075963,1.0,62.287102383230547,165.61858371525213,1.5,7.7999999999999998,5.7000000000000002,269.83318821717052,270.43817162796637,270.77394446307613,271.86552720212904,272.76503227279528,273.12272790107892,34.777094364181941,34.856888639025506,35.429528501723638,36.565050394554085,37.434883031141567,37.136896231805487 +1985,3,6,18,0,352,29,17.5,70.286990326330908,81.28791484110428,83.26412435354776,257.9645451270547,0.0,13.82645465058801,86.394460426769314,1.0,13.82645465058801,44.550659490853306,1.5,6.0999999999999996,4.0999999999999996,56.29387141499555,56.566877123777708,56.72352444419333,57.189152375941539,57.5705080446387,57.724752783030908,8.4872782279802124,8.478335728822314,8.2914671270116376,8.1753754332521549,8.1073454924744439,8.0173858657638739 +1985,3,6,19,0,5,1,18.5,1.0770693638814002,87.89692161941932,89.11681516933756,262.8810240002434,0.36996030716377004,0.31550594177037611,1.1758908783214341,1.0,0.31550594177037611,0.0075961164082149479,1.5,3.8999999999999999,3.1000000000000001,0.91266269410728651,0.92657656614649098,0.96290671959117013,0.97393978345336618,0.97653461389712515,0.9775277075174944,0.18508352803915518,0.18519219905698345,0.18488413066090775,0.18514024187277309,0.18499437213043338,0.18354264367353862 +1985,3,7,7,0,14,10,6.5,10.628474927231501,86.02330308937273,87.42706670731722,98.33330170969437,0.029043056005447244,2.9920722391512009,10.855533831078256,1.0,2.9920722391512009,6.6250813237461648,1.5,-5.0,1.5,9.0346816312806055,9.2479596276610057,9.3252930177373798,9.3594245279339123,9.3878735990344371,9.3988844619820657,1.756021229487551,1.7576804304578391,1.7547585130286183,1.7579862835735633,1.7575842241292441,1.7438120811245752 +1985,3,7,8,0,185,70,7.5,103.84383193917,77.04949018964977,79.45896789551345,104.91801279468308,0.0,26.648211517612619,115.42123489916227,1.0,26.648211517612619,64.899517808059443,1.5,-1.1000000000000001,2.1000000000000001,93.699807007262706,94.469085469982517,94.917138683256582,95.29184471591671,95.603022414268167,95.724569463771687,15.637757582841225,15.433786826763923,15.321868914401062,15.411435142516153,15.562713407750126,15.545235165677161 +1985,3,7,9,0,402,135,8.5,283.49844657257529,64.36546069267402,68.32143571289335,115.25331289292603,0.0,72.786858477073423,319.82459749998105,1.0,72.786858477073423,177.5599793675961,1.5,2.7999999999999998,1.5,290.72775359873862,291.97099904522986,292.68210750373134,293.8095279291702,294.73931369483131,295.10801630840791,40.852489574953665,41.323672086303581,42.083320761764924,43.150447292433832,43.780294544155389,43.159036596134378 +1985,3,7,10,0,487,181,9.5,437.89938706793509,52.45480094652616,58.16235123714267,127.53980415084587,0.0,113.08434518660277,493.97318133624117,1.0,113.08434518660277,273.74532097880996,1.5,5.0,2.6000000000000001,470.63865784233144,472.12859708277068,472.96851042762853,474.51260910309031,475.78642166402233,476.28975205726204,63.116131380339198,64.702719165889093,66.417212294651762,68.000966353689719,68.40134971867343,66.89095873316225 +1985,3,7,11,0,473,260,10.5,565.60993098451263,42.10308558353152,49.751065156674905,142.85502641526722,0.0,150.67906906322193,633.72352067612962,1.0,150.67906906322193,353.21700657561394,1.5,6.0999999999999996,3.1000000000000001,611.75666230478498,613.76700286110065,614.90079784037096,616.76825889539259,618.31191921414302,618.91885031330878,84.330853593401287,86.72656378846068,89.005546281395766,90.847895787833579,90.993774868612348,88.844908148326681 +1985,3,7,12,0,434,220,11.5,531.19221979469694,34.796766547177654,44.189959763025385,161.88768639879382,0.0,139.75375902683282,598.94551175749245,1.0,139.75375902683282,332.3608031965411,1.5,7.2000000000000002,2.1000000000000001,581.68802967999534,583.19784130935852,584.0377988416235,586.00326403377051,587.62337039682404,588.26499529042712,78.050192566129894,80.581421924967941,82.868906659273279,84.656766198024783,84.730339760600188,82.532855866291101 +1985,3,7,13,0,568,244,12.5,661.72759063020533,32.68024677743741,42.65593815778965,183.5753207379873,0.0,167.74954752647608,747.07971517855367,1.0,167.74954752647608,412.91712067954091,1.5,9.4000000000000004,2.1000000000000001,728.25269874925777,729.9184433889011,730.8393637552947,732.88684642735802,734.57893799327849,735.24465969159337,93.58177174247345,96.719048222169008,99.523143542781085,101.64221592978214,101.56604144220597,98.827684509341239 +1985,3,7,14,0,520,231,13.5,595.03635178836043,36.66976149000784,45.56738705886624,204.69587568287344,0.0,156.28668863763119,671.14541556000074,1.0,156.28668863763119,371.63480850298799,1.5,11.1,3.6000000000000001,652.28430015460117,653.91869738677224,654.82580665299918,656.78804112553416,658.40881244563536,659.04721245954454,87.197121698729688,90.02439584942546,92.610461419815621,94.588200055701762,94.621595938822821,92.145958234812696 +1985,3,7,15,0,483,188,14.5,484.2540811936023,45.164377548464664,52.166968199527254,222.55236447451307,0.0,123.84335531979664,546.90228143133766,1.0,123.84335531979664,302.76001225532121,1.5,11.699999999999999,4.0999999999999996,527.65704635330553,529.07841121796696,529.87269547678443,531.58527525371403,532.99744718053148,533.55606301026637,69.066512232902312,71.131510016279321,73.150945516021253,74.832074199484538,75.034203402984687,73.226198995883692 +1985,3,7,16,0,508,157,15.5,401.48308883857163,56.1307478619475,61.23188588246717,236.80111683435172,0.0,100.43206973592068,454.22452676232535,1.0,100.43206973592068,250.94367669471472,1.5,12.800000000000001,6.2000000000000002,429.02516403701844,430.34904329351554,431.09554048958626,432.49769098029867,433.65392803058523,434.11128760909207,55.984068712692014,57.261439558454278,58.770756627854368,60.260663281381795,60.75002746682982,59.484745202978431 +1985,3,7,17,0,326,107,16.5,209.01108943003391,68.34821489775058,71.76486202798459,248.36737840381065,0.0,54.213163445074855,236.00029968956488,1.0,54.213163445074855,131.24640806823973,1.5,13.300000000000001,6.7000000000000002,208.18250554385583,209.19002315403227,209.76844673292959,210.72220984030054,211.50785115740393,211.82047988643012,30.585633325724309,30.792116420271075,31.240390224919452,32.028279594375611,32.550849865285478,32.209377196860622 +1985,3,7,18,0,130,42,17.5,57.684786112580412,81.15551376138882,83.07025557309754,258.30765741853475,0.0,14.54141201193155,64.514637083384272,1.0,14.54141201193155,36.133549373368758,1.441753646398873,11.1,5.2000000000000002,48.936968005436235,49.413277843930871,49.690992069980524,49.930096041727595,50.12784900884914,50.205832548408182,8.7028557564616733,8.6444985998545008,8.5314346105647285,8.4883357927100178,8.464128395670798,8.4131151733402749 +1985,3,7,19,0,1,1,18.5,1.0168043113098373,87.89058514764312,89.03713856444453,263.29930676885505,0.3151887178246189,0.31472249608694586,1.0292117941141727,1.0,0.31472249608694586,0.0075961164082149479,1.5,10.0,3.6000000000000001,0.91266152011761792,0.92736596728371734,0.94199815239350571,0.94509725457420035,0.94769208501795921,0.94868538419971393,0.18462631367543325,0.18473550648435499,0.18442869387022798,0.18468635733862174,0.18454450127233465,0.18309950656896218 +1985,3,8,7,0,0,4,6.5,4.0,85.9557029823334,87.29178327345474,97.95186171245061,0.0,1.2580161601596718,3.9261416717127493,1.0,1.2580161601596718,2.4292339075340172,1.5,9.4000000000000004,5.7000000000000002,3.6506447710490395,3.7063002592058569,3.7389444704190598,3.7293391086258154,3.721903062482359,3.7184885039987621,0.73427986598567363,0.73180505686167374,0.73057464690306095,0.7278905974032982,0.72275075182785187,0.71696026305971428 +1985,3,8,8,0,5,24,7.5,24.939854327447403,76.80554139735118,79.16561014662686,104.6522225766944,0.0,7.7365659492410623,24.728560210108391,1.0,7.7365659492410623,15.179687086036703,1.5,10.6,5.7000000000000002,22.74081238656975,23.074741593213854,23.270539424826673,23.222018236141878,23.184841848562481,23.167380886473445,4.5148825981833927,4.4974642287902702,4.4892312491176938,4.4766792950463117,4.4506099295285173,4.4168271534943004 +1985,3,8,9,0,9,168,8.5,171.37029652981258,64.0985016802862,68.00798382749277,114.99611832158863,0.0,52.058911498879212,172.85247779239057,1.0,52.058911498879212,104.76336254361965,1.5,10.6,6.2000000000000002,159.95185214293417,162.03309353198006,163.25177170543145,163.07285947727212,162.94173380446256,162.87397376344541,30.203983589518625,30.188776531469752,30.240886020360055,30.270038241031877,30.157690184187636,29.877950679424924 +1985,3,8,10,0,4,183,9.5,185.13019938045099,52.154482076800925,57.82209997220188,127.30484348884727,0.0,57.024936030448643,185.14035959119053,1.0,57.024936030448643,113.16694428754316,1.5,12.199999999999999,5.7000000000000002,172.38118654782187,174.73300659004673,176.11078710256163,175.91822811133875,175.77744457250452,175.70429868322591,33.167287150870592,33.164697884453041,33.199308902539222,33.184685751260901,33.014257778366748,32.701940248772956 +1985,3,8,11,0,6,268,10.5,271.90621822199944,41.75796917761727,49.38021459833361,142.67854265752834,0.0,83.274320179693021,273.79362363705798,1.0,83.274320179693021,166.45508737769745,1.5,13.300000000000001,4.0999999999999996,255.95523605436657,259.25582107203377,261.18800541376987,260.9856778795745,260.84369584005384,260.76345122196,48.347783420614995,48.438708609177326,48.556259569241291,48.580979378339052,48.332051514677907,47.82134211945678 +1985,3,8,12,0,1,362,11.5,362.72179378359976,34.40938185522783,43.79722219724968,161.83370858165756,0.0,110.29851293335982,367.33800342649329,1.0,110.29851293335982,222.34641690132946,1.5,13.9,5.7000000000000002,344.33028325390882,348.56332255712181,351.03984468937784,350.8684808338096,350.75839646179844,350.68465308429654,63.954923373988073,64.171670516438297,64.396872358516305,64.480146564832651,64.147090485145412,63.417499614559254 +1985,3,8,13,0,2,333,12.5,334.47997408327001,32.295731981715164,42.269688271637065,183.69484026205384,0.0,101.63451488460215,337.66548506588009,1.0,101.63451488460215,204.96506149520519,1.5,14.4,3.1000000000000001,316.13682505933986,320.12550295706779,322.46006227521332,322.28069216717921,322.16205831303893,322.08685548040887,59.005855632259532,59.163419629807372,59.324924360887309,59.366009971036632,59.049788284828352,58.404086057670277 +1985,3,8,14,0,1,172,13.5,172.70438154719568,36.34842454358581,45.2203981805501,204.95989122228684,0.0,53.742519468116825,171.63174864369256,1.0,53.742519468116825,105.59272147257467,1.5,15.6,0.0,159.63291074778567,161.91234566895233,163.24836644184359,163.07925827318553,162.95672648169099,162.89191801736666,31.327615148751516,31.306188453953023,31.304221044017051,31.261472895558644,31.088747270134892,30.80780333752509 +1985,3,8,15,0,1,269,14.5,269.61742142356866,44.917086843324604,51.871923293901155,222.88490436833504,0.0,82.297052890784542,271.37784498445455,1.0,82.297052890784542,165.04229341738125,1.5,14.4,2.6000000000000001,253.51943103671289,256.80402667767402,258.72710983497097,258.52288292942171,258.37915252749247,258.29840022436736,47.79316640799815,47.867862944622679,47.973682538607065,47.994255779635125,47.752831928467103,47.25733272457051 +1985,3,8,16,0,1,136,15.5,136.48507582090744,55.938999319866056,60.9825598928152,237.15054852800628,0.0,42.425907566699742,135.56502462275876,1.0,42.425907566699742,83.350726133516773,1.5,13.300000000000001,1.5,125.91817685275495,127.72394621086404,128.78241465163228,128.6146120749969,128.4901132673653,128.42742395289764,24.722776610751833,24.690179502651315,24.68568766262112,24.650281868135277,24.516749072649493,24.301498626671869 +1985,3,8,17,0,1,68,16.5,68.316496273609587,68.19292233257536,71.54883388111874,248.7152263991272,0.0,21.426554828426418,67.350749415549998,1.0,21.426554828426418,41.652169553388617,1.5,13.300000000000001,1.5,62.437558867465157,63.378330001325118,63.930065439842394,63.823219291879823,63.742512499595797,63.70341588505007,12.508991258184309,12.475541413847075,12.457469520642244,12.424741920244854,12.35121982339324,12.251787925466358 +1985,3,8,18,0,0,25,17.5,25.0,81.02423974940082,82.8770720592947,258.6529513363011,0.0,7.8626010009979517,24.574386186776838,1.0,7.8626010009979517,15.218712643017366,1.332689573665697,12.800000000000001,2.1000000000000001,22.816529819056488,23.164376620036599,23.368402940119111,23.321081068975982,23.284898567509245,23.267825967653724,4.5913957433464372,4.5776106812694337,4.5699232536448493,4.555295105680881,4.5258153628962177,4.4896352194059874 +1985,3,8,19,0,0,1,18.5,1.0,87.88406070208326,88.95693278234276,263.71915683101565,0.2604368477877536,0.31450404003991794,0.99240387608929914,1.0,0.31450404003991794,0.0075961164082149479,1.5,13.300000000000001,4.0999999999999996,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,3,9,7,0,0,11,6.5,11.0,85.88690228495057,87.15511251747445,97.56982674927615,0.0,3.4595444404390974,10.80791518638938,1.0,3.4595444404390974,6.6914188294947028,1.5,10.0,2.6000000000000001,10.039273120384857,10.192325712816103,10.282097293652409,10.259575616660895,10.242278759544728,10.23419596139432,2.0199270435159913,2.0136365994672323,2.0102537789589912,2.0035302326659137,1.9902054984394995,1.9742848428959789 +1985,3,9,8,0,1,64,7.5,64.193027360658704,76.5599799429891,78.8704895223787,104.38614599262652,0.0,19.86780878530703,63.851066951341096,1.0,19.86780878530703,39.151747950503861,1.5,9.4000000000000004,2.6000000000000001,58.518414633676223,59.368655502661561,59.86712294271981,59.770338375142728,59.697387983209637,59.661898211846903,11.589864664918071,11.549801914781721,11.532386589650335,11.50957244458967,11.452030917880766,11.365125038579867 +1985,3,9,9,0,1,159,8.5,159.37956830241069,63.83034128700957,67.69305511666907,114.73818249517417,0.0,48.944979494628399,159.84829941715839,1.0,48.944979494628399,97.397287722434029,1.5,11.1,4.5999999999999996,148.01196469521557,150.00898313905307,151.17872548270552,151.0018125767553,150.87153035145084,150.80486447676319,28.438052941124202,28.423865441584173,28.46027285760449,28.463453423432686,28.335673466032052,28.071767725603301 +1985,3,9,10,0,169,225,9.5,315.85219093560607,51.853169244956234,57.48047878499297,127.06881844226767,0.0,88.269677237460257,338.58371196163318,1.0,88.269677237460257,195.99264931351479,1.5,11.1,4.5999999999999996,319.5043590862274,321.83143495050263,323.1810349587621,323.82393068726026,324.36528721779951,324.56873505964546,50.317408342753744,51.079083275035131,51.825301834904238,52.441361839560642,52.4149993125707,51.52747445727983 +1985,3,9,11,0,378,244,10.5,491.95061572626815,41.411784224835415,49.00797232387755,142.50128600835743,0.0,132.91504695967765,543.81549085293796,1.0,132.91504695967765,306.22420605115053,1.5,12.199999999999999,4.0999999999999996,524.12818780460725,526.27717498364177,527.50113029527927,528.78848710275724,529.85961042318354,530.27413280895166,74.867371565643225,76.901013780895312,78.692634729235436,79.98252478857377,79.791710881363542,77.89821877217048 +1985,3,9,12,0,591,247,11.5,676.38342278372818,34.0206452003165,43.403133396091214,161.78082960408284,0.0,176.96793604930181,761.33662852536327,1.0,176.96793604930181,421.90112761558566,1.5,14.4,0.0,741.92264707007575,743.63325970238111,744.5765715300015,746.6110435066131,748.29449163054403,748.95481105038493,98.951849508830151,102.47703728788204,105.41086195725558,107.40671726803774,107.00036914213567,103.9762404934379 +1985,3,9,13,0,481,281,12.5,639.11115886001232,31.910549146880236,41.88264122753884,183.81859834818667,0.0,168.76982036545547,715.80551573851687,1.0,168.76982036545547,399.13985474936885,1.5,15.6,3.1000000000000001,695.7253500767863,697.67630398382789,698.7665023874531,700.87281451014564,702.6133833344976,703.29868525823827,94.652508597020613,97.857468025582051,100.49317246856549,102.3305249289994,101.99779649873756,99.229453300139781 +1985,3,9,14,0,646,201,13.5,658.79746027553938,36.02816683933869,44.87361669662921,205.22968803308984,0.0,170.41540206258614,747.19981981427202,1.0,170.41540206258614,411.65381720768153,1.5,17.199999999999999,3.6000000000000001,729.08970788572458,730.3356091774059,731.00463360230742,733.22642518273562,735.05942846486118,735.78374098712743,95.010077771366397,98.664193809145416,101.69320778100945,103.77770770716472,103.41561518876117,100.35854736894734 +1985,3,9,15,0,623,173,14.5,560.16383914383209,44.67179538677701,51.577843937500305,223.22252272540058,0.0,140.7525232133562,635.9192006925764,1.0,140.7525232133562,350.438695107314,1.5,16.699999999999999,2.6000000000000001,615.79660875732384,616.9730909588651,617.61391245732398,619.65579219067035,621.33740494331232,622.00488480032629,78.387734295636363,81.179296475138358,83.646215241719062,85.552547940218972,85.552817381921997,83.179762063808866 +1985,3,9,16,0,585,119,15.5,404.98187826136063,55.7492928344839,60.73445697652315,237.50377133685302,0.0,101.83908154967169,462.41564072905754,1.0,101.83908154967169,253.80795745013697,1.5,17.800000000000001,2.6000000000000001,437.99304031332002,438.85825284981547,439.33044561818019,440.9667375363552,442.31190787659034,442.84794170420923,56.483971429597538,58.251837455636498,60.075732641707987,61.671660773779934,62.014027975493399,60.48206635068663 +1985,3,9,17,0,92,121,16.5,150.44478346529775,68.03934384661015,71.33393069877751,249.06583564037177,0.0,43.42904990706451,159.31045583889227,1.0,43.42904990706451,93.428303204077935,1.5,17.800000000000001,2.1000000000000001,143.68432204160666,145.05146408111435,145.84824709806171,146.18949389984971,146.4766965050828,146.58508539623858,24.919872429874609,25.06024333962532,25.268628539431187,25.546661183793709,25.653836727610511,25.360306634283351 +1985,3,9,18,0,214,36,17.5,63.248888840139358,80.89409236659203,82.68459710207787,259.00029896221673,0.0,14.927287592263101,73.223217883067122,1.0,14.927287592263101,39.970968884791283,1.5,15.6,3.1000000000000001,51.642633176777721,52.005849072478576,52.21662725677804,52.597505900212241,52.910222027251436,53.035684845644759,8.9188940806997046,8.7649454399965432,8.6244360296330651,8.6439056303043404,8.7329314749033458,8.7471684549659638 +1985,3,9,19,0,4,1,18.5,1.0784468654546977,87.87738326736991,88.87625938009148,264.14044585321034,0.2057496074263727,0.31552384929082894,1.140556584827062,1.0,0.31552384929082894,0.0075961164082149479,1.5,10.6,3.1000000000000001,0.91266272094162182,0.94907517146787734,0.96412783242328115,0.96722666654455469,0.96982149698831388,0.97081458591008707,0.1850939787643846,0.18520263785543239,0.18489454075546369,0.18515061648680237,0.18500465500231975,0.1835527726294211 +1985,3,10,7,0,78,13,6.5,17.058876523652128,85.81698872966005,87.01715927390647,97.18726947295981,0.0,3.4402875671185797,18.493585058499811,1.0,3.4402875671185797,10.930390780308604,1.5,0.0,2.1000000000000001,11.711018658963852,11.843628802828006,11.921224206893548,12.078393532708377,12.206555567526703,12.258823481821628,2.0209522632331645,2.0446744629744367,2.0501117575400536,2.0821657263546984,2.1099213950321642,2.0893417728625456 +1985,3,10,8,0,531,38,7.5,143.19450834169629,76.31294612596568,78.57375064797074,104.11979111460933,0.0,32.703960881527948,168.61913489552975,1.0,32.703960881527948,90.205167957276444,1.5,5.0,0.0,128.0954308539111,128.43941173587257,128.63168540563646,129.37457522303643,129.98500368679129,130.2295908072908,18.434441339053578,18.356662522905147,18.549680825810473,19.107535408409539,19.631559852549973,19.573691350845568 +1985,3,10,9,0,763,57,8.5,350.5026432019082,63.56112104484579,67.37679112031678,114.479495171918,0.0,86.39258787663978,405.25934101046994,1.0,86.39258787663978,218.83124891787932,1.5,10.6,2.6000000000000001,370.85109580506452,371.2734736561161,371.48838863022513,372.59878908491498,373.51440869254822,373.87608085405543,47.492912783251192,48.885675517583721,50.561275113381612,52.102588002659104,52.558517755474504,51.253031887689673 +1985,3,10,10,0,862,74,9.5,541.7409497167821,51.5510104995102,57.13762907132042,126.83168991484487,0.0,138.26124704282824,619.94797811049102,1.0,138.26124704282824,337.12641702335105,1.5,12.800000000000001,2.6000000000000001,597.86933177952346,598.49000660773174,598.80041563638508,600.12488140298899,601.22391855969283,601.65099941981919,76.358409512188686,79.229805529493632,81.945501176847529,83.90355812211412,83.849936099243862,81.384588549538279 +1985,3,10,11,0,911,86,10.5,688.04384269986804,41.06467840705938,48.634473627751646,142.32318532414854,0.0,175.07358580171157,784.55095250970362,1.0,175.07358580171157,427.27187296667057,1.5,13.9,2.1000000000000001,769.00180901672502,769.6769498899971,770.00357811624554,771.36393861672502,772.49917856052139,772.9340150684535,96.965773972919848,100.9362952764925,104.35496049166632,106.51875463346744,105.91662039688723,102.55654619238285 +1985,3,10,12,0,940,92,11.5,779.38502724740033,33.630683773306686,43.00781539256666,161.7289817137446,0.0,197.96507052873667,887.30141732836694,1.0,197.96507052873667,483.40454813452874,1.5,15.6,3.6000000000000001,874.17914821779505,874.86860222780581,875.19362214056798,876.5234926635751,877.63850544598074,878.06030876167961,109.80134360007379,114.48823302668067,118.30716239506472,120.51859145133771,119.62184469361162,115.61793277248329 +1985,3,10,13,0,947,94,12.5,803.31681267798683,31.524818272229492,41.49490978044351,183.94657092722704,0.0,203.97437223414008,914.14140190277692,1.0,203.97437223414008,498.10552647965898,1.5,16.100000000000001,1.5,901.43133843495718,902.12701509646809,902.45313078742163,903.77301817660953,904.88107867604288,905.29878770445021,113.11455137838061,117.94561523923257,121.88777138458286,124.16174971218427,123.22607008128048,119.09493569685945 +1985,3,10,14,0,937,91,13.5,759.0044305234411,35.70910899434796,44.527146412755656,205.50522515934114,0.0,192.87906382093175,864.27247143718137,1.0,192.87906382093175,470.90360818708649,1.5,17.199999999999999,3.6000000000000001,850.55186617132097,851.24282319233885,851.57095291963913,852.91612834658633,854.04258936766053,854.47015571129248,107.00357337159677,111.5654038447496,115.27667492124391,117.43451597316906,116.5727160671494,112.67908194275202 +1985,3,10,15,0,907,83,14.5,650.28272807010808,44.42858133363856,51.28481027619148,223.5651239862688,0.0,165.59350731859502,741.93447441665808,1.0,165.59350731859502,404.03894008696813,1.5,17.800000000000001,4.5999999999999996,724.61196306410454,725.27767716686481,725.60279869937619,726.96592764816864,728.1016353121496,728.53857338592911,91.7498546597905,95.50030371317051,98.720093274893657,100.77164148835767,100.21973027630673,97.051473851011494 +1985,3,10,16,0,849,69,15.5,487.22714906670018,55.561662954528124,60.48762822292886,237.86066174114913,0.0,124.51311413200037,558.33271993361211,1.0,124.51311413200037,303.46842376745769,1.5,17.199999999999999,5.2000000000000002,532.28198265380831,532.87560182784046,533.17590792291981,534.46239973609045,535.52801671259726,535.94394261267689,68.696739192973993,71.168184858253397,73.607602853959349,75.465957166664239,75.563769811368914,73.453568391976575 +1985,3,10,17,0,720,51,16.5,283.98060984985131,67.88748490026028,71.1201799674155,249.41907696652962,0.0,70.316666306024786,329.38148867492833,1.0,70.316666306024786,177.59089139931856,1.5,17.199999999999999,4.0999999999999996,289.68781619809789,290.08982282317976,290.30030798026434,291.30436649007601,292.13145572151166,292.45973580440938,38.650728205587043,39.54828047098507,40.811122841183732,42.1280191489709,42.730709074493532,41.839498679131552 +1985,3,10,18,0,409,30,17.5,83.435804524123427,80.76506842673219,82.49285149264217,259.34957182490433,0.0,18.350280264704889,99.462806006517411,1.0,18.350280264704889,52.722185231991276,1.5,15.6,2.6000000000000001,65.546288949219942,65.820352224874014,65.976967296350963,66.469809685270462,66.874529075274268,67.036920545102902,10.835497303614593,10.569504220375318,10.419992922194767,10.537442427067608,10.767948819591716,10.824387893174672 +1985,3,10,19,0,14,2,18.5,2.2943724488770085,87.87058344747689,88.79517557222944,264.5630458567712,0.15116641577147594,0.63283492191523705,2.5050025985020969,1.0,0.63283492191523705,0.015192232816429896,1.5,11.1,2.1000000000000001,1.8349527178521001,1.9566444881323044,1.9729650182891261,1.97916208869036,1.9843517495778777,1.9863374584876974,0.37123097071599265,0.37144709857023633,0.3708280396371747,0.37133665003868405,0.37103557093337486,0.36811644491662776 +1985,3,11,7,0,7,13,6.5,13.381232238160754,85.74604879006208,86.87802704004032,96.80426165180447,0.0,4.1273733993308435,13.362912856655608,1.0,4.1273733993308435,8.2114948380156143,1.5,2.7999999999999998,2.1000000000000001,12.049056933280125,12.229937355912869,12.336013290066987,12.333708620599335,12.332960005587095,12.33156634340885,2.4131727591664771,2.4100241325872593,2.4066831307148706,2.4029575612977183,2.3916595753648453,2.3720066352940643 +1985,3,11,8,0,54,58,7.5,68.973088514206154,76.064580543604,78.27553833844769,103.85316504498496,0.0,19.96437086875461,72.376475430505579,1.0,19.96437086875461,42.891331489493695,1.5,6.0999999999999996,2.6000000000000001,62.552829410916658,63.257330297073267,63.668963508857445,63.848657407271659,63.999472263313848,64.056851901041156,11.555708742333135,11.559970365106986,11.593140152355293,11.690061832345902,11.743930309486021,11.651264134319765 +1985,3,11,9,0,266,147,8.5,250.68086067807468,63.290982954343804,67.05933380379452,114.22004536417334,0.0,69.535233042574404,274.3957820386421,1.0,69.535233042574404,156.35007315290338,1.5,8.9000000000000004,2.6000000000000001,251.45557097999105,252.9395461448787,253.79449933760921,254.57333218987452,255.2195938847712,255.47150455720805,39.335925388685503,40.068274489438217,40.824614668563186,41.526167205997474,41.647013403585753,40.87332840538793 +1985,3,11,10,0,2,182,9.5,183.09531066918515,51.24815445113095,56.793692647617576,126.5934177358674,0.0,56.659218982900946,182.70080086711693,1.0,56.659218982900946,111.91787917999777,1.5,12.800000000000001,4.0999999999999996,170.05264257452802,172.40100281151271,173.77686285461118,173.58532289075245,173.44530118754727,173.37255779404663,32.98004581278979,32.984925631526856,33.011055492107751,32.98114120125306,32.794424473717321,32.479376363763727 +1985,3,11,11,0,6,253,10.5,256.9945200641526,40.71680019670523,48.25985412600899,142.14416721451485,0.0,78.89193177398667,258.06974485608168,1.0,78.89193177398667,157.29697816425303,1.5,13.300000000000001,4.5999999999999996,241.08850574987181,244.24783078909141,246.09764843303648,245.89737340751284,245.75598914094081,245.67707995509392,45.860231217715942,45.951016852264466,46.038475976715304,46.026406417526296,45.759876309140019,45.270144262729346 +1985,3,11,12,0,1,249,11.5,249.73596251315891,33.239624993495525,42.611390102492365,161.67809418534839,0.0,77.034621542642768,249.8627153009443,1.0,77.034621542642768,152.86538032548398,1.5,14.4,4.5999999999999996,233.08731559366231,236.23729008172779,238.0823268016652,237.89443464758557,237.76271915681963,237.68819594998388,44.842536227879869,44.89670346016301,44.949150307649049,44.913699427803259,44.65230241961207,44.195986000575338 +1985,3,11,13,0,10,291,12.5,298.534875937067,31.138658987283378,41.10660604828238,184.07873178778945,0.0,91.278898886538627,300.69181914997876,1.0,91.278898886538627,182.86452165354086,1.5,14.4,5.2000000000000002,281.4102954752322,285.0016845370522,287.10376265904841,286.91856471945238,286.79253877094663,286.71689102712145,53.037464638109959,53.190065953078957,53.322007545427653,53.319819800225417,53.00152138916792,52.405084126557661 +1985,3,11,14,0,9,175,13.5,181.45426597560657,35.391370246416884,44.18108985555345,205.7864584815625,0.0,56.101566673577004,181.15291182084613,1.0,56.101566673577004,110.97523858178141,1.5,14.4,5.2000000000000002,168.9044907826717,171.22108119750294,172.57822078536756,172.40935939368077,172.28754658910319,172.22250649465178,32.668316750930934,32.690165804817923,32.71718307525277,32.68059426902964,32.486183952630107,32.162766773058941 +1985,3,11,15,0,1,143,14.5,143.62941668312007,44.187519867533744,50.99290042498514,223.9126090822454,0.0,44.817865892937832,142.34994404005542,1.0,44.817865892937832,87.753544898124161,1.5,13.9,5.7000000000000002,132.26613065225084,134.18830195885639,135.31513759089654,135.15334631426177,135.03439278437824,134.97336243901199,26.143023889991127,26.114037572551137,26.100373344443,26.051402047142645,25.900719677987187,25.671330550404395 +1985,3,11,16,0,2,117,15.5,117.99267173327863,55.376141166724835,60.24212246930078,238.2210938699755,0.0,36.796328332163938,116.86235684695575,1.0,36.796328332163938,72.034579339393488,1.5,12.800000000000001,3.6000000000000001,108.50494832675054,110.08823636318114,111.01646446767809,110.86406991222614,110.75057622473949,110.69389652819463,21.461102131337714,21.429188479205308,21.416224451210688,21.374272117521993,21.250032419255373,21.065509319629683 +1985,3,11,17,0,2,72,16.5,72.654184869876232,67.73734847593752,70.90760717824186,249.77481999768256,0.0,22.754784114204352,71.71450920492866,1.0,22.754784114204352,44.303593920883849,1.5,11.699999999999999,4.0999999999999996,66.458303306593123,67.451408162526448,68.033774889453454,67.922275544785762,67.838143982147429,67.797289291559295,13.278969174620672,13.247400875208239,13.232056328399265,13.199866781673006,13.122012486663202,13.01397300453478 +1985,3,11,18,0,0,29,17.5,29.0,80.6371621636298,82.30185367735926,259.7006409499279,0.0,9.1206171611576217,28.511536647821146,1.0,9.1206171611576217,17.658955334488009,1.5,11.1,2.6000000000000001,26.467174590105525,26.870676879242453,27.107347410538168,27.054307313618459,27.013836232628112,26.994654320111746,5.3263320196793549,5.310586644379506,5.3016696124448082,5.2850140028333232,5.2512030216128149,5.2092355730648352 +1985,3,11,19,0,0,2,18.5,2.0,87.86368767049082,88.71373442417665,264.986829225658,0.09672188152419284,0.62900808007983589,1.9848077521785983,1.0,0.62900808007983589,0.015192232816429896,1.5,10.6,3.1000000000000001,1.8253223855245198,1.8531501296029285,1.8694722352095299,1.8756705857217075,1.8808602466092257,1.8828469596102357,0.36899764798304163,0.36921632459341241,0.36860339968980449,0.36911959228922131,0.36883811850404763,0.36595188437787218 +1985,3,12,7,0,0,17,6.5,17.0,85.6741676793447,86.73781797681958,96.42087423007835,0.0,5.3360769338142626,16.708772708721341,1.0,5.3360769338142626,10.352390970074776,1.5,15.6,6.7000000000000002,15.487661087349542,15.723558590179893,15.861920368085491,15.831015616948537,15.807440360063806,15.796260424723915,3.1162999430763434,3.1071684251590352,3.1019421074357516,3.0921474536291975,3.0723008116268971,3.0476847874486426 +1985,3,12,8,0,1,77,7.5,77.208321440140153,75.81502401121955,77.9759975357573,103.58627402620297,0.0,23.857780686323302,76.968379667384738,1.0,23.857780686323302,47.11117938940545,1.5,15.6,6.7000000000000002,70.358082434329077,71.362313647824294,71.950871972737772,71.841361881606858,71.759109389620633,71.718771244473132,13.889287034614997,13.858511330521786,13.854710057496185,13.840714359503306,13.774851871221212,13.660249470522901 +1985,3,12,9,0,1,164,8.5,164.39489097314336,63.020069395997396,66.74082548974395,113.95982145845377,0.0,50.489937759122014,164.66035261979425,1.0,50.489937759122014,100.46807763080831,1.5,17.800000000000001,8.1999999999999993,152.57115277985895,154.63191441346859,155.83895551983306,155.65861986951313,155.52596004484832,155.45790491091887,29.348337650190111,29.359574169720482,29.401449715776629,29.392162829042562,29.235170767981685,28.950080502415499 +1985,3,12,10,0,105,296,9.5,354.03158502793099,50.94475020118107,56.44881170085783,126.35396078271856,0.0,102.86041636614691,371.27843304446668,1.0,102.86041636614691,218.41347009982857,1.5,20.0,7.2000000000000002,349.87914694841561,352.97804408682282,354.78143002170788,355.07013611799567,355.32899915919938,355.41137088673645,59.053426075959081,59.805916978117672,60.442528244911188,60.831936794832053,60.54314827042041,59.545665257482732 +1985,3,12,11,0,225,318,10.5,468.89187564138547,40.36829882546585,47.884249728265736,141.9641561147676,0.0,131.2747508472454,504.17837570015945,1.0,131.2747508472454,290.79770883759306,1.5,18.899999999999999,9.3000000000000007,482.18386426945926,485.22069715161297,486.97452883868982,487.85718471689859,488.60225009644989,488.8805508204058,74.915096786144133,76.546054192188933,77.789125909843847,78.485476836309701,78.019941187437453,76.321487071114419 +1985,3,12,12,0,638,219,11.5,691.52875675119503,32.84759649787657,42.213979304610156,161.62809330245392,0.0,178.99747074270397,779.80320699871004,1.0,178.99747074270397,431.96843083917378,1.5,18.899999999999999,10.300000000000001,761.7050665228561,763.03803816741765,763.75443779267744,766.03868717040166,767.9245704836577,768.66838350363264,100.53150158094682,104.64151054650443,107.69100951397287,109.28527250644356,108.31858015897281,104.88227113560033 +1985,3,12,13,0,710,197,12.5,735.13118096338485,30.75219052340191,40.71784148470527,184.21505253301987,0.0,188.72210385392458,831.84901343507397,1.0,188.72210385392458,458.76681918003453,1.5,17.800000000000001,10.800000000000001,815.20535823489172,816.28610357892967,816.84778095115962,819.10952136421372,820.97854438129775,821.7137216543739,105.74355702882478,110.25358360400469,113.62763812116329,115.35076325349557,114.25201553901839,110.49997644250922 +1985,3,12,14,0,763,152,13.5,702.37529377863927,35.075068369725145,43.83554823238027,206.07334063590494,0.0,179.1718373717938,797.52537798784306,1.0,179.1718373717938,437.97571817581752,1.5,17.199999999999999,8.1999999999999993,782.12003718658502,782.90687299432068,783.29743830603331,785.32638482073332,787.00455881717653,787.66293100725647,100.20671233446821,104.61736911241434,107.93775157047483,109.60306824041906,108.49917062027616,104.84190903991529 +1985,3,12,15,0,734,120,14.5,584.87984539756189,43.94868313275069,50.702190435857496,224.26487541986577,0.0,149.86235634762045,663.99759646150608,1.0,149.86235634762045,364.98108536813913,1.5,16.699999999999999,9.3000000000000007,646.3241826816494,647.12204798106893,647.53236791187726,649.32270326350636,650.80194918227085,651.38407614979678,83.703459559508673,87.248363457544542,89.988266186418201,91.549262307472873,90.871137628026176,87.877370949915715 +1985,3,12,16,0,727,106,15.5,469.52212749025136,55.192755898403405,59.99798630285532,238.5849395480102,0.0,120.67910006009093,534.49091381806807,1.0,120.67910006009093,293.31991029550568,1.5,15.6,10.300000000000001,508.82369929798728,509.54469950622979,509.92228685651997,511.47728641459963,512.76014483728966,513.26700094940793,67.148476993903387,69.823983291282417,72.050842832004065,73.571361366765728,73.300911529338805,71.077728534693435 +1985,3,12,17,0,569,77,16.5,265.0979696119615,67.58893512695376,70.69623586254292,250.13293319297998,0.0,66.978601034229641,302.65284840575919,1.0,66.978601034229641,166.36493135225581,1.5,15.6,8.8000000000000007,267.13606996296386,267.76135408972289,268.10548388220809,269.25782214434412,270.20430083239995,270.58239856504929,37.181863775961332,38.262168627097992,39.41127417248196,40.493319285065532,40.806398930506255,39.839391308215674 +1985,3,12,18,0,245,42,17.5,75.624697288012982,80.51036538947896,82.11161990181337,260.053376909475,0.0,19.098109772732226,85.748582464701329,1.0,19.098109772732226,47.703088215184479,1.5,13.9,5.7000000000000002,61.315307594558959,61.741102344184071,61.987378164710144,62.41053777711808,62.758616672777279,62.897816032664551,10.989165846072659,10.923236947925975,10.946964193379703,11.161084882453176,11.378964964668253,11.346928952467641 +1985,3,12,19,0,2,3,18.5,3.0477481926594976,87.856718411922,88.63198506448049,265.41166871313004,0.042446456036574175,0.94413284662432684,3.0520088223909818,1.0,0.94413284662432684,0.022788349224644844,1.5,12.800000000000001,6.2000000000000002,2.7491388758014841,2.7946919760674196,2.8191748789341151,2.828472197064118,2.8362566883953946,2.8392365950299721,0.55385872436785044,0.55418632586666527,0.55326594355122471,0.55403900259256988,0.55361361186651881,0.54927892550294133 +1985,3,13,7,0,111,13,6.5,19.58951907688683,85.60142935505506,86.5966329164186,96.03717738950182,0.0,4.1324701250863161,21.594493258279591,1.0,4.1324701250863161,12.711907525697344,1.5,5.5999999999999996,4.0999999999999996,12.305059336443746,12.423367834922498,12.492097385261086,12.727661316149941,12.919632400696109,12.998104775019911,2.518217639057319,2.5345198074765567,2.4974910144529483,2.498920531293189,2.5127707242243735,2.4888659139876363 +1985,3,13,8,0,331,64,7.5,134.65261974834445,75.56441748177481,77.67527324591386,103.31912355277275,0.0,34.776003190275588,151.44024119803964,1.0,34.776003190275588,84.61433630243684,1.5,8.9000000000000004,4.0999999999999996,121.02075675243579,121.64496693094239,122.00262484474825,122.63799519321911,123.16029033915282,123.36901044039432,19.548963836799118,19.839925772261726,20.230453235565392,20.734110715625821,21.005575852173116,20.680187982584147 +1985,3,13,9,0,673,78,8.5,347.20444323280572,62.748523041169676,66.42140879024025,113.69881133858435,0.0,86.355277426992828,396.10173854289911,1.0,86.355277426992828,217.13400728193744,1.5,11.1,5.7000000000000002,364.07166718517635,364.63519122287499,364.93397225177091,366.16653737320758,367.18159806684753,367.58443225528521,47.954933077589914,49.748191809492695,51.343310310569976,52.562141562264188,52.55582196760767,51.045729477436105 +1985,3,13,10,0,771,89,9.5,518.98653334156677,50.64094726901259,56.103128738626715,126.11327710843835,0.0,132.43093116753596,590.48801325301963,1.0,132.43093116753596,323.68908459783148,1.5,13.300000000000001,5.2000000000000002,569.82130006141495,570.41132202532367,570.70530288271584,572.22878966418318,573.48830427668429,573.98311118086326,73.873387412942307,77.06628139104032,79.544400329307976,80.941248303688624,80.316469958110389,77.62538592773987 +1985,3,13,11,0,830,107,10.5,667.6565964365268,40.01932425267739,47.50779661044845,141.78307436349994,0.0,169.75555448398168,758.20761893350505,1.0,169.75555448398168,415.65196948327787,1.5,15.0,5.2000000000000002,742.81865638089198,743.44606008038807,743.74566717313598,745.43194889805591,746.83058640658169,747.37516771869559,94.818742606960328,99.037696164645013,102.2413284499049,103.8036299124683,102.69081030093368,99.178669434424521 +1985,3,13,12,0,894,87,11.5,753.29218953884242,32.45472613226254,41.815704622079544,161.57890233900048,0.0,198.20629930871175,853.28723573348418,1.0,198.20629930871175,467.19439616600243,1.5,17.199999999999999,4.5999999999999996,841.09851045172741,841.74184083208308,842.03820528979031,843.31142426428096,844.38122710686787,844.78328290186039,110.73829374194659,115.6162070421741,119.33449171435271,120.92344797772756,119.37173561650735,115.221066121619 +1985,3,13,13,0,947,86,12.5,807.93971835591424,30.365531685875762,40.328726852719726,184.35550253387538,0.0,204.8084887662848,915.20055054305033,1.0,204.8084887662848,500.73273398731294,1.5,17.800000000000001,1.5,903.30896608642843,903.93593714613894,904.21945562191365,905.4598769970919,906.50441339669112,906.89458533754942,114.54579262900288,119.63891311496418,123.47702741057421,125.00996323829006,123.26016263253341,118.95183662251115 +1985,3,13,14,0,947,84,13.5,771.03622346958912,34.76031958852207,43.49062139167781,206.36582093080776,0.0,202.76038754896686,873.75920696504625,1.0,202.76038754896686,478.10997957404516,1.5,20.0,4.0999999999999996,860.81369583441597,861.44302175761686,861.72902463834987,862.99966321675947,864.06821658000558,864.46883599492094,113.25809039690429,118.2612231676907,122.07879188510806,123.70433936061319,122.1056698816779,117.84812587541744 +1985,3,13,15,0,927,76,14.5,666.73302546726313,43.712140168981236,50.41275426747088,224.62181686770393,0.0,169.40811087353021,756.63133859370271,1.0,169.40811087353021,413.95323151256758,1.5,21.100000000000001,5.7000000000000002,740.14537853141758,740.74766210956727,741.03243835584885,742.31874025764125,743.39339615397444,743.80372760295165,94.541201388122658,98.713436355721271,101.92209708579323,103.41914231106034,102.22251344013215,98.707770577669351 +1985,3,13,16,0,868,64,15.5,501.20692130059604,55.0115325245448,59.755264065600876,238.95206834431244,0.0,127.77998327326708,570.42807725785474,1.0,127.77998327326708,311.90932902862698,1.5,21.699999999999999,6.7000000000000002,545.16477261334842,545.70992296432746,545.97942820953449,547.20597697841936,548.22397902289913,548.61980014293806,71.012623517160591,74.028257612072167,76.443540416279717,77.906403925990105,77.412594707755005,74.866910640591783 +1985,3,13,17,0,485,87,16.5,249.00733315381186,67.44224302970578,70.48608762945003,250.4932839089092,0.0,65.638441958002346,281.92749536941074,1.0,65.638441958002346,156.65058357027095,1.5,20.600000000000001,5.7000000000000002,249.21061834143899,249.94547508967801,250.35537021018803,251.57771099943378,252.58091827356478,252.98266798222991,36.680147946421734,37.847250639880414,38.913501706868132,39.835171434123076,39.987812728336785,39.007951684918936 +1985,3,13,18,0,58,60,17.5,68.150057910737175,80.38466764519835,81.92216434636573,260.40764987154034,0.0,19.593452753182845,71.413172475862169,1.0,19.593452753182845,42.306015107219281,1.5,19.399999999999999,4.0999999999999996,59.134013173591157,59.836276678182927,60.246739322897142,60.398583843106707,60.526796097328997,60.574863215979917,11.353259082107995,11.34414042092186,11.367538208779841,11.45055789291653,11.497121837226642,11.414494835807186 +1985,3,13,19,0,23,3,18.5,3.5820160482224535,87.849694427846,88.54997290707311,265.8374374474383,0.0,0.9568228271426017,3.8401969896141779,1.0,0.9568228271426017,0.022788349224644844,1.5,16.699999999999999,2.6000000000000001,2.9111739863478618,2.9529153547337459,2.97739336500528,2.9866863514039781,2.9944710125258034,2.9974474007470322,0.56139419573331362,0.56152478399467887,0.56044536285865942,0.56119826627161384,0.56073987241405354,0.55640030124579309 +1985,3,14,7,0,5,20,6.5,20.309199602394472,85.5279165279362,86.45457137415795,95.65324061158552,0.0,6.2876743392918115,20.032791386139394,1.0,6.2876743392918115,12.372959633191467,1.3507876007352921,8.9000000000000004,0.0,18.23076855075977,18.50506837100825,18.665921779462121,18.630647577268419,18.603795858432147,18.591003240865643,3.6751891581373681,3.6622188644645659,3.6538765340874497,3.6414183099897226,3.6180699235988834,3.589932890469004 +1985,3,14,8,0,2,63,7.5,63.437188826170356,75.31290196507923,77.37351047618866,103.05171848510507,0.0,19.758601933944689,62.8221462853096,1.0,19.758601933944689,38.682486352412404,1.5,11.1,3.1000000000000001,57.850099419996333,58.700973475208166,59.199824513185803,59.101661982862005,59.027496900756745,58.991576537776538,11.518995789409063,11.495316304948096,11.487782562665332,11.464636881259791,11.399001894113761,11.302540071293759 +1985,3,14,9,0,6,105,8.5,107.43073209070683,62.476486762492584,66.10122653920047,113.43700251187765,0.0,33.420760488865859,106.65980245027023,1.0,33.420760488865859,65.572028535059715,1.5,10.6,2.1000000000000001,98.911367902177005,100.32718819009317,101.15700892896228,101.01222638325702,100.90394517149339,100.85034140706561,19.47532604470215,19.459311844831195,19.45849689541663,19.424311203763132,19.306755164288099,19.130329799302796 +1985,3,14,10,0,6,208,9.5,211.37624209777175,50.336895517880485,55.75678653925685,125.87132407440798,0.0,65.053760313086116,211.67028670569297,1.0,65.053760313086116,129.27163467445189,1.5,11.1,3.1000000000000001,197.31935534828798,199.95356749771636,201.49621759110377,201.29600403834371,201.15109480837603,201.07421903362001,37.851800057418764,37.910364650660995,37.966143787195783,37.927756322368452,37.686816065458878,37.290804031269509 +1985,3,14,11,0,2,349,10.5,350.36065828642239,39.67002713312524,47.13063118824794,141.60084228563838,0.0,106.47532443977843,354.2669896896615,1.0,106.47532443977843,214.7258535612838,1.5,11.699999999999999,3.1000000000000001,331.96989303145614,336.04487462037838,338.42867029014764,338.24735511987694,338.12828472093054,338.05172325850202,61.842021707078707,62.102363660264359,62.302638662390777,62.29491604647442,61.878529138249185,61.135155724741459 +1985,3,14,12,0,10,285,11.5,292.49918429473172,32.061141944279825,41.416687505308374,161.53044154064762,0.0,89.865150774568676,294.25741778317342,1.0,89.865150774568676,179.15222565841242,1.5,12.800000000000001,2.1000000000000001,275.31748711383329,278.84668231504679,280.91222798658441,280.72566525998673,280.59819444208227,280.52225623576271,52.259646672608774,52.420725230596148,52.540578235492241,52.504814991165773,52.156672131037361,51.564101803262908 +1985,3,14,13,0,93,283,12.5,354.30534900809141,29.978800826435673,39.93937219920843,184.5000488787945,0.0,102.77125076902399,375.98746690357024,1.0,102.77125076902399,220.47384569618868,1.5,13.300000000000001,2.6000000000000001,357.46259776901832,360.19154575331856,361.77398289826431,362.71721276838645,363.50557774017523,363.80775223721741,59.148577269418787,60.281371570619854,61.026536095953645,61.390551723998804,60.984443006583376,59.782707327346088 +1985,3,14,14,0,0,333,13.5,333.0,34.44723848883102,43.146407783913304,206.66384526124455,0.0,102.16105159026317,335.49135306931674,1.0,102.16105159026317,204.04986783273719,1.5,15.6,1.5,313.98062143054005,317.96106042815705,320.29035035246369,320.10889845547769,319.98873673754707,319.91271165333393,59.395655470393216,59.602086409060171,59.753059891155267,59.722651239251796,59.327229391655308,58.640895565847408 +1985,3,14,15,0,3,181,14.5,182.92335800605412,43.47795684915575,50.12466375684472,224.98332374567093,0.0,56.721288478465759,182.12885861396003,1.0,56.721288478465759,111.83383104490019,1.5,14.4,2.1000000000000001,169.56363396199833,171.93462750040905,173.32392971798771,173.14087000438874,173.00779003941733,172.93786314631157,33.059579874899725,33.065184740293716,33.076018422335387,33.021785239043702,32.817496972242068,32.501355561063235 +1985,3,14,16,0,5,176,15.5,178.53663922123465,54.83249337928924,59.5139978620053,239.32234762308767,0.0,55.280631751746625,178.32824893237063,1.0,55.280631751746625,109.12421426192832,1.5,14.4,0.0,165.92349621859779,168.18654311162817,169.51210130740759,169.32180778832725,169.18239073557407,169.11028204082547,32.176168230858003,32.20642982269414,32.2423654642297,32.203567756185272,32.001887594414782,31.674793682596693 +1985,3,14,17,0,7,95,16.5,97.36229117749474,67.29726803905332,70.27718220608789,250.85573845780695,0.0,30.249741246137187,96.763955979534117,1.0,30.249741246137187,59.416199914180545,1.5,13.9,0.0,89.486913097063862,90.761682097371903,91.508764654520945,91.373587618089942,91.272220469203603,91.222318259343083,17.619588553927159,17.606632258936823,17.609760899570055,17.581561405499603,17.475741265318874,17.314739438776432 +1985,3,14,18,0,1,32,17.5,32.143777628054266,80.26005634391323,81.73349925444609,260.76332964859847,0.0,10.097218264597783,31.634143838950632,1.0,10.097218264597783,19.577493039155502,1.5,12.800000000000001,1.5,29.311160486453989,29.756403929151777,30.017544085173647,29.960166335940773,29.916446485643014,29.895661796932107,5.895501777007623,5.8784349388668984,5.8691210242186136,5.8516124456463405,5.8149316147396055,5.7683330511950937 +1985,3,14,19,0,0,3,18.5,3.0,87.84263099158687,88.46773987718316,266.264008936554,0.0,0.94351212011975361,2.9772116282678973,1.0,0.94351212011975361,0.022788349224644844,1.5,12.800000000000001,2.6000000000000001,2.737983578286781,2.7797251944043939,2.8042083528142956,2.813505878582562,2.821290369913839,2.824270439415355,0.55349647197456253,0.55382448689011854,0.55290509953470657,0.55367938843383169,0.55325717775607197,0.54892782656680827 +1985,3,15,7,0,47,17,6.5,20.023415026588253,85.45371067300334,86.31173156289164,95.26913274071643,0.0,5.4673964339767576,20.659125877789592,1.0,5.4673964339767576,12.615425673264644,1.5,2.2000000000000002,3.1000000000000001,15.408422976049192,15.608452409399847,15.725456890175035,15.835350763849844,15.92586559011062,15.961919483607339,3.2231062184958779,3.2068135335595094,3.1890111032348116,3.2043386773230811,3.2247867078586356,3.2114994748349464 +1985,3,15,8,0,510,47,7.5,161.11042889894273,75.06061844649776,77.07085417224872,102.78406316507458,0.0,40.796133394608333,183.77314659846644,1.0,40.796133394608333,101.29626672266043,1.5,8.9000000000000004,4.0999999999999996,144.40559724110946,144.80255334470985,145.02173563373708,145.7896511557872,146.41965427713777,146.67211117317473,22.692682045361348,23.392951844451076,24.097014884431978,24.735881897136846,24.892873599307638,24.294006213662328 +1985,3,15,9,0,728,71,8.5,369.65085158100305,62.20410354366548,65.78042172495309,113.17438223827081,0.0,94.907285171799543,419.62460449927016,1.0,94.907285171799543,231.10403019672864,1.5,10.0,5.7000000000000002,387.08928394854655,387.63500641108305,387.91897842773426,389.20439564042692,390.26402975081186,390.68357100746368,53.064261133326333,55.305372378477536,57.020565025419387,58.025142897154147,57.631915016409195,55.752088905427776 +1985,3,15,10,0,836,91,9.5,565.59812382212431,50.032745079319206,55.40992810190556,125.62805848828,0.0,144.11942643038196,640.72891494259386,1.0,144.11942643038196,352.42981256573324,1.5,11.699999999999999,6.2000000000000002,619.49728352983448,620.09625033784846,620.38987667760318,621.93188001414296,623.20900310396871,623.70816493777932,80.81880414467939,84.395417533260556,87.020816899060179,88.184547369068582,87.12043950449204,84.152315766771309 +1985,3,15,11,0,892,104,10.5,715.15045433342391,39.32055878406965,46.752890091174834,141.41737828133984,0.0,182.48482992157867,806.61341001153232,1.0,182.48482992157867,444.2272480744947,1.5,12.199999999999999,6.7000000000000002,790.84918329560981,791.66224271587237,792.0662682536331,793.52711417803721,794.74647832126459,795.21314537243472,102.63715325095893,107.13662405613111,110.28980762888712,111.46428967045851,109.79933290230724,106.00798269375392 +1985,3,15,12,0,925,112,11.5,809.92575213918542,31.666972178237184,41.01704921608865,161.48262810614506,0.0,213.67145132932035,912.89957638048611,1.0,213.67145132932035,502.41931469139729,1.5,13.300000000000001,8.1999999999999993,899.18919504023245,900.02446268313247,900.42767251255623,901.83719520435261,903.02124508870475,903.46641897070253,120.27962497486543,125.59197085805449,129.22863630856222,130.43466011741222,128.29712228839469,123.76035727793604 +1985,3,15,13,0,934,113,12.5,833.17981373338228,29.592115816119232,39.54988683029838,184.64865631967962,0.0,219.6986412509564,938.98874696762323,1.0,219.6986412509564,516.66900699451844,1.5,13.9,8.8000000000000007,925.67467750460935,926.50657826445081,926.905096483384,928.29217347842177,929.45920666982067,929.89606282434511,123.64647081626646,129.11708795404181,132.8683372464541,134.1014609483978,131.88475999050561,127.20886138869605 +1985,3,15,14,0,920,110,13.5,784.99869673264698,34.13593792817162,42.80300442313389,206.9673560207149,0.0,207.18697469573809,884.82333425196771,1.0,207.18697469573809,487.13686271109771,1.5,13.300000000000001,9.3000000000000007,870.54300222858342,871.37586425014786,871.78052535472489,873.21122038406395,874.41115737377743,874.86428345232036,116.6533694827307,121.79877041411439,125.31484738884528,126.49201565727299,124.43770095832545,120.04813605975647 +1985,3,15,15,0,888,100,14.5,672.7166027668253,43.24619582062375,49.83798859306205,225.34928281700607,0.0,177.8981520209669,758.82721995616043,1.0,177.8981520209669,418.14551935043886,1.5,13.300000000000001,7.7000000000000002,741.23628374942496,742.03786396362318,742.43723939982294,743.90868243295108,745.13566167634508,745.60652767330521,99.923844087661607,104.25045698364181,107.36433799990947,108.59602054937316,107.11362036968485,103.45785270579984 +1985,3,15,16,0,819,84,15.5,502.45137486445554,54.65565777195647,59.27422756952278,239.69564259643707,0.0,132.82480677742478,569.21035670457513,1.0,132.82480677742478,313.33550780697959,1.5,13.300000000000001,6.2000000000000002,543.81464392076475,544.40126989175963,544.69263553250164,546.15245609230703,547.36082025920405,547.83385400235829,74.415702932265958,77.671087770761019,80.088101802568872,81.225881916955046,80.337503657047407,77.6185157876331 +1985,3,15,17,0,688,63,16.5,297.52504527023882,67.15400374683408,70.06953748007896,251.22016216657988,0.0,76.76111907080994,337.78843952427167,1.0,76.76111907080994,186.33868650897546,1.5,13.300000000000001,4.5999999999999996,299.34393910946068,299.86324447829116,300.13953997487283,301.29256147057208,302.24147565656995,302.61889087516147,42.877645150913416,44.632570885625213,45.988209940734158,46.886091598894978,46.692166226250777,45.236820139241019 +1985,3,15,18,0,380,37,17.5,92.868219794747034,80.13651690854924,81.54563505458351,261.12028574576345,0.0,23.469372893236248,105.77617596304128,1.0,23.469372893236248,58.756807796206303,1.5,11.699999999999999,4.0999999999999996,72.693762975342125,73.039260987403097,73.235458800768185,73.811773595850127,74.283521876603103,74.473946112059792,13.142700381914542,13.401492572823347,13.712403634735814,14.106842302833851,14.320850835398549,14.073863351268509 +1985,3,15,19,0,13,5,18.5,5.3663097276800453,87.83554012928154,88.38532463617402,266.6912570720783,0.0,1.6134369967814515,5.4530029472459498,1.0,1.6134369967814515,0.03798058204107474,1.5,7.7999999999999998,3.1000000000000001,4.6624628881529757,4.732032518722419,4.7728193410848316,4.7883028263768876,4.8012764366175,4.8062328613315914,0.94657922681773832,0.94801913209985389,0.9467145919309321,0.94752587936197952,0.94589148649636068,0.93770684668048909 +1985,3,16,7,0,78,18,6.5,23.212545264756969,85.37889204142472,86.16821040838035,94.88492204781167,0.0,6.0317216035703058,24.402681453845442,1.0,6.0317216035703058,14.851485964429145,1.5,-3.2999999999999998,0.0,16.142999284682215,16.327468432238867,16.435008739514867,16.640772513382025,16.809100595356881,16.877272553485845,3.5215739198489331,3.5163805923166875,3.5141344279271096,3.5714833910768973,3.6343877842697894,3.62102170439824 +1985,3,16,8,0,493,52,7.5,164.84964355779169,74.80770780513767,76.76744915517514,102.51616153315412,0.0,41.970994664227014,186.64323898955493,1.0,41.970994664227014,103.73772355070014,1.5,3.2999999999999998,0.0,147.88978784177243,148.33861292090646,148.58814167234726,149.40720869012219,150.07904255618703,150.34860170812533,23.49324571779113,24.301942035891113,24.987064236241334,25.558412896951605,25.603635235869458,24.929714510983267 +1985,3,16,9,0,568,104,8.5,339.9143180492556,61.93151638861247,65.45913742289856,112.91093766231363,0.0,91.500002983998868,382.09226158405568,1.0,91.500002983998868,213.23291937162045,1.5,6.7000000000000002,3.1000000000000001,352.10644895889732,352.92075534633813,353.36615328817373,354.81259021648032,356.00268113489273,356.47633870630358,51.611419865954204,53.665010565445137,55.132662673832634,55.913109343607417,55.459537810054002,53.750444901784924 +1985,3,16,10,0,358,224,9.5,429.01934195869273,49.7286462758367,55.06269659646164,125.38343674726407,0.0,116.78527730024686,468.08360443196943,1.0,116.78527730024686,267.12346691496919,1.5,8.3000000000000007,2.6000000000000001,446.49056797395349,448.55298468994164,449.73152037741193,450.88608477200921,451.84707960156595,452.21873263598275,66.647639993252426,68.604544448142775,69.915013724324808,70.473995007461426,69.775551487947268,67.976750906774683 +1985,3,16,11,0,477,260,10.5,589.10096012585461,38.971071151267765,46.37471013711632,141.2325989211311,0.0,160.52918934844629,652.65416895269982,1.0,160.52918934844629,367.9986555455294,1.5,10.0,2.6000000000000001,631.85360639255464,633.76110922790281,634.82767272133378,636.80383932856398,638.43834661171854,639.08019024588498,91.254934991871451,94.575761570763859,96.737046576835326,97.627501106531952,96.494167565399877,93.614624177273058 +1985,3,16,12,0,469,286,11.5,642.00814417560514,31.272345271879438,40.616910813007436,161.43537616888514,0.0,174.45407800472893,712.07677763330071,1.0,174.45407800472893,401.01877679599983,1.5,12.199999999999999,3.6000000000000001,691.99893911493245,693.95277479697836,695.04054553627179,697.17917114103955,698.94823735792511,699.64262610556807,99.410521936771417,103.07301639970501,105.37837146324237,106.18075928090134,104.76307244901653,101.58501836476485 +1985,3,16,13,0,383,255,12.5,551.97106055764073,29.20559401844048,39.1603792875645,184.80128721410324,0.0,149.91334135116492,613.16021987341219,1.0,149.91334135116492,345.63959843697307,1.5,12.800000000000001,2.6000000000000001,595.38622794252319,597.04704391498422,597.97095488397576,600.11294513187352,601.87944430132791,602.57830913885834,85.468193974193042,88.666923242982321,90.655846202079928,91.398600322582595,90.239125605376955,87.500886709059557 +1985,3,16,14,0,378,247,13.5,525.86679207284965,33.82652894329389,42.46050684913621,207.27629201110068,0.0,143.23206641431509,583.28915504028566,1.0,143.23206641431509,329.34935475770033,1.5,14.4,5.2000000000000002,565.15009070498922,566.83619502484316,567.7781803294381,569.8423238064056,571.54453053205521,572.21812085298461,81.713761562402297,84.71116545219914,86.568805720945235,87.271296245335748,86.191744213867196,83.616524015125322 +1985,3,16,15,0,178,264,14.5,379.47698060808511,43.01691644990832,49.55279629307878,225.71957728312427,0.0,108.93160673748429,404.62525318886111,1.0,108.93160673748429,235.56240468842637,1.5,15.0,5.7000000000000002,385.29945850024149,387.93231960140929,389.45460154798673,390.25156056782436,390.92256928686595,391.17481123208512,62.600528935455671,63.954096984502705,64.823390428588453,65.157399387437849,64.569831302001319,63.167657480357768 +1985,3,16,16,0,522,185,15.5,453.56875783982667,54.48104200758934,59.035990851984764,240.0718163790573,0.0,120.5390236008412,502.45834962231396,1.0,120.5390236008412,283.31935784542208,1.5,15.0,6.7000000000000002,476.52947256719375,478.07918593479263,478.95018772872555,480.47014894183246,481.72680991426648,482.22092840325701,68.497760753912004,70.91834697140257,72.536655918678306,73.255321936659413,72.482050000476349,70.39014303992731 +1985,3,16,17,0,116,152,16.5,191.93454109127629,67.0124415434103,69.86316954433703,251.58641943557686,0.0,55.660807195710717,201.79810310699281,1.0,55.660807195710717,119.08381973603973,1.5,14.4,6.2000000000000002,182.76942340142796,184.4271262090823,185.39143975747785,185.78486623560968,186.11703747663762,186.24122699239808,32.068848536551791,32.553872977274068,32.893533504467008,33.079138000859878,32.900409964194218,32.325295012383663 +1985,3,16,18,0,32,45,17.5,49.808002664542371,80.01403290436612,81.35858047704984,261.4783874084262,0.0,15.110466235087934,50.507717711648098,1.0,15.110466235087934,30.60825674594065,1.5,12.800000000000001,3.6000000000000001,44.124174852265085,44.713626418743431,45.058598817124235,45.062298666607234,45.069235640898825,45.068246977546167,8.7656425863560212,8.7852124673750396,8.8115134951513756,8.8313020008222924,8.8024714474654679,8.7106998136452365 +1985,3,16,19,0,1,1,18.5,1.0296180452814536,87.8284308511146,88.30276280207147,267.11905613235996,0.0,0.31927402623249607,1.0302958342597224,1.0,0.31927402623249607,0.0075961164082149479,1.4755732755144537,8.9000000000000004,3.6000000000000001,0.92033802777643747,0.93425216713201797,0.94241119965266096,0.94550861809528375,0.94810360390923321,0.94909554008370922,0.18749176956034819,0.18751278402120375,0.18707953109406383,0.18723527811015017,0.18702515855399943,0.18557029188329874 +1985,3,17,7,0,1,14,6.5,14.069336805792936,85.30353967210533,86.02410356451409,94.50067629441976,0.0,4.4183293787708591,13.838787584261425,1.0,4.4183293787708591,8.5600691880754365,1.5,6.7000000000000002,2.6000000000000001,12.808665714317097,13.003459741501539,13.117708290649974,13.08941221643307,13.067699432360399,13.05753371116789,2.5791915764286077,2.5712730112474009,2.5671892216713705,2.559005373223477,2.5423148966551801,2.5219503437741744 +1985,3,17,8,0,3,70,7.5,70.702197331392853,74.5543107314958,76.4634400582995,102.24801724695008,0.0,22.03156915561031,70.065140588515291,1.0,22.03156915561031,43.122135088126313,1.5,8.9000000000000004,2.6000000000000001,64.467829459537285,65.407519095425243,65.958341029047432,65.85201457163528,65.771834617035594,65.732839817785219,12.842842874794583,12.828083317808295,12.823951980697281,12.79674411152631,12.71665957324841,12.601875464136809 +1985,3,17,9,0,10,213,8.5,217.20441799409355,61.658868229915186,65.13751672815353,112.64665594794504,0.0,66.143241853106687,219.01712840837982,1.0,66.143241853106687,132.89178715501771,1.5,10.6,2.6000000000000001,203.17331332579559,205.72852135071307,207.22353127579572,207.03217357379515,206.89451952248217,206.82049903752412,38.436817870435888,38.5771895235046,38.682788802816482,38.649929299043144,38.367615195190467,37.912480059832795 +1985,3,17,10,0,81,289,9.5,335.7888876091414,49.424749541771256,54.715235313155745,125.13741498687097,0.0,99.33342306134071,349.00567344513524,1.0,99.33342306134071,207.16254028011272,1.5,12.800000000000001,4.0999999999999996,328.65671662425973,331.73441926168971,333.52631320170417,333.80589676498215,334.05696985174393,334.13648257130575,57.468678753540203,58.220851470642558,58.689412094753727,58.787231540041738,58.271331044999705,57.271704703052137 +1985,3,17,11,0,192,323,10.5,456.38349862065053,38.62171677373636,45.99622830727486,141.04641904773877,0.0,130.61566744024393,486.97972410335012,1.0,130.61566744024393,283.19975907512554,1.5,12.800000000000001,5.7000000000000002,465.24106175150598,468.30781141361217,470.07918867562347,470.99781703866313,471.77241330049185,472.06240999556934,75.149527516505216,76.814554783013833,77.851706704378742,78.173452610443036,77.367060953949434,75.64871987295443 +1985,3,17,12,0,399,247,11.5,551.6809177741568,30.877389855026188,40.21639313809547,161.38859677887964,0.0,149.70196230837493,612.31007302392709,1.0,149.70196230837493,345.36141369543111,1.5,14.4,6.2000000000000002,594.61459312511954,596.24103086617254,597.14438890621864,599.24982207662526,600.98692461518795,601.67344235596602,85.584153235724102,88.808881542577339,90.701963641183269,91.257697741070842,89.969113538221194,87.229196564636652 +1985,3,17,13,0,758,175,12.5,765.97885701762743,28.81935226279497,38.770957325042026,184.95790146364698,0.0,202.30609631052042,862.15461751801126,1.0,202.30609631052042,477.55570689649539,1.5,15.6,5.2000000000000002,847.07157268946548,847.92008839112464,848.33570837617356,850.51712439625226,852.32485088735655,853.03025012098533,114.91299722822808,120.01734756595455,123.12614912739754,123.85319135448594,121.60837897510112,117.35052168695437 +1985,3,17,14,0,648,208,13.5,688.65618498563697,33.51912065597295,42.119009090290135,207.59058835059108,0.0,183.70137110384593,771.46613457234503,1.0,183.70137110384593,430.18101737483687,1.5,16.100000000000001,5.7000000000000002,753.81866848118591,755.04338518348709,755.6918110664767,757.96340365844821,759.841097716023,760.57908107227559,104.60729355550038,108.99987215727519,111.6374874797297,112.31711065272012,110.46220308874797,106.78283709531063 +1985,3,17,15,0,605,190,14.5,584.76642391889061,42.790174771275225,49.269152179711426,226.09408678150706,0.0,156.93307627969688,653.54927079140998,1.0,156.93307627969688,365.80732437627188,1.5,16.699999999999999,5.7000000000000002,633.59361769617772,634.87343639658036,635.56689034577357,637.68909037049639,639.44027463973862,640.13173917929214,89.211134669228912,92.826000773111744,95.105036048012565,95.909112511299739,94.556798052596363,91.50098510561206 +1985,3,17,16,0,300,168,15.5,323.4111340775616,54.30865941205256,58.799323175883046,240.45073004487847,0.0,90.35631884024275,351.94287692568651,1.0,90.35631884024275,201.58228018339287,1.5,15.6,7.2000000000000002,332.62763498123644,334.24095191085638,335.16314200678249,336.11065806520418,336.89828169721312,337.20389118546643,51.774486503040798,53.280256468951066,54.216017681746429,54.543170090418513,53.92444311705087,52.526357235344499 +1985,3,17,17,0,292,97,16.5,198.50549232454802,66.87257068216685,69.65809274410739,251.95437379757706,0.0,54.992823173999994,218.85909875370146,1.0,54.992823173999994,124.86328556775416,1.5,13.9,7.2000000000000002,195.01849199062832,195.89005331660209,196.38562464883972,197.36368907542277,198.16775145559413,198.48868091884992,31.364709213030917,32.391797957992544,33.064403557610284,33.433521152527653,33.202729751572001,32.323613015118895 +1985,3,17,18,0,104,59,17.5,74.960136159668309,79.89258616711417,81.17234266584015,261.83750366936465,0.0,21.97924558289958,78.489306073626068,1.0,21.97924558289958,46.516475851001637,1.5,11.699999999999999,8.1999999999999993,63.943574323669537,64.642845733060867,65.050324362946171,65.208718542216346,65.342401538873148,65.392446032047786,12.656950223209899,12.802573918584704,12.921760234100951,13.016673139628555,12.985460545210046,12.790609505683785 +1985,3,17,19,0,8,6,18.5,6.2484827440661626,87.82130937595946,88.22008716348832,267.547280784937,0.0,1.9368524849070954,6.2585525509702267,1.0,1.9368524849070954,0.045576698449289688,1.5,10.0,7.2000000000000002,5.537779462934858,5.6212614091276611,5.6702099348808588,5.6887868586223931,5.704357627553069,5.7103027520826943,1.1360015509519072,1.1353985773487112,1.1330843714093426,1.1348872345120442,1.1346742887956514,1.1263482979015083 +1985,3,18,7,0,48,22,6.5,25.449002660477174,85.22773140215622,85.87950542752958,94.11646279712396,0.0,7.458060150762976,25.883921984018304,1.0,7.458060150762976,15.825201506462257,1.5,-1.1000000000000001,8.8000000000000007,20.522554021143112,20.800225340591957,20.962587893605463,21.029428767197619,21.085468795202459,21.106818820673382,4.3237095271277806,4.3453299655458899,4.3649955236193101,4.3924135812763945,4.3952091375464946,4.3474941723641125 +1985,3,18,8,0,418,64,7.5,163.99764364275254,74.30056764456657,76.15897126381475,101.97963380096905,0.0,43.679678698637872,182.73856155780146,1.0,43.679678698637872,103.4870376670606,1.5,0.0,9.3000000000000007,147.45647971618297,148.03749848430846,148.36479382835921,149.28470323272023,150.03894886832285,150.34198656421941,24.830084517091063,25.731236773483261,26.33577726639928,26.694051907353238,26.536561378911237,25.796880203918555 +1985,3,18,9,0,566,114,8.5,354.85071320236773,61.386301836478836,64.81570268810046,112.38152441593748,0.0,95.757981441308388,396.08844309887775,1.0,95.757981441308388,222.60500951962257,1.5,0.59999999999999998,8.1999999999999993,365.98927682525095,366.89986844334982,367.40036778443516,368.9132689357254,370.1585300187503,370.65358504853782,54.539484978964182,56.694290605601275,58.029283242944743,58.54349990580576,57.795780893342517,55.984844949496008 +1985,3,18,10,0,628,173,9.5,538.86113922439881,49.1212053421621,54.367687611752956,124.88994923522263,0.0,144.95321440374593,600.84248008923396,1.0,144.95321440374593,337.12804440951629,1.5,1.7,8.1999999999999993,577.66562223735002,578.93149881992122,579.62184876759147,581.59350165235617,583.22074009962671,583.86311253406575,82.713137970874598,86.017738043430271,87.976830461895602,88.523805152360481,87.178513448661462,84.398471584307671 +1985,3,18,11,0,817,145,10.5,716.44580131456519,38.27264874700889,45.61758172138034,140.85875188501592,0.0,189.81107367960925,803.69255163345804,1.0,189.81107367960925,446.32054766972504,1.5,2.7999999999999998,7.7000000000000002,786.53664454059106,787.47956633857495,787.9571153760379,789.87797413774308,791.47241164539798,792.09193204854603,107.86321501225272,112.54487859557125,115.40173791438592,116.05303067589475,113.96043666730743,110.0257932864498 +1985,3,18,12,0,855,155,11.5,811.73321532712009,30.48223475010212,39.81561680468087,161.3421978854042,0.0,221.81712951312849,911.10704522720471,1.0,221.81712951312849,505.04225465057391,1.5,4.4000000000000004,6.7000000000000002,895.76583706023052,896.68166728510948,897.12881720090002,899.07172755165561,900.69071284046413,901.31330661945356,126.18334744740673,131.70109882157047,134.95436379506063,135.54573476529396,132.91047744466374,128.21257079284962 +1985,3,18,13,0,858,157,12.5,829.57891283250387,28.433506818036502,38.38172788702919,185.11845644829032,0.0,226.59121499132871,931.2108119994906,1.0,226.59121499132871,516.02608015532951,1.5,5.5999999999999996,7.7000000000000002,916.21424334534913,917.11843201150668,917.55649895886381,919.49884365932701,921.11830546047963,921.74008027352465,128.87823987295073,134.52842280961082,137.86392330136965,138.46245021208964,135.75290069267663,130.9408810569609 +1985,3,18,14,0,844,152,13.5,781.39177819990414,33.21382017689395,41.77860362702769,207.91017637982205,0.0,213.67917430162962,876.7368177214787,1.0,213.67917430162962,486.35693572988305,1.5,6.7000000000000002,5.7000000000000002,860.86924796522567,861.79835876862467,862.25707529401882,864.19700560561591,865.81197426117444,866.43464225517459,121.58606214766277,126.88158456802422,129.99722865408197,130.57606753858775,128.06479543379953,123.55868904316934 +1985,3,18,15,0,809,138,14.5,668.88900076725838,42.566023439362304,48.98711936188777,226.47268738680648,0.0,177.46421734450834,749.8997100007507,1.0,177.46421734450834,416.94655718142496,1.5,7.2000000000000002,7.7000000000000002,731.06622014198547,732.01074109265869,732.49477760026775,734.37946217628939,735.94217111309069,736.55117603492045,100.89141147853098,105.24137993732747,107.88674372113097,108.50655462762504,106.58558513186281,102.932821304199 +1985,3,18,16,0,729,116,15.5,496.20411162632149,54.1385203616638,58.56425782953071,240.83224268558408,0.0,131.99437063887368,556.54052972784177,1.0,131.99437063887368,309.99895532256193,1.5,7.2000000000000002,7.7000000000000002,531.23291559008942,532.0214015334036,532.43271405831638,534.07903556136648,535.43949059964007,535.97453087246777,75.122633594259781,78.337265455647355,80.26980507430477,80.766496015907833,79.411859171475342,76.730539115319559 +1985,3,18,17,0,583,85,16.5,289.60621209441524,66.73437834685424,69.45431972619052,252.32388797683578,0.0,77.943491578366078,323.81663783975841,1.0,77.943491578366078,181.68057465827982,1.5,6.7000000000000002,7.2000000000000002,288.19485337020149,288.88516061502099,289.26219094121609,290.49673384993514,291.51275025174493,291.91676890066572,44.367176447869575,46.152823196058463,47.261308545345209,47.68557871996213,47.06501158723038,45.569988355612921 +1985,3,18,18,0,269,48,17.5,90.141489913670341,79.77215692741092,80.98692728662886,262.1975033953319,0.0,24.766331975386031,98.765322244792912,1.0,24.766331975386031,56.790528821435004,1.5,5.5999999999999996,8.1999999999999993,72.139273348345938,72.6217949401493,72.898720797112674,73.377868559187817,73.771419673678338,73.928931774202766,14.143715943232888,14.553879748314515,14.829932923621518,15.016535117764233,14.961737419804448,14.604794499053821 +1985,3,18,19,0,4,6,18.5,6.130016140299678,87.81417934797622,88.13732788549444,267.9758060883348,0.0,1.9156628954633179,6.1069853126049027,1.0,1.9156628954633179,0.045576698449289688,1.5,3.8999999999999999,5.2000000000000002,5.5070692198025215,5.590552018422466,5.6395064701409385,5.6580927291795913,5.673660565456359,5.6796141293062039,1.1225188473424417,1.1233763644526993,1.122032914185501,1.1241588566167922,1.1236271657939667,1.1146657634159929 +1985,3,19,7,0,67,22,6.5,26.983333395956475,85.15154387563655,85.73450914857321,93.7323484920874,0.0,7.8034246526444333,27.768491893196977,1.0,7.8034246526444333,16.968962705478148,1.5,-5.5999999999999996,2.1000000000000001,20.409948360746071,20.66643994135945,20.816005386371749,20.952481235157443,21.064937283382136,21.109643499665221,4.5229411274596885,4.5860520749813549,4.6223695562002831,4.659910919080394,4.6585229001664166,4.5876734070530176 +1985,3,19,8,0,465,61,7.5,174.6415519376543,74.04661860839184,75.85418683909914,101.71101464746093,0.0,47.483444622495526,194.37835175436652,1.0,47.483444622495526,110.01497860443634,1.5,0.0,2.6000000000000001,157.00731479692197,157.54586200107926,157.84595986334955,158.75574081573384,159.50259193603262,159.80162131488171,27.116707347654426,28.152797454843203,28.777446964164561,29.050504701997856,28.734469478841707,27.872508438691618 +1985,3,19,9,0,689,93,8.5,389.68902301888426,61.11395972035747,64.49383823473693,112.11553068391926,0.0,107.26106708937107,436.24963892530792,1.0,107.26106708937107,243.71665408806726,1.5,2.2000000000000002,2.6000000000000001,404.73769264362551,405.41708261642276,405.77443506754537,407.16090763804192,408.30607643352539,408.75712602335415,61.195938102275264,63.777750768519581,65.258746775186324,65.60823354484458,64.492991260114323,62.319482508447344 +1985,3,19,10,0,797,118,9.5,586.23752850523238,48.81816408948101,54.020196870197175,124.64099557301232,0.0,155.58790487488261,656.59147870317361,1.0,155.58790487488261,365.72672097859214,1.5,5.0,1.5,634.81391647912324,635.65519904363521,636.08728247420424,637.84537733840875,639.30146238976613,639.87075816033314,88.801432072881269,92.617185120983478,94.793486323406171,95.180745197338197,93.36770712246404,90.155698513731821 +1985,3,19,11,0,854,135,10.5,736.34598068645198,37.924020684595625,45.238907613042,140.66950915447362,0.0,194.57187122039494,825.56000262949783,1.0,194.57187122039494,458.44505070385503,1.5,7.2000000000000002,2.6000000000000001,808.9927977646181,809.83222557081604,810.24568639761037,812.11877661334699,813.67578438896339,814.2785030826368,110.90814271253564,115.76822503485039,118.57167867131673,119.00878430395029,116.6107547163906,112.50575634440783 +1985,3,19,12,0,883,144,11.5,826.17990621855336,30.08700897455401,39.41470218640425,161.29608432058401,0.0,217.7904543721969,926.78717675861458,1.0,217.7904543721969,513.80616463663171,1.5,8.9000000000000004,3.1000000000000001,912.09547952644266,912.90539354331179,913.29081125191306,915.18683371317854,916.76701562942367,917.37435404800203,124.05525421103377,129.54884891338057,132.7367662136316,133.19690674389673,130.43256578276853,125.78392486580535 +1985,3,19,13,0,855,165,12.5,838.81536396393471,28.048173366159155,37.992797086662755,185.28290695676873,0.0,221.7000635433364,939.54318680799463,1.0,221.7000635433364,521.76454395369979,1.5,10.6,3.6000000000000001,924.16171400990504,925.13109702850488,925.60991275019455,927.57556118696505,929.2131599513375,929.84329502675996,126.34841097792389,131.8558163377792,135.04512967900828,135.51422672260708,132.75060735160613,128.07847263779277 +1985,3,19,14,0,873,141,13.5,795.44999366665809,32.910732507703386,41.439381356036236,208.2349835664538,0.0,209.85493887836577,892.01004677699052,1.0,209.85493887836577,494.87977186261764,1.5,11.699999999999999,2.1000000000000001,876.78651830067076,877.60830062726791,878.00436562231187,879.89657625250402,881.47210046722307,882.07921110313589,119.5633288293207,124.83983791860592,127.89566996675279,128.34855244802966,125.71077253420681,121.24867449254504 +1985,3,19,15,0,759,138,14.5,638.87399952152941,42.34451168610834,48.706758717238266,226.85525161533792,0.0,169.01777873784803,716.42065547152185,1.0,169.01777873784803,398.54191298366658,1.5,12.800000000000001,4.5999999999999996,698.83357378047276,699.61318866791578,700.00244102162424,701.90566096284783,703.4818480086102,704.09811026513137,96.409602805961597,100.63678435298647,103.05267283266086,103.47716388934344,101.46646373996718,97.921674659467669 +1985,3,19,16,0,711,110,15.5,483.2848306790064,53.97063231737022,58.330825945125,241.21621147098404,0.0,128.39785957329246,541.21248289306959,1.0,128.39785957329246,301.93957302790301,1.5,13.300000000000001,5.2000000000000002,516.9438069752448,517.67132011081344,518.04773444237151,519.65375742452864,520.98107608573423,521.50297355354235,73.322791629773747,76.471716263974685,78.254915509592479,78.599488578383657,77.145421123820725,74.50860841322887 +1985,3,19,17,0,430,118,16.5,270.33208211321949,66.59784972166355,69.25186149027945,252.69482394814062,0.0,74.47556116902436,296.71170327160974,1.0,74.47556116902436,169.28664300697412,1.5,13.300000000000001,3.6000000000000001,265.42581222042918,266.50733974507693,267.11922113322765,268.18006732452443,269.05571179654095,269.4015896595439,42.825755146256959,44.261992057050456,45.042233575460841,45.239749857235445,44.618648545484831,43.362013335167205 +1985,3,19,18,0,133,66,17.5,87.258839141478333,79.65272393181402,80.80233863121896,262.5582553331105,0.0,25.53273288029666,92.10322347975,1.0,25.53273288029666,54.602100703604492,1.5,12.199999999999999,4.0999999999999996,73.208246779746474,73.936810139794616,74.360079908584282,74.7015144428658,74.984241358083594,75.095215267521965,14.805527217995893,15.074240976187118,15.213017773320276,15.275343871166458,15.174036107822829,14.892134181079355 +1985,3,19,19,0,1,6,18.5,6.033948634420697,87.80704204425147,88.05451270650477,268.40450749335474,0.0,1.8958423980302843,5.9926882490680482,1.0,1.8958423980302843,0.045576698449289688,1.5,8.3000000000000007,3.6000000000000001,5.4837930607052323,5.5672762206635253,5.6162385690822925,5.6348310804242034,5.6503997089253479,5.656357850380517,1.111926755498692,1.112815354412791,1.11114206374561,1.1127347616153531,1.1117818910275183,1.1029216549541156 +1985,3,20,7,0,50,22,6.5,25.845342557997828,85.07505255013653,85.58920664415382,93.34839999963793,0.0,7.6142364152648421,26.450226601804552,1.0,7.6142364152648421,16.271807650456456,1.5,2.7999999999999998,3.1000000000000001,19.931314973934981,20.187883068197905,20.337551078618276,20.475145203478565,20.588505168439454,20.633589779597973,4.4525939775297836,4.5127255095432171,4.5326426631692227,4.5473352015699273,4.5290993169859846,4.4605816341626126 +1985,3,20,8,0,296,78,7.5,151.86622176849318,73.79260324807048,75.54923047272213,101.44216331814964,0.0,42.402854900409423,165.43781368786114,1.0,42.402854900409423,95.520436380001058,1.5,8.9000000000000004,4.0999999999999996,136.94835207425334,137.69936213645838,138.128406031184,138.87741059842151,139.49366378388771,139.73920421422002,24.524412737752485,25.274362065076275,25.641082015237519,25.741331209487964,25.426907156467529,24.764700834146701 +1985,3,20,9,0,608,115,8.5,379.88735237235466,60.841984042696396,64.1720661167417,111.84866280884842,0.0,102.24162599307522,422.26362342229692,1.0,102.24162599307522,238.07395156195543,1.5,12.800000000000001,4.5999999999999996,391.53714810617868,392.44311689352412,392.93767294644459,394.47079902107646,395.73436100867013,396.23511299222713,58.760145668315509,61.088433384710576,62.300773765438997,62.504055891959894,61.396088652387938,59.422777867522093 +1985,3,20,10,0,748,116,9.5,559.11087168324718,48.515776058065825,53.672906432568375,124.39051029920941,0.0,147.95965986285842,626.03828343398391,1.0,147.95965986285842,348.87642021005678,1.5,15.6,5.2000000000000002,605.94197812994912,606.63557923099393,606.98281626269602,608.68119656078693,610.08752611163663,610.63771206797207,84.724164591473397,88.404198155668581,90.382474731386154,90.593993966943572,88.682371885026967,85.569416329969812 +1985,3,20,11,0,885,115,10.5,742.31298345564267,37.57598667736383,44.86034330511527,140.47860119987314,0.0,195.40021923525325,832.20579914751738,1.0,195.40021923525325,461.7548202365615,1.5,20.600000000000001,7.2000000000000002,816.99295070179596,817.64929676268969,817.95293255864169,819.69109893224766,821.1392232678046,821.69641737730922,111.71036063346661,116.66309726369539,119.3697318976029,119.56600495404484,116.85236002569214,112.6328794101322 +1985,3,20,12,0,917,115,11.5,827.50413971632611,29.691841745160126,39.01376940736309,161.250157784233,0.0,218.26988508582036,924.99335254096707,1.0,218.26988508582036,513.17009463933891,1.5,21.699999999999999,7.2000000000000002,911.65334354930042,912.49801544380205,912.90372759468028,914.28827637427867,915.45500846113612,915.89032519108605,124.73117848861777,130.1213211316911,133.104185425059,133.22839374022081,130.11737932449194,125.44997518010911 +1985,3,20,13,0,874,94,12.5,786.42140263333397,27.66346697601004,37.604270185245696,185.45120511284065,0.0,206.92352138587489,880.09208552472899,1.0,206.92352138587489,487.53087406828183,1.5,22.800000000000001,6.2000000000000002,868.582780693205,869.25590957087024,869.56436921587135,870.81835388945387,871.87679651446092,872.26985694523341,118.19124174484598,123.37187658426514,126.24595849195524,126.35489280410424,123.352072697892,118.87415771783883 +1985,3,20,14,0,913,95,13.5,782.98838115846934,32.60996044131313,41.101431555188945,208.56493340839066,0.0,206.14870302258919,876.06684446011718,1.0,206.14870302258919,485.59933620208005,1.5,23.300000000000001,7.7000000000000002,863.22935685145512,863.93219733262856,864.25873559962338,865.57786237476387,866.68893995226699,867.10396724277098,117.77211840183621,122.9227882879416,125.77443329120287,125.89448357186754,122.9278744214742,118.48019096897039 +1985,3,20,15,0,824,100,14.5,646.77262220027296,42.125685282210014,48.428128877102914,227.24164843310754,0.0,170.29480214430984,725.06249709059193,1.0,170.29480214430984,402.62935568886388,1.5,23.300000000000001,8.1999999999999993,709.18811906521148,709.77112585878854,710.04230754198966,711.66495248888759,713.01432435879826,713.53612331188674,97.379761631987463,101.70367499884877,104.05859258150683,104.24776424455086,101.90875821555557,98.236064369789347 +1985,3,20,16,0,614,132,15.5,456.46972108474705,53.804999863447556,58.09905652370818,241.60249171119307,0.0,126.09659186766191,508.27987521657684,1.0,126.09659186766191,285.83180020056648,1.5,22.199999999999999,7.7000000000000002,484.23253597922559,485.16953049680893,485.67192038022347,487.42414740251257,488.87020566070953,489.44126590182145,72.5067896233423,75.454894114635877,76.952667840460364,77.099950779687063,75.600395411271066,73.084595723613916 +1985,3,20,17,0,27,122,16.5,131.65361384719191,66.46296806394861,69.05072744237076,253.0670429958419,0.0,40.333644386745604,133.4550772374113,1.0,40.333644386745604,81.031777623973994,1.5,21.699999999999999,6.2000000000000002,122.41812722964313,123.91762700364227,124.79424798535923,124.84667975547769,124.89965655059369,124.9112974327408,23.507584142535588,23.650054589790976,23.710144739258219,23.682370258779979,23.497467283603864,23.193186594785097 +1985,3,20,18,0,32,39,17.5,44.216192983463969,79.53426456099695,80.61857971892961,262.9196281550379,0.0,13.615563106397756,44.550293447537918,1.0,13.615563106397756,27.16459480469193,1.5,20.600000000000001,5.7000000000000002,39.151513652200826,39.676644325767121,39.983867635747799,39.984541789811978,39.988672715410992,39.986877051175966,7.9434003110240079,7.9770663414264273,7.9889774807412799,7.9745188388843387,7.9128533619622701,7.81824925094707 +1985,3,20,19,0,13,6,18.5,6.460118010568177,87.79989657301064,87.97166712573278,268.8332608438565,0.0,2.0156226230132086,6.4534882242152145,1.0,2.0156226230132086,0.045576698449289688,1.5,17.800000000000001,3.6000000000000001,5.578347312042979,5.6618322934324432,5.710741973815483,5.7292937399477761,5.7448638381573183,5.7507914964901348,1.1846622051737348,1.1871066685189815,1.184751955731538,1.1838373368620059,1.1797933860656564,1.16859312895555 +1985,3,21,7,0,11,20,6.5,20.873827319599155,84.99833170094784,85.4436886041999,92.96468368874177,0.0,6.5158447474289822,20.729903816049834,1.0,6.5158447474289822,12.815078502560061,1.5,5.5999999999999996,4.0999999999999996,18.481535145173186,18.755516055221118,18.916071729856547,18.914156997122287,18.914368801942103,18.912749782636986,3.8134357695932746,3.8138712855007824,3.8088131762545796,3.7990393756029648,3.7755264508600481,3.7400195194356662 +1985,3,21,8,0,390,80,7.5,179.33263873156301,73.53866066520858,75.24424541007012,101.17308354670418,0.0,50.831453203449549,195.42786232870114,1.0,50.831453203449549,112.4646099041902,1.5,7.2000000000000002,6.2000000000000002,161.65303081453212,162.42180129927809,162.85759300679231,163.62029589325203,164.24961863019661,164.49854091069122,29.539900297218036,30.468338325668213,30.861895151623234,30.842726859916255,30.306562012607277,29.4573355062366 +1985,3,21,9,0,308,189,8.5,324.74003335543392,60.57051651874157,63.850528831163835,111.58090943180392,0.0,93.512894225485013,348.83054601966245,1.0,93.512894225485013,202.32244797725218,1.5,7.7999999999999998,6.7000000000000002,323.43086720238216,325.27734229443558,326.33702686253883,327.26439388865975,328.03737668001185,328.3354744741531,54.223809689472255,55.639263560205464,56.295735366878723,56.282029900833095,55.416805516239108,54.038066388506643 +1985,3,21,10,0,322,220,9.5,412.3183051886719,48.21419129611566,53.325959556225946,124.13845010256968,0.0,115.00283199717907,446.26305318866139,1.0,115.00283199717907,256.89375903791614,1.5,9.4000000000000004,6.2000000000000002,426.13601605111398,428.14429647612553,429.29079822354737,430.45977670709675,431.43296956071867,431.80925977826405,66.521650370662073,68.453549437205567,69.38948471842032,69.408444752020827,68.296511820904968,66.47895650409427 +1985,3,21,11,0,161,310,10.5,424.86871683007968,37.22870125051633,44.48202618493711,140.28593712040794,0.0,122.0282162353998,450.6148087155608,1.0,122.0282162353998,263.83797310259718,1.5,10.6,5.7000000000000002,429.86303681485845,432.82817659959335,434.54251040025224,435.46978539252501,436.25013324026276,436.54398363610017,70.789559687965294,72.286833864186505,72.996001600276855,72.985293811100192,72.029570948476277,70.450129725951754 +1985,3,21,12,0,105,392,11.5,474.0448548685531,29.29686248422385,38.61293833333983,161.20431683027903,0.0,138.62723708247205,495.34303427198813,1.0,138.62723708247205,292.85724146941021,1.5,11.1,4.5999999999999996,471.27194189768011,475.20920967012512,477.49616341749515,478.01690869250422,478.47294315086754,478.62770808148082,80.504114025619003,81.785987697478021,82.397945281950498,82.310851164468261,81.311562413030359,79.755083684756215 +1985,3,21,13,0,29,204,12.5,227.09439346684678,27.279502076965844,37.216251572318335,185.62330029739186,0.0,68.377333074247687,232.41729425343578,1.0,68.377333074247687,140.13393173928733,1.5,11.699999999999999,4.0999999999999996,218.52534036900977,220.91137043722142,222.30435090614162,222.5145899730208,222.70243969362673,222.7629708005374,39.837279886663083,40.191304378616088,40.342046988074557,40.302957085817994,39.954328713956563,39.372532512755093 +1985,3,21,14,0,2,308,13.5,309.5147917372928,32.3116044605797,40.76484184926252,208.89994533590382,0.0,95.201062085341306,310.57295726875049,1.0,95.201062085341306,189.61565184680671,1.5,10.6,4.5999999999999996,290.3490972148341,294.11117486076961,296.31319620209968,296.13136508011326,296.00931361643552,295.93409339302963,55.52050145881234,55.680935881667864,55.740967827403551,55.618024979315756,55.186510013188354,54.560404329457555 +1985,3,21,15,0,2,219,14.5,220.33433208971149,41.90958650334335,48.15128621403763,227.6317432675348,0.0,68.258929988284649,219.71627255993519,1.0,68.258929988284649,134.78643939398847,1.5,9.4000000000000004,5.2000000000000002,204.77586441060046,207.57802002241695,209.21937646243623,209.02538494405533,208.88651651179472,208.81118532937904,39.829602318987682,39.872016979047366,39.879397424162924,39.783272284502388,39.496969424056729,39.0918787662971 +1985,3,21,16,0,1,209,15.5,209.53185718666083,53.64162475067995,57.86897646301355,241.99093692054524,0.0,64.960850947635649,209.26091040943129,1.0,64.960850947635649,128.13566777306735,1.5,8.9000000000000004,4.0999999999999996,194.81630475078225,197.44099964540163,198.9779498358119,198.77697079629311,198.63151208716198,198.55433898997984,37.897126939459916,37.958761809477586,37.976625698618257,37.877911861532091,37.584156404148743,37.182068937492168 +1985,3,21,17,0,52,158,16.5,176.76137964027819,66.32971477945301,68.85092545015631,253.4404057727938,0.0,53.579121112143824,180.7524672664068,1.0,53.579121112143824,108.86572161168775,1.5,8.3000000000000007,4.5999999999999996,165.46733080531664,167.30274635495456,168.37382598115076,168.46272148512085,168.54850738357416,168.57046588389375,31.240168798472585,31.517349882837454,31.625183861878451,31.556996756655423,31.236423356467824,30.767489297633805 +1985,3,21,18,0,43,68,17.5,75.144672601309281,79.41675494537661,80.43565239531051,263.28149050400367,0.0,22.961832467109993,76.140993258563753,1.0,22.961832467109993,46.2161201996567,1.5,7.7999999999999998,3.6000000000000001,65.780363176737922,66.617784503361705,67.107135902484046,67.124052070357791,67.143802526801082,67.146079650301388,13.426367537988114,13.505712585498852,13.52068041353537,13.474446524349201,13.341545064812742,13.162051566377377 +1985,3,21,19,0,0,8,18.5,8.0,87.79274006224692,87.88881458105244,269.2619423771663,0.0,2.5160323203193435,7.9392310087143931,1.0,2.5160323203193435,0.060768931265719583,1.3949109918576688,6.7000000000000002,2.6000000000000001,7.301289542098079,7.4126005184117139,7.4778889408381195,7.5026823428868301,7.5234409864369027,7.531387838440943,1.4759905919321665,1.4768652983736497,1.474413598759218,1.4764783691568852,1.4753524740161905,1.4638075375114887 +1985,3,22,7,0,2,16,6.5,16.163945047547632,84.92145442261472,85.29804449748895,92.58126574123149,0.0,5.0811219172163646,15.900418612826522,1.0,5.0811219172163646,9.8358466018565114,1.5,1.7,5.2000000000000002,14.674641206804958,14.897264095182621,15.027819436799671,14.995750000617543,14.971163418211603,14.959631027570721,2.9680172410603873,2.9594891438321302,2.9542159708098681,2.9435502253181265,2.9231322895164054,2.8990734246972449 +1985,3,22,8,0,1,65,7.5,65.259840962107532,73.28492935284211,74.93937438857199,100.90377939174965,0.0,20.464593686361706,64.37323345543993,1.0,20.464593686361706,39.788360156892871,1.5,1.7,4.5999999999999996,59.539275941137191,60.428729035669377,60.950266093749931,60.847797755123615,60.77036530812903,60.732884476813325,11.95224815019054,11.928164497662893,11.912035238900527,11.87520913765529,11.796062967049409,11.69528653524894 +1985,3,22,9,0,9,97,8.5,101.0116512778396,60.29969832185341,63.52936855462915,111.31225992497656,0.0,31.518856471569265,100.16028034281057,1.0,31.518856471569265,61.653833071852119,1.5,2.2000000000000002,6.2000000000000002,92.964651616956274,94.292705949412252,95.070985824260774,94.934621702470977,94.832671190354645,94.78216216380757,18.400045338732816,18.391127039164317,18.380185894226212,18.325842385352708,18.193299537187695,18.020679022102261 +1985,3,22,10,0,9,234,9.5,239.41890665428099,47.91355953509941,52.97949935799637,123.88477223899993,0.0,73.994253386765038,239.81878998771552,1.0,73.994253386765038,146.49212840680028,1.5,2.7999999999999998,6.7000000000000002,223.85588334961463,226.78291588676478,228.49619885293788,228.29205399625005,228.14636458406932,228.06679478216682,43.174149756969179,43.281468924984665,43.312900795494969,43.191369789090373,42.831155264221692,42.34659415747867 +1985,3,22,11,0,1,340,10.5,340.71807657422602,36.8823193178533,44.10409367929334,140.09142491297467,0.0,104.87911154074479,342.85440719185704,1.0,104.87911154074479,208.79610396607248,1.5,3.2999999999999998,5.7000000000000002,320.95726075896505,324.99176350569621,327.35199262407161,327.17069614563707,327.05149800508809,326.97504919582832,61.152687985669239,61.393676846654941,61.488821208593428,61.345527591461959,60.827945268972798,60.094707237516218 +1985,3,22,12,0,7,313,11.5,318.50006666687915,28.902200827640957,38.212328564068784,161.15845685517493,0.0,98.21781748926449,319.97973725393422,1.0,98.21781748926449,195.16234620026316,1.5,3.8999999999999999,5.7000000000000002,299.39610523714373,303.2226401170729,305.46177167981853,305.28780505181504,305.17285870421154,305.0998440550336,57.28131319263268,57.47730963634055,57.550652904231129,57.417680819801383,56.949482009190646,56.282827613307937 +1985,3,22,13,0,1,206,12.5,206.80042969956668,26.896392432492533,36.828844746455026,185.7991390663231,0.0,64.427476812090461,205.71102267129814,1.0,64.427476812090461,126.55639600920654,1.5,4.4000000000000004,6.7000000000000002,191.47703205375444,194.16467931331758,195.73943583495785,195.57670791980868,195.46220181343583,195.39792419534217,37.615573190127307,37.630556668412645,37.62070188189125,37.532354218930521,37.279044989020925,36.915322855682618 +1985,3,22,14,0,2,202,13.5,203.52240452928064,32.015762635479085,40.42969817647461,209.23993461287523,0.0,63.379664333698223,202.49219313248301,1.0,63.379664333698223,124.51969024252132,1.5,4.4000000000000004,6.2000000000000002,188.5382926695639,191.17510325222298,192.71999631912195,192.54873468481796,192.42702776539986,192.36004373871089,36.999950866839662,37.017510920257578,37.010139924755038,36.921056136244211,36.666975443095438,36.306205052241381 +1985,3,22,15,0,2,204,14.5,205.3414673421681,41.69625410138632,47.876284831909395,228.0253980230255,0.0,63.721458223242543,204.44913860405404,1.0,63.721458223242543,125.58946129389886,1.5,5.0,6.7000000000000002,190.42905415736973,193.06780142372105,194.61368860229175,194.42492374042612,194.28912203603036,194.21621142887903,37.197992584678829,37.221101580865003,37.215447304209043,37.120008541093313,36.854290307116635,36.485511884839887 +1985,3,22,16,0,1,153,15.5,153.53522821053153,53.480505943994984,57.64061058820194,242.3813988831958,0.0,47.907895453846848,152.32953981932656,1.0,47.907895453846848,93.798166311558361,1.5,5.5999999999999996,4.5999999999999996,141.55782301228425,143.57643544778182,144.75940321181901,144.58244800428477,144.45203212632526,144.38543896626229,27.972741189016094,27.963196766052619,27.946572133713392,27.869092061835381,27.673937131258509,27.41158386642979 +1985,3,22,17,0,0,87,16.5,87.0,66.1980694999375,68.6524619003385,253.8147723591705,0.0,27.30293445756692,85.834565358260193,1.0,27.30293445756692,53.068432326182524,1.5,5.5999999999999996,4.5999999999999996,79.553104895355474,80.740200813760367,81.436268153989559,81.30863562921212,81.212677654326072,81.165720201957271,15.947105137861811,15.916022512508533,15.89463972279948,15.847498895699793,15.7442202872575,15.609979783638373 +1985,3,22,18,0,0,62,17.5,62.0,79.30017007846678,80.25355742849337,263.6437110379247,0.0,19.375270345157304,61.41796937736683,1.0,19.375270345157304,37.819594227831338,1.5,5.5999999999999996,5.2000000000000002,55.91707865032469,56.730477483081806,57.207123776794781,57.115226917494347,57.046056146683277,57.012296395986482,11.325130822884493,11.315646315265315,11.300706639404787,11.256722986419536,11.168250800583035,11.062092435892886 +1985,3,22,19,0,0,8,18.5,8.0,87.78556783879894,87.80597661731987,269.69042872413866,0.0,2.5160323203193435,7.9392310087143931,1.0,2.5160323203193435,0.060768931265719583,1.1503248546041935,5.5999999999999996,5.7000000000000002,7.301289542098079,7.4126005184117139,7.4778889408381195,7.5026823428868301,7.5234409864369027,7.531387838440943,1.4759905919321665,1.4768652983736497,1.474413598759218,1.4764783691568852,1.4753524740161905,1.4638075375114887 +1985,3,23,7,0,0,17,6.5,17.0,84.8444926278164,85.1523625743711,92.19821221564182,0.0,5.3465686806786055,16.70641571551247,1.0,5.3465686806786055,10.344557707798037,1.5,5.5999999999999996,4.0999999999999996,15.515240276958423,15.751776101624896,15.890513999281007,15.856863823064268,15.831068387443571,15.818964976322805,3.1219006502993247,3.1123320683630422,3.1071043126356352,3.0969086496571938,3.0765563620065177,3.0519526593800621 +1985,3,23,8,0,0,59,7.5,59.0,73.03154710982831,74.63475957247297,100.63425536025125,0.0,18.544865400584875,58.077738969059475,1.0,18.544865400584875,35.962136955092475,1.5,5.5999999999999996,5.2000000000000002,53.84235783671415,54.658956074429746,55.137884979207151,55.042282279651879,54.969903388291513,54.935013189707462,10.832201592428257,10.80381481569032,10.786309598997812,10.753673214575997,10.685712276925187,10.598834896328906 +1985,3,23,9,0,1,113,8.5,113.45074158020184,60.02966998650528,63.20872707398991,111.04270454068099,0.0,35.505713209996955,112.18724852815916,1.0,35.505713209996955,69.249473668998007,1.5,5.5999999999999996,5.2000000000000002,104.07946103061342,105.60375464756954,106.49733743216024,106.3464987921018,106.23394831992509,106.17797197195628,20.739563137960229,20.712094787128528,20.688716527783019,20.626705228883718,20.487011657369258,20.304324363005531 +1985,3,23,10,0,1,165,9.5,165.6069089124608,47.6140300964348,52.63366875926683,123.62943471482652,0.0,51.676955115563118,164.32493172622648,1.0,51.676955115563118,101.20813830876138,1.5,5.5999999999999996,5.7000000000000002,152.79551460201054,154.97356001435935,156.24996426929101,156.07151331565672,155.94090754482227,155.87324548420213,30.181976654938644,30.171960785032976,30.151008100659539,30.065335221847615,29.855787219412182,29.572799243793252 +1985,3,23,11,0,2,227,10.5,228.44529063306868,36.5369961329677,43.726683228961335,139.89497162408787,0.0,70.975456508892847,227.74559542860794,1.0,70.975456508892847,139.78845770665635,1.5,5.0,5.7000000000000002,212.28176903233683,215.19017014234242,216.89369932165656,216.70681896171109,216.57444832643472,216.50109381947178,41.436299708375735,41.480763618512476,41.480746273565515,41.372840000659593,41.067850330756201,40.645025971818953 +1985,3,23,12,0,1,221,11.5,221.7900259922215,28.507986634835117,37.81205942650093,161.11247008867906,0.0,69.01557797874564,220.84277167495694,1.0,69.01557797874564,135.745797218311,1.5,5.5999999999999996,6.2000000000000002,205.68571491710938,208.54281489728308,210.21661565353796,210.0468882182584,209.92792344663872,209.86061236027098,40.300471159183267,40.328122149738192,40.319424003057549,40.218583206110701,39.935640853931119,39.536579860661426 +1985,3,23,13,0,1,228,12.5,228.80445700345285,26.51425111351032,36.442152296777394,185.97866506416435,0.0,71.167292140812023,227.93898474687455,1.0,71.167292140812023,140.0621638231097,1.5,5.5999999999999996,5.7000000000000002,212.3354657784451,215.27331497956087,216.99433085041738,216.8270871058443,216.71069759939508,216.64390138717616,41.556419310337439,41.590890817422853,41.584415752606283,41.481153020275713,41.187811674484387,40.772848504005829 +1985,3,23,14,0,0,235,13.5,235.0,31.722530518961246,40.096084755910816,209.5848122374665,0.0,73.062947869111241,234.17314346021809,1.0,73.062947869111241,143.8347466260951,1.5,6.0999999999999996,5.2000000000000002,218.19297327350645,221.20063817227222,222.96246023378137,222.78327613146394,222.65771357069187,222.58662722842632,42.660231511039903,42.699625712769148,42.695502633170456,42.587625658901629,42.281675714201334,41.852139873824406 +1985,3,23,15,0,1,188,14.5,188.67426144554423,41.485723280837426,47.60317655864002,228.42247110050388,0.0,58.68650218880525,187.47919374454574,1.0,58.68650218880525,115.36851464038463,1.5,6.0999999999999996,5.7000000000000002,174.46608210992835,176.92551672293177,178.36667070238934,178.18490197919601,178.05346838908753,177.98364720434665,34.273294177324182,34.273956290792761,34.255826005088394,34.163417295014149,33.92482362505784,33.597105940338118 +1985,3,23,16,0,0,268,15.5,268.0,53.321639674477304,57.41398168545504,242.77372772032595,0.0,82.569501887478637,269.10945959474367,1.0,82.569501887478637,164.06036418909267,1.5,6.7000000000000002,5.7000000000000002,250.99026968961064,254.18677522175037,256.05698059055993,255.85399783579427,255.71145947558466,255.63101583848655,48.19315078996668,48.353271670205416,48.397260938298963,48.242994640235054,47.81157622920864,47.24072898657549 +1985,3,23,17,0,1,153,16.5,153.36722631381875,66.06801016307568,68.4553417577884,254.19000232110446,0.0,47.562949108282488,152.90144053020231,1.0,47.562949108282488,93.714110058217884,1.5,6.7000000000000002,5.7000000000000002,141.28566085092928,143.21140110500082,144.3390953684854,144.16561750790498,144.03788237500049,143.97252772209845,27.78513258767887,27.815771570471998,27.806688323947334,27.707526195293955,27.473558078122561,27.180805461372245 +1985,3,23,18,0,0,61,17.5,61.0,79.18448392817847,80.07229460344014,264.0061584736953,0.0,19.104524813181705,60.364437476491119,1.0,19.104524813181705,37.206061630387303,1.5,6.7000000000000002,4.5999999999999996,55.06630349132142,55.87066785483151,56.342045984134174,56.250508884885306,56.181577355519231,56.147978038159351,11.174393023653778,11.159480049538386,11.139991717319777,11.093169504670442,11.006214129848175,10.903614435799296 +1985,3,23,19,0,0,10,18.5,10.0,87.77837359810087,87.72317304538774,270.11859690897336,0.0,3.1450404003991794,9.9240387608929908,1.0,3.1450404003991794,0.075961164082149479,1.5,6.7000000000000002,5.2000000000000002,9.1266119276225961,9.2657506480146434,9.3473611760476505,9.3783529286085354,9.4043012330461266,9.4142347980511776,1.8449882399152071,1.8460816229670611,1.8430169984490223,1.8455979614461058,1.8441905925202382,1.8297594218893614 +1985,3,24,7,0,0,27,6.5,27.0,84.76751704357818,85.00672986677033,91.8155891105712,0.0,8.488529560977998,26.587040032106966,1.0,8.488529560977998,16.450331695146311,1.4104025582868587,5.5999999999999996,2.6000000000000001,24.389304511389977,24.757620571719304,24.973581986453134,24.927179914923773,24.891921776473261,24.87506235837402,4.9641228858770559,4.9481054371005557,4.9363014393933682,4.9177184278441075,4.8844336317292676,4.8451660899563498 +1985,3,24,8,0,0,98,7.5,98.0,72.77865095473202,74.33054248713067,100.3645165310763,0.0,30.597959460702612,97.200397265005734,1.0,30.597959460702612,59.815458536746483,1.5,5.5999999999999996,1.5,89.349149909794889,90.623930988974607,91.370839581626441,91.237932716367126,91.138585702737132,91.089377098507896,17.888513940712006,17.879883063492567,17.857184055314217,17.787087422627931,17.645236244524465,17.473802602701625 +1985,3,24,9,0,1,202,8.5,202.45571975787601,59.76057131021892,62.88874571631599,110.77223456223449,0.0,62.625490577425296,202.37995057428969,1.0,62.625490577425296,123.80785724660389,1.5,6.0999999999999996,1.5,187.95540402624604,190.44761237081366,191.90653836186172,191.71053056854575,191.56854080173935,191.49338369970374,36.587719247333474,36.656442011206629,36.653580072989939,36.521263040352672,36.200713005398867,35.797291171131285 +1985,3,24,10,0,1,166,9.5,166.61168431186772,47.31575179530039,52.288610429839764,123.37239647597761,0.0,51.989181578609859,165.30652297888702,1.0,51.989181578609859,101.82508268249867,1.5,6.0999999999999996,2.1000000000000001,153.71096373228121,155.90182189828684,157.18572836128948,157.00719210062053,156.8766168755007,156.80887892221432,30.370824445251646,30.359586362238421,30.335367922461302,30.245912203720376,30.032814654368835,29.748247140921304 +1985,3,24,11,0,0,362,10.5,362.0,36.192887237014155,43.34993226266636,139.6964835119778,0.0,111.27613470068997,364.54417894052642,1.0,111.27613470068997,221.90389953733276,1.5,7.2000000000000002,2.1000000000000001,341.46959208195358,345.70842892955073,348.18767196613783,348.01659344016269,347.90738394023487,347.83340251916576,64.95451590413326,65.224069452731356,65.30221488792273,65.104021607083723,64.516272979592898,63.71815560175061 +1985,3,24,12,0,1,394,11.5,394.7942847440325,28.11435000053838,37.41224996901521,161.06624558749922,0.0,121.22541733478029,398.11081578582423,1.0,121.22541733478029,242.14155890761958,1.5,7.2000000000000002,2.1000000000000001,373.20100889437271,377.78310702063322,380.46269417727802,380.32231114813408,380.24053049493835,380.17538822144257,70.76417796131885,71.084744768110752,71.179647028549738,70.967563180225156,70.322503572010191,69.438098047111751 +1985,3,24,13,0,1,235,12.5,235.80843928185948,26.13319047148357,36.05627588517636,186.1618189334053,0.0,73.309341634573428,235.00056862565219,1.0,73.309341634573428,144.36493497049102,1.5,7.2000000000000002,3.6000000000000001,218.96345673157239,221.97994079487401,223.74690868173838,223.57953379484294,223.46361425373524,223.39645257772071,42.819110761044243,42.858975123036636,42.849291194324941,42.73416435295352,42.425350871832585,41.993272175841888 +1985,3,24,14,0,1,214,13.5,214.76868462633311,31.432001041669714,39.76408405589325,209.93448484250237,0.0,66.856497903961923,213.71700347062043,1.0,66.856497903961923,131.42225865355536,1.5,7.2000000000000002,3.1000000000000001,199.01299613911314,201.78764779954449,203.41321821156151,203.23990803876882,203.11748785547482,203.0492909195859,39.050393591314908,39.070211340321947,39.054906733673597,38.949032869458634,38.672598053957834,38.28845361491031 +1985,3,24,15,0,1,191,14.5,191.67774896996181,41.278025680667014,47.3320109417015,228.82281742105496,0.0,59.726943288530485,190.48022480795299,1.0,59.726943288530485,117.21142782572616,1.5,7.2000000000000002,2.6000000000000001,177.27539614467563,179.76987831574999,181.23147895605749,181.04887996212381,180.91704901157581,180.84679499315638,34.883906249961093,34.888775251791181,34.870803968953901,34.773262007266851,34.526830988883098,34.190211360148403 +1985,3,24,16,0,0,264,15.5,264.0,53.1650194957266,57.189110538434676,243.1677719588974,0.0,81.748111968798781,264.84259379191622,1.0,81.748111968798781,161.59904573417901,1.5,7.2000000000000002,4.5999999999999996,246.97933204707948,250.14361704271897,251.99496213526072,251.79091876078792,251.64742157515428,251.56674536194021,47.75220144157759,47.898371647935427,47.921427511736297,47.747969511774315,47.30753333374917,46.744208168588045 +1985,3,24,17,0,0,142,16.5,142.0,65.93951309450378,68.25956862648188,254.56595476911198,0.0,44.140540270868392,141.22115475762445,1.0,44.140540270868392,86.740796356800772,1.5,7.2000000000000002,5.2000000000000002,130.58644348756636,132.40133292373557,133.46443145187891,133.29524490321353,133.17013728467197,133.10672539421702,25.801702403675513,25.808610030936013,25.785949147348568,25.687210260090204,25.477544475196215,25.218763721938696 +1985,3,24,18,0,0,58,17.5,58.0,79.06966954625928,79.89186281431469,264.3687016306257,0.0,18.178640477741222,57.312351860266212,1.0,18.178640477741222,35.369249751739368,1.5,6.7000000000000002,5.2000000000000002,52.458318471177861,53.230698272100966,53.683407144539004,53.594170506359283,53.526862659566163,53.494169448860333,10.634887671027521,10.614751129464842,10.593089016388674,10.548615885840695,10.468981022304252,10.375121696606643 +1985,3,24,19,0,0,11,18.5,11.0,87.77114956488319,87.64042209211016,270.54632434883166,0.0,3.4595444404390974,10.916442636982291,1.0,3.4595444404390974,0.083557280490364427,1.5,6.0999999999999996,4.5999999999999996,10.039273120384857,10.192325712816103,10.282097293652409,10.316188221469387,10.344731356350733,10.355658277856291,2.0294870639067297,2.0306897852637684,2.0273186982939246,2.0301577575907155,2.0286096517722596,2.012735364078297 +1985,3,25,7,0,5,28,6.5,28.44784111877679,84.69059720484965,84.86123218546942,91.43346242739187,0.0,8.9619196061407163,28.032325531208187,1.0,8.9619196061407163,17.335974742195464,1.3112852554397816,3.8999999999999999,2.1000000000000001,25.464440946549438,25.845749188214391,26.06926042590845,26.021346611363857,25.985002571491549,25.967560214191522,5.2469962144232918,5.2257767119834293,5.2089301238500312,5.187120522433454,5.1518013370872451,5.1120032789710761 +1985,3,25,8,0,156,105,7.5,147.92911336315521,72.52637703921,74.02686395278619,100.09456867855675,0.0,44.366009444060488,153.66342793353112,1.0,44.366009444060488,91.750055131708436,1.5,5.5999999999999996,2.6000000000000001,134.16155822412861,135.36227746292951,136.0588310781277,136.34719367024317,136.59258325943961,136.68294084507937,26.207947999695822,26.531386361407222,26.509079270298884,26.264250572068267,25.835147677232989,25.343415120724316 +1985,3,25,9,0,4,164,8.5,165.84268526012721,59.49254125441904,62.56956527814936,110.50084245650834,0.0,51.655484090350633,165.08759633681544,1.0,51.655484090350633,101.34250850777823,1.5,6.0999999999999996,5.2000000000000002,153.2943248904792,155.40209414081392,156.63657288477168,156.45171390429371,156.31591971012185,156.24612817065631,30.192779418706905,30.211720049877897,30.190053434512457,30.076460143165196,29.827618406545689,29.518113146904174 +1985,3,25,10,0,7,217,9.5,221.31497469412602,47.01887284146453,51.94446673041717,123.11361760306153,0.0,68.796647965430665,220.9967185709792,1.0,68.796647965430665,135.3789981735809,1.5,6.0999999999999996,4.5999999999999996,206.10470446589775,208.86307747232507,210.47805141393479,210.2784049498504,210.13512709047919,210.05782575186421,40.189115594709293,40.255404830630127,40.253091478452433,40.117164713289164,39.781585306127226,39.347014471731732 +1985,3,25,11,0,0,186,10.5,186.0,35.85014840268243,42.97397817029203,139.49586621943777,0.0,58.044655755976443,184.60227193130049,1.0,58.044655755976443,113.75427282887543,1.5,6.0999999999999996,3.6000000000000001,171.6879652220081,174.1355001475938,175.56984275809086,175.39883304163538,175.27598315929993,175.20986497316363,33.913221470674351,33.903572260171089,33.87617477685248,33.781294810119697,33.549899701676694,33.232832553357582 +1985,3,25,12,0,10,305,11.5,312.98498742821323,27.721421268397467,37.013018956526786,161.0196692322556,0.0,96.920681771403466,314.26327694095045,1.0,96.920681771403466,191.78161266949814,1.5,6.0999999999999996,4.5999999999999996,294.08644097574921,297.83953569160468,300.03540954200872,299.86352023657042,299.75001502838006,299.677880840917,56.59616262148414,56.787320684438839,56.828981240979893,56.652811965435802,56.155427655382852,55.487837483618407 +1985,3,25,13,0,221,356,12.5,535.53499901597013,25.75332211115023,35.67131622923783,186.34853821948252,0.0,157.80452350448289,570.42778803654778,1.0,157.80452350448289,332.4296560704455,1.5,7.7999999999999998,4.0999999999999996,548.08270122814974,551.31281131139247,553.16903616777734,554.27130527221152,555.20219777821546,555.5497207275738,92.002393318591004,94.148342588790328,94.950894441566476,94.545493747737964,92.840308359515291,90.558898995408995 +1985,3,25,14,0,0,256,13.5,256.0,31.144264405743602,39.433776763353514,210.28885459586004,0.0,79.464047977274603,255.41861677001398,1.0,79.464047977274603,156.73455360688993,1.5,7.7999999999999998,5.2000000000000002,238.16856416211334,241.40536297608986,243.30101503947077,243.12078241771832,242.99609597071088,242.92370492531705,46.425203987810455,46.483948338955045,46.474189867591271,46.337302363905572,45.983604310276924,45.502160074054586 +1985,3,25,15,0,10,223,14.5,229.81195887706085,41.073189361779804,47.06283524642303,229.22628845376877,0.0,71.158226969608052,229.65591357906428,1.0,71.158226969608052,140.61670357337024,1.5,8.3000000000000007,4.0999999999999996,214.39246886683287,217.24332419259059,218.91241482798739,218.71886396414482,218.58111709266421,218.50550854026085,41.562410203533702,41.637858016766721,41.640709046816092,41.505968304412235,41.162432079754552,40.711459653034602 +1985,3,25,16,0,348,210,15.5,399.70746114107965,53.01063634445361,56.96601596755791,243.5633786018536,0.0,116.65952163219698,429.22688294034964,1.0,116.65952163219698,248.91559280529614,1.5,9.4000000000000004,7.2000000000000002,406.8916267018476,408.85716723985456,409.97730856031296,411.06590410650045,411.97612969574971,412.32504930381742,68.365191033868925,70.129591256483963,70.63374420582565,70.130433875347848,68.648303898436168,66.794532890190141 +1985,3,25,17,0,472,134,16.5,310.31661545162416,65.81255309186609,68.06514481210938,254.94248841624915,0.0,89.821098047963787,335.08918928519108,1.0,89.821098047963787,194.08625839435277,1.5,10.0,6.7000000000000002,301.69915659055488,302.92771542049894,303.62039322112184,304.75012495642824,305.68795738507197,306.05455307714806,53.153242055250686,54.547153379964229,54.710442601794881,54.065984544555604,52.761749211908544,51.282338066891327 +1985,3,25,18,0,323,51,17.5,108.68511239161732,78.95569917601453,79.71226015515569,264.7312094733723,0.0,33.07457463263566,115.37293988812789,1.0,33.07457463263566,68.331049137373299,1.5,8.9000000000000004,4.0999999999999996,85.242503871784834,85.746552608156179,86.032457329647613,86.554779330154702,86.987461198917245,87.157905695489944,20.063841086936801,20.250685008799554,19.985265171031898,19.584796421180254,19.144372150721001,18.752106914819116 +1985,3,25,19,0,12,10,18.5,10.511350743845458,87.76388664523901,87.55774054176513,270.97348885335305,0.0,3.3485222018976022,10.392250366295706,1.0,3.3485222018976022,0.075961164082149479,1.5,7.2000000000000002,2.6000000000000001,9.224165090680124,9.3633014496546689,9.4448245108831674,9.4757552765022339,9.5016951534564864,9.5115825350421765,1.9566004173772202,1.9609629185239039,1.9616941131043306,1.9671860157879431,1.9659254501926813,1.9483290981004657 +1985,3,26,7,0,265,23,6.5,47.404730463315502,84.61380144554101,84.71595411475367,91.05189823220626,0.0,15.363854852660671,49.054448101806621,1.0,15.363854852660671,30.220658305068227,1.2177707602507943,-1.7,0.0,28.056023142954587,28.274231705171523,28.398127758579506,28.772694075994146,29.0806980332951,29.203884737555484,9.3604282242178733,9.1425653775018159,8.8967455472544152,8.8215791307243752,8.846996084894732,8.8613452861961761 +1985,3,26,8,0,546,56,7.5,209.02573844488518,72.27486056093971,73.72386401779886,99.82441839583124,0.0,61.294568112693185,227.36112543816779,1.0,61.294568112693185,131.1984813398646,1.5,3.2999999999999998,0.0,188.4470167847816,188.89640794447723,189.13702742197916,190.046784404574,190.80039133242846,191.09724331436007,36.916284520578017,37.769598199130989,37.592374855254945,36.794612204802078,35.699418453175191,34.634702315027056 +1985,3,26,9,0,803,71,8.5,444.87201378666771,59.225717844174675,62.251325953925814,110.22852202796442,0.0,125.59899005901524,490.61094627272394,1.0,125.59899005901524,277.46862943318087,1.5,7.2000000000000002,2.1000000000000001,460.55086365339326,461.0529043786849,461.29584178113691,462.59644387357417,463.6805195759498,464.09977291552673,74.191056759530554,76.791385286289113,77.304227174914757,76.157599960789042,73.745935185551232,71.15833353905667 +1985,3,26,10,0,907,74,9.5,637.36392060245771,46.72354073700653,51.60137965356719,122.8530595123125,0.0,179.6299310293644,705.06304554267626,1.0,179.6299310293644,395.85635285257734,1.5,8.9000000000000004,2.6000000000000001,686.80567767086131,687.39988657075025,687.67310890818999,688.94331071829652,690.0139121538557,690.41555228669813,105.15234438118242,109.13363794215455,110.38010732927366,109.08842068743172,105.64308308980659,101.78483733486682 +1985,3,26,11,0,941,84,10.5,776.6789394130135,35.508935573981915,42.59895827516611,139.29302495798663,0.0,211.42799162624746,860.76320768427036,1.0,211.42799162624746,481.54666894640843,1.5,10.6,2.6000000000000001,847.63980556496483,848.26697588469631,848.54531821390026,849.79725656188634,850.85952604887723,851.25057921944347,123.4759472252432,128.28486581898741,129.90716443470586,128.4869072451454,124.3518148564617,119.76368129673072 +1985,3,26,12,0,972,89,11.5,869.19205063014181,27.329331046369887,36.6144848664381,160.9726237283657,0.0,236.3840590366373,964.09025833544683,1.0,236.3840590366373,538.31414099789617,1.5,12.199999999999999,3.6000000000000001,952.56176995622604,953.19286218687739,953.46211733150983,954.65264924505209,955.66940265262485,956.03644658689882,137.47547352392615,142.9987252873396,145.16091880014841,143.77398015516962,139.28002935971904,134.10396060602557 +1985,3,26,13,0,968,90,12.5,880.14444181641318,25.374756862797962,35.287373085863756,186.53875727142255,0.0,239.33585280057144,976.31499276653949,1.0,239.33585280057144,545.00736382026162,1.5,13.9,4.5999999999999996,965.0513237838162,965.68206080612617,965.94976299295865,967.12325931619137,968.12686808402202,968.48778549660767,139.18594015647972,144.77862632758237,146.96981854146077,145.55900836273102,140.99882482144062,135.75466666240615 +1985,3,26,14,0,961,87,13.5,832.72514636363189,30.8594079779652,39.10524175429005,210.6478191012201,0.0,234.32232615618929,923.20420678953735,1.0,234.32232615618929,515.95096853242967,1.5,15.6,2.1000000000000001,911.14329200050918,911.77377034445806,912.04375879931968,913.26058167803501,914.29925847802781,914.67549286959638,136.55492593318257,141.90288203714513,143.88978641644405,142.39061349642458,137.8861487816913,132.77633849222397 +1985,3,26,15,0,939,80,14.5,722.84116813507183,40.871238800290456,46.79569445719888,229.6327322479056,0.0,196.88426044874436,800.2274993274707,1.0,196.88426044874436,448.47506433768513,1.5,16.699999999999999,3.1000000000000001,785.04623774800393,785.66465557223171,785.94437479495741,787.21960553931115,788.29742982771654,788.69831209418021,115.00238011600932,119.47588885761724,120.97940962024565,119.68105732821998,115.86841089204138,111.61023094937302 +1985,3,26,16,0,887,68,15.5,554.40451697813978,52.858478605244294,56.7447148720752,243.9603931996988,0.0,156.37878678425304,611.9131763255466,1.0,156.37878678425304,344.73404815311653,1.5,17.199999999999999,4.5999999999999996,588.53475650294229,589.10311988582691,589.37160261241297,590.61993028111658,591.66832369133397,592.0657911757595,91.940997717169409,95.277243324109492,96.155502590163763,94.847156049521345,91.804896662125245,88.514522198470161 +1985,3,26,17,0,784,51,16.5,346.31386745480171,65.68710351074945,67.87207138630309,255.31946163597055,0.0,101.04432384834483,379.63481968756656,1.0,101.04432384834483,216.14840950558985,1.5,17.800000000000001,4.0999999999999996,341.4411470846714,341.90376375853248,342.13447763324433,343.20103696740131,344.09105410472245,344.43511053346856,60.256638851096476,62.067799455221589,62.140400673499656,60.958708207585929,58.952458558255614,56.976034299605921 +1985,3,26,18,0,550,33,17.5,132.91348077563566,78.84254435842087,79.53348400899522,265.09355115437353,0.0,40.096620953066953,142.37995833784464,1.0,40.096620953066953,83.664645880768688,1.5,15.6,3.6000000000000001,99.693460262433661,99.990473530054871,100.14970301543292,100.81183451903081,101.36047163010932,101.57675859883688,24.698451226038902,24.805901249662512,24.267952881076809,23.602788297834717,22.962116756865687,22.496543442751374 +1985,3,26,19,0,72,10,18.5,13.171800999940096,87.7565745704124,87.47514386927439,271.39996862409146,0.0,4.1885469883414919,11.621578427210146,1.0,4.1885469883414919,8.4546715400699846,1.5,9.4000000000000004,3.1000000000000001,7.488336749480605,7.5896141989351573,7.6481800725774471,7.7743116035232589,7.8774435465853196,7.9191981360482906,2.4307776592496277,2.4872774456916438,2.5148958808480169,2.540843856087589,2.5404740881095433,2.4904569187939885 +1985,3,27,7,0,203,26,6.5,45.206350741695879,84.5371968871703,84.57097900454671,90.67096271693087,0.0,14.850777717658783,46.081116480935634,1.0,14.850777717658783,28.603990351763571,1.1294191052217917,5.5999999999999996,3.6000000000000001,28.69103568958737,28.956045163788048,29.108171515979798,29.391486814311431,29.625381612197646,29.718020867283496,8.9051240226949702,8.6992251237727487,8.5221030622487426,8.5093593815724962,8.5739055886451059,8.5953324596460359 +1985,3,27,8,0,601,54,7.5,225.48074459082761,72.02423567610111,73.42168189130207,99.5540732177837,0.0,66.011377076469017,244.54196067918804,1.0,66.011377076469017,141.281586354967,1.5,11.1,5.2000000000000002,203.33883565691852,203.76384756444853,203.98780524126062,204.88004164251157,205.62142621712474,205.91151886808899,40.01829445223138,40.783334409423553,40.414133136061835,39.407776774552239,38.200794134335759,37.097056315203666 +1985,3,27,9,0,769,78,8.5,439.803547663801,58.96023806684041,61.93416726350362,109.95526857392812,0.0,124.34373256370306,483.52266177823265,1.0,124.34373256370306,274.5692649462963,1.5,14.4,5.7000000000000002,454.05543838907926,454.62159809767348,454.90347978845057,456.28387083814118,457.43299120912957,457.87916636592377,73.725140117493311,76.180324979494031,76.509977276071012,75.272919227739209,72.885756356734603,70.396399228339391 +1985,3,27,10,0,850,97,9.5,628.92513764534795,46.42990217082941,51.25949076303786,122.59068516233528,0.0,177.27937203405321,695.25682221931106,1.0,177.27937203405321,391.57449582351137,1.5,18.300000000000001,4.0999999999999996,676.52573383487083,677.12314582275303,677.39951515971768,678.99146046821716,680.32307601773198,680.83303816976877,104.26096418798625,108.09104222791585,109.09433574243451,107.63073408932324,104.19712833780392,100.44812133111891 +1985,3,27,11,0,805,117,10.5,713.1116104818849,35.169404801441445,42.22500980524773,139.08786470390783,0.0,200.90118496372696,790.17694538631019,1.0,200.90118496372696,443.80370390902135,1.5,20.600000000000001,4.5999999999999996,776.29760089106242,776.93186772717968,777.21935783687093,778.95779420990618,780.41248960446785,780.96841944639698,117.65727044117163,122.16850897553348,123.56850711018635,122.17196314973545,118.37131117157203,114.04393959937291 +1985,3,27,12,0,904,120,11.5,849.33585898119395,26.938210223876244,36.216765885378216,160.92498861139646,0.0,231.77777916373788,938.97540671677939,1.0,231.77777916373788,526.49585913951626,1.5,22.199999999999999,4.5999999999999996,926.02870323402635,926.89155831448238,927.30132172474214,928.64190560280053,929.78080392464562,930.19875039526119,135.36336482850621,140.53357468977467,142.27527653611634,140.74213798653585,136.28011992058546,131.3230290246247 +1985,3,27,13,0,905,121,12.5,863.19636923849021,24.99760475400197,34.90454523559561,186.73240713814374,0.0,235.50532232839538,954.42337474645808,1.0,235.50532232839538,534.95564964429718,1.5,23.899999999999999,5.2000000000000002,941.735924697634,942.59584617301437,943.00216714203202,944.31733179336663,945.43648973928202,945.84538764862509,137.53160097893323,142.78807622501995,144.56130139952958,142.99277134309992,138.44177049595103,133.39795100324832 +1985,3,27,14,0,678,201,13.5,729.55010593768895,30.577516182519297,38.77855606537343,211.01127129949637,0.0,200.12147171232434,806.5546042024539,1.0,200.12147171232434,455.41685640586519,1.5,24.399999999999999,6.7000000000000002,790.06385664284369,791.12502089565464,791.66750157311367,793.95162974397374,795.84755436220223,796.58663858585555,117.08065014098673,121.51828233659188,122.95608996373171,121.87530532964377,118.39719495134246,114.24912147602581 +1985,3,27,15,0,750,139,14.5,654.97501005610013,40.67219488677635,46.53063128166435,230.04199346945316,0.0,178.99217838961141,724.39471886774106,1.0,178.99217838961141,408.51582117394474,1.5,25.0,7.7000000000000002,707.74751714285321,708.49172122783386,708.85480441948982,710.77448658090725,712.37126632561626,712.99093955277181,105.09308246575632,109.02738970054793,110.14765137465241,108.86539525067221,105.56908670824694,101.78385070796703 +1985,3,27,16,0,485,141,15.5,408.51137507459975,52.708532179381784,56.52522227490737,244.35865992335494,0.0,116.92387196824697,445.76963631761839,1.0,116.92387196824697,255.39299177821812,1.5,25.0,8.1999999999999993,425.17530022657439,426.2682428911728,426.8677051510362,428.29775288973667,429.48489252578293,429.94864282942933,69.041857853302645,71.176209369734536,71.575056893621408,70.700651296964011,68.794319465731775,66.63455689267245 +1985,3,27,17,0,87,142,16.5,175.04029212979282,65.56313635234594,67.68034825237457,255.69673251964164,0.0,53.214741582945784,178.750798956952,1.0,53.214741582945784,107.76601031514954,1.5,22.800000000000001,7.2000000000000002,163.88605515420505,165.59203150219901,166.58608814395461,166.65547141395075,166.72606715171986,166.74153006868369,31.352818283830434,31.569091915056632,31.512616435610759,31.245074478627878,30.803011228091787,30.319864461493985 +1985,3,27,18,0,76,62,17.5,76.038277594623779,78.73017603672123,79.35553113554528,265.45559605579797,0.0,23.567606228027913,77.351835686389506,1.0,23.567606228027913,47.234457766871984,1.479571975135542,21.699999999999999,6.7000000000000002,64.977603327700166,65.719973468189352,66.152352011405711,66.330592265870251,66.481684348436261,66.537963366811923,14.069996642175424,14.046926510477386,13.90132086515252,13.758931383176112,13.608488921335503,13.461317383462333 +1985,3,27,19,0,3,15,18.5,15.136473602289851,87.74920203278701,87.39264636570952,271.82564225398755,0.0,4.7693437707337383,14.827942419315491,1.0,4.7693437707337383,9.2184350772174533,1.5,21.100000000000001,6.2000000000000002,13.655818908652652,13.86352734810051,13.985323722384191,13.958019726847285,13.937204317622417,13.927319964827793,2.785345799135889,2.7786430076201363,2.7744503352821837,2.7652199928951817,2.7463794180307528,2.7232542645735194 +1985,3,28,7,0,160,28,6.5,43.539922131468771,84.46084942522401,84.42638896011816,90.29072225936864,0.0,14.248902489326108,44.119021877191763,1.0,14.248902489326108,27.618038156248808,1.0458323264871536,13.300000000000001,4.5999999999999996,28.691368469334762,28.977810739075636,29.143048234906423,29.441311803389652,29.687084834140776,29.784866733362875,8.4418689379314209,8.2786616273305835,8.1618541248986993,8.2065684212272831,8.3086722216731683,8.3289309141407131 +1985,3,28,8,0,399,74,7.5,189.85386791698727,71.7746354114455,73.12045587525552,99.28354174335878,0.0,56.165486601892724,203.07322303458017,1.0,56.165486601892724,119.01129289358235,1.5,17.800000000000001,5.2000000000000002,171.58176001500232,172.26292986819848,172.64416897193726,173.42578494906647,174.07510965376872,174.32926447737498,34.065234150985027,34.493174010877162,34.08866312875567,33.331567659571455,32.458798721313322,31.700109989214134 +1985,3,28,9,0,579,116,8.5,391.22437005352674,58.696237769576356,61.618227978706756,109.68107904088524,0.0,114.75111524353787,427.33976609220281,1.0,114.75111524353787,245.2432081853336,1.5,20.0,5.2000000000000002,400.08929369680021,400.94565541760807,401.40516092687022,402.99810978613715,404.31801866552325,404.83682708865803,68.414989151369156,70.376451213905071,70.444853266822989,69.27277079604454,67.236952777895283,65.117681186864758 +1985,3,28,10,0,681,141,9.5,570.31549126542177,46.13810290987088,50.91894113127807,122.32645926654051,0.0,161.54663729209935,627.96559224973907,1.0,161.54663729209935,356.34759330152781,1.5,22.199999999999999,6.2000000000000002,608.64478166650406,609.49963913001852,609.93690156756168,611.83765516743335,613.41667275641169,614.03238954559447,95.443064131490061,98.712361903263641,99.345749758484132,97.961588251033533,95.005088057306722,91.76029389475525 +1985,3,28,11,0,730,171,10.5,714.75336588896482,34.83171217229897,41.85226986302101,138.88029040676216,0.0,202.01546565025075,789.63385694123758,1.0,202.01546565025075,445.92744788553347,1.5,24.399999999999999,5.7000000000000002,773.44831611651773,774.34305334414842,774.78567190062233,776.92595460698772,778.70767328513989,779.39826704252914,118.85522662182179,123.15100744509169,124.25962939495855,122.69365465471684,118.94691329798825,114.76175377301382 +1985,3,28,12,0,536,276,11.5,710.62084533524262,26.54818999065374,35.819979906667974,160.87664025756095,0.0,197.17901647089894,778.8794225817694,1.0,197.17901647089894,443.52308728071063,1.5,25.600000000000001,5.2000000000000002,759.89309999909119,761.62418713163402,762.56798290723759,764.79002201498679,766.63671964496837,767.35513408107772,115.7812762817818,119.64035027672,120.710022310711,119.50047075017575,116.30417854104346,112.51090050364978 +1985,3,28,13,0,371,318,12.5,623.66669222697624,24.621974980725035,34.522930467637686,186.9294154604367,0.0,179.37957393641608,680.30866954124008,1.0,179.37957393641608,390.13737075053223,1.5,27.199999999999999,6.7000000000000002,660.35685395996404,662.37266803193211,663.49439296973242,665.77367477886844,667.66257299649897,668.40266844404982,105.20363074535494,108.54224509791786,109.51216748420227,108.65509411986983,106.05569075437525,102.7905181935707 +1985,3,28,14,0,740,165,13.5,744.5013392168604,30.29867039370086,38.45379486680136,211.3790993713496,0.0,203.20737573717443,823.96306087464347,1.0,203.20737573717443,464.19300892469926,1.5,28.899999999999999,8.1999999999999993,809.34462166181379,810.11285908143498,810.47932130328923,812.60159086189651,814.36807643678128,815.05242438406333,119.3017776429942,123.80192868341238,125.08756564023902,123.60664038835188,119.81779829019793,115.4887590871231 +1985,3,28,15,0,819,97,14.5,663.16654465500085,40.476074931662474,46.26768615790806,230.45391344215622,0.0,181.23241986728374,730.67280443952768,1.0,181.23241986728374,412.11408481751721,1.5,28.899999999999999,7.7000000000000002,715.43765390473379,716.1917171920245,716.55984692008064,717.96947259664068,719.15485930585226,719.60291183003005,106.7473077520855,110.5276582543208,111.42941199081402,109.78114017207967,106.2386084983857,102.4707671332833 +1985,3,28,16,0,807,73,15.5,520.67096276047312,52.56078055763408,56.30755137021712,244.75802163821805,0.0,147.0553687418064,571.93809226565122,1.0,147.0553687418064,324.12284467090814,1.5,28.899999999999999,7.2000000000000002,549.84063618982111,550.45063960282232,550.74846350171492,552.0514170518444,553.1435418526022,553.56056367537167,87.144642999403473,90.03351682712244,90.428753667855403,88.893596211047736,85.973323865834857,83.00584828149475 +1985,3,28,17,0,667,58,16.5,313.35767484310998,65.44062235271903,67.48997421248914,256.0741589336786,0.0,91.45892571208887,341.72470965936935,1.0,91.45892571208887,196.00924104876296,1.5,28.300000000000001,8.1999999999999993,307.6177364097328,308.0536240189503,308.27263847422887,309.38939161371673,310.3189881925199,310.68115968177807,55.137017850490565,56.460506392785881,56.183823988192792,54.859483631815962,53.057897366607442,51.387724298185645 +1985,3,28,18,0,430,40,17.5,120.73321090737363,78.61856465955996,79.1783977575416,265.8172138310229,0.0,36.508315610058467,127.67086059657194,1.0,36.508315610058467,76.143639981447791,1.4326433376337038,27.199999999999999,7.7000000000000002,91.443210229313365,91.791536060856288,91.983229810648268,92.639020606547987,93.181619146525065,93.396099017368627,22.589363944975691,22.398957891041128,21.772836649687338,21.214209925230218,20.787471057436679,20.543174351604915 +1985,3,28,19,0,45,10,18.5,12.111740022680168,87.74175681444848,87.31026125647563,272.25038872692846,0.0,3.8869715189366958,10.567228291814692,1.0,3.8869715189366958,7.8061596658020873,1.5,24.399999999999999,5.2000000000000002,7.2510871035640712,7.3520010728071945,7.4104601658789839,7.5379069258596534,7.6421751258037141,7.6843901500037379,2.3274851959821845,2.3550596441420097,2.3413172131487459,2.333649572514835,2.3198647283433105,2.2840188271051201 +1985,3,29,7,0,77,34,6.5,41.671336874250791,84.38482371344026,84.28226482955765,89.91124348216607,0.0,13.707500014999004,41.725860641285799,1.0,13.707500014999004,26.168109448505898,1.5,18.899999999999999,5.7000000000000002,31.429465843163417,31.818664845076338,32.045234026829434,32.241621138445893,32.404540061784118,32.468350013939514,8.0268619796641776,7.9411958104886056,7.8929721387976821,7.9469640520570426,8.0203001174336332,8.0045788539447074 +1985,3,29,8,0,338,97,7.5,196.83478492285889,71.52619157599858,72.82032329588269,99.0128337570292,0.0,59.905922429589332,208.76723242674274,1.0,59.905922429589332,123.5883504581407,1.5,22.199999999999999,6.2000000000000002,178.146854963164,179.06520330320217,179.58626463853,180.47487735889766,181.2120555608501,181.5014844868185,36.327156846584558,36.657133190972523,36.177694924510135,35.445241217139596,34.638204336216369,33.929025541445263 +1985,3,29,9,0,337,188,8.5,349.81650775103276,58.43385155577449,61.30364604882691,109.4059521815184,0.0,102.3391671393143,371.90872445241405,1.0,102.3391671393143,217.88082245451866,1.5,25.0,6.2000000000000002,347.57495524546903,349.39111649664028,350.42889883451159,351.39599180892719,352.20670924229199,352.51675904052394,60.915623890026893,62.024783633919419,61.90611833447052,61.002932088272196,59.59509243711404,58.127557818462847 +1985,3,29,10,0,409,226,9.5,485.71579550910877,45.84828768694021,50.57987127503632,122.06034851113823,0.0,140.08956698447628,526.32590380876945,1.0,140.08956698447628,303.98139995271555,1.5,26.699999999999999,7.2000000000000002,505.33049626695845,507.0544863994765,508.02017403171124,509.84916815437799,511.3660239571845,511.96033826518766,82.941205161469611,85.217196172230203,85.489434908296673,84.442467724211255,82.330224167921287,79.948203292482191 +1985,3,29,11,0,663,186,10.5,682.70425370411033,34.496013735273756,41.480875393913365,138.67020721089602,0.0,187.32544253414932,752.22565021340324,1.0,187.32544253414932,426.39226342585096,1.5,28.899999999999999,6.2000000000000002,735.62440507558836,736.63429914762457,737.1523438915292,739.36640752798212,741.20480291511024,741.92206175247168,110.44832054597003,114.33643653349964,115.23444557548511,113.71363595275923,110.31683378790392,106.5160950057444 +1985,3,29,12,0,539,272,11.5,711.22172234788377,26.15940185725239,35.42424452845013,160.82745190005406,0.0,203.02857633424804,778.8720822554917,1.0,203.02857633424804,443.89724169055904,1.5,29.399999999999999,6.2000000000000002,760.14079115081915,761.83026112811081,762.74668564111312,764.96650385595603,766.81347139410616,767.53040512776681,119.43138604447078,123.34456853116502,124.33049457107789,122.94092964204158,119.55203269400597,115.66609705394529 +1985,3,29,13,0,545,233,12.5,684.06544290395016,24.247975877679494,34.14262556558595,187.12970635863286,0.0,194.18544282951365,753.61736465992431,1.0,194.18544282951365,427.6889366406138,1.5,30.600000000000001,2.6000000000000001,737.25652905026857,738.44800617342889,739.07124661645128,741.45217592520635,743.42711487329893,744.19950805812005,114.28988184231257,118.28868054813097,119.30060505204816,117.92239131666592,114.54014168842752,110.65173162420685 +1985,3,29,14,0,720,188,13.5,754.35251802263679,30.022948828896755,38.13103143647647,211.75118664112895,0.0,206.40469924287063,832.51976821321045,1.0,206.40469924287063,470.57306172798445,1.5,31.100000000000001,3.1000000000000001,816.72340976877661,817.65947381691365,818.12484290862812,820.36419099128955,822.22758108602306,822.95071045746181,121.67577533255169,126.02503279211393,127.04069571092784,125.28900528903169,121.42229189594795,117.16286507052176 +1985,3,29,15,0,383,226,14.5,492.02098841368081,40.28289267688821,46.00689726479742,230.86833019307772,0.0,141.55459068580782,535.0762508598234,1.0,141.55459068580782,308.1948353134556,1.5,32.200000000000003,3.1000000000000001,516.49273404222174,518.09861734976312,518.99306046907373,520.93546375816857,522.54379357423318,523.17604314305754,83.593638179496239,86.063014698436803,86.510397326156379,85.557943154520316,83.42642129312803,80.924360652158782 +1985,3,29,16,0,49,206,15.5,233.33539205718358,52.415204896859215,56.0917135736451,245.1583199792977,0.0,71.233215452821895,237.81168503784437,1.0,71.233215452821895,143.82184522616407,1.5,31.100000000000001,4.0999999999999996,222.44781716094843,224.83947824796252,226.23457522278795,226.38997620257916,226.53489120384739,226.57656445752389,41.856834415033696,42.157838328217508,42.134409419403561,41.869225967424576,41.349203548006962,40.729365092876442 +1985,3,29,17,0,9,58,16.5,61.473017143590788,65.31953107351963,67.3009470361769,256.45159857627266,0.0,19.246186562984676,60.825515626853822,1.0,19.246186562984676,37.482894407824489,1.5,21.699999999999999,11.300000000000001,56.362851576158086,57.169873685225809,57.642773922861011,57.546262012367798,57.473358191621635,57.438063603290274,11.264461522852177,11.245922493195966,11.221678388721518,11.169520255180945,11.079513257022141,10.976700433967087 +1985,3,29,18,0,7,22,17.5,23.335413558193153,78.50768028269368,79.0020796458121,266.17827444565194,0.0,7.3450457435350662,23.133722348282348,1.0,7.3450457435350662,14.321451428603625,1.3873251042840349,18.899999999999999,6.2000000000000002,21.034641359399512,21.340758538504993,21.520126355204837,21.516219240355309,21.51507503511171,21.512654129724911,4.3125626408114917,4.2996271951411531,4.2829281675614448,4.2671693308026626,4.2422872375545877,4.2085941171851582 +1985,3,29,19,0,3,2,18.5,2.1450849231669111,87.73422590879056,87.22800081266318,272.6740874174405,0.0,0.69626350076701182,2.1135754875675605,1.0,0.69626350076701182,1.3399210762869593,1.3539090124908717,18.300000000000001,3.1000000000000001,1.8429336937826222,1.8706365980308772,1.8868552592798107,1.8947479070948274,1.9013299234386798,1.9038749054341113,0.41072442083908145,0.41085665112833808,0.40914224649159708,0.40859869026702045,0.40742068436491607,0.40389116907136818 +1985,3,30,7,0,49,34,6.5,39.003923546141436,84.30918314614449,84.1386861891252,89.53259331052618,0.0,12.74541878875614,38.717567877046427,1.0,12.74541878875614,24.243949292214882,1.5,18.899999999999999,5.2000000000000002,31.303097060143102,31.722003146468445,31.966521951578422,32.064525576031912,32.147399105912243,32.178359703738153,7.4221920017746266,7.3723593295147216,7.3573361295699975,7.3995818036399079,7.4376175349164768,7.4039254402514327 +1985,3,30,8,0,197,118,7.5,177.16879725334113,71.27903467242565,72.52142043446406,98.74196034919957,0.0,54.36966733968611,184.38011422215504,1.0,54.36966733968611,110.66741204903374,1.5,21.100000000000001,5.2000000000000002,160.73036089539372,161.96586895548904,162.67867331466613,163.29134105992759,163.80335364509517,164.00090506095569,32.766185775737249,32.888677306029443,32.473372895014649,31.946808945325436,31.391265531237583,30.891583909162243 +1985,3,30,9,0,416,161,8.5,362.74075489094673,58.17321268040244,60.99055852501122,109.12988871221165,0.0,104.8028149714936,390.09889324561527,1.0,104.8028149714936,227.15115731934219,1.5,23.899999999999999,6.2000000000000002,364.90036978202727,366.26040833593004,367.02491507204752,368.43930413933936,369.61328590746518,370.07329093307374,62.784918458298542,64.072148871167627,63.860181620902843,62.741579466430622,61.119179987587167,59.473942608433077 +1985,3,30,10,0,571,202,9.5,567.17773766750838,45.56060008512044,50.24242108890428,121.7923217785031,0.0,162.30069960781177,616.76532602405496,1.0,162.30069960781177,354.01251797343826,1.5,26.100000000000001,6.7000000000000002,595.57720630096446,597.08018292923771,597.90412803937124,599.68499377508999,601.16914508003299,601.74426067405921,96.447043327760838,99.132309017999802,99.318657322014772,97.753916246591388,94.920882955643904,91.990300706161491 +1985,3,30,11,0,553,236,10.5,652.6509896363857,34.16246541947398,41.1109631530304,138.45752069054225,0.0,186.34396574003256,712.89123828610036,1.0,186.34396574003256,407.37120000701299,1.5,27.800000000000001,5.2000000000000002,694.38543308283556,695.94981526481729,696.79929211640854,698.84684374565336,700.55121738132561,701.21260611944911,110.01186700257982,113.47225067214778,114.13015631527038,112.65323770823758,109.48375262456661,105.97088804324881 +1985,3,30,12,0,488,271,11.5,670.60116360959285,25.771977677091197,35.02967705241126,160.77729365199,0.0,191.62857706507549,733.15825963742896,1.0,191.62857706507549,418.91852752533237,1.5,25.600000000000001,5.7000000000000002,714.75778351369649,716.42856779439182,717.3391550719042,719.5665060004369,721.41782119526476,722.13882497783982,113.1461650448577,116.68951847628209,117.35831084140847,115.87553842415325,112.67056181040874,109.08286023655046 +1985,3,30,13,0,315,320,12.5,581.8709946731658,23.875714887853093,33.76372629387498,187.33320031604234,0.0,164.82650224699631,626.95416622280163,1.0,164.82650224699631,362.58084661274387,1.5,22.199999999999999,6.7000000000000002,606.77988230219262,609.24263428736845,610.6378343945787,612.28794001042729,613.66533861043024,614.195945424397,97.025474302268151,99.590768186364031,100.1471497212985,99.134315378804175,96.816665565821324,94.108429643100195 +1985,3,30,14,0,128,359,13.5,460.12568584100376,29.750426442232545,37.810337135611434,212.12741148266804,0.0,136.82842882862704,483.83699948989596,1.0,136.82842882862704,285.95481303690246,1.5,20.0,6.2000000000000002,461.57546996498917,464.84543624278001,466.73502838160744,467.81730356868303,468.72905615179468,469.0726712961013,80.498517245725466,81.914178187880012,82.130591647010803,81.503906166677595,80.083027510055956,78.347371074456831 +1985,3,30,15,0,14,325,14.5,334.76936388325453,40.09265831397659,45.74830053547922,231.285078502743,0.0,103.32790636820931,336.64213957097286,1.0,103.32790636820931,205.12698562546188,1.5,17.199999999999999,6.2000000000000002,315.44248520991306,319.32228458779997,321.59091159036012,321.40087308615841,321.27471871628626,321.1955560948108,60.517396119164907,60.72849315060563,60.69072260755221,60.380118266139704,59.751315853599117,59.007313203770359 +1985,3,30,16,0,3,189,15.5,190.68288291529112,52.271784100322705,55.877718575182584,245.55939542735538,0.0,59.568895525622672,189.62564831100397,1.0,59.568895525622672,116.57331492532394,1.5,16.699999999999999,6.7000000000000002,176.46357899700214,178.89450158385745,180.31826310018272,180.12406549436577,179.98296966120182,179.90885736258389,34.873633986990797,34.87528563095745,34.818977149105891,34.665277955578205,34.3744596930242,34.024942263059472 +1985,3,30,17,0,0,146,16.5,146.0,65.19983099400474,67.11326353008437,256.8289090336728,0.0,45.626154467795843,144.91092631670259,1.0,45.626154467795843,89.18740563662017,1.5,16.100000000000001,5.7000000000000002,134.08774506255972,135.95796507540231,137.05342040399375,136.88057471541484,136.75308567860179,136.68820233982078,26.742294471137473,26.712374903197691,26.644395556513292,26.509118462006224,26.28649728929118,26.031883244617134 +1985,3,30,18,0,3,47,17.5,47.58133817116272,78.39749266931672,78.82657220313622,266.5386482181005,0.0,14.959361325961876,46.855545224749662,1.0,14.959361325961876,28.998628597333255,1.3435464590787314,15.0,5.2000000000000002,43.236831536915005,43.885589674081615,44.265988359110708,44.187265963407292,44.127601811297019,44.098914088673695,8.7489760551284075,8.7194055998239879,8.6977576960559215,8.6660341076304093,8.609110352511756,8.541003545175478 +1985,3,30,19,0,0,11,18.5,11.0,87.72659563553042,87.14587645594223,273.09661809062163,0.0,3.4595444404390974,10.807884072552566,1.0,3.4595444404390974,6.6913877156731365,1.213115786063459,14.4,4.5999999999999996,10.039273120384857,10.192325712816103,10.282097293652409,10.259564630555877,10.242258877841852,10.234172390711274,2.0199251883215816,2.0136332901672866,2.0102504673820634,2.0035250653928984,1.9901980458224897,1.9742773812809364 +1985,3,31,7,0,1,24,6.5,24.104602557249596,84.23398983885909,83.99573132668293,89.15483902855661,0.0,7.5866241748442018,23.695414501683832,1.0,7.5866241748442018,14.677370130645196,1.5,10.0,3.6000000000000001,21.948751181327857,22.28268338394134,22.478533925943101,22.434167017829829,22.400302472596184,22.384263424543111,4.4295505389331034,4.4160256490134691,4.4087746167174346,4.3954434190326896,4.3678826041641523,4.3331480564136964 +1985,3,31,8,0,1,92,7.5,92.305298404687804,71.03329380812163,72.22388245748543,98.47093403529304,0.0,28.967157006442825,91.19345887637617,1.0,28.967157006442825,56.320028494532302,1.5,10.0,3.1000000000000001,84.200371474482893,85.427132325691076,86.146122023242668,86.014886723683105,85.916548026949101,85.868123610458298,16.964711945133665,16.921787965503725,16.874973755412935,16.800804213456807,16.676011256587927,16.53230284424529 +1985,3,31,9,0,0,201,8.5,201.0,57.914452944311,60.679101483489845,108.85289147070837,0.0,62.499123064980317,200.16666492099225,1.0,62.499123064980317,122.90353829655005,1.5,10.6,5.2000000000000002,186.02796747546776,188.54013448222824,190.01105942235549,189.81260478953558,189.66893718540032,189.59296074055032,36.635538147186182,36.63470992943148,36.556286966197185,36.365674268089435,36.040751895041311,35.666600454647714 +1985,3,31,10,0,1,308,9.5,308.64403378012815,45.27518241870259,49.90672977668481,121.5223503756806,0.0,95.506980160761728,309.36062943958314,1.0,95.506980160761728,189.04435790092285,1.5,10.6,4.0999999999999996,289.18644174215387,292.85992737919958,295.00898840524331,294.81087654024822,294.6762861674157,294.59554473061331,55.984776126885052,56.10448553582922,56.026358188203204,55.726860487527922,55.173214139319427,54.525477174340139 +1985,3,31,11,0,1,357,10.5,357.75764849121794,33.83122294701381,40.742669670009036,138.24213709901855,0.0,110.61638098532232,359.24092404895612,1.0,110.61638098532232,219.30376172050325,1.5,10.6,3.6000000000000001,336.33569324992663,340.55861889730795,343.02871376945092,342.86051575444787,342.75403459733991,342.68110377572231,64.781461974637367,64.978456339718292,64.931684351535651,64.62433991143412,63.991784015496712,63.222337996248775 +1985,3,31,12,0,1,232,11.5,232.82277550613023,25.386049669988363,34.636394483029655,160.72603253676343,0.0,72.402997215985195,231.74353845289772,1.0,72.402997215985195,142.54454299769063,1.5,10.0,3.1000000000000001,215.86950006187965,218.85458018329885,220.60323015464314,220.44076480534423,220.32874735023833,220.26336218479508,42.35387005433541,42.37210462278847,42.325200428136796,42.178663442780604,41.859719545762339,41.440718762782652 +1985,3,31,13,0,2,408,12.5,409.66995840378877,23.50529853108289,33.386327384946895,187.5398140581951,0.0,126.42171125508597,412.49992100654651,1.0,126.42171125508597,251.34549314179861,1.5,11.1,2.1000000000000001,386.70953898464813,391.447631981104,394.21800115032079,394.09949743136815,394.03733535009644,393.97876913562504,74.017442740518433,74.311825871999005,74.295789828687987,73.955928861529188,73.214956649507855,72.293564132997943 +1985,3,31,14,0,2,390,13.5,391.58688130802193,29.481174819286057,37.49178138585673,212.50764722733211,0.0,120.88585351892809,393.9882385361235,1.0,120.88585351892809,240.16372243628601,1.5,12.199999999999999,3.1000000000000001,369.26435257441545,373.81097786853508,376.46960711223437,376.3261122133199,376.24235915409849,376.17621473820475,70.812944717842157,71.06668686350514,71.021824598132156,70.673846918270101,69.958212809090057,69.090787310986059 +1985,3,31,15,0,1,316,14.5,316.7010097213531,39.90537850859962,45.49192967410785,231.70398995988032,0.0,98.075565755464197,317.30645344145245,1.0,98.075565755464197,194.01025669659381,1.5,12.199999999999999,3.6000000000000001,296.69451260173497,300.49385797654941,302.71685326624885,302.52565479250882,302.39728491484726,302.31847809682665,57.453540356898678,57.581978596417173,57.518909150466271,57.239562713127278,56.688915126454496,56.030179803285492 +1985,3,31,16,0,1,243,15.5,243.56402230022096,52.13049490158007,55.66557439461699,245.9610873859412,0.0,75.878240153421814,243.16160129891833,1.0,75.878240153421814,149.03291940963834,1.5,12.199999999999999,2.1000000000000001,226.61965168345432,229.60822973719638,231.35741502216149,231.15126749772358,231.00495225780287,230.92441738091748,44.480450164056315,44.520201139353787,44.438720029668147,44.202407421722398,43.787792514280213,43.306164231194963 +1985,3,31,17,0,51,155,16.5,174.98715032020948,65.08148960422135,66.92691960888044,257.205947835998,0.0,54.375167767293746,177.14221358487626,1.0,54.375167767293746,107.76254696116729,1.5,12.199999999999999,3.6000000000000001,162.73833643976226,164.57306853941677,165.64341471619213,165.72730976788205,165.81040143925452,165.83042612995641,32.173519681405828,32.240364618057107,32.067675385911606,31.768102250630537,31.369285076383015,30.96686304576102 +1985,3,31,18,0,3,41,17.5,41.590309425236271,78.28797138898045,78.65187054690476,266.89820585975167,0.0,13.08295663900425,40.930206674352611,1.0,13.08295663900425,25.338355058686581,1.3012416303134315,11.699999999999999,3.1000000000000001,37.840650739691,38.411123321099801,38.745651158051061,38.67378468258886,38.619155788877023,38.593052956443337,7.6479210159830577,7.6222896477890156,7.6050111216881815,7.5785165609119769,7.5293713700906251,7.4700354621043106 +1985,3,31,19,0,0,7,18.5,7.0,87.71885174953296,87.06389885742006,273.51786090234407,0.0,2.2015282802794256,6.8736085392177682,1.0,2.2015282802794256,4.2540199505031255,1.0807263244242193,11.1,3.1000000000000001,6.3886283493358205,6.4860254536102513,6.5431528232333545,6.5273535052610772,6.5151582879395313,6.509521976326786,1.2851603324999692,1.2809631073494292,1.2788100992681395,1.2742836257929453,1.2654990111183586,1.2553664830554243 +1990,4,1,6,0,0,0,5.5,0.0,90.39459806497656,89.38270955414323,84.21671256362573,1.0,0.0,0.0,0.0,0.0,0.0,1.1474355421649491,10.0,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1990,4,1,7,0,1,38,6.5,38.109650199947197,83.99613158340497,83.70484847118043,88.8750183134911,0.0,12.072679361772831,37.444079834204601,1.0,12.072679361772831,23.2324071117784,1.5,10.0,1.5,34.014427348505613,34.522165618923566,34.819749955720162,34.758467040051421,34.712119710921037,34.68972606218594,7.0346122038443237,7.0115297822937483,7.0043724867627635,6.9937729326295139,6.9603429257666871,6.9058537142306005 +1990,4,1,8,0,1,109,7.5,109.31040376504997,70.77969615103922,71.91643507527345,98.18926642448935,0.0,34.268502893003777,108.18187778873471,1.0,34.268502893003777,66.72914125562842,1.4967884919420844,10.0,0.0,99.691914454621426,101.1126596988986,101.94501813038418,101.80020158955081,101.69235971138582,101.63857265428899,20.099669653832791,20.044201050304039,19.973836418633162,19.871673368228731,19.714133221529114,19.542062561562297 +1990,4,1,9,0,1,122,8.5,122.49458699789146,57.64782730888578,60.357479800699934,108.56418211205664,0.0,38.414539357686344,121.05515181048651,1.0,38.414539357686344,74.787425588944785,1.5,10.6,2.1000000000000001,112.34483033867329,113.98807778621101,114.95133852253136,114.79454264524996,114.67803495496541,114.61961681776511,22.473118298692899,22.431619729038783,22.387204358588058,22.303482115256635,22.147260928269688,21.952502609944254 +1990,4,1,10,0,2,197,9.5,198.29730077959906,44.98129349943843,49.56007583201572,121.23982901579616,0.0,61.994268952679377,197.02866036324789,1.0,61.994268952679377,121.26119592897297,1.5,11.1,3.1000000000000001,183.43187881962683,185.9856819480531,187.48167593410525,187.29226677197238,187.15570851772557,187.08283505226461,36.288610536134527,36.282148352151239,36.223327816323867,36.073773313358288,35.785641074385296,35.430736005853724 +1990,4,1,11,0,1,242,10.5,242.76196799426012,33.48978888903048,40.36199957122346,138.01543735972265,0.0,75.608353711261231,241.76965494620305,1.0,75.608353711261231,148.59905859476171,1.5,11.699999999999999,2.6000000000000001,225.35579814029393,228.43903003869519,230.2448151610887,230.06341400665531,229.9369705769372,229.86475754454256,44.253560868073379,44.277307523386561,44.219320590633963,44.045186490573023,43.689629744351905,43.241160111069242 +1990,4,1,12,0,434,270,11.5,628.82779672298386,24.986926602925358,34.229388491036225,160.67143360304433,0.0,179.87822754376808,685.53508795584844,1.0,179.87822754376808,393.24805559172023,1.5,12.199999999999999,3.6000000000000001,667.53466000809021,669.17556586433375,670.07377188072996,672.31462640442294,674.17489215660191,674.90202742740291,106.56782864178192,109.75355576940417,110.15541173883615,108.63444949301238,105.62555624629694,102.34419030166241 +1990,4,1,13,0,241,294,12.5,496.12873880879596,23.122613127917642,32.996013581840934,187.7575834849254,0.0,144.3632688247362,532.56407407927327,1.0,144.3632688247362,309.65992995274058,1.5,13.9,2.6000000000000001,514.03235398880315,516.29807901379172,517.58510326078658,519.17567032347915,520.50079742794765,521.01431120794859,85.346999742168265,87.416445194678886,87.652246826789607,86.658968371971028,84.655377475314936,82.390649509723531 +1990,4,1,14,0,36,326,13.5,354.68904117703943,29.205025090606444,37.16322521536493,212.90665726402872,0.0,107.85523911296264,363.51256821149889,1.0,107.85523911296264,219.1133788416104,1.5,14.4,3.1000000000000001,342.86708171798477,346.3336895558615,348.35375367774941,348.75764888587543,349.11353290681797,349.23328647309518,63.437336894054773,63.986357812355365,63.960301269515099,63.540177906478903,62.71165947372851,61.71374801889317 +1990,4,1,15,0,155,271,14.5,380.16452015931657,39.713960641262744,45.228011083226335,232.1411822641261,0.0,112.97035149799012,398.65791803705832,1.0,112.97035149799012,236.16310193497822,1.5,15.0,3.1000000000000001,379.62554483327528,382.2955611925006,383.83806108566688,384.69589305114562,385.42071410339611,385.6923888414467,66.859820613890903,67.866353587670929,67.820231054174513,67.087497410367874,65.828255802505225,64.429818048670569 +1990,4,1,16,0,40,268,15.5,290.68663847849109,51.98594100347118,55.44716483570319,246.37877368119322,0.0,89.377542128925541,296.32253838802529,1.0,89.377542128925541,179.32388189446436,1.5,15.0,3.1000000000000001,277.35824885886916,280.27173464129822,281.97004835860582,282.21444326615187,282.43674737015033,282.50563906561081,52.741747216937462,53.052689345676235,52.911389501675487,52.463395773107401,51.770613075667356,50.999481194625126 +1990,4,1,17,0,4,137,16.5,138.57995344766394,64.95994150670434,66.73475177386516,257.59711083827557,0.0,43.311280287864882,137.44293096806808,1.0,43.311280287864882,84.641845383988823,1.5,14.4,4.5999999999999996,127.2158633401915,128.99323804177939,130.03433436172654,129.86578452373621,129.74118697899326,129.67808175603167,25.401817898033134,25.357429846460821,25.278146476630866,25.145379079582256,24.934879304957967,24.701952758468309 +1990,4,1,18,0,1,74,17.5,74.199859998589872,78.17485254067942,78.47122774669553,267.2706506733289,0.0,23.404893358434904,73.235260783576805,1.0,23.404893358434904,45.273302219266888,1.2587963929617203,13.9,4.0999999999999996,66.763122082104346,67.728839895901046,68.294637563217378,68.188425190018265,68.108861840201058,68.069642564560382,13.726606277944674,13.65606875402068,13.596589502610152,13.534950016849354,13.446242500422073,13.348172867407419 +1990,4,1,19,0,0,6,18.5,6.0,87.7106213816639,86.97887027112768,273.9538747083458,0.0,1.8870242402395072,5.8907506115764319,1.0,1.8870242402395072,3.6453889645545763,0.9514483664206203,13.300000000000001,3.1000000000000001,5.4759671565735619,5.5594503888087878,5.6084167056285912,5.5945517580333908,5.5838374402636228,5.5788979662632521,1.1015115100064112,1.0978711796295997,1.0960256772536647,1.0920913388322102,1.0844945458239423,1.0758092574870153 +1990,4,2,6,0,0,0,5.5,0.0,90.34292546040831,89.2649081060012,83.84404635139867,1.0,0.0,0.0,0.0,0.0,0.0,0.6421611255195128,10.6,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1990,4,2,7,0,2,25,6.5,25.229239993134364,83.75962219897968,83.41829247459955,88.611936817656,0.0,7.9492972740014354,24.795126456898501,1.0,7.9492972740014354,15.362022588079276,1.5,11.1,3.1000000000000001,22.919233090020963,23.26707833170618,23.471070618492845,23.424518386145273,23.388981281324508,23.372154460517713,4.6394614849344826,4.6255107311549324,4.6186593156127564,4.6055977788846851,4.577367174522152,4.5407749287497232 +1990,4,2,8,0,4,69,7.5,70.261130173956673,70.5372770442079,71.62212847600782,97.91793491257535,0.0,22.087875179930723,69.26500749533669,1.0,22.087875179930723,42.844370473371015,1.4714494475065483,11.699999999999999,2.1000000000000001,64.107931035813721,65.061006757997461,65.619780997673715,65.511630857431356,65.430086176777891,65.390445957826245,12.922851212662597,12.885047702116431,12.853414909177966,12.804397900025359,12.716712224155366,12.612244593429123 +1990,4,2,9,0,4,216,8.5,217.99698851289654,57.393340370877375,60.049797108207144,108.28525514460169,0.0,67.902539823760392,217.39662960655261,1.0,67.902539823760392,133.34037409628223,1.5,12.800000000000001,2.6000000000000001,202.19137617479402,204.86037277089451,206.4224482232872,206.22050399736884,206.07560110659239,205.99761937090301,39.871076764852781,39.862086894116217,39.742896889626572,39.498814544085079,39.122942682420224,38.709566677130134 +1990,4,2,10,0,1,274,9.5,274.65304494036775,44.70097568200849,49.22842730980634,120.96576019006643,0.0,85.54735424607496,274.35307078440349,1.0,85.54735424607496,168.14145426391596,1.5,13.300000000000001,3.6000000000000001,256.11298487496646,259.47409999865329,261.44123300937582,261.23868920625495,261.09791775944097,261.01715353073752,50.156509011762083,50.208423981206003,50.116400547752875,49.851924799591444,49.386585675928096,48.840620153879243 +1990,4,2,11,0,1,360,10.5,360.76607306382829,33.16375856678833,39.99744878504523,137.79419659053139,0.0,111.54308302619179,362.08510559201778,1.0,111.54308302619179,221.16096975491416,1.5,13.9,3.6000000000000001,338.99634284433989,343.25340531810127,345.74348328170908,345.57832395582801,345.4747451996609,345.40269026972214,65.40508384033096,65.567943070585173,65.477624959417327,65.12786105514067,64.478538690588522,63.709541620260019 +1990,4,2,12,0,0,398,11.5,398.0,24.604473263936562,33.839092864794154,160.61740832906122,0.0,122.93137742403223,400.12188114086575,1.0,122.93137742403223,244.14998773427467,1.5,15.6,3.6000000000000001,374.86532361485257,379.51253703866087,382.23028658640277,382.10405875544103,382.03496029851453,381.9742994109331,72.057868332271312,72.286642944587797,72.214591639444834,71.84858760014248,71.125291936537536,70.255415080236929 +1990,4,2,13,0,173,426,12.5,571.70854700190364,22.756267259580344,32.621949553543026,187.9701913434122,0.0,168.97847691286967,602.99663942104212,1.0,168.97847691286967,355.01393274763359,1.5,17.800000000000001,4.0999999999999996,578.08038198889517,581.733501371388,583.8374139472395,585.06552639218421,586.10454075462405,586.49254312576943,99.866260804691748,101.62101398085957,101.68819547845555,100.58916397048631,98.53859811313707,96.291010811172981 +1990,4,2,14,0,632,230,13.5,735.73690132274737,28.942612098235568,36.84920735844885,213.29458572243348,0.0,208.78792357112943,804.9588991559375,1.0,208.78792357112943,459.40211981694927,1.5,20.0,6.2000000000000002,787.56098384688278,788.816569473556,789.47202912070622,791.82070216628199,793.77646324198554,794.53587229737775,124.22569024429431,127.99874725938878,128.27961203951747,126.0700395088208,122.10345040770693,118.07250528179613 +1990,4,2,15,0,641,204,14.5,657.44340310195685,39.53266612152532,44.97623560748435,232.56392038946098,0.0,186.97145584652748,716.49088427752997,1.0,186.97145584652748,410.82501100374003,1.5,21.100000000000001,5.7000000000000002,697.08781323855419,698.36983275826697,699.05097368894735,701.26395919054562,703.10625623787769,703.82304397544851,112.03291250329738,114.92866958814425,114.69774477467092,112.38695115696048,108.89132487051505,105.46117304056096 +1990,4,2,16,0,286,211,15.5,374.06512882359846,51.84886985396447,55.238770121863155,246.78118576730245,0.0,111.77137954738791,396.24597438992623,1.0,111.77137954738791,233.21785150975171,1.5,20.0,6.7000000000000002,375.5767374612725,377.53221178435098,378.64882316663409,379.76472546502737,380.69944869131615,381.05798205224801,66.928813134148683,67.919214388413792,67.54979924193151,66.393929850816932,64.854577119309639,63.344307999940142 +1990,4,2,17,0,172,164,16.5,232.44419298061916,64.84421780466693,66.55107899891425,257.97312639558186,0.0,71.511137032609838,239.85400686144993,1.0,71.511137032609838,144.16425311955163,1.5,18.899999999999999,5.2000000000000002,219.04485816461218,220.82836020262721,221.86045068008718,222.30649411769377,222.68845225968539,222.82747605510036,42.919595279957186,43.020431436990869,42.523199682324275,41.848982568561951,41.117572139532093,40.493959310178816 +1990,4,2,18,0,72,48,17.5,62.603012626728784,78.06654716923236,78.29810864146963,267.6281206597082,0.0,19.973872184217857,63.035963542325163,1.0,19.973872184217857,38.918528439628766,1.219312925586606,17.800000000000001,3.6000000000000001,53.155122456532389,53.749658997992675,54.095815233854708,54.252328887707925,54.384822054157539,54.434199675084294,11.904620726104431,11.747890249107838,11.583766920059293,11.514743861871061,11.488566738164337,11.449923320708344 +1990,4,2,19,0,3,5,18.5,5.1623827713006651,87.70257779563524,86.89720115872406,274.37211463740556,0.0,1.6547670738633775,5.0552485130854903,1.0,1.6547670738633775,3.1630010858995168,0.8342548227952057,13.9,5.2000000000000002,4.5890054825773801,4.6585741509996179,4.6993479013246633,4.6966860126895398,4.6949813278952641,4.6938375754206589,0.96714871907326672,0.96389881542256162,0.96184132422967616,0.96046458299390258,0.95661665474751678,0.94953592249093688 +1990,4,3,6,0,0,0,5.5,0.0,90.28932613286383,89.14542625284072,83.47266599745778,1.0,0.0,0.0,0.0,0.0,0.0,1.3789597236827067,9.4000000000000004,6.7000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1990,4,3,7,0,46,38,6.5,43.5000975048074,83.5241321218389,83.13286696149521,88.34935116658518,0.0,14.310260138837418,42.913038555032543,1.0,14.310260138837418,27.044542528603479,1.5,8.9000000000000004,7.2000000000000002,35.200147470433663,35.667848369542575,35.940730699664471,36.052167186243821,36.146198099316898,36.181493918173807,8.2607063595090491,8.2653579799420882,8.2990643506170496,8.3735717944662973,8.4133673685482595,8.3423065930884626 +1990,4,3,8,0,26,117,7.5,125.32321791189645,70.29665698683121,71.3295901186779,97.64649860077749,0.0,39.292360469659307,125.57702649604838,1.0,39.292360469659307,77.130222874754907,1.4469676980090855,9.4000000000000004,7.7000000000000002,114.17328110411125,115.6023597845449,116.43749519640129,116.48483534748659,116.53422892872665,116.54416057495783,23.261791356647329,23.178362584877604,23.000369134780648,22.819645343551421,22.613966711293223,22.410679627804971 +1990,4,3,9,0,583,128,8.5,421.75163065727202,57.14112331808612,59.74415187957797,108.00541773974852,0.0,123.73047517754334,454.76065605059785,1.0,123.73047517754334,264.31477536987194,1.5,10.6,8.1999999999999993,428.21361474644226,429.15234995829127,429.65695463194385,431.34953522867465,432.75662764477698,433.30673169333329,75.375343346089508,76.432021810113,75.431916611314705,73.496906404288211,71.289300598962058,69.461795776459681 +1990,4,3,10,0,247,154,9.5,316.37507705683976,44.423351593970345,48.89895604590983,120.68967667641252,0.0,93.492624637480887,341.87102947142705,1.0,93.492624637480887,199.19764707285748,1.5,9.4000000000000004,7.7000000000000002,327.68719738324717,328.76514788351881,329.36636312163569,330.97680566817843,332.30662250152955,332.83411875808332,56.188657357992582,57.382380296480939,57.132503222329078,56.109399705328919,54.681528231044148,53.19366658204418 +1990,4,3,11,0,584,198,10.5,647.7527052904677,32.840505582900754,39.63493025652466,137.56998011243667,0.0,189.34841131179684,708.1323274050626,1.0,189.34841131179684,405.04252883867588,1.5,11.1,6.7000000000000002,691.81243024401726,692.87339904536589,693.4214976940234,695.68927038736228,697.57606249942523,698.31107462379134,113.30756171930462,116.44465484005784,116.32819265919497,114.02404903380827,110.38524973315164,106.81350278236505 +1990,4,3,12,0,562,231,11.5,699.91198627718381,24.223920850516414,33.450436097541996,160.5618558753691,0.0,204.60617753531591,766.14526456072747,1.0,204.60617753531591,437.45005838059359,1.5,12.800000000000001,7.2000000000000002,749.91405001320572,751.06601333516846,751.66159689958636,754.03939484353089,756.01826219222858,756.78812408255862,121.99939597008203,125.60084441561173,125.73871599063735,123.45128015695781,119.54026105711665,115.61958493915118 +1990,4,3,13,0,465,269,12.5,662.26487854544712,22.392083301071754,32.24966715306663,188.1856398528918,0.0,189.06772091716189,721.25670461659024,1.0,189.06772091716189,413.89925061725938,1.5,13.300000000000001,6.7000000000000002,703.49502064916521,705.07409996463502,705.9314378106626,708.19394444213833,710.07498246645036,710.8081003581849,112.42152351804728,115.65333544240421,115.88087767108205,114.03752057260064,110.69169054120204,107.21180415357247 +1990,4,3,14,0,308,331,13.5,578.46786727729409,28.683665158801144,36.53752659260516,213.68610774672803,0.0,168.20759639623159,618.89852614936103,1.0,168.20759639623159,360.45917926377058,1.5,13.300000000000001,7.7000000000000002,597.77066197604404,600.36692418670759,601.84067058906635,603.48343458550767,604.85833787837237,605.38594230568856,99.986559405333011,102.12674815627862,102.09607698888759,100.60329095119224,98.119696358115903,95.516468558730367 +1990,4,3,15,0,243,298,14.5,470.64437879719458,39.35432488787341,44.72677474873321,232.9882909754785,0.0,140.71705246463418,499.81107773546279,1.0,140.71705246463418,293.61240853433935,1.5,14.4,6.7000000000000002,478.88387088391835,481.39231655631124,482.82590514390301,484.2959593167356,485.52453276111635,485.99799159329132,83.862865806468164,85.3318407476728,85.120613736391007,83.862985582405244,81.978328741584676,79.993808761901704 +1990,4,3,16,0,98,269,15.5,325.16530931966429,51.713847117178055,55.032240859015786,247.1837206606754,0.0,99.377062309191018,333.2909681163743,1.0,99.377062309191018,200.54369682177318,1.5,13.300000000000001,6.7000000000000002,313.35180128658595,316.27815683172201,317.9796609042416,318.2228819205655,318.44739488494747,318.51436605907475,58.911857482915636,59.267334829106851,58.99069767922736,58.299052457425638,57.378147223753203,56.449614808897358 +1990,4,3,17,0,165,139,16.5,205.1401035733777,64.72974890683702,66.36872865851393,258.3484376439598,0.0,63.090249789139499,211.54708243707248,1.0,63.090249789139499,127.28901365534853,1.5,12.800000000000001,5.7000000000000002,193.21783978507108,194.77293975447071,195.67253124700898,196.08622431016153,196.43967688272494,196.5690860685803,37.92260385348925,37.965689029461586,37.486596308225543,36.881251399313214,36.242080394150577,35.71656424142661 +1990,4,3,18,0,6,49,17.5,50.234583370015315,77.95881551356659,78.12577961640417,267.984384426754,0.0,15.821696984993066,49.465446886453037,1.0,15.821696984993066,30.620282621476235,1.1811303081192808,11.699999999999999,5.7000000000000002,45.528658076006153,46.205569860178713,46.602405502576573,46.520611750193012,46.45870462986818,46.428844414173582,9.2551005879800385,9.2159607877001193,9.1894739166527888,9.1573861827219094,9.1012773400986671,9.0332076530507166 +1990,4,3,19,0,1,12,18.5,12.055547781945377,87.69437484198085,86.81570754717099,274.78870479231523,0.0,3.8032799452499524,11.831401014054215,1.0,3.8032799452499524,7.3343642343744193,1.5,11.1,6.7000000000000002,10.960560866231116,11.127526744195928,11.225448145277687,11.201030483434993,11.182291634681487,11.173520372656741,2.2201887668598461,2.2130516171314962,2.20939413558688,2.2023704888205051,2.1881358036651148,2.1707274805204673 +1990,4,4,6,0,0,0,5.5,0.0,90.2340771187234,89.02455940935397,83.1026369895822,1.0,0.0,0.0,0.0,0.0,0.0,0.44672456897226454,4.4000000000000004,6.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1990,4,4,7,0,20,43,6.5,45.489784102787034,83.28982372015057,82.8487410114246,88.08727742771761,0.0,14.667580073437284,44.718038220057522,1.0,14.667580073437284,27.956287817881126,1.5,4.4000000000000004,4.0999999999999996,38.986446769930595,39.540512130381195,39.864650937430838,39.868867484210242,39.876196286775709,39.875429423508116,8.5028930331618309,8.4979744500700001,8.5151778730052623,8.5429133293617632,8.534453703190847,8.4603107173245018 +1990,4,4,8,0,262,119,7.5,204.13043153710186,70.05795854029587,71.03894994605537,97.37497696251312,0.0,63.577707745450581,211.19378192929636,1.0,63.577707745450581,127.33364583767924,1.4233022226377086,5.0,5.2000000000000002,185.30785465526924,186.54741630178984,187.25891368806828,187.89527406703525,188.42985795507968,188.63365962309092,38.689287357936578,38.384786353805382,37.581900507038434,36.850425129788626,36.25899127785717,35.889769369418573 +1990,4,4,9,0,729,90,8.5,460.64563698974251,56.89130098202799,59.440675451733625,107.72468292931889,0.0,134.46611544442621,497.21760343948063,1.0,134.46611544442621,287.76641343922267,1.5,7.7999999999999998,8.1999999999999993,470.42853548362694,471.08083607323198,471.4097310396586,472.91804020872513,474.17992628471018,474.6664677763672,82.294848641536078,83.295319034347301,81.960237703199013,79.546722866188361,76.935811363216246,74.935641460081968 +1990,4,4,10,0,770,162,9.5,671.49437531721969,44.1485571436378,48.57179771570723,120.41156203052444,0.0,190.15821003284904,730.1066392650464,1.0,190.15821003284904,418.99158337546692,1.5,10.0,8.1999999999999993,709.74061396984632,710.72929200970543,711.23392406348023,713.2646553406363,714.96222524609709,715.61733757434354,114.77829997167383,117.36771294627853,116.67290945068994,113.79139450276445,109.99349050682787,106.57516983878895 +1990,4,4,11,0,363,293,10.5,574.00597733387599,32.52018380160619,39.274579216425764,137.34269979139594,0.0,166.40242407190522,614.32625842678999,1.0,166.40242407190522,357.39029055109006,1.5,10.6,8.1999999999999993,594.23767938728633,596.6124408014955,597.95480984352434,599.47524880426431,600.75129717938171,601.23810978430072,99.228557810484546,101.25529772413596,101.05830000450152,99.37188007211428,96.783253970038999,94.184176064203911 +1990,4,4,12,0,65,206,11.5,260.47429743368122,23.845403354466587,33.06353401280324,160.5046312621787,0.0,77.924262274969365,272.05024795409724,1.0,77.924262274969365,162.41247763762209,1.5,8.9000000000000004,5.2000000000000002,258.09256877142224,260.12907541187064,261.30928169542858,262.11733660082052,262.79251411801579,263.0525020531951,46.102073473473631,46.741223291268014,46.704097450745309,46.300680312220848,45.57378504158514,44.682978483393498 +1990,4,4,13,0,151,233,12.5,361.2236048295681,22.03016370121914,31.879256843182677,188.403829225462,0.0,105.51409130643276,385.97479021886556,1.0,105.51409130643276,226.10317888299028,1.5,11.699999999999999,5.2000000000000002,371.02946808414629,372.84024495557907,373.8734051516069,375.26449074170358,376.4189682534265,376.87096412011425,62.731599522371809,64.043492914837699,64.019318450983732,63.205050604677048,61.812577574413943,60.248765718819719 +1990,4,4,14,0,281,351,13.5,577.674009015092,28.42824123776603,36.228244324662725,214.08107544013475,0.0,168.32180975202678,616.46373805258804,1.0,168.32180975202678,360.0798202527248,1.5,12.199999999999999,8.1999999999999993,594.57121484889694,597.30126118597798,598.8547585382405,600.54062226179576,601.95115191230468,602.49315275960157,100.29083204347468,102.23003161624649,102.0330820094691,100.47072486899113,98.04667696541793,95.538419978543473 +1990,4,4,15,0,658,237,14.5,706.48254390857926,39.178929775609944,44.47965346793805,233.41411337903705,0.0,207.33080137443778,765.43433637901421,1.0,207.33080137443778,440.97988755204955,1.5,12.800000000000001,4.0999999999999996,744.15565763549239,745.76435126430147,746.63112947161699,748.84225067753391,750.6899953575587,751.40323898699023,124.68869230278695,127.4294048157584,126.83436650663126,124.02484464278197,120.18445262593114,116.61300506471147 +1990,4,4,16,0,398,191,15.5,420.26349092811546,51.580841706756516,54.82757895752409,247.58621421071513,0.0,124.33455510406516,449.79115246255185,1.0,124.33455510406516,263.22144092735817,1.5,14.4,7.7000000000000002,427.96821101103848,429.47906003859532,430.32475062497247,431.97632552027153,433.34951426025185,433.88588023436023,75.204550240963727,76.288944185228544,75.538632508706641,73.894703836360534,71.971478936251401,70.197573410271801 +1990,4,4,17,0,147,150,16.5,209.35004534000802,64.6164992950449,66.18769382750155,258.7229024382431,0.0,65.353842363619165,215.21240039518278,1.0,65.353842363619165,129.9251960110598,1.5,13.9,6.7000000000000002,196.67755493964694,198.33594457338745,199.29614389077608,199.7290966142011,200.09880224959102,200.23427718023746,39.290539364893313,39.26115432708972,38.740844505541276,38.134215256027481,37.514089918276149,37.020321963820912 +1990,4,4,18,0,274,68,17.5,125.18185778632942,77.85162735930152,77.95423547521894,268.3393146669448,0.0,41.231071029233945,127.46101311706707,1.0,41.231071029233945,78.801611634636885,1.1441990680863414,13.9,6.2000000000000002,98.743796946634916,99.415922727324812,99.800327790967216,100.43900258052247,100.9686920605419,101.17618293245374,24.778333631628911,24.155239769676729,23.612796657301285,23.519317187877263,23.640002678721821,23.709259916348699 +1990,4,4,19,0,42,14,18.5,16.392515467304118,87.68599700084404,86.73439798774092,275.203526902239,0.0,5.7605803833750269,14.721885873413575,1.0,5.7605803833750269,10.335600250470089,1.5,12.199999999999999,5.2000000000000002,11.446361331631023,11.612092802548629,11.708528414771568,11.800916320479187,11.877251591259988,11.907414742031371,3.3352556119820087,3.3384494916711747,3.3492060611283958,3.3871357739551131,3.4131786021947588,3.3859765031758333 +1990,4,5,6,0,1,1,5.5,1.0191523714101198,90.17743567078742,88.9025828523525,82.73402518579546,1.0,0.33157703848604098,0.99240387608929914,0.0,0.33157703848604098,0.010692922194056601,0.8975617476478313,8.3000000000000007,3.1000000000000001,0.91268675878091354,0.9266006805383028,0.93475473710371426,0.93784809441073735,0.9404430285777543,0.94143181115233832,0.19461593753483988,0.19467303712267303,0.19428571593624244,0.19446353406526568,0.19421468720067783,0.1926468627466236 +1990,4,5,7,0,146,40,6.5,58.889874648058466,83.05685298519296,82.56607744512755,87.82573297940795,0.0,20.449233226942241,57.587371024030034,1.0,20.449233226942241,36.87272238958068,1.5,9.4000000000000004,3.1000000000000001,42.268046466291011,42.72255096410634,42.985087268308895,43.220870550319582,43.416961052294987,43.493188874498806,11.626382484725241,11.699833214038174,11.840023768821288,12.049210392503834,12.163828885953825,12.02441108284167 +1990,4,5,8,0,518,80,7.5,250.77688275736068,69.82130242008013,70.75033642371451,97.10339146762405,0.0,79.778238979322253,263.9539436853164,1.0,79.778238979322253,157.60573310347502,1.4004143579352135,12.800000000000001,5.2000000000000002,227.19660326159971,227.859222209113,228.21990131637412,229.38288360560077,230.34998913304008,230.7278909138935,49.389758287019809,48.733815607557332,47.255808593509144,45.98715871361901,45.09877184187166,44.685700985922111 +1990,4,5,9,0,684,113,8.5,463.85753258403622,56.643996193344805,59.13949778024727,107.44306665111175,0.0,135.61720846232819,499.17349491295914,1.0,135.61720846232819,290.01335046713007,1.5,15.0,6.2000000000000002,472.14201360509583,472.91719619119442,473.31891467121454,474.9266713027298,476.26985952797173,476.78953898368138,83.161050811283616,83.972905788385233,82.449190821125313,80.055167572817709,77.517666703387107,75.626480324195754 +1990,4,5,10,0,780,138,9.5,657.41728551186202,43.87672631713663,48.24708692029802,120.13140345210468,0.0,185.68076298462435,714.77692989364084,1.0,185.68076298462435,409.96247696016241,1.5,15.6,5.7000000000000002,696.15747411285247,696.93071689199064,697.30883889778238,699.20261149811131,700.78907634116763,701.39852677238673,112.53385792715765,114.86572295308883,113.88259086626825,110.8379268103741,107.05567480769734,103.73584445395963 +1990,4,5,11,0,830,154,10.5,799.79141182601302,32.20294632754618,38.916530456242434,137.11226966232132,0.0,225.77137036853301,872.57178307328047,1.0,225.77137036853301,497.67660715859779,1.5,16.699999999999999,6.2000000000000002,857.12459180576309,858.01612868614313,858.44684518174677,860.3726083213769,861.99399341928154,862.60900122824557,135.83615439726466,139.20746936922168,138.68222318888135,135.29359948065735,130.53580436215807,126.26609862197645 +1990,4,5,12,0,848,162,11.5,875.77298478198509,23.46905527044658,32.67850213819366,160.44558672112527,0.0,246.86613468883789,957.76291976349637,1.0,246.86613468883789,544.3849962687276,1.5,17.800000000000001,6.2000000000000002,943.63008697493797,944.46518591110657,944.85281576412581,946.75524386419943,948.36218483584105,948.96648947063716,148.03006736248381,152.05982187299276,151.74872216187867,148.21545633095818,142.95987786027044,138.11443542223034 +1990,4,5,13,0,857,164,12.5,894.6281405330036,21.670609808728663,31.510808001976052,188.62465524792515,0.0,252.11922442694751,978.67639597118796,1.0,252.11922442694751,555.97149702735112,1.5,18.899999999999999,8.1999999999999993,964.6484295789628,965.47692595714523,965.85826170604616,967.75344780576575,969.35593908340081,969.95708408557152,151.17992813952307,155.29881518000164,154.98091545477908,151.35559284557291,145.96608673185256,141.0085283042705 +1990,4,5,14,0,843,158,13.5,840.68025748016919,28.176393435429063,35.921419934193146,214.47933545068787,0.0,244.82034345659983,918.17418653926848,1.0,244.82034345659983,522.82866311125133,1.5,19.399999999999999,4.0999999999999996,903.45217871893851,904.31851606202122,904.72554424234079,906.64209396656952,908.26054293105256,908.86995161843208,147.01960137217134,150.81644167754445,150.37905897626823,146.77732169324625,141.63439744477219,136.92121484100403 +1990,4,5,15,0,806,145,14.5,722.48762160739454,39.00647031918193,44.234894632522405,233.84120411049136,0.0,204.23015486185639,785.93266444888252,1.0,204.23015486185639,450.04432411375416,1.5,20.0,5.2000000000000002,768.65733099053489,769.57463146216742,770.03036233366629,771.93964743979166,773.54285377310384,774.1552399887089,123.28842479757765,126.08221537239905,125.32601885281463,122.12571548582945,117.91731656820862,114.196246511409 +1990,4,5,16,0,741,124,15.5,552.98602640321462,51.449820837794285,54.624784973663864,247.98850158720393,0.0,161.42541179660287,597.72619468095922,1.0,161.42541179660287,345.24788343791101,1.5,20.0,8.8000000000000007,574.49268178984198,575.27788640260258,575.67396633587771,577.41322206666348,578.86954456960427,579.42980010186091,98.522240563002555,99.930932987477277,98.540796459763797,95.731945437459316,92.536105022034917,90.029334939536724 +1990,4,5,17,0,620,94,16.5,346.09795779362736,64.50443294369691,66.00796705989907,259.0963788502736,0.0,104.35231590832954,368.08003010755124,1.0,104.35231590832954,216.83224704994629,1.4836243653130936,20.0,6.2000000000000002,333.60532196111859,334.32762548316873,334.71170703151506,336.07157872571491,337.20581554978185,337.64639784278393,64.560959071141298,64.328357304563553,62.636350512107853,60.798793791943261,59.152425146207797,58.16825575312226 +1990,4,5,18,0,365,58,17.5,135.23646580913493,77.7449527750162,77.78347113495337,268.6927846624723,0.0,44.830447577723596,137.23764516386964,1.0,44.830447577723596,84.891453052719214,1.1084729559625874,18.899999999999999,6.2000000000000002,104.21448574128343,104.77507871944714,105.09197755015335,105.69097530260711,106.18982287224914,106.38327065987039,26.869237453839478,26.07869459847624,25.475864066653575,25.40407796564865,25.606535248333849,25.734766307342401 +1990,4,5,19,0,23,13,18.5,14.342695409008236,87.6774286532057,86.65328069934333,275.6164630950961,0.0,4.8435132287495604,13.502150710167857,1.0,4.8435132287495604,8.9344686474282309,1.5,16.100000000000001,2.1000000000000001,11.425884702317591,11.595788250075824,11.695043515598176,11.738496032337363,11.774962998487188,11.788834457396259,2.8111703591820856,2.817815431693274,2.8256675722222551,2.8430151164304895,2.8480069033643098,2.8212006317345533 +1990,4,6,6,0,0,0,5.5,0.0,90.11963952993149,88.77975199984442,82.36689686619555,1.0,0.0,0.0,0.0,0.0,0.0,1.2640599632279415,10.0,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1990,4,6,7,0,5,33,6.5,33.671225204653524,82.82537014206373,82.28503345924854,87.56473660334554,0.0,10.646501304074379,33.074036128938126,1.0,10.646501304074379,20.515388358237924,1.5,10.6,4.0999999999999996,30.398970663727376,30.856725714590041,31.125096784537,31.067329571522443,31.023431518838589,31.002437545649798,6.2068163311076763,6.1916857168016071,6.1863804713032513,6.1730613652083859,6.1373850156175687,6.086660186644191 +1990,4,6,8,0,6,109,7.5,111.00640662621508,69.5868074064632,70.4638764662351,96.83176568807234,0.0,34.86913273745229,109.7691806287589,1.0,34.86913273745229,67.766202432024997,1.378267646260554,11.1,4.5999999999999996,101.24840060082484,102.68272343529438,103.52296367834842,103.37615019441368,103.26689024081634,103.21232230120989,20.469039576704901,20.382957534487591,20.292610364043355,20.187875165614241,20.038098244536567,19.879257395312504 +1990,4,6,9,0,1,190,8.5,190.51741856431454,56.39932967137922,58.84074735484708,107.16058789952677,0.0,59.663049854955737,189.18207642497268,1.0,59.663049854955737,116.46818922396794,1.5,11.1,6.7000000000000002,175.85464818382169,178.27291774635844,179.6890852359158,179.49307684684109,179.35076364571259,179.27597700950801,35.021734607069973,34.965101485340952,34.84491665275398,34.652920840912216,34.357956441745593,34.032564366992091 +1990,4,6,10,0,4,254,9.5,256.68041345141165,43.607991038896834,47.924957102456005,119.84919203661003,0.0,80.005377175558877,255.9083667161114,1.0,80.005377175558877,157.10397060148091,1.5,11.1,4.5999999999999996,238.80129417755919,241.97352054909373,243.83043265004639,243.62994953724791,243.48948491542478,243.41019415514108,46.951308028044096,46.95274724754686,46.829703752783111,46.566229921009963,46.144026699508181,45.658212423235263 +1990,4,6,11,0,0,222,10.5,222.0,31.888945371121427,38.56091827700191,136.87860627312,0.0,69.418951187582323,220.55699765846387,1.0,69.418951187582323,135.86744744186009,1.5,11.1,6.2000000000000002,205.34193541721726,208.2090061177467,209.88858819312588,209.71626670062227,209.59561171864016,209.52736056675678,40.660744509148557,40.642927770250978,40.564501962818667,40.395657874812748,40.084392838674212,39.694465010727406 +1990,4,6,12,0,4,203,11.5,206.38121684637704,23.095011625009185,32.29545570593635,160.38457179197593,0.0,64.517215474578322,205.18087897631355,1.0,64.517215474578322,126.34176716402656,1.5,9.4000000000000004,4.5999999999999996,191.08018723669389,193.73570268557353,195.29125371697103,195.14244998432036,195.03948019532538,194.97986371084099,37.785001180029084,37.778935481734585,37.711941360052016,37.558181456157342,37.267759141426012,36.899476688132573 +1990,4,6,13,0,308,381,12.5,644.60687333459714,21.313521832562397,31.1444089148715,188.84800913895592,0.0,191.61260866437428,688.66766591133091,1.0,191.61260866437428,401.58769778676492,1.5,11.699999999999999,6.7000000000000002,666.07437128351307,668.89194994047557,670.48714639932484,672.28302920351189,673.78927279963136,674.36500788157355,114.36931818863907,116.5690941334353,116.26949802121952,114.2989984185609,111.39391956971397,108.47599788081206 +1990,4,6,14,0,288,349,13.5,583.1229414654274,27.928170898524677,35.61711076230052,214.88072890256555,0.0,169.77683912901441,621.35731427863743,1.0,169.77683912901441,363.44785292601614,1.5,13.300000000000001,5.2000000000000002,599.59885740399307,602.30219657514454,603.83908338946412,605.52852040140237,606.94298242302182,607.48596288633928,101.41850503894484,103.24090567549507,102.9141801620965,101.19413940476575,98.693319817580672,96.205373555092109 +1990,4,6,15,0,146,275,14.5,380.03685209010598,38.83693281692984,43.992519053578484,234.26937691595865,0.0,114.83627682033581,396.61093378987135,1.0,114.83627682033581,236.14210645750902,1.5,14.4,6.7000000000000002,377.54026133796106,380.2353316462079,381.79187923755234,382.66972013908833,383.41234893094361,383.69035431372367,68.407211754800528,69.171299268035114,68.851477061374212,67.905381035730997,66.610382253150348,65.287357593599808 +1990,4,6,16,0,10,117,15.5,122.81784341470178,51.3207501287686,54.42385817907651,248.39041736057422,0.0,38.424597166855278,121.70004233452684,1.0,38.424597166855278,75.019650833676678,1.5,12.199999999999999,7.7000000000000002,113.20533480434568,114.80241991761586,115.73813257820152,115.59133827945364,115.48298827937057,115.42792330341842,22.518112722764521,22.479972829130055,22.419041607422805,22.31221380407516,22.135448521037237,21.931844780477309 +1990,4,6,17,0,3,57,16.5,58.228358129929255,64.3935134168156,65.82954046461946,259.4687252215311,0.0,18.294291885494058,57.369747660834292,1.0,18.294291885494058,35.492260332190071,1.462773668285597,9.4000000000000004,7.7000000000000002,53.214407130593919,54.007510974230037,54.472534406228007,54.377852280399885,54.306174241942649,54.271627776896352,10.699612213659476,10.66765218034727,10.642823494446507,10.603141705322809,10.531048664264809,10.445153674479279 +1990,4,6,18,0,2,25,17.5,25.429011020317787,77.63876220232007,77.61348170153438,269.04466832337255,0.0,8.0079113236897879,24.995905054879259,1.0,8.0079113236897879,15.474028348316217,1.0739086784275302,8.3000000000000007,4.5999999999999996,23.120993222762113,23.468838749520884,23.672811488900816,23.622382608832257,23.583731227793447,23.565589219503178,4.6776446519650099,4.6596275495380084,4.6495785849617945,4.6340464187574772,4.6047109521047593,4.5694377862040918 +1990,4,6,19,0,0,13,18.5,13.0,87.66865415914049,86.57236363799574,276.0273959009625,0.0,4.0885525205189337,12.774274827411659,1.0,4.0885525205189337,7.9093245868159165,1.5,7.7999999999999998,5.7000000000000002,11.864595505909371,12.045475842419027,12.151569528861932,12.12540642791379,12.105331833180278,12.095931689601443,2.3872630748876724,2.3798889286257019,2.3758911438204713,2.3680217241848425,2.3523686333645712,2.3335536845500293 +1990,4,7,6,0,0,1,5.5,1.0,90.0609077708611,88.65630327304545,82.00131878296503,1.0,0.31450404003991794,0.99240387608929914,0.0,0.31450404003991794,0.0075961164082149479,0.06766162745828908,1.1000000000000001,3.6000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1990,4,7,7,0,8,26,6.5,27.112588222697351,82.59552014819688,82.0057611464753,87.3043085738839,0.0,8.62487706158762,26.723985018964321,1.0,8.62487706158762,16.645937469142098,1.5,1.7,3.1000000000000001,24.250379252886432,24.611292873317222,24.822792969526002,24.820691206301785,24.821307332463498,24.819312580945272,5.0273654595605368,5.0239700388292006,5.0238059915400006,5.0243398047717314,5.0062426907770021,4.9633348390825782 +1990,4,7,8,0,242,129,7.5,211.05526207847453,69.35459025547891,70.17969536283127,96.56012540042275,0.0,66.893082618164257,217.03699799046376,1.0,66.893082618164257,131.70279439408466,1.356827695518614,2.7999999999999998,3.6000000000000001,191.74456154092965,193.07648557259705,193.84219175940257,194.5191313691613,195.0875798530576,195.30438350108636,40.66756976782041,40.118151008891687,39.19388923348221,38.524384895525841,38.082910991838119,37.8448072472981 +1990,4,7,9,0,418,160,8.5,378.12720759090604,56.15741991338459,58.544551113642555,106.877268873466,0.0,114.57448333930715,401.76598894185327,1.0,114.57448333930715,236.80045718346722,1.5,4.4000000000000004,4.5999999999999996,378.37975550705028,379.68257528905497,380.40851482825752,381.8796633388427,383.10573266441088,383.58250289655302,70.033512083333207,70.419341649929763,69.141296753235196,67.412506530674207,65.670787571982302,64.339662477775221 +1990,4,7,10,0,94,256,9.5,319.37771177617935,43.34248102914701,47.60554045978294,119.5649230289418,0.0,97.606975477804625,327.09815524740293,1.0,97.606975477804625,196.98339796245162,1.5,5.5999999999999996,4.0999999999999996,309.16106074647519,312.03468808761568,313.7055297239059,313.94752768591616,314.17074772109117,314.23750434517046,57.932279573210756,58.227476186271474,57.904387349951655,57.204668057607201,56.30294549774495,55.418647804638141 +1990,4,7,11,0,539,248,10.5,671.53103972091606,31.57833210464715,38.20787643462957,136.64162904547666,0.0,197.173414522038,725.95326338972086,1.0,197.173414522038,419.21168981545804,1.5,7.2000000000000002,5.2000000000000002,707.55377264158767,709.13844321148736,709.99543374070129,712.11571213116213,713.88801196639884,714.5718441352675,118.94011751893547,121.29977748263414,120.48561414222861,117.69235407757517,114.07736768096731,110.79101663205357 +1990,4,7,12,0,508,222,11.5,653.20962172341694,22.723408005685897,31.914509653215198,160.32143343450932,0.0,185.15533588342686,712.13885685238131,1.0,185.15533588342686,408.70487513391845,1.5,8.3000000000000007,5.7000000000000002,696.86897325930886,697.8999350492378,698.43205667776874,700.8068982236199,702.78071663006438,703.55213355784895,111.42028567245622,114.18056892625178,113.76003720939154,111.23152164153724,107.64656236038978,104.25219379897112 +1990,4,7,13,0,268,378,12.5,608.24878846777381,20.95899880050947,30.7801467675749,189.07377740343088,0.0,177.01506968210174,648.50198154674842,1.0,177.01506968210174,379.21805156693034,1.5,9.4000000000000004,5.7000000000000002,626.23014045189325,629.01929729850542,630.60414368881129,632.40402250454463,633.90989580688483,634.48893221341609,105.75998362569013,107.67594787243254,107.33431323036741,105.53602809322727,102.9217127280826,100.31726414596386 +1990,4,7,14,0,341,311,13.5,589.25004105461176,27.683618736583128,35.3153721027909,215.28509133297527,0.0,174.89619006153947,629.16493598826355,1.0,174.89619006153947,367.01532506059669,1.5,10.0,6.2000000000000002,608.99696974380049,611.42827872254816,612.80047259093021,614.40630738931054,615.75481510509906,616.26910425086362,104.70795182872179,106.6097132027932,106.16353210491948,104.17694841576706,101.42062345893034,98.779828128862107 +1990,4,7,15,0,575,192,14.5,607.3416123844579,38.67030040242062,43.752545526561704,234.6984428639513,0.0,177.77762354181561,657.8438971179155,1.0,177.77762354181561,379.99656062529715,1.5,9.4000000000000004,6.2000000000000002,640.07146104392837,641.20146639640143,641.79589750576235,644.00400852530538,645.8429293238064,646.55877864422678,107.74915366618389,109.78788389364657,108.79174898896453,106.04214145859136,102.74386178571179,99.766496244834769 +1990,4,7,16,0,796,82,15.5,547.34685812457428,51.193593705843575,54.22479663225797,248.79179558237763,0.0,159.2942300931719,590.31970288574269,1.0,159.2942300931719,340.93905946517657,1.5,9.4000000000000004,7.2000000000000002,569.4223078392323,569.93183103007243,570.16441914528195,571.59673664507432,572.80544034331797,573.26270264814286,97.875921214957287,98.825078176746885,96.928438761995736,93.843598549345401,90.573765919145956,88.254622230166149 +1990,4,7,17,0,580,99,16.5,338.11735237689686,64.28370396519603,65.65240578159857,259.8398002152091,0.0,104.80919344699792,357.73259508417624,1.0,104.80919344699792,212.03396811704914,1.442320781139361,9.4000000000000004,5.7000000000000002,324.57144229726651,325.33931722615932,325.75120483447665,327.15216027913124,328.31991661415174,328.77388926280003,64.911548780779256,64.344806028770151,62.495762738588198,60.697693044028114,59.258584892832204,58.49378958729357 +1990,4,7,18,0,504,46,17.5,155.5641841181581,77.5330265443173,77.4442625441012,269.3948402254191,0.0,53.267827077694804,157.10139610376632,1.0,53.267827077694804,97.835711221744447,1.0404656556556695,7.7999999999999998,6.2000000000000002,116.04064519150216,116.4315224151381,116.64494943604038,117.38866930276279,118.00751387361754,118.24804347882349,31.546975114406727,30.540001365090223,29.925196241447861,30.073987598444123,30.545730441532719,30.780882574272333 +1990,4,7,19,0,73,16,18.5,20.467156347908613,87.65965793192022,86.49165456238225,276.4362082562077,0.0,7.8359465574328642,17.164953218000694,1.0,7.8359465574328642,13.109819303198378,1.5,6.0999999999999996,3.6000000000000001,11.817727561674593,11.98140510989295,12.075663596381645,12.26169500536937,12.414247907935518,12.475594425172874,4.5081710423540171,4.5878200442984793,4.641814994242309,4.704748631483465,4.7214160094790438,4.6411798714943853 +1990,4,8,6,0,11,3,5.5,3.2817175548936959,90.00144196146157,88.53245527673867,81.63735820844889,1.0,1.2224491227466494,2.9772116282678973,0.0,1.2224491227466494,0.023064882382618525,0.323062678431131,-2.2000000000000002,0.0,2.7384015048789818,2.7801431002030061,2.8045114724155904,2.8137158309142056,2.8215001864346339,2.8244070524443288,0.71619883596082023,0.71630283788269655,0.71496426717645856,0.71523824042114748,0.71346307883734794,0.70676364035409656 +1990,4,8,7,0,359,35,6.5,86.647737744094314,82.36744310004892,81.72840792173015,87.04447074411235,0.0,31.911521394808997,83.396091409726083,1.0,31.911521394808997,54.872316910751309,1.5,-0.59999999999999998,2.1000000000000001,52.883028441519158,53.206725622710586,53.386447373093723,53.939012000362659,54.393668385424732,54.574910941333513,17.823475625819881,18.18799212326379,18.615525939098859,19.108235048363973,19.315452009351411,18.967535429243203 +1990,4,8,8,0,671,61,7.5,291.61856677602259,69.12476561020982,69.89791670243875,96.288498684814,0.0,92.858545739817075,305.09162607395842,1.0,92.858545739817075,182.65525693901421,1.3360620492323383,5.0,4.0999999999999996,264.27447143668718,264.77184672931486,265.02940662914705,266.15309817296327,267.09287618118674,267.4550946253371,57.636602922718367,56.307741617392622,54.298220172943957,52.834540363176316,52.014727671745916,51.813136290502754 +1990,4,8,9,0,807,83,8.5,507.64224778625146,55.918383083520204,58.251034356096525,106.59313512101056,0.0,152.52141533059932,543.91973835748774,1.0,152.52141533059932,316.51556038584152,1.5,7.2000000000000002,3.6000000000000001,517.30512269498774,517.87386923661381,518.14478620946329,519.58300097403276,520.79570528394947,521.25562746511957,94.196450070005014,94.484266462374677,92.248232706318376,89.253230152676821,86.333795431830239,84.454886911057869 +1990,4,8,10,0,883,100,9.5,698.93992700222918,43.08032365859294,47.288967855011414,119.27859607838938,0.0,203.66381990760212,754.88077445562556,1.0,203.66381990760212,434.20946087089891,1.5,8.3000000000000007,4.0999999999999996,737.51012631290416,738.29910804019369,738.67848736809015,740.10570207807484,741.32205973084217,741.77133507874396,124.29247814089905,126.01052239122704,124.2173679152131,120.44985681667673,116.15812798631991,112.9387721278466 +1990,4,8,11,0,922,111,10.5,838.95506406125025,31.27125650897501,37.85753808164326,136.40126065248018,0.0,244.21508137838632,910.42500201477014,1.0,244.21508137838632,520.11650147307034,1.5,10.0,5.7000000000000002,897.04976726131213,897.85842488146102,898.23124057356267,899.56150900239231,900.70767920677929,901.11977349850793,147.62210395818585,150.73982830512278,149.63058195888343,145.46942210832705,140.14626270026383,135.68972806400126 +1990,4,8,12,0,936,117,11.5,914.76564324791161,22.354380589753205,31.53577862223534,160.25601615700955,0.0,266.14668538972251,994.7470759169621,1.0,266.14668538972251,566.45369165636339,1.5,11.1,5.7000000000000002,982.61708713825249,983.42280586285722,983.78403924003112,984.9987120390316,986.05607366156164,986.42676169670233,160.29133660139351,164.03523898739402,163.20562293139579,158.8240008053906,152.92661579919081,147.90442780150261 +1990,4,8,13,0,859,109,12.5,849.76182853108457,20.60713851581186,30.418107639969254,189.30184168424157,0.0,247.21751524662605,924.49541714623365,1.0,247.21751524662605,526.31907861067384,1.5,11.699999999999999,4.0999999999999996,913.27291781026554,914.01218647080532,914.34227114256737,915.51193204079402,916.52759759068317,916.88581813784606,148.90157876739946,152.38787981090937,151.61680197004654,147.55016693835597,142.07625659435249,137.40812796566456 +1990,4,8,14,0,820,110,13.5,781.57119633540367,27.442777943666535,35.016257195859055,215.69225263510788,0.0,227.55888815006452,848.84179466361547,1.0,227.55888815006452,484.64473845457229,1.5,12.800000000000001,4.0999999999999996,836.82447156645901,837.60433011992359,837.96744383845828,839.24435451874865,840.34260471862387,840.73913580673491,137.54818198483829,140.44984283819156,139.41855469705919,135.5585308247374,130.61935686621123,126.4755947534978 +1990,4,8,15,0,894,105,14.5,753.32365503205028,38.506553122288146,43.514990875485275,235.1282104362855,0.0,219.42603416618542,815.1231542221866,1.0,219.42603416618542,467.61215715344133,1.5,13.9,5.2000000000000002,799.76544215727472,800.56859081883624,800.94931840681636,802.35137091653235,803.55095857585172,803.98984078658316,133.49021850058867,135.66361179250561,134.04529356992933,130.03959350388592,125.41724937456061,121.72327939440136 +1990,4,8,16,0,839,90,15.5,582.82483343025979,51.06831430932436,54.02759725196296,249.19246986584488,0.0,175.02712110951541,627.15540770033067,1.0,175.02712110951541,363.010228200386,1.5,13.9,6.2000000000000002,605.00558371009288,605.58242802129462,605.8480213628585,607.36258641076608,608.64292160137177,609.12529214468213,107.6205575761681,108.50818965032693,106.3332211308587,102.92585560762555,99.396835057227378,96.942259846071337 +1990,4,8,17,0,741,70,16.5,377.56358426224352,64.17496762353765,65.47655445825053,260.20946286774193,0.0,116.91156851033271,399.2093728801043,1.0,116.91156851033271,235.95276535343712,1.422260785539969,13.300000000000001,6.2000000000000002,363.11575143856101,363.65122958756962,363.91945913745224,365.18266459428497,366.24329184151071,366.64894066296745,72.702269529209289,71.791139061543319,69.493387136678251,67.293446562867814,65.598855117820989,64.834064587737231 +1990,4,8,18,0,519,45,17.5,159.31393389524106,77.42771725239548,77.2758093680363,269.74317564780273,0.0,54.607387353147502,160.20115473403723,1.0,54.607387353147502,100.12610992312315,1.008105800184091,12.800000000000001,3.6000000000000001,118.43489373417276,118.8122933239442,119.01753125402925,119.75430172453751,120.36777609012654,120.60598569285065,32.109894908092585,31.121277518335564,30.604105118807226,30.863639676892937,31.418748959655357,31.650563770999167 +1990,4,8,19,0,86,17,18.5,22.383265018025796,87.65042450813624,86.41116109566825,276.8427835084902,0.0,8.8013871306491573,18.618092186197625,1.0,8.8013871306491573,14.311599149886419,1.5,10.6,1.5,12.672168809699945,12.846625675903647,12.946866076103381,13.141048556275154,13.300438192394823,13.364408071028251,5.0846802879780171,5.1862928398124915,5.2421963792673072,5.2918258381939918,5.2854969398981488,5.1834525009090582 +1990,4,9,6,0,0,3,5.5,3.0,89.94142746492957,88.40841012448573,81.2750829811878,0.0,0.94351212011975361,2.9772116282678973,1.0,0.94351212011975361,0.022788349224644844,0.5774852806801185,0.0,0.0,2.737983578286781,2.7797251944043939,2.8042083528142956,2.813505878582562,2.821290369913839,2.824270439415355,0.55349647197456253,0.55382448689011854,0.55290509953470657,0.55367938843383169,0.55325717775607197,0.54892782656680827 +1990,4,9,7,0,143,50,6.5,71.252465317708598,82.14127456438837,81.45311687105702,86.78524662846165,0.0,24.986759279667922,69.271544073839465,1.0,24.986759279667922,44.608905899892228,1.5,1.7,0.0,52.490934057569667,53.052286872446203,53.37641683684614,53.660663856772572,53.896833255704124,53.988791236640473,14.204501235439112,14.401960942481809,14.612260380085623,14.841838043315022,14.900951752336464,14.673206690663848 +1990,4,9,8,0,447,102,7.5,257.67523220100509,68.89744591254119,69.61866229831539,96.01691602010898,0.0,81.8947141411319,267.13747101641223,1.0,81.8947141411319,161.33090070230807,1.3159400661145426,9.4000000000000004,2.6000000000000001,233.81700280826485,234.74039786457519,235.2566562317048,236.2456242405085,237.07208255951593,237.39088289410012,50.372504705417647,49.316844764906058,47.791835287524918,46.762670588076851,46.196384417120221,46.058474341361325 +1990,4,9,9,0,616,145,8.5,471.7919672150029,55.6823329018234,57.96032065480003,106.30821568032724,0.0,142.34925344975022,502.73502940414653,1.0,142.34925344975022,295.41202239064262,1.5,12.800000000000001,4.5999999999999996,475.73443268369994,476.80859004731002,477.3856736641647,479.18373353442803,480.68429889198239,481.26647877250593,87.73277060556461,87.837798745501033,85.799863559266825,83.313748500230034,80.987525708772637,79.449157442218265 +1990,4,9,10,0,712,178,9.5,663.806645036595,42.82164380051909,46.975368723442,118.99021549402758,0.0,199.82891111944244,715.69323669172297,1.0,199.82891111944244,414.49425124146956,1.5,15.0,5.2000000000000002,695.69866800022658,696.79405671913173,697.35786956815764,699.46939661444947,701.23878270576824,701.91818584684768,122.01953099480315,123.56985025233979,121.75234078903628,118.30619275216122,114.44104959260477,111.45453455708997 +1990,4,9,11,0,749,210,10.5,804.14177818583789,30.967867210310878,37.510035704962185,136.15742741305718,0.0,234.67308590154593,872.04721823903446,1.0,234.67308590154593,501.4035256686048,1.5,16.100000000000001,5.7000000000000002,854.76698358187753,855.86997353747813,856.42273523290692,858.722557297908,860.65221119872285,861.39072726803886,142.32419664664226,145.0445986301693,143.68204294183187,139.77704348742733,135.10404380105038,131.04854339957765 +1990,4,9,12,0,685,256,11.5,842.17596056650348,21.988066172261057,31.15937695985272,160.18816216284517,0.0,246.02060734720641,914.23958274748975,1.0,246.02060734720641,525.03080904473052,1.5,17.199999999999999,5.7000000000000002,896.72212491359062,898.0140227724354,898.67437428678875,901.05766962121686,903.05686995523047,903.82219800894268,148.67294015117807,151.80017913328462,150.724538512723,146.90839610895219,142.00114610444194,137.67175790737699 +1990,4,9,13,0,712,233,12.5,849.24705258708627,20.258037511714853,30.05837650101893,189.53207861202185,0.0,247.65255427631575,923.81935890641125,1.0,247.65255427631575,529.38977832767523,1.5,17.800000000000001,6.7000000000000002,907.55311701479832,908.61594630532909,909.13888071308247,911.51589768678696,913.51053971489375,914.27357863123723,149.76332367633168,152.98387333777001,151.88038432800121,147.93582573691558,142.8727957878217,138.43538224679881 +1990,4,9,14,0,701,229,13.5,805.18491137916158,27.205685326098738,34.71981722442748,216.10203700765865,0.0,235.11151980573561,873.58467040533037,1.0,235.11151980573561,502.1908879498049,1.5,18.300000000000001,5.2000000000000002,856.41094235850744,857.58949609822275,858.18714915201076,860.54105674130619,862.51460079117339,863.2712026110629,142.56159887490352,145.27275698979284,143.91664786033877,140.04520420655177,135.40999494344007,131.37055372049389 +1990,4,9,15,0,645,229,14.5,698.56881364585479,38.345668020475486,43.27987000061667,235.55848562316615,0.0,210.65095913753262,752.46028728324222,1.0,210.65095913753262,436.22963153609794,1.5,18.300000000000001,5.2000000000000002,732.16112414932866,733.63896365647781,734.42609401881168,736.67124857774229,738.55088079070936,739.27384798605783,128.05850575522206,129.9401638346578,128.35233432846906,124.97847688886436,121.07795610071405,117.8258156507143 +1990,4,9,16,0,471,222,15.5,499.96125211366132,50.94487340208708,53.832255892443285,249.59227346646637,0.0,151.55090440974166,530.39082593245666,1.0,151.55090440974166,312.44118188678931,1.5,18.300000000000001,6.2000000000000002,505.86871639175962,507.64600619387107,508.63845603668886,510.35358871279124,511.78841193570184,512.34155081558697,92.556710526748574,93.032197286137603,91.358373163659962,89.059640924377646,86.733074855332433,84.983724241027701 +1990,4,9,17,0,358,166,16.5,315.58518554708644,64.06726730741408,65.30197772614345,260.57757263979784,0.0,98.187867851711971,326.77152205906305,1.0,98.187867851711971,196.48980666182709,1.402589009731077,17.199999999999999,6.2000000000000002,298.42373519369721,300.07472686736736,301.0166424490647,301.86044159344567,302.57393367753218,302.84193077228952,59.974096995229786,59.337347754763691,57.934552646504024,56.658616344051921,55.681676757790157,55.152362961238588 +1990,4,9,18,0,13,69,17.5,71.900455987593034,77.32280641130215,77.10811828667939,270.0895506106383,0.0,22.857402751266193,70.766595848781776,1.0,22.857402751266193,43.866102799327223,1.5,15.6,6.2000000000000002,64.483068918086119,65.406057532407758,65.946731456699055,65.841775881695156,65.763077436839509,65.724363549310837,13.347844418227879,13.27003563215214,13.231387535472514,13.20535679256257,13.152144690767386,13.066877010103052 +1990,4,9,19,0,2,14,18.5,14.127988553599778,87.64093861405436,86.33089078380374,277.2470054226254,0.0,4.476725492125345,13.840622621156024,1.0,4.476725492125345,8.5972692809593916,1.5,14.4,6.2000000000000002,12.795286318834442,12.990080363020377,13.104302859548904,13.076381460787632,13.05498536415069,13.04493794431197,2.6130512002478192,2.6063516999427603,2.6027822424868523,2.5943574638375826,2.5767541001638565,2.555149483921928 +1990,4,10,6,0,7,4,5.5,4.2095742815563044,89.88103477563445,88.28435479791851,80.91456154981577,0.0,1.4593164490801334,3.9841498379377396,1.0,1.4593164490801334,0.030384465632859792,0.7974539490871742,11.1,7.2000000000000002,3.651127177840924,3.7067829691850087,3.7393444165881919,3.7516733764381587,3.7620531109363999,3.7659733443368371,0.85582972312603323,0.85593388144922056,0.85416456226310777,0.85464833900377801,0.85300759074161348,0.84560142497435076 +1990,4,10,7,0,87,53,6.5,66.339737617171309,81.91714584744511,81.18002703662877,86.52666148167263,0.0,22.572859157942855,64.631144906621358,1.0,22.572859157942855,41.193735136250382,1.5,11.699999999999999,5.7000000000000002,52.384824152682029,53.022782058033911,53.393547163858926,53.542807751551734,53.669249918424157,53.716164211732114,12.927990128157269,13.05664181329707,13.192940215101391,13.327848661317955,13.33791868827041,13.151064501947129 +1990,4,10,8,0,351,103,7.5,226.8286517181773,68.67274131548665,69.34205211220333,95.74541037491342,0.0,73.633928401003118,234.6498570380692,1.0,73.633928401003118,142.38208788294472,1.2964328083719976,15.0,7.7000000000000002,205.92380997251246,206.85302643783643,207.37648951002177,208.37966707392178,209.2148489808244,209.53966396224479,45.13551234638053,44.166839305699227,42.855141367311937,42.0724736327047,41.698579634553148,41.617300901873307 +1990,4,10,9,0,703,122,8.5,497.93453367144946,55.44938053333922,57.672531766098615,106.02254321626486,0.0,149.90575974070691,530.75947365572324,1.0,149.90575974070691,311.21339201179143,1.4966948029494254,17.800000000000001,8.1999999999999993,504.02118003583968,504.85355969806182,505.28297525884011,506.96856459046597,508.38106253366578,508.92417729981327,92.725416763453893,92.5910255094321,90.201492037278214,87.391433488817825,84.82228997583023,83.256445754998538 +1990,4,10,10,0,368,233,9.5,485.54531168332414,42.566563680588736,46.66487097751617,118.6997904996966,0.0,147.13567142486662,518.13797133410424,1.0,147.13567142486662,304.20178779583495,1.5,19.399999999999999,10.300000000000001,498.57648140011236,500.26076864796983,501.1996739384266,503.13619887714196,504.74805481838996,505.3763371007758,89.556059086767959,90.422907345982225,89.106393237452139,86.991414471797668,84.68023922620219,82.794880812224633 +1990,4,10,11,0,36,322,10.5,350.68817733605033,30.668311306986453,37.16550105960566,135.91005970310704,0.0,107.68278023549445,357.68531845447825,1.0,107.68278023549445,216.63349432506519,1.5,19.399999999999999,8.8000000000000007,337.20527833720155,340.64096893948158,342.64266368596333,343.03838035526087,343.38874195008424,343.50558539770645,63.788337579628255,64.065536240043457,63.750983032704816,63.121720623543403,62.283837531301835,61.38844018964874 +1990,4,10,12,0,21,410,11.5,428.0408937720461,21.624602192839568,30.785418716623962,160.11771151668043,0.0,132.48318054145156,431.13502656533126,1.0,132.48318054145156,262.68041799196556,1.5,19.399999999999999,8.1999999999999993,405.05965704970521,409.83302113169981,412.6217521896649,412.51311956850424,412.46156573922713,412.40534559301017,78.026541283124118,78.194968448591041,77.932655830181446,77.322405308728904,76.433756800541062,75.475504823812969 +1990,4,10,13,0,48,318,12.5,359.69388216898631,19.9117910037918,29.701037204724354,189.76435965319254,0.0,109.05861313873122,368.21327957183962,1.0,109.05861313873122,222.2688645486617,1.5,19.399999999999999,8.1999999999999993,348.00849840605758,351.39777149561274,353.37116932807237,353.79808725303536,354.17388667248719,354.30112136706271,64.561915091336914,64.949854707310962,64.688691993780395,64.049932043756755,63.15018885572519,62.173148214025453 +1990,4,10,14,0,14,375,13.5,386.54798455681811,26.972373436825727,34.42610131328318,216.51426291142783,0.0,119.8695192866717,388.20820872669401,1.0,119.8695192866717,237.0790707028639,1.5,19.399999999999999,9.8000000000000007,364.09571787237928,368.53294979927625,371.12677808138005,370.98466011689186,370.90247866261655,370.83687436518187,70.530852012943853,70.643767692831901,70.420881167778973,69.913558810594026,69.158623346590844,68.329557681425925 +1990,4,10,15,0,1,287,14.5,287.73079167489624,38.18761922873222,43.04719592965521,235.98907202231206,0.0,89.65394567911693,286.90880337825695,1.0,89.65394567911693,176.20651522317846,1.5,20.600000000000001,7.7000000000000002,267.86927929663648,271.40891017413639,273.48071953182972,273.28985893888864,273.1599389262874,273.08240088021046,52.667722004562847,52.646176306539907,52.475826111676596,52.168788962862322,51.693416591027116,51.162586384665467 +1990,4,10,16,0,83,274,15.5,323.20855397424549,50.82323127976619,53.63876742039865,249.99103936249838,0.0,99.984607943510497,329.12039723597411,1.0,99.984607943510497,199.36533927052622,1.5,21.100000000000001,12.9,309.29945931018949,312.28009760981445,314.01372880715132,314.26717201316029,314.50111066202078,314.5711587303781,59.635970151018036,59.630691440474124,59.04571270764189,58.278157994927732,57.418587425980839,56.683911358044305 +1990,4,10,17,0,79,166,16.5,199.22597335870626,63.96056590992384,65.12866667777354,260.9439894667431,0.0,62.919869121025016,200.72413901860838,1.0,62.919869121025016,122.70295282708337,1.3833010136058705,21.100000000000001,9.3000000000000007,184.82375519007954,186.77847249070797,187.91696653446871,188.01139939928515,188.10605871591693,188.12811890521712,37.552382257111454,37.267374748437064,36.786677807135717,36.357775734711538,35.968258321381718,35.682306236361008 +1990,4,10,18,0,68,89,17.5,104.36467659283832,77.21826682243558,76.94118589166649,270.4338419123259,0.0,33.966343484418388,103.11473286691526,1.0,33.966343484418388,64.206124692187132,1.5,21.100000000000001,8.1999999999999993,89.916518805616235,91.00647025220232,91.642497670665236,91.668857863994901,91.699729131859058,91.703348079432033,19.804382924624583,19.596548334514491,19.510238047140508,19.557267028083228,19.608955732115792,19.538659464804319 +1990,4,10,19,0,31,28,18.5,30.027037475194636,87.63118522835046,86.250851150462,277.6487581874379,0.0,10.43362259732905,27.375140174219091,1.0,10.43362259732905,18.657323854834029,1.5,20.0,8.1999999999999993,22.97963647142371,23.320071161539957,23.518535804508531,23.592133646980834,23.654468790042742,23.677652919431203,6.0986522000632899,6.1429116478812915,6.1529569558173609,6.1489297046669318,6.1083747799525741,6.0230988046846434 +1990,4,11,6,0,0,1,5.5,1.0,89.82042082159674,88.16046247193223,80.55586301471263,0.0,0.31450404003991794,0.99240387608929914,1.0,0.31450404003991794,0.0075961164082149479,0.9886378767445763,16.100000000000001,5.2000000000000002,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1990,4,11,7,0,20,42,6.5,45.159964932511755,81.6951842127089,80.90927364879362,86.26874237393285,0.0,14.620914638961025,44.292414091992107,1.0,14.620914638961025,27.746131940874772,1.5,16.100000000000001,4.5999999999999996,39.255507029338517,39.81413218117293,40.140945280833655,40.142840496964588,40.148204593813524,40.146689917594905,8.4805422705310374,8.5008186813281998,8.5256750099265624,8.5439577162094285,8.5143789964682632,8.4253292270398923 +1990,4,11,8,0,337,90,7.5,210.39539785476077,68.45075959622883,69.06820417813255,95.47401729413274,0.0,68.367642616920676,217.48980348494501,1.0,68.367642616920676,132.11594143144742,1.2775129380418568,16.699999999999999,6.2000000000000002,191.0021996176564,191.7977247584686,192.24385076805436,193.18919346794999,193.97593610519056,194.28207181870718,41.909596156631707,40.932960394494216,39.689659349717459,38.979433457509892,38.682250658480349,38.645476942291026 +1990,4,11,9,0,8,185,8.5,189.3116027160757,55.21963447762528,57.38778753965027,105.73615415205938,0.0,59.256804591877966,187.9426141061073,1.0,59.256804591877966,115.73594383908383,1.4822900211341898,17.199999999999999,7.2000000000000002,174.84526497640513,177.22221602347145,178.61390861472356,178.41983062355735,178.27907242797565,178.20496932360703,34.837235392614595,34.735215130941668,34.577416333815286,34.370312371167934,34.077142968734613,33.772844249606777 +1990,4,11,10,0,37,281,9.5,306.53574405601546,42.31520272464199,46.35760090853536,118.40733548764419,0.0,94.277885755054527,311.23494063879616,1.0,94.277885755054527,189.1871166083923,1.5,16.699999999999999,6.7000000000000002,292.50631203406454,295.59400577470217,297.39408418344919,297.68224333299543,297.94210831445059,298.02473275802004,55.935996115523409,56.035048028322024,55.65452180886647,55.094706249573598,54.393979629362811,53.69772781523438 +1990,4,11,11,0,8,315,10.5,321.40383761049793,30.372734186021276,36.82406509807497,135.65909238304576,0.0,99.965100227443401,321.37202154834216,1.0,99.965100227443401,196.96049249794626,1.5,16.699999999999999,6.2000000000000002,300.6094711956232,304.46319278124247,306.71778593268908,306.5477178330579,306.43745508763197,306.36538328059743,58.760616492700045,58.78286498432778,58.595508706196064,58.223247163935135,57.659324605335009,57.028073561144048 +1990,4,11,12,0,11,331,11.5,340.48628824198164,21.26412676072096,30.414017645114246,160.04450233199947,0.0,105.81707460116884,341.01487388601947,1.0,105.81707460116884,208.76671181131448,1.5,15.6,5.2000000000000002,319.2154314382181,323.25192094821358,325.61294018458028,325.47074447361194,325.38459574115103,325.32104165788382,62.19963960894826,62.263114442190293,62.080948863491052,61.68298916133886,61.071838304940094,60.378292484569961 +1990,4,11,13,0,7,364,12.5,370.10172230236316,19.568492839911226,29.34617248718852,189.99855095686343,0.0,114.97039644117818,370.97397879037413,1.0,114.97039644117818,227.0110784503546,1.5,15.6,5.7000000000000002,347.34462494087603,351.7042020770179,354.25389443953708,354.1286146674272,354.05868111411604,353.99944425544675,67.598019237259138,67.678271509035753,67.477168215507149,67.038211261050762,66.367443979131224,65.605559345453187 +1990,4,11,14,0,6,344,13.5,348.966297033388,26.742870517044985,34.135156531156476,216.92874303352409,0.0,108.4742815068026,349.31719545628295,1.0,108.4742815068026,213.94506396497667,1.5,15.6,9.3000000000000007,326.89939740227464,331.04849088150661,333.47550897365966,333.32271976489176,333.22880145746444,333.16126180748472,63.785730397948598,63.822137419114114,63.613688316183719,63.200220165471578,62.578886235577556,61.884073653106284 +1990,4,11,15,0,292,318,14.5,532.19031518920849,38.03237806322899,42.81697987238899,236.41977094200956,0.0,158.73597577924465,561.40166564473407,1.0,158.73597577924465,331.6621511580127,1.5,15.0,8.8000000000000007,539.4361014604051,542.06216500366122,543.55787861284011,545.08835870377482,546.37409256502815,546.86437797840097,95.921120317717339,96.743363327708423,95.589199303020592,93.593090268522928,91.36610595196116,89.489462113730326 +1990,4,11,16,0,147,151,15.5,238.54796030011499,50.70334718250346,53.44712579353584,250.38860033532941,0.0,72.931554772878997,249.36527465034183,1.0,72.931554772878997,149.32315539121208,1.5,13.9,9.3000000000000007,235.46008228095241,236.87416016468322,237.68520042698424,238.61194638574233,239.38422926986709,239.68438813253391,44.262413716092446,44.316423548461657,43.58636947073235,42.75501763231658,41.952068446792829,41.310328629985996 +1990,4,11,17,0,354,165,16.5,314.84977488865911,63.85482639790343,64.95661234334843,261.3085738086068,0.0,99.902078959509112,324.94708565412122,1.0,99.902078959509112,196.0483913672123,1.364392574280834,13.300000000000001,9.8000000000000007,297.06101792020138,298.70007347506919,299.63472197057331,300.48131549434379,301.19772041866969,301.46631128816233,61.028424431589229,60.15303991289791,58.615235496070483,57.392745564498902,56.545799320399446,56.15041194468008 +1990,4,11,18,0,163,80,17.5,117.29040550768849,77.11407208529755,76.77500932185256,270.77592716680647,0.0,39.299858693211263,116.70808242199099,1.0,39.299858693211263,73.363946843574382,1.5,11.699999999999999,8.1999999999999993,95.774329816746615,96.642347600055643,97.144446246880847,97.585956685872787,97.954618631059347,98.096739999264628,22.826518458301884,22.509245646453543,22.412619517449741,22.644999103844203,22.931596007997797,22.918802349443602 +1990,4,11,19,0,62,16,18.5,20.140239611724901,87.62114964138286,86.17104974878033,278.0479264236399,0.0,7.8421072515375743,17.469581876893741,1.0,7.8421072515375743,12.676124375728662,1.5,10.6,8.8000000000000007,13.202062183427028,13.390806524533202,13.499920225645479,13.60471103942989,13.691623532230061,13.725671727166993,4.6088678401943621,4.6642778922160231,4.6688889500271102,4.6583906014192884,4.6147859873535699,4.5328975467792239 +1990,4,12,6,0,6,6,5.5,6.2055357844538834,89.75973019461749,88.03689376618543,80.1990571673002,0.0,2.076330919152912,5.9795841779736554,1.0,2.076330919152912,0.045576698449289688,1.1561046456019133,2.2000000000000002,3.6000000000000001,5.4768790453439999,5.5603624779766889,5.6092499858846425,5.6277823948732379,5.6433509041544268,5.6492618997423785,1.2179434867746817,1.2186578942072379,1.2164439996199068,1.2172789897318788,1.215083045785706,1.204606271986451 +1990,4,12,7,0,285,46,6.5,92.346741466022081,81.47551305618263,80.6409883140649,86.01151826198722,0.0,34.006658922475467,88.347107039301861,1.0,34.006658922475467,58.148346896251844,1.5,5.0,3.1000000000000001,61.411554954744545,61.868418781778715,62.126300858055984,62.601968649376424,62.99462053152908,63.149809389033635,19.128737702085783,19.58400020702792,20.023118079101362,20.416036082060117,20.483133710006715,20.049303425974877 +1990,4,12,8,0,589,82,7.5,295.02337660446358,68.23160606999708,68.79723452592833,95.20277498075751,0.0,96.350659224478548,305.49925077553883,1.0,96.350659224478548,185.00061048463408,1.2591546207229563,8.3000000000000007,3.1000000000000001,267.6467430512289,268.2932548501476,268.63952132665429,269.85643730953825,270.87230191424186,271.26464841990469,59.335857531362215,57.636928347892002,55.644928492747702,54.527243473296657,54.116471028831988,54.172458795506834 +1990,4,12,9,0,737,112,8.5,512.25254374666679,54.99320045886678,57.10620582701164,105.44908879554451,0.0,154.07490997514708,544.46964193067311,1.0,154.07490997514708,319.8509962453889,1.468188507556172,10.0,6.2000000000000002,518.41381566537768,519.14165070491424,519.5069945292978,521.12604957863482,522.48655108258743,523.00629462834149,95.643650903659974,94.988399749510847,92.235755513493089,89.287334126963785,86.72509102354843,85.371589605082335 +1990,4,12,10,0,811,129,9.5,691.82109104608332,42.06767740485575,46.05368308557667,118.11287026979917,0.0,207.8914641320859,743.70676492980601,1.0,207.8914641320859,430.95817021570713,1.5,11.699999999999999,8.1999999999999993,725.94982441205377,726.7545991119905,727.14143725835265,728.96496284433147,730.50549391599498,731.08668763336937,127.74920371211566,128.792492183668,126.24259677692108,122.25826932715438,118.12859373213281,115.24071216782254 +1990,4,12,11,0,448,229,10.5,589.19363700614304,30.08127932937312,36.48585789521815,135.40446524134995,0.0,173.01588843779766,633.64976836766527,1.0,173.01588843779766,368.46598006062925,1.5,11.1,4.5999999999999996,617.02007481641169,618.42137106213806,619.17986185524205,621.27027054446444,623.01400487864873,623.69042097874694,105.29986191481767,106.72227851554246,105.34093695346689,102.62983790632468,99.529374801165574,96.998324173657963 +1990,4,12,12,0,705,224,11.5,834.26909920505841,20.90677867734451,30.04528719729281,159.96837098160705,0.0,243.19094705748495,904.360614659166,1.0,243.19094705748495,520.13654207751108,1.5,11.699999999999999,7.2000000000000002,888.53208182383321,889.52515950729617,890.0085472197826,892.36978577359719,894.35295129614667,895.11044635340568,148.0275947939835,150.51782719163998,148.74064018894933,144.4843801858236,139.57983246011975,135.51750740074252 +1990,4,12,13,0,667,245,12.5,828.40597209620717,19.228235447700595,28.993863964850497,190.23451320113395,0.0,241.73418259492399,897.42880993215999,1.0,241.73418259492399,516.60034559458586,1.5,12.199999999999999,4.5999999999999996,880.95052335164382,882.07620605091574,882.63937148031971,885.03130790112789,887.03882919924342,887.80682703234379,147.07227207421107,149.51932575274185,147.77464555993234,143.61458895466063,138.81668437327653,134.82053251353506 +1990,4,12,14,0,432,257,13.5,615.78791742315286,26.517200445724068,33.847027895875414,217.34528425965513,0.0,185.9471811262938,662.40407162591214,1.0,185.9471811262938,385.16292465096035,1.5,11.699999999999999,7.2000000000000002,644.97611946779659,646.51421590806012,647.34840753207993,649.55764139144856,651.40081800928942,652.11532753096628,112.94633841457907,114.58422472923289,113.2238350566692,110.39054414100056,107.10917353538854,104.30669142752414 +1990,4,12,15,0,462,246,14.5,586.13562323357473,37.87991312709465,42.58923127879141,236.85038150793665,0.0,177.23596224255647,626.37486928773046,1.0,177.23596224255647,366.41969514731898,1.5,13.300000000000001,5.7000000000000002,606.94612711471939,608.63175891830133,609.55794380585678,611.59888996387281,613.30453869669827,613.96339946767193,108.05244133702294,109.11145092615885,107.44209537130926,104.68028694050712,101.66869831639509,99.3112899516357 +1990,4,12,16,0,513,194,15.5,500.88797378053692,50.58517940805044,53.257324140619346,250.78478904962904,0.0,151.52786734183513,530.5001284133258,1.0,151.52786734183513,312.96483034687805,1.5,13.300000000000001,6.2000000000000002,507.36250878089959,508.86702148584777,509.69675837090352,511.38423364939865,512.79797910496052,513.3415179409136,93.182860110447251,93.069329226541242,90.9104597954057,88.406627259877069,86.097326268229779,84.614935055309644 +1990,4,12,17,0,330,158,16.5,298.58113414914419,63.750011907550515,64.78580576745685,261.67118669955966,0.0,94.733970810129819,307.65347958053161,1.0,94.733970810129819,186.00027570892752,1.3458596721581046,12.199999999999999,5.7000000000000002,281.32408837537707,282.89721484554968,283.79494951729043,284.62751488095211,285.33084901732468,285.59545312206774,57.845870655116663,56.94044983147635,55.466186995262497,54.356772225380077,53.625426048014347,53.301362774955528 +1990,4,12,18,0,378,69,17.5,156.53918373894766,77.01019667704749,76.60958633076865,271.1156848407445,0.0,55.077985703781614,155.25694896456622,1.0,55.077985703781614,98.218571208181814,1.5,11.699999999999999,3.6000000000000001,120.51608352147952,121.18191342966276,121.55795307851407,122.23547034327112,122.79973146134637,123.01857362239443,31.722002901768736,31.14070746796968,31.055328640289801,31.568533865654256,32.176365130137405,32.226873657554499 +1990,4,12,19,0,14,12,18.5,12.954287602480965,87.61081751114168,86.09149421004767,278.44439519281156,0.0,4.4491308612640195,12.256897782470105,1.0,4.4491308612640195,8.0763296086811085,1.462210451024193,10.0,4.0999999999999996,10.585759906794319,10.744191984325164,10.836733639784876,10.878512220497061,10.913540315436171,10.926905427811258,2.6161570481950651,2.6265219732100098,2.6218289207605014,2.6174161853599065,2.6029055724870482,2.5726706891064124 +1990,4,13,6,0,19,7,5.5,7.6916579606253359,89.69909628764137,87.91379790215778,79.84421452689783,0.0,2.8249196001910413,7.0466101236685406,1.0,2.8249196001910413,0.053172814857504636,1.3037844404301735,-0.59999999999999998,0.0,6.3926716023695676,6.4900704771911819,6.5469370705318575,6.5684251674659171,6.586586229831088,6.5933791358633593,1.6555021472391152,1.6577477027913401,1.655116548315831,1.655080459494066,1.649469536936139,1.6328790757920684 +1990,4,13,7,0,381,40,6.5,103.70083963649293,81.25825204628553,80.37529916633108,85.75502005604861,0.0,39.081910301814261,98.512445880688688,1.0,39.081910301814261,65.580908826484531,1.5,2.7999999999999998,0.0,65.357946061940652,65.721829056617523,65.922022796080967,66.550495256761423,67.067632107398339,67.27355772301155,21.892657125882788,22.517752303810152,23.101484948129286,23.593661214674604,23.667282827877418,23.104102233543447 +1990,4,13,8,0,668,67,7.5,311.50541959099701,68.01538350493519,68.52925710451598,94.93172437254579,0.0,101.87656725563339,322.03370822126004,1.0,101.87656725563339,195.1165897001971,1.2413334361192874,6.7000000000000002,3.1000000000000001,282.57170116711973,283.1153641632992,283.39849684624141,284.60058806762169,285.60632627466106,285.99255250634411,62.7223694018885,60.751577037226895,58.600004488838103,57.442232114915463,57.089245201024625,57.24428780358415 +1990,4,13,9,0,786,99,8.5,529.06435184771817,54.770181316829365,56.82790238934619,105.1613914592779,0.0,163.80502019824883,561.38964436022889,1.0,163.80502019824883,330.12907772020992,1.4543824743201759,8.3000000000000007,3.6000000000000001,535.23052397597894,535.93382538830349,536.28080788802856,537.87211035305336,539.21321264148798,539.72195637990387,101.70519222407518,100.88062334380378,97.882252946754534,94.725474778700786,92.039016774656417,90.660067346708928 +1990,4,13,10,0,843,125,9.5,713.20320756252409,41.824101084649556,45.75324025166285,117.81642032559381,0.0,214.24380419960244,765.74642582358899,1.0,214.24380419960244,444.04655070271639,1.5,9.4000000000000004,1.5,748.14180307411573,748.90541085879852,749.26486216811918,751.05998872876967,752.58038011749647,753.15096233554902,132.02169352578622,132.75020491373132,129.84213431526709,125.61280901903748,121.37477297447548,118.52709697565831 +1990,4,13,11,0,867,148,10.5,848.07217357386014,29.794088109847497,36.151008568381975,135.14612345353007,0.0,254.62895150668916,915.85103561567814,1.0,254.62895150668916,527.27426607209577,1.5,10.6,3.1000000000000001,901.32676431266168,902.11591471848794,902.47236797364076,904.34241699393795,905.93305735043521,906.52328750113838,155.71649848653837,157.69787440236956,155.25466509741082,150.4402213797423,145.04638447415059,141.07808367106807 +1990,4,13,12,0,847,152,11.5,887.88216184743499,20.55269745581092,29.679340520828777,159.889152332934,0.0,258.18007724323076,961.76279511501548,1.0,258.18007724323076,551.6483094239494,1.5,11.699999999999999,4.0999999999999996,948.68880928852752,949.39215115482136,949.69592841339681,951.51993985977015,953.07268349458866,953.64764799715181,157.22896801266077,159.86893481418375,157.92672030982837,153.13288674154106,147.61194167341563,143.19279354572629 +1990,4,13,13,0,869,166,12.5,928.64613160444594,18.89110977936737,28.644192133947378,190.47210143943704,0.0,270.13407203559672,1005.6973779903102,1.0,270.13407203559672,576.82932957388357,1.5,12.199999999999999,4.0999999999999996,991.97051832171519,992.76178091948259,993.11265319054371,994.97093626845333,996.55491095274056,997.13963968997211,164.46991660384455,167.21181204685377,165.18839095262089,160.18934480509267,154.42947741327333,149.82237816998656 +1990,4,13,14,0,861,160,13.5,877.46304472669101,26.29538269764949,33.56175838275125,217.76368765503915,0.0,255.40962725928443,948.25570380486033,1.0,255.40962725928443,545.42934263355392,1.5,12.800000000000001,3.6000000000000001,933.80746501716249,934.64642968526596,935.03241227246781,936.92945918036571,938.54177375681684,939.14121148761581,155.98009407452338,158.18039500198148,155.90248139657947,151.12562568453774,145.69110200874991,141.61206564034507 +1990,4,13,15,0,831,146,14.5,760.00875367545075,37.730190418682014,42.363957900526465,237.28070077361576,0.0,228.39004401995589,817.16099895464777,1.0,228.39004401995589,473.14030471997853,1.5,14.4,4.0999999999999996,800.29645786768822,801.18807652450437,801.61752781194468,803.51718437465911,805.12566330820198,805.72935204333112,140.3228592868148,141.45440308267413,138.65515582031975,134.26412760327563,129.7092516657539,126.53825950816976 +1990,4,13,16,0,427,185,15.5,441.56203531172821,50.46868542602544,53.069354842900864,251.1794381332274,0.0,137.03668961185429,466.97985076909197,1.0,137.03668961185429,276.40984211887707,1.4885278831367814,14.4,3.1000000000000001,445.8343914895496,447.25383046820315,448.03925017392282,449.71035556802576,451.10615247871982,451.64628175028804,84.279380024860146,84.0874258773447,82.12257051329081,79.946116587012895,77.951847737411953,76.671094592197448 +1990,4,13,17,0,465,135,16.5,334.3357832115239,63.6460858393309,64.61623808552356,262.03168979694186,0.0,103.79889959193582,346.99327491855774,1.0,103.79889959193582,209.19220845599281,1.3276984774635985,14.4,2.6000000000000001,316.58768013141241,317.76285413471464,318.4198406435238,319.65499490287038,320.68766667868988,321.08563751229929,63.899233681303997,62.587656796718704,60.63962728865512,59.29535173814125,58.540009907430537,58.3222195322709 +1990,4,13,18,0,416,56,17.5,153.50212180679324,76.90661603009589,76.44491535256026,271.4529942906776,0.0,54.641474666733266,152.149708601849,1.0,54.641474666733266,96.864923483743937,1.5,13.300000000000001,3.1000000000000001,115.72285649680376,116.21227601220973,116.48338133431302,117.33638472912321,118.04241397915206,118.32030973083974,31.262139868882983,30.755327556818703,30.77200161592194,31.443464021900557,32.171242879598751,32.183981700664432 +1990,4,13,19,0,83,18,18.5,23.772168179300078,87.60017491599464,86.01219228945918,278.8380500075736,0.0,9.9616191631057802,19.472155681609788,1.0,9.9616191631057802,15.202696679515087,1.3981767815669137,10.6,3.6000000000000001,13.338444267600803,13.522278802220232,13.627554566350486,13.834482463977384,14.004726182204461,14.07272903168019,5.9370490374935097,5.996169186840663,5.964947243980272,5.9261063021854561,5.860630495679235,5.7610359650798033 +1990,4,14,6,0,1,7,5.5,7.0385393004381642,89.63864233091404,87.79131375717928,79.49140637503353,0.0,2.2358833688690183,6.9531339719168548,1.0,2.2358833688690183,0.053172814857504636,1.4347731539564101,6.0999999999999996,3.6000000000000001,6.3889150264625787,6.4863122822921637,6.5434252668909938,6.5651080648585731,6.5832717638735385,6.5902163804563063,1.3114499962091013,1.3123245053307877,1.3102088840508277,1.3119642812066992,1.3107641195942963,1.300290074058305 +1990,4,14,7,0,4,26,6.5,26.686868338748717,81.0435172343564,80.11233098729426,85.49928068231233,0.0,8.457209949579596,26.177742566907988,1.0,8.457209949579596,16.24449370382353,1.5,6.7000000000000002,1.5,24.101015138730034,24.462773093719171,24.674837539256028,24.623566656442879,24.584325960054336,24.565844796570918,4.9293238894177707,4.9200024910102798,4.917261773214066,4.9048889860200884,4.8729786908904442,4.8303230514483255 +1990,4,14,8,0,28,167,7.5,177.36907913123184,67.80219203811806,68.26438370512315,94.66090921326916,0.0,56.19598536213649,175.85327998217346,1.0,56.19598536213649,108.45810149708343,1.2240262948633454,8.3000000000000007,3.1000000000000001,161.69850629310508,163.76597491028338,164.97488341901322,164.7949451429289,164.66499893188339,164.59588978034546,33.136994209676722,32.837593615712436,32.568498165422305,32.367184589537885,32.165275935111609,31.97763290459465 +1990,4,14,9,0,571,172,8.5,486.71551099534793,54.55067689893087,56.55299080439531,104.87311057393357,0.0,150.97649115663302,512.18478644825063,1.0,150.97649115663302,303.85275152325733,1.440864415636101,11.699999999999999,4.5999999999999996,486.18395744124598,487.55951972256935,488.31356230090256,489.85771505498815,491.15578212514657,491.65064069615198,93.190014370807276,92.356302853803214,89.814344309341692,87.279739852745593,85.210428795677203,84.128152291029053 +1990,4,14,10,0,592,222,9.5,637.25952674166251,41.5845838627772,45.4563932172816,117.51801704517322,0.0,192.3977743434275,678.86561763317786,1.0,192.3977743434275,397.56701037569485,1.5,14.4,4.0999999999999996,658.37809776653057,659.94120768216658,660.78755084002341,662.70800052425489,664.32284459347909,664.93868814464838,118.19403379856352,118.53785036125852,116.00292146991845,112.66836399937672,109.39612449230469,107.18742928603361 +1990,4,14,11,0,457,278,10.5,648.56448466346728,29.511299576745515,35.81964519268525,134.8840180557439,0.0,190.82291180288919,694.3228427693864,1.0,190.82291180288919,405.34725704051789,1.5,16.699999999999999,6.2000000000000002,675.29370998637683,677.04275058949804,678.00076786417571,680.22156216700125,682.0767336669486,682.79411958149899,116.27378728646468,117.55971693309938,115.85227508173418,112.83793415070515,109.55189807280684,106.92852842807442 +1990,4,14,12,0,272,365,11.5,602.1649858286579,20.202023336364977,29.316290454091654,159.80668000995996,0.0,179.0648390927314,638.36698936280868,1.0,179.0648390927314,375.46393359046857,1.5,18.300000000000001,4.5999999999999996,616.78212263807711,619.4532185777681,620.96666414394281,622.75586524696268,624.25668819265661,624.83097168095912,108.18839851996428,109.35500473207532,108.16207711776075,105.86270197176877,103.18183658718016,100.90120365108012 +1990,4,14,13,0,388,381,12.5,722.63408530373272,18.55720525374271,28.297236371273204,190.71116494762438,0.0,214.06636693722587,768.36840719716463,1.0,214.06636693722587,449.69675226502324,1.5,20.0,8.1999999999999993,745.76126846263071,748.51198256917291,750.05722820266089,751.87585341000363,753.41097415871923,753.98999291986388,129.5462288647912,130.99126454950127,129.47926491872698,126.46982396380544,122.97870293435894,120.12906341701057 +1990,4,14,14,0,316,312,13.5,576.17751925529933,26.077432310604685,33.279388936326576,218.18374845441264,0.0,171.05386551119653,610.84672426429279,1.0,171.05386551119653,359.03841425211095,1.5,16.699999999999999,6.7000000000000002,590.97242664980774,593.37188329072978,594.72685930845444,596.35435255033826,597.72257798112673,598.24362961499264,103.63568534482015,104.59438193162184,103.25280831448727,100.89052775666094,98.275839116938272,96.141144626989316 +1990,4,14,15,0,1,328,14.5,328.74149396157651,37.58317344533639,42.14116585581517,237.71052383433002,0.0,102.69810280842376,328.26362793435311,1.0,102.69810280842376,201.43448633846899,1.5,15.6,6.2000000000000002,306.90310175327937,310.84679641152582,313.1538479009327,312.97164262180246,312.85258840847905,312.775961948381,60.484471613801894,60.409999888558083,60.123920211349279,59.706996317424689,59.132082707384058,58.531566038031883 +1990,4,14,16,0,59,187,15.5,222.60305981580603,50.35382199310318,52.883209616791994,251.57238025665643,0.0,69.671032541507628,225.03276791718503,1.0,69.671032541507628,137.18483499155874,1.4750559814415487,17.199999999999999,6.7000000000000002,210.95169125534775,213.1780198387905,214.47520627725845,214.61228003427016,214.74322268845054,214.77867255599273,41.501782671153876,41.369515870984955,40.944944225888982,40.479308974899425,39.977811587155017,39.556495295657925 +1990,4,14,17,0,5,112,16.5,114.15665822495495,63.543011952037915,64.44790059994165,262.38994542986626,0.0,35.928847351676318,112.68821722571369,1.0,35.928847351676318,69.686428201915689,1.309905337249868,17.800000000000001,6.7000000000000002,104.44459888085991,105.95162896322357,106.83479500545718,106.68399804631811,106.57175329335193,106.51568092019987,21.060371832349759,20.970341326551861,20.890760336235132,20.802126267492149,20.665946680974997,20.509194974866553 +1990,4,14,18,0,5,56,17.5,57.18580193050191,76.80330660767609,76.28099556635415,271.78773580016616,0.0,18.059048658397874,56.225054117681914,1.0,18.059048658397874,34.8618934607669,1.5,17.199999999999999,4.0999999999999996,51.844281888986529,52.616554041597006,53.069300225456189,52.977845526446124,52.908701218205401,52.875272262323705,10.534841448267487,10.498825156945305,10.483387521844232,10.461452107604554,10.407012800050063,10.326932497744611 +1990,4,14,19,0,0,17,18.5,17.0,87.58920840435268,85.93315190907396,279.2287768429675,0.0,5.3465686806786055,16.709752362557879,1.0,5.3465686806786055,10.3478943532083,1.3374393828602238,16.100000000000001,4.5999999999999996,15.515240276958423,15.751776101624896,15.890513999281007,15.85804197267859,15.833200500739213,15.821492695755222,3.1220996012992712,3.1126869576025866,3.1074594460586749,3.0974627878800605,3.0773555804595518,3.0527528427818784 +1990,4,15,6,0,0,3,5.5,3.0,89.57848232605888,87.66957081452546,79.1407047870948,0.0,0.94351212011975361,2.9772116282678973,1.0,0.94351212011975361,0.022788349224644844,1.5,12.199999999999999,2.6000000000000001,2.737983578286781,2.7797251944043939,2.8042083528142956,2.813505878582562,2.821290369913839,2.824270439415355,0.55349647197456253,0.55382448689011854,0.55290509953470657,0.55367938843383169,0.55325717775607197,0.54892782656680827 +1990,4,15,7,0,1,31,6.5,31.176187912785831,80.83142114065735,79.85220530108637,85.24433514089426,0.0,9.8214746720715205,30.633102671460158,1.0,9.8214746720715205,18.980304619715174,1.5,12.199999999999999,1.5,28.388963064651531,28.820292435145003,29.073253367001232,29.014798470451783,28.970127528972917,28.949023642049386,5.733120150670528,5.7174576803150288,5.709270974553287,5.6919154178030968,5.6551092688497233,5.6089250991551785 +1990,4,15,8,0,0,77,7.5,77.0,67.59212909286032,68.0027238844716,94.3903761182143,0.0,24.227649530444513,75.786722481172106,1.0,24.227649530444513,46.956514003805452,1.2072113611336261,12.800000000000001,0.0,70.27216397672899,71.337303526835271,71.961991970315722,71.845263080707397,71.757331772962885,71.714487843076753,14.157078087671785,14.114766408737616,14.087790001049759,14.04591617515176,13.961019859582086,13.850799769687114 +1990,4,15,9,0,6,122,8.5,125.33067097376781,54.33478395368752,56.281582372837036,104.58429879434728,0.0,39.382558309067008,123.86210410891907,1.0,39.382558309067008,76.542396113477409,1.4276271021406206,13.300000000000001,2.1000000000000001,115.06608569397264,116.72130033591152,117.69128991296029,117.53807664774405,117.42482364231027,117.36743588167924,23.088746611309759,23.012638621879304,22.933129653806375,22.830538709487534,22.669031916960204,22.483589048950559 +1990,4,15,10,0,274,281,9.5,474.19440151537481,41.34923241707438,45.163260751365996,117.21769796675537,0.0,144.51075240272343,497.33023865016372,1.0,144.51075240272343,295.68582551265149,1.5,14.4,2.6000000000000001,476.61263237787989,478.99988499216659,480.35947082224482,481.78184780140452,482.97717820451578,483.43301178941772,87.843309432869461,88.051110615661415,86.556960469177852,84.659449413139626,82.754649243741284,81.327163787689415 +1990,4,15,11,0,269,344,10.5,563.01917020609994,29.233050231401197,35.4918947112454,134.6181064321297,0.0,167.73078899050611,594.06622574923256,1.0,167.73078899050611,351.05919147782259,1.5,15.6,3.6000000000000001,572.53492657731977,575.20244400713671,576.71887427785589,578.3986564697982,579.80847304711949,580.34748822202891,101.63757287967323,102.36245480850701,100.9330136826534,98.754341370328419,96.380293068967148,94.456111156256995 +1990,4,15,12,0,508,314,11.5,758.49474111598511,19.854897296968222,28.95624951964174,159.72078668366484,0.0,228.94298465839807,813.93851729822541,1.0,228.94298465839807,473.40428661263979,1.5,17.199999999999999,3.1000000000000001,794.40427629776229,796.21101029659303,797.18619807627636,799.54377415960835,801.52069599225979,802.27837259683918,139.44703010496522,141.11092070067048,139.14420318770141,135.44445821798777,131.27445662760385,128.00021305897329 +1990,4,15,13,0,329,405,12.5,695.61615971016226,18.226609695417665,27.953074936304443,190.95154707259704,0.0,211.32241646540149,737.63569741625474,1.0,211.32241646540149,433.18027395317768,1.5,19.399999999999999,2.6000000000000001,714.31343733722554,717.2074109865963,718.8392723434838,720.7020350976253,722.27221408540493,722.86628413427366,127.90651146305098,129.16938560788515,127.61091247424444,124.71838793767876,121.40664369480373,118.71184211114478 +1990,4,15,14,0,445,286,13.5,659.20857834374294,25.863359862273896,32.99995848562842,218.60525606163938,0.0,199.14624927217176,705.93892365948864,1.0,199.14624927217176,412.06478675573641,1.5,19.399999999999999,3.6000000000000001,687.18710002851026,688.91394464164534,689.85487773160037,692.1311775877673,694.03409003816739,694.76871354571381,121.51669948551663,122.73041113100193,120.81403505235069,117.62763655261634,114.1589242732654,111.46813153088391 +1990,4,15,15,0,439,274,14.5,600.64600953067566,37.438823342432684,41.92085969761332,238.13964394434743,0.0,181.81132842324723,638.47270726887177,1.0,181.81132842324723,375.46815063125433,1.5,20.600000000000001,3.6000000000000001,617.89339105688214,619.79219834191963,620.84357086547186,622.93261006772468,624.67961937540611,625.35376330961822,111.21414447675129,111.80736767924476,109.72705606166924,106.85811434011207,103.96438374717161,101.81584060144158 +1990,4,15,16,0,547,153,15.5,484.48416360526392,50.24054526895545,52.69887959767647,251.96344821232273,0.0,150.14603103896081,514.01152815507135,1.0,150.14603103896081,303.63128346712205,1.46180496657734,21.699999999999999,3.1000000000000001,492.71039410403444,493.72389124030281,494.26197451129991,496.19923690862981,497.81562297075698,498.44272322164272,92.988741003653104,92.345801033268941,89.757563141985599,87.130163671454952,84.914315699255582,83.686102219891467 +1990,4,15,17,0,484,143,16.5,353.03724605146431,63.44075445587546,64.28078485577329,262.74581664743897,0.0,112.2080534129762,364.89215803069771,1.0,112.2080534129762,220.78494048621656,1.292476762853196,20.600000000000001,3.6000000000000001,333.40625159989941,334.65478196401409,335.35275179691041,336.61820025736478,337.6778619237225,338.08426133364969,68.857020850343915,67.208400337440125,65.116224956488963,63.833413318403863,63.223335765064135,63.156451996431784 +1990,4,15,18,0,298,77,17.5,148.4979488857638,76.70024597734216,76.11782695900662,272.1197906169887,0.0,51.802855121000071,146.49867141551601,1.0,51.802855121000071,93.389475443951923,1.5,20.0,2.1000000000000001,115.94950419074334,116.69655969329897,117.12170428592941,117.84559761612623,118.44587467360698,118.6810357562336,29.536460248590021,29.279783174836968,29.426799951089855,30.036844467116985,30.617921583269883,30.511620278427319 +1990,4,15,19,0,18,20,18.5,21.301248480263574,87.57790504135234,85.85438119806389,279.6164621491826,0.0,7.180520595502168,20.29967107940778,1.0,7.180520595502168,13.079102991042772,1.2798270834195669,17.199999999999999,3.1000000000000001,18.053737077626476,18.325621007640926,18.484648601237843,18.482788096973067,18.483245110668474,18.481536064253941,4.2203442182299042,4.213305556566894,4.1967994266830404,4.1768254464900973,4.1449328960699479,4.1061620483570946 +1990,4,16,6,0,0,6,5.5,6.0,89.51872188175527,87.54869001331377,78.79218266125876,0.0,1.8870242402395072,5.9544232565357946,1.0,1.8870242402395072,0.045576698449289688,1.5,12.199999999999999,3.1000000000000001,5.4759671565735619,5.5594503888087878,5.6084167056285912,5.6270117571651239,5.6425807398276779,5.6485408788307101,1.1069929439491251,1.1076489737802371,1.1058101990694131,1.1073587768676634,1.1065143555121439,1.0978556531336165 +1990,4,16,7,0,113,63,6.5,83.408283983306518,80.62207281996241,79.5950404471834,84.99022055901149,0.0,28.978027863678459,80.550353560865361,1.0,28.978027863678459,51.767182802875801,1.5,11.699999999999999,3.1000000000000001,65.552396881134811,66.303326125970742,66.738521173089396,66.915341428772123,67.065430142305587,67.120703475453098,16.616633859049099,16.864022599543961,17.068413328286741,17.19807233280239,17.131071906079029,16.825316991103847 +1990,4,16,8,0,379,118,7.5,261.54220248119759,67.38528929750568,67.74438488809275,94.12017463359513,0.0,86.749512973362101,267.54522358193083,1.0,86.749512973362101,164.00953219875504,1.1908679806203903,15.6,3.6000000000000001,237.56968282278945,238.62633339056077,239.22173396430622,240.31997340259636,241.23607740263986,241.59003650870397,52.619806523803589,51.128998385052526,49.707070829913306,49.186981739272902,49.218792335382474,49.366982455558087 +1990,4,16,9,0,593,152,8.5,483.48309290148319,54.12259602583921,56.013786024203576,104.29501309755604,0.0,149.86793002732421,509.505837547032,1.0,149.86793002732421,302.80591464247863,1.4146635752004415,17.199999999999999,5.7000000000000002,484.10137172353353,485.19521032951229,485.78239489214855,487.64861178346962,489.20780049049847,489.81073540841999,92.906605218544939,91.664634390442842,88.831392249683049,86.274238884474784,84.422922427406846,83.573819842005179 +1990,4,16,10,0,735,168,9.5,688.86552500280709,41.118149848382714,44.873959469885214,116.91550700684161,0.0,207.16612064119099,736.27335760218841,1.0,207.16612064119099,429.88264398521193,1.5,17.800000000000001,6.2000000000000002,717.72116690033988,718.67176578091414,719.14605473912673,721.23615537952196,722.9942260899586,723.66462110575844,128.07961722865105,128.16313473083156,124.97437309545289,120.95414387072447,117.18412752619973,114.84098973770934 +1990,4,16,11,0,778,186,10.5,821.99001778134436,28.95947379289681,35.16788284023047,134.34835281466724,0.0,246.88966997563989,884.93414630824896,1.0,246.88966997563989,512.20563276938458,1.5,18.899999999999999,4.0999999999999996,869.44128860541241,870.29059131547785,870.68648478680154,872.90592118576751,874.77912771952003,875.48742671522768,151.79662580650091,153.05544264947255,149.99745573133714,145.22259155531918,140.27883077392761,136.82473228993359 +1990,4,16,12,0,794,195,11.5,892.12292755883925,19.51146105791321,28.599329915987365,159.63130439294903,0.0,260.00150004151607,960.92317444125592,1.0,260.00150004151607,554.44170239435982,1.5,20.600000000000001,3.6000000000000001,945.99393443492056,947.02700032969688,947.52677668713443,949.42606849356173,951.04260638324536,951.64184307469964,159.09791815418259,160.93783057741561,158.30424779370918,153.35562594863856,147.98407530772982,144.05614358832128 +1990,4,16,13,0,799,196,12.5,904.00050508838387,17.899409270839673,27.61178497476045,191.19308508330928,0.0,263.41223756934039,974.07562579902481,1.0,263.41223756934039,561.71580414325331,1.5,21.699999999999999,3.1000000000000001,959.27158950908552,960.29026819362173,960.77992996287026,962.66545101741997,964.27189188509396,964.86600082038126,161.1962921380522,163.06012327051781,160.38563323167355,155.3520835619521,149.88836454104506,145.90157704327746 +1990,4,16,14,0,756,186,13.5,822.01455425384142,25.65317145743924,32.72350396306498,219.02799405939376,0.0,239.2725212935338,886.23201751667216,1.0,239.2725212935338,512.23550154498184,1.5,21.699999999999999,2.1000000000000001,871.49538101730593,872.28371800441187,872.64680306063076,874.87204359656153,876.74733795707766,877.45895758896677,147.01417183065715,148.44643954873723,145.60367692192446,140.99369396254761,136.10864470252611,132.63075330603857 +1990,4,16,15,0,734,162,14.5,710.00649673131329,37.29709899740413,41.70304248502218,238.56785263726604,0.0,213.3539110086187,761.1236319722143,1.0,213.3539110086187,442.87670749638232,1.5,21.699999999999999,1.5,744.73317014604879,745.55780377633982,745.9541055066577,748.03269994120456,749.78310593179867,750.44888145217828,131.75531364836667,132.16561584354642,129.04757588081839,124.8839208435044,120.82730785577462,118.20460172411029 +1990,4,16,16,0,531,206,15.5,529.1320514030192,50.1288109327125,52.516355424711,252.35247499325652,0.0,160.07934703048383,556.95120034184106,1.0,160.07934703048383,330.46493827528133,1.4487743091770287,22.199999999999999,2.1000000000000001,533.11070837061277,534.70655324439565,535.58759828410996,537.31814212089898,538.76996322284708,539.32613832128914,98.7177246889093,97.953318904078046,95.336717760984811,92.720449802236956,90.532781255480373,89.328930848281288 +1990,4,16,17,0,480,142,16.5,351.55269344686633,63.339278104439266,64.11488271591202,263.09916726663096,0.0,114.33338438523418,362.7425673616865,1.0,114.33338438523418,219.87920369718907,1.275409417796077,21.699999999999999,3.6000000000000001,331.61240296552609,332.84764019412728,333.53703039968923,334.80395580798438,335.86551576318897,336.27199573907188,70.108717641028193,68.389663027932031,66.260159420114164,64.984719461176084,64.408621597223657,64.35867744568894 +1990,4,16,18,0,137,90,17.5,123.24674090528664,76.59741288231785,75.95541038616435,272.44904099041105,0.0,41.833437432695568,121.15334860200468,1.0,41.833437432695568,76.461823422142061,1.5,19.399999999999999,6.7000000000000002,102.50778371869941,103.55116166787424,104.15628345238646,104.40364823432401,104.61522382357347,104.69197807704467,24.006459332953895,23.8832852800134,23.973112781838346,24.274689798189538,24.506314718214181,24.355739406466181 +1990,4,16,19,0,16,20,18.5,21.178526160460471,87.56625245266316,85.77588853037804,280.0009928656194,0.0,7.1031448660607674,20.234026163741298,1.0,7.1031448660607674,13.003377631852667,1.2251815724875161,16.100000000000001,6.2000000000000002,18.061372307372853,18.333682602421497,18.493004260237473,18.491106189332889,18.49151789141062,18.489805489263709,4.1748856984681346,4.1651844599058379,4.1479432452632921,4.1288601502053854,4.0996191600043437,4.0631719971531464 +1990,4,17,6,0,0,8,5.5,8.0,89.45945895725828,87.42878450452297,78.4459137445764,0.0,2.5160323203193435,7.8573154862560379,1.0,2.5160323203193435,4.8634999554325384,0.25005810319114286,11.1,3.6000000000000001,7.301289542098079,7.4126005184117139,7.4778889408381195,7.4604550360323758,7.4470216579499393,7.4407891718393486,1.4688597786452646,1.4641453376526707,1.4616848859992171,1.4566169148115531,1.446706839837127,1.4351273175821659 +1990,4,17,7,0,116,66,6.5,87.455853522039632,80.4155779101261,79.34095163504264,84.73697623923273,0.0,30.412876238012384,84.364609099582452,1.0,30.412876238012384,54.273853757563622,1.5,13.300000000000001,4.0999999999999996,68.80206181329325,69.58516123384463,70.038915571034124,70.22222966263783,70.377909928842371,70.435163203182682,17.435585285896764,17.697299682608961,17.914006026453514,18.050875695379705,17.979790839878881,17.657264737327019 +1990,4,17,8,0,263,146,7.5,246.69039003102702,67.1817644058511,67.48947157387575,93.85035728957546,0.0,80.985554902808275,250.13886791479578,1.0,80.985554902808275,153.86807734110891,1.174976613432985,16.100000000000001,4.0999999999999996,224.29309745804642,225.77115003305684,226.61981036270214,227.38197458830666,228.02358099757163,228.26592328777954,48.696585250324148,47.524445976113803,46.459642154805806,46.101134880941522,46.123454234012421,46.188874861549792 +1990,4,17,9,0,423,228,8.5,466.06826498382088,53.91420335344618,55.74970822252362,104.00531487219139,0.0,147.98612947676253,483.75434581144839,1.0,147.98612947676253,289.91069530588567,1.4019671412174064,17.800000000000001,4.0999999999999996,458.2823823332501,460.39042737937456,461.58356717898585,462.71965085324553,463.68555825489517,464.04383323966425,90.669743346854915,89.542716532154884,87.230164919493319,85.132890443903875,83.557975196782394,82.805410529556127 +1990,4,17,10,0,458,274,9.5,600.17188691405863,40.89143552519569,44.588603722211786,116.61149468192087,0.0,181.75961633658639,634.68441448377598,1.0,181.75961633658639,374.96013495653807,1.5,21.100000000000001,5.2000000000000002,612.79135018060026,614.77297847571367,615.87383883624557,617.88870254983635,619.57677835624952,620.22565279553271,111.62753001301984,111.49665130331611,108.97550782161146,106.06112341532391,103.36681722974353,101.61545546353791 +1990,4,17,11,0,628,294,10.5,809.38292925650239,28.690700954343303,34.84773396861745,134.07472879418728,0.0,237.52616843329238,864.23582867568246,1.0,237.52616843329238,504.38887554875646,1.5,23.300000000000001,6.7000000000000002,843.82033009921429,845.66463924083314,846.6586124748967,848.89764683303008,850.78351421227546,851.4998524150817,145.555014499305,146.52350103048374,143.70443119177082,139.55639245037571,135.30439408634683,132.2806684330663 +1990,4,17,12,0,293,342,11.5,600.11153030378387,19.171857079295528,28.245643507365337,159.53806489800877,0.0,182.30911871206177,635.46289715401213,1.0,182.30911871206177,374.10033752619989,1.5,25.0,11.300000000000001,614.92737096250539,617.42445990765532,618.83255850158207,620.57815382814056,622.04555843235016,622.60446272283446,110.58588156473819,111.50954479943708,109.97790986662652,107.44392847590508,104.64371199336811,102.41002517475785 +1990,4,17,13,0,56,501,12.5,550.77446478604065,17.57568842126356,27.273442523681464,191.43561002515165,0.0,169.86563315410578,566.31240486779802,1.0,169.86563315410578,340.92279439335567,1.5,25.0,7.2000000000000002,537.85244101901583,542.4611056826817,545.13476235135511,545.96881901958272,546.69262005106793,546.94722884080704,101.4099752138309,101.81039489883339,100.93801833248958,99.539402488384937,97.875279378133712,96.365961667649046 +1990,4,17,14,0,3,311,13.5,313.53157832607195,25.446868726002347,32.4500603270941,219.45174022939295,0.0,98.022818356748331,312.75331763987094,1.0,98.022818356748331,192.16085019387879,1.5,25.0,6.7000000000000002,292.15205551646022,295.98268933666509,298.22437593658731,298.06954941263785,297.97125254399003,297.90452968100351,57.665812034745393,57.611883807562393,57.374623778514525,57.017556224114806,56.500013448611341,55.932730399649415 +1990,4,17,15,0,6,286,14.5,290.49458661081047,37.15795717850847,41.48771585787689,238.99493984932823,0.0,90.809638734166128,289.48779664550221,1.0,90.809638734166128,177.91769759103596,1.5,25.0,6.2000000000000002,270.43867106803879,273.9780085535823,276.04912696530232,275.8614395502434,275.73467055072928,275.65797361117757,53.469943904892048,53.358524877476754,53.095955241102814,52.743244487560752,52.262783655841247,51.7641548416875 +1990,4,17,16,0,5,128,15.5,131.05517464001835,50.018574299764786,52.33562732650367,252.7392938714211,0.0,41.183678900714384,129.51905519297313,1.0,41.183678900714384,80.058375530973635,1.4359635331118192,23.300000000000001,7.7000000000000002,120.3536827579367,122.09045537264123,123.10829517876678,122.95533563283834,122.84277194843156,122.78520094231938,24.139507423107393,24.065504805942833,23.986777476131707,23.88331740669641,23.716294919521378,23.520604435362948 +1990,4,17,17,0,5,83,16.5,85.195762010922081,63.23854828548328,63.95018643560731,263.4498619198542,0.0,26.829798751768873,83.960880413180476,1.0,26.829798751768873,51.978299927373683,1.2587001061266374,11.1,7.2000000000000002,77.852075904443566,79.003145817376577,79.677968216653227,79.556164685738025,79.464866087757073,79.419913097004482,15.701542754276216,15.64220485890308,15.597137134794105,15.541593392229686,15.445049644626955,15.326566150581041 +1990,4,17,18,0,2,77,17.5,77.490826349148691,76.49478731065659,75.79374763159967,272.7753702085775,0.0,24.573002829952021,76.145478204559126,1.0,24.573002829952021,47.270882173168516,1.5,10.0,7.7000000000000002,69.946665977305287,70.972658120935378,71.573920192701749,71.459980364426286,71.374380061856527,71.332427462049324,14.313402927858341,14.268676972173033,14.25716448256872,14.240814326718377,14.177440460471923,14.065774851447054 +1990,4,17,19,0,0,18,18.5,18.0,87.55423886549598,85.697682559885,280.38225643643824,0.0,5.6610727207185247,17.693410974007062,1.0,5.6610727207185247,10.957326022572316,1.173356131645078,10.0,6.2000000000000002,16.427901469720673,16.678351166426349,16.825250116885758,16.791126436449723,16.765032984368542,16.752723274027129,3.3057961653855266,3.2958640468824547,3.2903290882290679,3.2797880494995857,3.2585518314794513,3.2325020856312321 +1990,4,18,6,0,50,11,5.5,13.34664012955373,89.40078452129616,87.30996032078339,78.10197265612982,0.0,5.8877359191723464,9.2262782634044225,1.0,5.8877359191723464,8.5912000442460474,0.3347853274643171,2.2000000000000002,3.1000000000000001,7.384187631655073,7.4958468232140945,7.559977057071996,7.6960995392598086,7.8078661545328849,7.8526850849944223,3.4375654211472142,3.4520360133341019,3.455577579786461,3.4848542148967838,3.5007769788830063,3.4624234109971392 +1990,4,18,7,0,468,41,6.5,129.57646482980846,80.21203866650143,79.09005098335328,84.48464370261352,0.0,50.443991291638149,121.11232379155479,1.0,50.443991291638149,81.616141770413648,1.5,4.4000000000000004,3.1000000000000001,82.116460691711382,82.473635208761124,82.664497595735028,83.329987432458324,83.879179112773869,84.095901933110099,28.392676086323043,29.35130289343536,30.103128846285461,30.568616597647331,30.430209924010398,29.568797325145056 +1990,4,18,8,0,708,65,7.5,338.92711795728314,66.98164321940034,67.23808633599775,93.58097964657561,0.0,113.92252000509544,346.63967005724146,1.0,113.92252000509544,211.97784342685836,1.1595187715748523,5.5999999999999996,7.2000000000000002,307.4889889928067,307.99251197194104,308.24880788515429,309.44116798229709,310.44290673856619,310.82313220961379,69.209174313195788,66.645608959862386,64.497751425342543,63.801697705097332,64.028445265457663,64.48991666100153 +1990,4,18,9,0,823,87,8.5,553.27717986041898,53.70969276727829,55.489452871888595,103.71526999857637,0.0,171.23738629065895,582.48695032774617,1.0,171.23738629065895,344.73604814634513,1.389531365953126,7.2000000000000002,6.7000000000000002,557.96277855289702,558.53252003376701,558.79834245349207,560.27860511128563,561.53326623309658,562.00300326111153,106.64608765321063,104.77102574386436,101.09144717310492,97.786671279238945,95.466091983684663,94.633115448918716 +1990,4,18,10,0,897,99,9.5,740.89649802173824,40.66918492963072,44.30730547547875,116.3057183202296,0.0,229.30481133923962,788.73788929333875,1.0,229.30481133923962,459.90412705622259,1.492495918622257,8.3000000000000007,7.7000000000000002,772.73762355314057,773.50129027032835,773.85397313296301,775.22497805236799,776.40841694724315,776.83349759375415,142.1157587947902,141.50802382396415,137.58429934249222,132.88845917976317,128.56092244877811,126.19029470928481 +1990,4,18,11,0,878,94,10.5,817.30865954260298,28.42685913025539,34.53157105257674,133.79721384090132,0.0,245.2818251883906,875.93783271158236,1.0,245.2818251883906,506.38017112709446,1.5,9.4000000000000004,5.7000000000000002,864.4740450015081,865.13526600935791,865.41968976811495,866.59193429783772,867.61786718993403,867.97463068268451,151.15514379085815,151.88933978551631,148.49380957941824,143.39626080347833,138.26093891607556,134.95441982957695 +1990,4,18,12,0,887,154,11.5,937.93414518794771,18.836228550031475,27.895301811291553,159.44090006812803,0.0,281.40683766396569,1009.9152399318638,1.0,281.40683766396569,582.407306575392,1.5,10.6,6.2000000000000002,996.84044364769807,997.52972327790485,997.81463050273885,999.61400804874427,1001.1579774657008,1001.7200646396915,173.08936567342658,174.46074908058958,170.89711317966783,165.19457186730537,159.27517926510924,155.27333995226408 +1990,4,18,13,0,893,155,12.5,951.10619473968143,17.255529792445923,26.938122518097913,191.67894657872284,0.0,276.42767871994522,1024.4301254650704,1.0,276.42767871994522,590.48825378023616,1.5,11.1,3.6000000000000001,1011.4221032687678,1012.1014439122323,1012.3828318059788,1014.175469454108,1015.7120921247366,1016.272933513455,169.86926717125644,171.45322859481047,168.10723088187109,162.53695541726844,156.61926072384313,152.54445876858748 +1990,4,18,14,0,815,131,13.5,820.80155688935326,25.244448832328505,32.179660588793084,219.87626658362345,0.0,246.60873917526786,879.2427796709062,1.0,246.60873917526786,508.74069449235361,1.5,12.199999999999999,5.7000000000000002,866.65564779363297,867.57338523454132,868.010273717573,869.2664479239163,870.36050287725914,870.74524858462189,151.80042371907317,152.52866390378173,149.19312489086985,144.20741284120106,139.17876607111836,135.90853489363258 +1990,4,18,15,0,846,137,14.5,772.81419529322204,37.02135266801405,41.2748801144068,239.42069404550637,0.0,232.1101765220578,825.65523798567801,1.0,232.1101765220578,480.89411423569214,1.5,13.300000000000001,2.6000000000000001,809.62016318070835,810.41145118152099,810.77949552468158,812.62796707276607,814.19861138560145,814.78407710964768,143.63586080752435,143.66431167141351,139.99195644097614,135.2644213206566,130.81496552224684,128.14288472371959 +1990,4,18,16,0,791,124,15.5,609.28184148293292,49.90979043869638,52.15668520752992,253.12373847555662,0.0,188.66580124862432,643.53731870792376,1.0,188.66580124862432,380.03630630009559,1.4233722117918575,13.300000000000001,4.0999999999999996,620.50468490561252,621.37724917730475,621.8151364394422,623.5978022421674,625.10222773755027,625.67094045773763,117.27247619761727,115.77003878592835,112.06596731109788,108.47681683590497,105.69198595559767,104.45801295813835 +1990,4,18,17,0,703,90,16.5,400.52515062700729,63.13853111033806,63.78668873623186,263.7977661022793,0.0,131.05149624060789,413.75118696488573,1.0,131.05149624060789,250.34894348062815,1.2423457611878803,13.300000000000001,4.0999999999999996,378.96844424025556,379.60790651617668,379.93645189554269,381.29382150415972,382.43463751120805,382.86798395447516,80.696788356657265,78.105885143964741,75.307102795628211,73.766588794147737,73.267937047839624,73.476629673220145 +1990,4,18,18,0,521,55,17.5,184.27815917380056,76.39235056214764,75.63284146475773,273.0986626360597,0.0,67.560924860637215,179.27213512260874,1.0,67.560924860637215,115.83694357967292,1.5,12.800000000000001,4.5999999999999996,136.95365008170273,137.41824793324787,137.66896521605392,138.53000092907024,139.24466204178395,139.52387733850696,37.838292196374574,37.766165745797387,38.305961520892524,39.387643313998801,40.256933574070842,39.937729926052064 +1990,4,18,19,0,127,22,18.5,31.699618614025276,87.54185314690756,85.61977225310402,280.7601408275841,0.0,14.460126971713892,25.108394413792336,1.0,14.460126971713892,20.17036697463374,1.1242145103276093,10.0,3.1000000000000001,16.733745630680911,16.960303397510692,17.089356272069299,17.327980595345178,17.525456250859481,17.603293191222686,8.6937819348042282,8.6389726694038824,8.509342870596674,8.4240205201464615,8.3638854730112246,8.2854617925191558 +1990,4,19,6,0,7,12,5.5,12.342885924287483,89.34278313435807,87.19231696807192,77.76043490718541,0.0,4.0661701436757376,11.93546751567804,1.0,4.0661701436757376,7.5738113253864165,0.41139856231718497,0.59999999999999998,2.6000000000000001,10.957724448481052,11.124690114154598,11.222503357182999,11.220120902802117,11.219292795231182,11.217880510721139,2.3760312739879477,2.3715353158105286,2.3679322316843865,2.3650016675759433,2.3547420385381339,2.3352986905671207 +1990,4,19,7,0,251,62,6.5,110.57039703365496,80.01155398459318,78.84244754630751,84.23326672656762,0.0,40.959763348727556,105.19360706954666,1.0,40.959763348727556,69.679683209926438,1.5,4.4000000000000004,2.1000000000000001,78.199826260059837,78.815677249485645,79.164952555434198,79.757122677317639,80.245588414617004,80.43877103583975,23.317099659944432,23.955454739297554,24.417299742619754,24.709995601557996,24.601573137125264,23.99950943548416 +1990,4,19,8,0,486,125,7.5,314.97083666421258,66.78501151162295,66.99032902937317,93.3121003345631,0.0,104.74451539051557,320.42191575668551,1.0,104.74451539051557,197.00311079418603,1.1444769606440033,8.9000000000000004,3.1000000000000001,286.02973364049387,287.14447827524185,287.76830906966876,288.90446482866207,289.85699294306994,290.22040449274544,63.149204902675017,61.158094307299031,59.521491404517334,59.116155875439375,59.368296428073243,59.676727115136131 +1990,4,19,9,0,629,172,8.5,530.68019704458516,53.50914759281188,55.23312122214362,103.42494891888957,0.0,164.53198271811718,556.07396261745976,1.0,164.53198271811718,332.01784318955117,1.3773500688884914,11.699999999999999,3.1000000000000001,529.14958494280586,530.43758833383026,531.13505740994594,533.06388120066936,534.67864862457145,535.30016258995397,101.9058244733485,100.16218671073615,96.889584181984418,94.28257812910617,92.494298617862526,91.825849632326651 +1990,4,19,10,0,723,192,9.5,711.81810537098659,40.451489505337314,44.030174197149144,115.99824226211855,0.0,214.24401547071068,757.02225205566469,1.0,214.24401547071068,444.26871404480289,1.4821409607598366,13.300000000000001,4.5999999999999996,737.41967674790692,738.56214576062098,739.14753121905346,741.33493950556658,743.17455248464023,743.87608429028137,132.73445357393175,132.14954390112581,128.53653927060378,124.48872868586488,120.83695311669551,118.77167005401984 +1990,4,19,11,0,784,196,10.5,844.28103494920254,28.168072195675915,34.219515504423605,133.5157958325823,0.0,253.61489277438653,905.42986642881169,1.0,253.61489277438653,526.04401171084839,1.5,15.0,5.2000000000000002,889.5671170701288,890.46764570317532,890.89116536509437,893.15208876418637,895.06292351192519,895.78384771657716,156.64383705159278,157.10692142293783,153.37351701917478,148.34858790516432,143.44619391431007,140.31318669734264 +1990,4,19,12,0,803,205,11.5,916.95612538946375,18.504719366952013,27.54841598360831,159.33964230591732,0.0,275.5793530389542,983.87484197805225,1.0,275.5793530389542,569.65800242109503,1.5,16.100000000000001,5.2000000000000002,968.62022536420977,969.71881489675081,970.25057123747035,972.12346708960206,973.72478249341998,974.312420854469,169.22937001278589,170.53650462197652,167.16515994978141,161.80720950415366,156.23481647969851,152.41354078553528 +1990,4,19,13,0,795,215,12.5,925.81596633001823,16.939014160995725,26.605898799371634,191.9229129241591,0.0,277.93827200590812,996.61308866851755,1.0,277.93827200590812,576.40857252998001,1.5,17.199999999999999,5.7000000000000002,981.46343088054994,982.29605626463115,982.66805450715435,984.98873804773984,986.95360705922087,987.69125796263177,170.94217955983871,172.35048731603186,168.87335695405787,163.4073913063248,157.74620264838842,153.82912137179324 +1990,4,19,14,0,763,225,13.5,872.67857359196705,25.04590449637149,31.912335842454528,220.30133940701785,0.0,262.28750978970254,936.06639073960423,1.0,262.28750978970254,543.75622218073272,1.5,16.699999999999999,6.2000000000000002,919.41083408114548,920.47068526378825,920.98533241648397,923.3345038216014,925.31837987554979,926.06778228653354,161.56115877792817,162.46310680747135,158.94165781500351,153.85192733733052,148.75350776741649,145.29411349567042 +1990,4,19,15,0,640,236,14.5,718.54090165422883,36.88723839951985,41.06453429189146,239.84490234820376,0.0,216.61437086530526,764.15098062474021,1.0,216.61437086530526,448.63168024916263,1.4984830223379193,16.699999999999999,4.5999999999999996,744.19722189907998,745.66593566399081,746.44511339193707,748.72427559186769,750.63828458806131,751.3705454040529,133.7443196863002,133.53922344071518,130.18917592836831,126.2382947116037,122.61002603732314,120.38751299454364 +1990,4,19,16,0,507,248,15.5,560.28316318247971,49.802414288145656,51.97951873514409,253.5056428685428,0.0,173.94776918416594,585.81169069472844,1.0,173.94776918416594,349.72614433254421,1.4109999644577047,16.100000000000001,5.7000000000000002,560.03476804115553,562.00655746455186,563.10685512667953,564.87984712228467,566.37033832570978,566.93830817326784,107.14345518282948,105.82057295170402,102.87285788764319,100.18671348979215,98.192746178539338,97.227407771263671 +1990,4,19,17,0,390,165,16.5,338.25904381060178,63.03919350188458,63.62438287820355,264.14274621895777,0.0,109.73212732934419,346.77759920510584,1.0,109.73212732934419,211.84533330767783,1.2263434348100408,15.6,6.7000000000000002,317.2062381644173,318.66400042519609,319.488644564612,320.81724975720567,321.92684967200626,322.35455590300904,66.802971783976901,65.074122336188196,63.229513102472758,62.359357224565208,62.165874328168989,62.237113995461719 +1990,4,19,18,0,229,103,17.5,160.44266831674099,76.29008531290556,75.47269569645356,273.4188037515968,0.0,55.658978421001201,156.91113172589235,1.0,55.658978421001201,100.13156538839047,1.5,14.4,6.7000000000000002,129.51837369547474,130.61431990665147,131.24528267940158,131.76683069416237,132.20365900419228,132.37060746534962,31.617030671017798,31.611762361505178,31.920309560910251,32.511546826249315,32.932164672066918,32.653833120484641 +1990,4,19,19,0,15,28,18.5,29.165880874859685,87.52908483947219,85.5421669195853,281.1345345454047,0.0,9.9861295023503498,27.473959259355478,1.0,9.9861295023503498,17.917711011035937,1.0776299270256882,12.800000000000001,6.2000000000000002,24.304001126303653,24.669276488798268,24.882825519273638,24.883349677663958,24.88655993222406,24.885208114034185,5.8765208230348893,5.8499403963832481,5.8177217884214043,5.7903719482047835,5.7547525760901186,5.7094371127438528 +1990,4,20,6,0,0,3,5.5,3.0,89.28553346227791,87.07594794732951,77.42137691822428,0.0,0.94351212011975361,2.9441344735978259,1.0,0.94351212011975361,1.8214536506949761,0.48084096501186036,8.3000000000000007,3.1000000000000001,2.737983578286781,2.7797251944043939,2.8042083528142956,2.7968377487779708,2.7911258299115436,2.7885089749145955,0.55068176911207467,0.54880361361640162,0.54788077162148408,0.54583959651252811,0.54195005958068909,0.53760705656710506 +1990,4,20,7,0,0,48,6.5,48.0,79.81421941300455,78.59824732896325,83.98289137729347,0.0,15.133852901712933,47.177555954468062,1.0,15.133852901712933,29.251096804807727,1.5,10.0,3.1000000000000001,43.671497014761286,44.333745326059351,44.72210822667585,44.642039905113513,44.581303517193057,44.55214440508751,8.8350524527237901,8.8137213668856731,8.8019070091871843,8.7768156971272084,8.7213947707597939,8.6491553071374767 +1990,4,20,8,0,8,116,7.5,119.15842590641839,66.5919519544147,66.74629689478337,93.04378108503033,0.0,37.678472729892931,117.5235986566551,1.0,37.678472729892931,72.751650200466528,1.1298346254447633,11.1,5.2000000000000002,108.69974569020178,110.24120052125791,111.14426635295185,110.98980756900322,110.87511652406887,110.81750102821103,22.06911655409986,21.939271375425584,21.850378864284803,21.777108866472428,21.664547639833252,21.519860241332765 +1990,4,20,9,0,3,193,8.5,194.72155220896107,53.31264755518161,54.980811774940754,103.13442669674812,0.0,61.314210048149924,192.84864522292244,1.0,61.314210048149924,119.05185818236117,1.3654173176310276,12.800000000000001,6.2000000000000002,179.37855637223902,181.8590495808933,183.31172935858058,183.11633303359545,182.97508030618172,182.90019208041198,36.038118748654163,35.879161600269072,35.699024306678034,35.507345073995474,35.249009130112498,34.972280224811406 +1990,4,20,10,0,7,289,9.5,294.05592954417534,40.238436508013145,43.75731673607405,115.68913804749585,0.0,92.273204291638606,292.91863289030317,1.0,92.273204291638606,180.09306853632305,1.4719666066662087,14.4,7.2000000000000002,273.69839321002911,277.25324762839352,279.33298763627755,279.13972396075036,279.00892628344087,278.93009185676459,54.389985917894592,54.224528315444239,53.914698223167939,53.539260236841308,53.049268853914718,52.562628673348954 +1990,4,20,11,0,4,313,10.5,316.31959400048152,27.914460217868992,33.911687076127095,133.23047158823366,0.0,98.874044730933804,315.42779131347163,1.0,98.874044730933804,193.86052229512779,1.5,15.0,5.2000000000000002,294.7315915783991,298.57774228770313,300.82830951928986,300.66812728645141,300.56584660343225,300.49718245959286,58.215848387120403,58.120860908590927,57.845872194413928,57.469637852379321,56.946855823115861,56.391470140707661 +1990,4,20,12,0,3,350,11.5,352.66812712456993,18.177474102362154,27.2050968007462,159.23412500992885,0.0,110.17305026456413,352.34117781397919,1.0,110.17305026456413,216.30592618463405,1.5,16.699999999999999,5.2000000000000002,329.44275001728045,333.67376902809292,336.14890781704531,336.02778945692631,335.96027079460333,335.90303232892705,64.899222485340104,64.829148639501568,64.522348604500408,64.087776945483611,63.486614997797567,62.84251013208408 +1990,4,20,13,0,5,421,12.5,425.48332711363747,16.626220357316175,26.27684412529582,192.16732061229067,0.0,132.68726598925329,426.60226734760653,1.0,132.68726598925329,261.18031351196055,1.5,17.199999999999999,5.7000000000000002,399.87189963064236,404.7642342735208,407.62386482981657,407.54523639925031,407.51856857184839,407.47221241650954,78.322069158262693,78.262809338501839,77.830356556755376,77.216813635170212,76.41169030349559,75.592521833297951 +1990,4,20,14,0,2,385,13.5,386.70257321202024,24.851224026969323,31.648115300311893,220.72671931197698,0.0,120.70169856979969,386.79971827641265,1.0,120.70169856979969,237.21122192649921,1.5,17.800000000000001,4.0999999999999996,362.11820057826571,366.66319383509841,369.32095411112681,369.19532657843934,369.12724304753721,369.06689586032121,71.194602307528811,71.093816739427083,70.707379562180108,70.184294734778248,69.491646411204712,68.7850419299305 +1990,4,20,15,0,1,341,14.5,341.75634833012015,36.75556559908311,40.85667625020161,240.2673506683905,0.0,107.21982297731199,340.9843016341718,1.0,107.21982297731199,209.45198685898654,1.4882470556162666,18.300000000000001,2.6000000000000001,318.8774808049339,322.95362265298689,325.33767086392288,325.16217061561161,325.04996230899388,324.97484878631377,63.24191616771899,63.07558050899965,62.707631207680429,62.250750140361518,61.659074461512461,61.072342468853932 +1990,4,20,16,0,1,298,15.5,298.61835191999484,49.69640077341758,51.804117427066274,253.88484162429003,0.0,94.108834298950839,297.26366775948088,1.0,94.108834298950839,182.87683188821921,1.3988464524703923,18.300000000000001,4.0999999999999996,277.47257805415489,281.02925344674759,283.10946778896817,282.90728908873706,282.76992892165941,282.68775606801546,55.551235046696952,55.279190659347329,54.890870672037764,54.481467848793187,54.00732393818528,53.564562012253667 +1990,4,20,17,0,1,189,16.5,189.44677154097369,62.940503280966176,63.46326273295174,264.4846696317986,0.0,59.869919530877532,187.39150946666143,1.0,59.869919530877532,115.82368690093196,1.2106902869202276,18.899999999999999,3.1000000000000001,173.60195507791772,175.95830090249785,177.33780151675094,177.14435902218023,177.00432331871062,176.9301880530474,35.185681919467868,34.942703098299603,34.737939342342351,34.575262648542676,34.37655362559893,34.154827156478341 +1990,4,20,18,0,1,100,17.5,100.25353314988266,76.18797567760696,75.31331523268082,273.73568018607585,0.0,32.037618158550146,98.377993598620932,1.0,32.037618158550146,61.204390006343353,1.5,18.300000000000001,4.0999999999999996,89.846507772025063,91.130500366236262,91.882439097556713,91.750234279256276,91.651802166578577,91.602619268962485,18.611592513301041,18.570887783671623,18.581110745794405,18.586622355103355,18.51993868383358,18.365327056569214 +1990,4,20,19,0,0,27,18.5,27.0,87.5159241944058,85.46487624002981,281.50532665690304,0.0,8.6956164976458883,26.176905759663583,1.0,8.6956164976458883,16.453236088287984,1.0334841805228319,15.6,3.1000000000000001,24.018628378226555,24.383447372627391,24.597249315593366,24.551666172287955,24.51713917102327,24.500518539670828,5.0873129133280601,5.0678473330474141,5.0533237387099064,5.0339975118508411,5.0009419015500134,4.9616306731954287 +1990,4,21,6,0,1,11,5.5,11.053016714199464,89.2291087287177,86.96094121372835,77.0848760328073,0.0,3.5036654801630336,10.820994387780583,1.0,3.5036654801630336,6.7234148346206739,0.5439103693502254,15.0,5.2000000000000002,10.040384366273546,10.193436892180959,10.283190603068798,10.260433477680301,10.242958041932775,10.234789528426845,2.0455060102830926,2.0389741484424522,2.0354968084530736,2.0287876149200956,2.0153834452522652,1.9992146127254324 +1990,4,21,7,0,40,88,6.5,96.072142772833857,79.62012715839174,78.35755329342979,83.73356603662035,0.0,32.278818797774548,93.223986259815845,1.0,32.278818797774548,59.111397381332139,1.5,16.699999999999999,6.7000000000000002,81.027768141925065,82.086111102006896,82.703183271119073,82.732184545000237,82.763795302522837,82.768824082932809,18.679681460149425,18.841300116232457,18.957118337567252,18.991000840421307,18.862155305349816,18.581854199789355 +1990,4,21,8,0,54,170,7.5,191.5271907270234,66.40254404694456,66.5060844848433,92.77608675538146,0.0,61.439904461766048,190.61436178014986,1.0,61.439904461766048,117.97750122596676,1.115576099222384,18.899999999999999,7.7000000000000002,174.4892553323144,176.46209495136804,177.61300574594156,177.71288923602737,177.81131634069885,177.83512012877955,36.242149681363379,35.76340102097307,35.41050024913666,35.304735289881613,35.27150818752952,35.164040651608353 +1990,4,21,9,0,169,278,8.5,375.57939661297712,53.12026868741032,54.73262019038207,102.84378306560788,0.0,118.91647961409689,383.25120926509032,1.0,118.91647961409689,232.97967740717726,1.3537274223816615,20.600000000000001,7.2000000000000002,360.5762191575709,363.32579682274468,364.91458472042416,365.64315978316267,366.26871550581518,366.49479290001636,71.881161310339024,70.976507356401626,69.534879966183425,68.435138711631112,67.648966011102189,67.209151759217363 +1990,4,21,10,0,7,223,9.5,228.07855927387209,40.03010885920767,43.4888372023319,115.37848458880427,0.0,71.611956138250122,226.48720844838431,1.0,71.611956138250122,139.57065454910517,1.4619704293891922,20.600000000000001,8.1999999999999993,211.18482455893434,214.05038796790811,215.72812718422145,215.54177647889961,215.41070409130569,215.33731508641881,42.119066411302889,41.985270388227612,41.784030163518025,41.540104138377956,41.201875698709777,40.843541284678388 +1990,4,21,11,0,4,158,10.5,161.33136798534903,27.666139181525672,33.60820373738784,132.94124740487655,0.0,50.599766076259719,159.79951722282362,1.0,50.599766076259719,98.706395454211361,1.5,21.699999999999999,7.7000000000000002,148.61173569590932,150.72939934054369,151.97026966252682,151.83527830547251,151.73985055684912,151.68690785525439,29.672824371607952,29.606626234007845,29.51322687743022,29.385932337975571,29.177212521018397,28.924017623062053 +1990,4,21,12,0,10,187,11.5,195.92070154085013,17.85463795828243,26.865454638896615,159.1241830775774,0.0,61.331257208473957,194.84298208424588,1.0,61.331257208473957,119.98198953458275,1.5,18.300000000000001,6.2000000000000002,181.70993816572636,184.17504243153925,185.61840747610233,185.49037784637969,185.40360910313979,185.3513947666118,36.037415795474729,35.981619824554329,35.84481886101586,35.647481555932899,35.351568048876437,35.016441952339946 +1990,4,21,13,0,6,228,12.5,233.39501032215099,16.317225185083085,25.95103018203021,192.41197444395922,0.0,73.068773580662693,232.13904541899865,1.0,73.068773580662693,142.98667344576828,1.5,17.800000000000001,6.7000000000000002,216.40905458624098,219.35159539125749,221.07457183725541,220.94183432914161,220.85448193762124,220.7989215056065,42.933406983862255,42.869100251612174,42.707877908676394,42.478947906207537,42.133171348392253,41.735137770111272 +1990,4,21,14,0,5,236,13.5,240.26834374643542,24.66039136767523,31.38702633151363,221.15216130516805,0.0,75.224661650921661,238.84498769066164,1.0,75.224661650921661,147.15074614135543,1.5,17.800000000000001,6.2000000000000002,222.66558557473417,225.69849067734896,227.47441987096548,227.32136969505362,227.21818855317875,227.15547889615419,44.20437447219355,44.12377699220194,43.95060283013747,43.71278519905394,43.357563880519066,42.955353894719948 +1990,4,21,15,0,3,312,14.5,314.276064895432,36.626283929818285,40.651302758105594,240.68782383899827,0.0,98.21435017379082,313.15083894968643,1.0,98.21435017379082,192.54498261165034,1.478175764592593,17.800000000000001,5.7000000000000002,292.62472566511428,296.42703566018844,298.65172917712482,298.46951155437631,298.34930106839482,298.27329440618894,57.879994582502476,57.718330754681411,57.400732790240966,57.011230024210953,56.495484876823504,55.973412869266262 +1990,4,21,16,0,4,146,15.5,148.48292365095708,49.59170492264244,51.63047073919243,254.26116990415642,0.0,46.733473090721411,146.76075206288598,1.0,46.733473090721411,90.72826993142165,1.3869113756077867,17.800000000000001,3.1000000000000001,136.40142660048159,138.3584450637581,139.50524599045738,139.33987764840728,139.21881299183545,139.15623091186518,27.407104214744326,27.308872704716375,27.207309939798883,27.087715055352064,26.903006159072135,26.688479889018652 +1990,4,21,17,0,0,91,16.5,91.0,62.84242925112362,63.303322853818294,264.82340470645534,0.0,28.63265827039184,89.600160201241181,1.0,28.63265827039184,55.517710911117874,1.195383575564163,17.199999999999999,2.1000000000000001,83.082020821838839,84.335771481826953,85.071033289340562,84.941238682908789,84.843931037358729,84.796033082810354,16.735592713605566,16.683741232866531,16.64934125226339,16.600117927942286,16.501538564654055,16.372344989604859 +1990,4,21,18,0,1,80,17.5,80.256209978247583,76.08600726930709,75.1547061264637,274.04917976078036,0.0,25.47404601731262,78.823645726676986,1.0,25.47404601731262,48.958962667750015,1.5,17.199999999999999,3.1000000000000001,72.488234524442944,73.553950493058466,74.178491616657169,74.061013640022679,73.972762557369293,73.929498756941882,14.831378652218453,14.796987244253172,14.792455859844457,14.77657183591519,14.706149720981353,14.584614020491436 +1990,4,21,19,0,0,25,18.5,25.0,87.50236220219655,85.38791029219996,281.8724068116921,0.0,7.9869956083509068,24.371240587210039,1.0,7.9869956083509068,15.230739073602139,0.9916668577083456,16.699999999999999,3.1000000000000001,22.462611158055132,22.804283940492624,23.004584845938961,22.961228390449353,22.928303094683937,22.912540375729783,4.6691104311691731,4.6525280655651775,4.6413760151181256,4.6251947182216639,4.5955735176624826,4.5594245009662018 +1990,4,22,6,0,3,11,5.5,11.164987537095078,89.17357711357221,86.84737958070717,76.75101052813868,0.0,3.5968487186849933,10.850999269096889,1.0,3.5968487186849933,6.7919712361243434,0.6012862891143005,10.0,4.0999999999999996,10.043070917528983,10.196123321263896,10.285839533529961,10.262931007805753,10.245359487951761,10.237126012095189,2.0998980076500384,2.0927625328166553,2.0889112659485947,2.0821295644999953,2.0685746137505818,2.0519237932753498 +1990,4,22,7,0,189,62,6.5,100.90653087434492,79.42936608392361,78.12046535738486,83.48534142311837,0.0,37.068138189503962,95.996127018952706,1.0,37.068138189503962,63.075293865101699,1.5,11.699999999999999,5.2000000000000002,75.143783574296435,75.828439003026219,76.220490661103739,76.58377955178176,76.88640104448541,77.003173763518831,21.244299768955411,21.749075755547093,22.085964177968975,22.236059258068654,22.055093902410714,21.539333808286138 +1990,4,22,8,0,453,123,7.5,305.30107043127066,66.21686404709827,66.26978359098952,92.50908534544848,0.0,103.77135747740789,309.28081197864645,1.0,103.77135747740789,191.09446204656874,1.1016865562548814,13.300000000000001,5.2000000000000002,277.19609738038105,278.27799574283392,278.88323892161969,280.03298679849729,280.99626972743198,281.36440215335085,62.140506055950567,60.173771965456723,58.744823508774623,58.573180136270423,59.047987279087607,59.395480764255545 +1990,4,22,9,0,457,210,8.5,475.45501706128897,52.93208324227701,54.48863919452237,102.5531024653659,0.0,151.11729238287921,493.97923260848358,1.0,151.11729238287921,297.28309392585101,1.342274930470201,15.0,4.0999999999999996,469.00001761760677,470.68068494715817,471.6191003842456,473.30162498842776,474.71152898706487,475.25219508427773,93.018080511959923,91.171251628367088,88.36399883721667,86.337393170841395,85.171091404763402,84.788776054220733 +1990,4,22,10,0,534,269,9.5,658.11075092706017,39.82658500412392,43.2248368461787,115.06636832797086,0.0,204.15686194267752,693.10889153644666,1.0,204.15686194267752,410.72267602612123,1.4521501019624747,16.100000000000001,3.6000000000000001,671.31630409014338,673.21369198463594,674.25513502786214,676.29841612780467,678.01718145785173,678.67153777737587,125.89340499765082,125.01069975205164,121.71658417043949,118.30514034628024,115.37630212502594,113.75557381492456 +1990,4,22,11,0,466,314,10.5,703.44522674231246,27.423220708615258,33.309181548361444,132.64813959472949,0.0,218.18975324312311,746.135910986363,1.0,218.18975324312311,439.30543643662656,1.5,17.800000000000001,3.1000000000000001,725.85901791996491,727.80832970762674,728.87349105275803,731.15741625270266,733.07469336072086,733.80831819138621,134.18959927061124,134.13214509904813,131.06670472747288,127.36562505830148,123.8781728910534,121.66671881699672 +1990,4,22,12,0,530,307,11.5,781.19297843447862,17.536356705430418,26.5295994497825,159.0096534502192,0.0,235.59794526252017,833.2670264634512,1.0,235.59794526252017,487.45450925649772,1.5,18.300000000000001,4.0999999999999996,814.27340644327876,815.95706397741628,816.85594959765945,819.23377745865446,821.23265264797737,821.9955595166856,144.91374326587595,145.34729816650153,142.16534846103164,137.97053322109534,133.86317752766269,131.11460489600938 +1990,4,22,13,0,546,312,12.5,804.28303428706317,16.01210333725038,25.628527597962062,192.65667235903064,0.0,242.51406381749928,858.22654619809884,1.0,242.51406381749928,501.70624000394866,1.5,19.399999999999999,3.6000000000000001,839.09118364026176,840.78131793356863,841.68096447301207,844.07229710158572,846.08431232638793,846.850710285324,149.19116463518895,149.63168685693569,146.3418084616732,141.99273100252873,137.73336605911555,134.89586636629687 +1990,4,22,14,0,643,255,13.5,805.41101002290327,24.473386155405073,31.12909450543602,221.5774148669686,0.0,242.40683330144046,859.7941783921716,1.0,242.40683330144046,502.41264792158864,1.5,20.600000000000001,3.1000000000000001,842.32388706759707,843.60952938629816,844.26792625130224,846.64776726665332,848.65141948717462,849.41376424926727,149.71791643781717,149.80682462945254,146.13864165048463,141.51201540641426,137.1648086053921,134.45241476517882 +1990,4,22,15,0,670,219,14.5,728.86359145109725,36.49934163964795,40.448409582233836,241.1061057504278,0.0,219.49656415353886,773.36825720740921,1.0,219.49656415353886,455.02192365084488,1.4682693544434489,21.699999999999999,0.0,754.35501191952767,755.63598284354964,756.30209197630757,758.58639516875076,760.50627960662632,761.23928032126037,136.04097860168554,135.13351216195591,131.3164003866975,127.23625264386909,123.68223217831756,121.77992555137574 +1990,4,22,16,0,611,178,15.5,558.70212141301249,49.48828198230385,51.45856815359513,254.6344635329178,0.0,173.17113871208039,585.83589270681375,1.0,173.17113871208039,349.57482653100146,1.375194468374678,21.699999999999999,0.0,562.45213479979759,563.6826974833225,564.34221917331433,566.3769916402689,568.08050194096472,568.73618902766361,107.36877964292516,105.49576149460817,101.98634946296245,99.184917180265288,97.266580189238326,96.564837315166471 +1990,4,22,17,0,487,136,16.5,355.99788042639119,62.74494128156903,63.144558545808714,265.15882085919355,0.0,115.8742035333017,363.7614500394169,1.0,115.8742035333017,222.64086666927741,1.1804206473350407,22.199999999999999,0.0,333.6537004295003,334.81124304455875,335.45563372352024,336.72859774399313,337.79542029029841,338.20279288491412,70.355434626730855,68.144101305700204,66.133753343168422,65.403791148846878,65.451279853852284,65.732990439111163 +1990,4,22,18,0,277,83,17.5,154.70746566903293,75.98416725679354,74.99687562770421,274.35919152595176,0.0,55.81751929065296,150.46160565488415,1.0,55.81751929065296,97.360660455716086,1.5,21.699999999999999,0.0,121.0288003939624,121.82614867850387,122.27878689561902,123.0571067529098,123.70107206613793,123.95451143391411,31.387882764730566,31.667057996271165,32.207389630630161,32.984878859652568,33.440608781220504,33.015257913006849 +1990,4,22,19,0,21,28,18.5,29.716588369510553,87.48839062082165,85.3112795746993,282.23566526570954,0.0,10.405244807295313,27.840261982210105,1.0,10.405244807295313,18.255366164364265,0.9520746263228581,18.300000000000001,3.6000000000000001,24.50305413255251,24.870551856984608,25.085275417029255,25.085304294073421,25.088243380626533,25.086667758782131,6.1152816687974489,6.0789895943383412,6.0440544999162809,6.0220956715829894,5.9941501674966133,5.9518857421735127 +1990,4,23,6,0,8,15,5.5,15.455585765756382,89.11900210376308,86.73534107535268,76.41985962230032,0.0,5.1199476509748365,14.844156581214072,1.0,5.1199476509748365,9.4865620694620514,0.6535511064501405,8.3000000000000007,2.6000000000000001,13.589744370723214,13.796719683752885,13.917942228095335,13.91583354522909,13.915522000629517,13.914042876961588,2.9947067022509191,2.986939381372713,2.9803572600294932,2.9756053198130754,2.9628415219632034,2.939102910986648 +1990,4,23,7,0,257,65,6.5,118.92863269357247,79.24202170251428,77.88708038620571,83.23827060734028,0.0,44.22102669648762,112.47781791111737,1.0,44.22102669648762,74.932880003496678,1.5,12.800000000000001,2.6000000000000001,84.907780961628958,85.545610032369297,85.906575662315106,86.537507302590683,87.058207025994619,87.263913491994614,25.301734939930917,26.03515087092558,26.503762074482609,26.725771898740657,26.503926401811334,25.815503099009387 +1990,4,23,8,0,506,112,7.5,317.50628860859143,66.03498490570124,66.03748317165702,92.24284800590063,0.0,105.85519492146086,321.10874122795792,1.0,105.85519492146086,198.50041579695977,1.0881519675588072,16.100000000000001,2.6000000000000001,288.17036762759841,289.13973991565774,289.67751221419314,290.78561089026744,291.71591208093037,292.06961109732606,63.339684265674315,61.231416205016693,59.75407182480258,59.607563523101661,60.149965388722094,60.556398078258695 +1990,4,23,9,0,641,151,8.5,525.51349205435531,52.748159608163995,54.24895848799651,102.26247406659269,0.0,167.29222379003718,548.5574228506789,1.0,167.29222379003718,328.769244147606,1.3310546209674785,21.100000000000001,4.0999999999999996,523.72766197936039,524.76170652466976,525.3079598129998,527.2018858451388,528.78912867309054,529.39791941321846,103.6954817065639,101.33722832525966,97.790221364899395,95.191433179878402,93.71872736201243,93.346864823215057 +1990,4,23,10,0,700,198,9.5,710.23567521314408,39.627938774155794,42.96541393647674,114.75288337573944,0.0,219.98395597323986,751.62123129847589,1.0,219.98395597323986,443.37599712415749,1.4425033970479264,23.300000000000001,4.5999999999999996,732.28223661394054,733.44750645407476,734.04572956891752,736.26030872474018,738.12412126644756,738.83314303843053,136.50847545133837,135.14764136334753,131.06495716570771,126.94380679835446,123.60278640354818,121.9641737198435 +1990,4,23,11,0,745,219,10.5,843.70520578651008,27.185811774145158,33.014734527132184,132.35117501985079,0.0,253.60170063073076,900.08168027012732,1.0,253.60170063073076,525.88511052467186,1.49855419509814,25.600000000000001,4.0999999999999996,883.43479398059992,884.48098137192346,884.99145266413666,887.32601882454139,889.29740001756045,890.04258237442002,157.07656906292613,156.76742008249701,152.58481156346093,147.55832299142119,142.94557415374962,140.24133672353469 +1990,4,23,12,0,770,229,11.5,919.90294257010794,17.222776604836604,26.19764073269991,158.89037570207293,0.0,276.26432663445354,985.2042569160941,1.0,276.26432663445354,572.8600053515321,1.5,26.699999999999999,3.1000000000000001,969.52887910702134,970.44930342262251,970.87453041859726,973.22919246573531,975.22315134381608,975.97213392680862,170.66123183425739,171.15373847654027,167.06644699944991,161.54402976944266,156.1535199770799,152.72907727486475 +1990,4,23,13,0,756,260,12.5,943.43335949948676,15.71092730859081,25.309405959572473,192.90120533667292,0.0,283.53188091400585,1009.5301990139008,1.0,283.53188091400585,587.39195043217592,1.5,27.199999999999999,3.6000000000000001,992.66734019410592,993.79421791133768,994.33937103861285,996.71831262301669,998.73402984578911,999.4900707711397,175.00477758621591,175.4980775539525,171.3648214521935,165.78247022718941,160.32601537978178,156.8462301048782 +1990,4,23,14,0,737,250,13.5,882.56325085666651,24.29018379211899,30.87434363941632,222.00222404390868,0.0,273.27664344358055,941.46570875106192,1.0,273.27664344358055,549.89653995819333,1.5,27.800000000000001,3.6000000000000001,923.89824445597901,925.13290547681993,925.74690560881004,928.11818866299598,930.12472177736822,930.8792031784136,168.95261771652258,168.79224014550388,164.50584551293935,159.1763176231604,154.17120892406123,151.21140969931011 +1990,4,23,15,0,719,212,14.5,760.78043003166056,36.37468571184702,40.2479915785575,241.52197948799576,0.0,235.62426067812061,806.61825136413927,1.0,235.62426067812061,474.64813842805688,1.458528056092665,27.800000000000001,5.2000000000000002,787.75653603788373,788.96599497820534,789.58310815101731,791.85466559083,793.76939726219553,794.49536876328489,146.12447946914924,144.96263045855764,140.73545084604635,136.29102836798012,132.50192959375596,130.53733677673094 +1990,4,23,16,0,649,182,15.5,587.88502706741951,49.38608753195239,51.28839926657174,255.00455907431257,0.0,187.11228593167931,615.42939694550819,1.0,187.11228593167931,367.55968288271674,1.3636954963341863,28.300000000000001,3.1000000000000001,591.32767391549464,592.59493356721919,593.27085490364266,595.31218214150283,597.02541221775061,597.68106075056926,115.96604214041258,113.80863122715209,109.99470354489381,106.95145447154614,104.95847957494374,104.2592350382909 +1990,4,23,17,0,544,130,16.5,377.08109031019939,62.648010388283275,62.9869659340793,265.4907886037941,0.0,122.86953977717523,384.66297648799474,1.0,122.86953977717523,235.5617259186736,1.1657989282054335,28.300000000000001,1.5,353.30498889261389,354.4018469214011,355.00776867346877,356.25774254609394,357.30826496097905,357.70662116884716,74.475889441925403,72.015635690760803,69.882223302515769,69.174673291171601,69.313474684719608,69.686895353411586 +1990,4,23,18,0,340,78,17.5,166.91619902116574,75.88244441942919,74.839832230973,274.66560579969587,0.0,60.851166865555975,161.38094491006649,1.0,60.851166865555975,104.83796979366861,1.5,27.199999999999999,2.6000000000000001,128.81811170972784,129.55940064358583,129.976524664675,130.73904239642087,131.37116124339786,131.61868386787171,34.07011362583485,34.449846660416092,35.116438495829449,35.995738672157984,36.47468688560852,35.970106816835226 +1990,4,23,19,0,35,27,18.5,29.907421698155613,87.47400200161444,85.23499502868191,282.59499290676126,0.0,11.264038397173183,27.12492895359647,1.0,11.264038397173183,18.599962179288553,0.9146106025610101,22.800000000000001,1.5,22.76695548170191,23.10354247462999,23.299519231607917,23.378281536807794,23.445262266503665,23.469979369148991,6.6447506095227835,6.5970965249470117,6.5457544567546915,6.5306733042555507,6.5199504337551115,6.4799718001414446 +1990,4,24,6,0,24,17,5.5,18.412941416063624,89.06544280223736,86.62489925102646,76.0915034780467,0.0,6.8143185106188211,16.26442830935758,1.0,6.8143185106188211,11.462466006618891,0.7012068583721307,13.300000000000001,2.1000000000000001,14.332866024806105,14.550410950724141,14.677252272647218,14.730135783805558,14.774837144486945,14.791563589184303,3.99847895332787,3.9867540548778475,3.9713127407836453,3.9725706405790158,3.9679051335177222,3.9360995577410001 +1990,4,24,7,0,339,60,6.5,132.46301248795913,79.05817616593056,77.65749217983013,82.99240902107493,0.0,51.01814037283043,124.00922672866839,1.0,51.01814037283043,83.220275844223735,1.5,17.199999999999999,2.1000000000000001,91.949425844385829,92.530170413444026,92.854093109341278,93.466737940253324,93.973950026719137,94.172619976313186,29.135644066872928,30.041978310565405,30.624349153327142,30.847916816006663,30.525806833514736,29.675994731099621 +1990,4,24,8,0,577,101,7.5,337.44044397024015,65.85697620373325,65.80926928184417,91.97744903830413,0.0,112.92002674994052,341.66249722904536,1.0,112.92002674994052,211.63963919813347,1.0749590594840253,19.399999999999999,4.0999999999999996,306.10653407384035,306.89573680949974,307.32407269076685,308.7313430433822,309.90636421038585,310.35913329678209,67.451327489123415,65.12093211312515,63.559284779141059,63.533845709442168,64.299203180374136,64.813282322283939 +1990,4,24,9,0,690,140,8.5,545.4386804410849,52.56856222922994,54.01366465605521,101.9719917818558,0.0,173.68430138573638,568.8062381573535,1.0,173.68430138573638,340.90158973311196,1.3200614993808846,22.199999999999999,3.6000000000000001,544.12861513907524,545.04878791808653,545.52499415245757,547.36739154852683,548.91498744063108,549.50510078082027,107.67247340709267,104.97367507251514,101.18356321703845,98.524369118904943,97.052090239719604,96.850815089229982 +1990,4,24,10,0,766,159,9.5,721.8478886020888,39.434239254902764,42.710663638990674,114.43813163181349,0.0,216.89682777010503,764.20190310220391,1.0,216.89682777010503,450.09646633876582,1.4330281864600138,25.0,2.6000000000000001,746.88170857135788,747.70668448365313,748.10323849073438,750.15579099297406,751.88831609124293,752.54328887898316,134.99518447322683,133.38197339424627,129.08161989927453,124.82410618188446,121.44170805782097,119.91316749131158 +1990,4,24,11,0,810,175,10.5,856.43292660120062,26.95401441927018,32.724974512105575,132.05039162098979,0.0,265.0904012816041,912.00142716887194,1.0,265.0904012816041,532.56749653344218,1.4899530203007814,27.199999999999999,3.6000000000000001,896.95959840059311,897.91304847979563,898.36290073999589,900.28416854471118,901.92452152564147,902.52887232167279,164.29299599785168,163.63921848402481,159.13107085041963,153.79482728532122,148.89229509828277,146.16189743882981 +1990,4,24,12,0,826,183,11.5,926.22550279134293,16.91404430981419,25.869687502487746,158.76619267460862,0.0,278.10405789422867,989.75881436859345,1.0,278.10405789422867,575.32163729575393,1.5,28.899999999999999,3.1000000000000001,975.74137183252139,976.61482133280276,977.01126167428549,978.85847895354789,980.44283950866452,981.02090154139182,172.09544243762528,172.08093000215257,167.65366303793311,161.8891126683792,156.44801381535009,153.2334919430989 +1990,4,24,13,0,755,189,12.5,873.29727105180575,15.413767304827653,24.993733829389782,193.14535730866527,0.0,262.29902485838193,933.31207251511819,1.0,262.29902485838193,542.72896582560725,1.5,30.0,5.2000000000000002,919.43907814713839,920.34176296170347,920.76273584741091,922.60749353438678,924.18473410682986,924.76437157868804,162.26953377818126,162.26936699803139,158.12240853684281,152.74309517116498,147.66795377112507,144.64957285690124 +1990,4,24,14,0,719,213,13.5,831.72785039601979,24.11075552970858,30.622795850992492,222.42632755447738,0.0,249.89046564580724,887.83041674096887,1.0,249.89046564580724,518.49959080130884,1.4976151010855454,30.600000000000001,4.5999999999999996,872.21013869786293,873.14036954605865,873.58331667703283,875.90916836800272,877.87242791681547,878.61524506025626,154.86463004753315,154.55965834908787,150.39932966974635,145.39918603130448,140.81506120450859,138.1351788844276 +1990,4,24,15,0,664,186,14.5,694.28053470217424,36.25226201804013,40.05004278624716,241.93522747118786,0.0,208.81440003635447,736.26025438837701,1.0,208.81440003635447,433.55106207841266,1.44895212434273,30.600000000000001,5.2000000000000002,719.3162136595472,720.29265209764947,720.78257390316787,722.99113049092512,724.84683611680441,725.5557659856255,129.72716776602874,128.55428757685789,124.64534568145231,120.6655719292152,117.36900858270252,115.70403955081687 +1990,4,24,16,0,568,213,15.5,569.5290491593571,49.28507759793669,51.119953876605685,255.37129390620754,0.0,181.14261588311609,593.23710929461208,1.0,181.14261588311609,355.46126439518457,1.3524142524677116,31.100000000000001,3.1000000000000001,569.06842103052293,570.69232036336416,571.58386102662882,573.35728760453048,574.85091598405097,575.41742710395067,111.84886588492388,109.65257329702455,106.10302623515992,103.39371692707931,101.67990153899146,101.11893486402928 +1990,4,24,17,0,348,169,16.5,327.90506525538819,62.55160881315,62.830542031068184,265.81917959856526,0.0,106.12047307092732,332.0654763376798,1.0,106.12047307092732,204.20500188680245,1.1515159147580294,30.0,3.6000000000000001,305.39924036822367,307.05684433735019,308.00313939358637,308.89245029820069,309.64486791636136,309.92550531316317,63.765151119800279,62.002977114898727,60.543226960253484,60.118016466671818,60.24649634449829,60.439863374829656 +1990,4,24,18,0,249,103,17.5,168.77319279093763,75.78082919943621,74.68358572118827,274.9683142072745,0.0,59.707712069740687,163.5106585426426,1.0,59.707712069740687,105.29897821492091,1.5,27.800000000000001,2.1000000000000001,135.38638424299828,136.48043159632064,137.10801677545911,137.64340371149785,138.09153244729458,138.26288096051437,33.696606413701709,34.025619299891886,34.56322327644714,35.236413485218769,35.540623320087256,35.0634929230743 +1990,4,24,19,0,22,31,18.5,32.856573699028921,87.45918971284503,85.15906805755392,282.9502812819335,0.0,11.64874071339948,30.610752909928756,1.0,11.64874071339948,20.187991747929669,0.879183784786917,25.600000000000001,4.5999999999999996,26.820679448432237,27.222213977384726,27.456712493864103,27.457820619053642,27.461977085327561,27.460572637107216,6.8388603799036556,6.7936677703932595,6.7559489249382985,6.7363370660635518,6.711402149298892,6.6669036579254755 +1990,4,25,6,0,0,16,5.5,16.0,89.01295420035831,86.51612346250745,75.7660232030844,0.0,5.0320646406386871,15.727955553886897,1.0,5.0320646406386871,9.7403244857101008,0.7446886546809539,14.4,3.6000000000000001,14.602579084196158,14.825201036823428,14.955777881676239,14.925614900053471,14.902557706760367,14.891672549871791,2.9385140491119039,2.9297078915967272,2.9247879634132943,2.9154467277040252,2.8966052822527661,2.8734500911736669 +1990,4,25,7,0,4,49,6.5,49.870406820935955,78.87790825073704,77.43179145532535,82.74781446049495,0.0,15.787754946908239,48.959076323298127,1.0,15.787754946908239,30.394688550325412,1.5,13.9,4.0999999999999996,45.199379000622635,45.87933376945503,46.277970606172843,46.195796692605349,46.133517774575395,46.10355752015171,9.213262665588406,9.1970060327449286,9.1882349804574375,9.1624196513279372,9.1019245477194559,9.0223248171766475 +1990,4,25,8,0,263,151,7.5,259.70822437992592,65.68290409273085,65.58522500425745,91.71296588662382,0.0,85.334825843919347,260.9146069843423,1.0,85.334825843919347,161.99788119758301,1.0620952749907417,14.4,3.1000000000000001,235.99628920028056,237.50802193332242,238.37629180814113,239.18061627127923,239.85767378472053,240.11342018268789,50.554699263628159,49.302386291501954,48.488005384574912,48.532800895178319,48.931842037193007,49.100106309825918 +1990,4,25,9,0,647,149,8.5,531.27820912914524,52.39335153026922,53.78284108031758,101.68175426360825,0.0,169.1413586051485,553.19948524458084,1.0,169.1413586051485,332.31950426715258,1.3092907924381874,17.800000000000001,2.1000000000000001,528.76740204035173,529.7687617069023,530.29571345327122,532.18920419438371,533.77640992935812,534.38418707261008,104.64756631704842,101.93112281003819,98.272319548454448,95.868639542314853,94.654923968221127,94.548714320555717 +1990,4,25,10,0,714,172,9.5,698.74694607800075,39.24555066042196,42.46067789498063,114.1222228842509,0.0,216.33888582297811,738.66449653151574,1.0,216.33888582297811,436.07841867035341,1.423722440580979,21.699999999999999,2.1000000000000001,721.0155072938112,721.93892866476165,722.39504245835883,724.52081473856799,726.31210281099493,726.99162739778137,134.55571576106868,132.82763177133572,128.54394562895249,124.40363231594797,121.19960672086353,119.78090444532255 +1990,4,25,11,0,571,289,10.5,770.89747073222372,26.727925463353415,32.44001101954589,131.74583893711426,0.0,232.57295895896627,816.83568791737332,1.0,232.57295895896627,480.8220121537276,1.4814950536972369,23.899999999999999,3.1000000000000001,797.35629928069534,799.09163244743627,800.02254108570992,802.29735206009991,804.21298107532209,804.94108519977999,143.65519300182245,143.04680779472301,139.32688648041434,135.16756821779001,131.39478214594439,129.21701293197174 +1990,4,25,12,0,573,280,11.5,796.98380601490271,16.610306745859162,25.5458482530785,158.63695115774374,0.0,246.84937141681559,849.8872466550838,1.0,246.84937141681559,497.20788914396184,1.5,27.199999999999999,3.1000000000000001,832.82987697202464,834.12883351936375,834.79306491763271,837.16496816687732,839.1634332582754,839.92217270421838,152.50573792893653,152.39490488088722,148.59110185390801,143.90886833838374,139.51710633079813,136.87258553092607 +1990,4,25,13,0,618,286,12.5,847.54105233465361,15.12069114845648,24.68157876611205,193.3889050875908,0.0,255.04836474940424,903.94024986252646,1.0,255.04836474940424,528.28287164330379,1.5,28.300000000000001,4.5999999999999996,886.61840263337513,887.93627857545653,888.60823889186031,890.96634919111773,892.95644374445988,893.7095727924584,157.52880640917206,157.60306947366252,153.7309020392361,148.82057001725724,144.20069132352,141.34082485861194 +1990,4,25,14,0,660,217,13.5,786.4077724359297,23.935068568161114,30.37447161470163,222.8494589085878,0.0,243.44576657838539,838.54851483342145,1.0,243.44576657838539,490.64433748953547,1.4891167614462142,31.100000000000001,3.6000000000000001,823.02996904006295,823.98301929367017,824.44235462641359,826.78204606576583,828.75419715857561,829.50238532817377,150.91165338256258,150.39210669527128,146.2827167811605,141.51843586978993,137.16922420562236,134.67311392133607 +1990,4,25,15,0,756,177,14.5,757.361293554079,36.132015473297656,39.854556523760735,242.34563159457215,0.0,234.44681774510954,802.33008769784146,1.0,234.44681774510954,472.26257917393269,1.4395418359581522,31.100000000000001,4.0999999999999996,785.401645959608,786.30067645026975,786.73372232607471,788.89417189967457,790.71923582543582,791.40774599867689,145.74767537542829,144.21316828788318,139.70721556679285,135.10891363158649,131.376532241299,129.60484291697438 +1990,4,25,16,0,606,173,15.5,554.75252737274479,49.185208765966486,50.95322207208392,255.73450629542316,0.0,176.57734600268327,579.62108910683992,1.0,176.57734600268327,347.14801114992622,1.3413505535707302,31.100000000000001,2.6000000000000001,556.91225628187931,558.07497546901755,558.69403192178299,560.72656645757672,562.42893047067446,563.08277879448985,109.39474686311696,106.93745417063789,103.23147279276297,100.52519849583608,98.993941896735251,98.597038968351768 +1990,4,25,17,0,132,201,16.5,261.59233318148557,62.45571010103349,62.675284802173366,266.14386669352825,0.0,84.921398083931109,262.70717980660447,1.0,84.921398083931109,162.33829666476151,1.137569165811718,30.0,2.6000000000000001,241.8208011418638,243.9375865305461,245.16517962694215,245.70355911273953,246.16447277591291,246.33139006180932,50.552688421413166,49.591331370379677,48.793312213496414,48.575428330843799,48.604621307817453,48.582424345446526 +1990,4,25,18,0,67,88,17.5,105.87325159626245,75.67931375157751,74.52814721713237,275.2672097208115,0.0,35.634995471114237,103.59239119283953,1.0,35.634995471114237,65.801879010156,1.5,26.699999999999999,4.5999999999999996,90.055434434714428,91.086215526077225,91.685796425240525,91.945571908085,92.164977656914459,92.247060431888784,20.41958882659954,20.548689203024757,20.732604243833098,20.96729502948445,21.040256287152573,20.795195645873932 +1990,4,25,19,0,15,23,18.5,24.285554946142366,87.4439479610665,85.08351054471089,283.3014226269534,0.0,8.2856848347179248,23.127338887779501,1.0,8.2856848347179248,14.912483760172103,0.8457085457525615,25.600000000000001,1.5,20.685732257366062,20.997626356147357,21.180076206109849,21.178327702093775,21.179202518651248,21.177359023184131,4.8545085753626722,4.8305880898492424,4.8113750013615331,4.8017101050393993,4.7841335518473951,4.7500629243864045 +1990,4,26,6,0,88,16,5.5,21.511648656095819,88.96158741837098,86.40907910841152,75.44350084679375,0.0,10.65741069725893,14.66390498462432,1.0,10.65741069725893,13.755770610791821,0.7843754918737362,17.199999999999999,2.6000000000000001,10.981304246851682,11.144674258951587,11.237690320247186,11.423737412317532,11.577409072334751,11.638240063486391,6.2989430649626135,6.2682492867654274,6.2166979819475152,6.2191903115459155,6.2267538910828906,6.1736949292685654 +1990,4,26,7,0,500,44,6.5,154.68858910093326,78.70129334190848,77.21006582601228,82.5045470831028,0.0,61.8911408936114,142.33775881171874,1.0,61.8911408936114,97.256043523522848,1.5,20.600000000000001,2.6000000000000001,101.26062440715759,101.62685212615671,101.81803381297516,102.54682610245655,103.15016804972701,103.38649516928598,35.27321863174506,36.556616870166302,37.35021693356844,37.598915384854266,37.086699119361406,35.910494405287672 +1990,4,26,8,0,707,67,7.5,361.69832031964631,65.51283123856928,65.36543038223157,91.44947911998963,0.0,124.85608817682422,364.57998796921009,1.0,124.85608817682422,226.10236954433736,1.0495487374185972,25.0,4.0999999999999996,327.8260471284745,328.32485885642063,328.57656538671597,329.80497239236388,330.83941024590621,331.22978448345094,74.207891463681392,71.478561438188592,69.80509838065089,69.926256833061927,70.91201582584435,71.561312514625996 +1990,4,26,9,0,810,87,8.5,568.16337084548684,52.22258384658556,53.55656785253558,101.39186488819146,0.0,181.05365375756477,591.11122389974093,1.0,181.05365375756477,353.90284279714689,1.298737942964079,27.199999999999999,5.2000000000000002,568.52501300460597,569.06873170128506,569.31808474663876,570.79717817958692,572.05330539242743,572.51974847806525,112.36401483951052,109.15516528850132,104.95384718079133,102.07805732549033,100.56833987075284,100.50877488664186 +1990,4,26,10,0,865,101,9.5,741.6383068207698,39.06193221447657,42.215545300544505,113.80527488657654,0.0,229.5347926225958,781.54502068165516,1.0,229.5347926225958,460.30875439789605,1.414584227674463,29.399999999999999,5.2000000000000002,766.47738643625485,767.24205429454605,767.5983036249562,768.95018104418205,770.11968160397726,770.53710929283147,142.8493323697509,140.52644405036136,135.74478686486447,131.12220297277963,127.66660466405075,126.33829799321555 +1990,4,26,11,0,899,111,10.5,872.062323390963,26.5076362167138,32.159951096531074,131.4375786118604,0.0,269.85089467496869,925.56551774343598,1.0,269.85089467496869,540.16684911582706,1.4731795163916495,31.699999999999999,6.2000000000000002,913.45504552266118,914.22707055473984,914.56710493272215,915.76720979604238,916.82573999163321,917.18684410439948,167.49126478706407,166.29927996818719,161.38447155950684,155.75001396909417,150.68137174363602,148.12205946782612 +1990,4,26,12,0,848,108,11.5,875.12796070968989,16.311710965902208,25.226230916267056,158.50250261900686,0.0,262.62511752020265,931.90047453246348,1.0,262.62511752020265,541.58090734271343,1.4992755025087448,32.200000000000003,4.0999999999999996,921.32338803659923,922.02470817872688,922.32535571661003,923.35875713500775,924.27990972904308,924.58677892973878,162.74473738150894,162.22726883780652,157.74774311126376,152.11303315639014,146.88050895068659,144.02106204163886 +1990,4,26,13,0,869,101,12.5,892.55313637122606,14.83176418141067,24.37300734697463,193.6316183119518,0.0,267.7810659040847,950.92239958666755,1.0,267.7810659040847,552.18016836035906,1.5,32.799999999999997,4.0999999999999996,940.70302655106752,941.35155935209025,941.61839666391245,942.60471400316408,943.48947863711726,943.77974591345719,165.98293773431703,165.44393588445854,160.85070603321057,155.05992935685705,149.68145229377194,146.75573468238841 +1990,4,26,14,0,677,181,13.5,766.53327675039714,23.763086167016564,30.129389823488225,223.27134654101187,0.0,230.12481289014116,817.50549683966415,1.0,230.12481289014116,478.02804978403617,1.4807597983943723,33.899999999999999,4.0999999999999996,803.8072797378145,804.50284316267073,804.81441780239288,807.01194955557366,808.86548777095152,809.56792749545275,142.9965708592097,142.30549009691038,138.20754527397966,133.56384439051834,129.38198133720513,127.09446634417725 +1990,4,26,15,0,723,175,14.5,731.5858743197615,36.013890192986494,39.66152548701034,242.75297337026316,0.0,226.47163944487764,774.2522294726275,1.0,226.47163944487764,456.38018050520549,1.4302974877066688,34.399999999999999,2.1000000000000001,757.70522961755228,758.58328569064804,759.00790953053445,761.16220568351025,762.97998520645785,763.66746428010026,140.92430243039666,139.08740540482077,134.56133089486511,130.17085940162502,126.77015901986404,125.28058461185849 +1990,4,26,16,0,782,123,15.5,617.3717706431637,49.08643829236542,50.78819431864967,256.0940354722888,0.0,196.65653233134481,644.58331981627146,1.0,196.65653233134481,385.02157714311136,1.330504236691529,33.299999999999997,4.0999999999999996,622.54715270771078,623.38174601474361,623.79683124911116,625.57798834840639,627.0838431609111,627.64988006744215,122.15161691842518,119.17397784135653,114.80180940904005,111.50547825832142,109.59497083928157,109.18113911660626 +1990,4,26,17,0,632,108,16.5,399.61774573763483,62.360289174711866,62.52119322987961,266.464723977851,0.0,133.97513728771511,406.82448690117536,1.0,133.97513728771511,250.22268771752431,1.1239562944393369,31.699999999999999,3.6000000000000001,373.91234288100503,374.70501822050267,375.12656684968726,376.6414018840178,377.91036544004101,378.39546426663162,80.854211411604084,77.924556615038227,75.663242590206835,75.17646619265625,75.716270894697558,76.273418948730495 +1990,4,26,18,0,479,65,17.5,194.02572737353665,75.57789199020073,74.37352921276145,275.5621866994533,0.0,72.341679663744813,185.48480245144739,1.0,72.341679663744813,122.13564155957103,1.5,32.200000000000003,4.0999999999999996,145.28755624033184,145.84511157567647,146.14768707602099,147.11818521707826,147.9204350911487,148.2365568971091,40.205884322452505,40.972453367567532,41.98186371069793,43.143040859468584,43.635229991441697,42.858974424173027 +1990,4,26,19,0,118,29,18.5,39.267277287809307,87.42827181031322,85.00833486940088,283.6483098975063,0.0,17.676675996924658,32.160803200244203,1.0,17.676675996924658,24.619282872297763,0.8141041766652211,27.199999999999999,1.5,23.786873775590312,24.12121541860909,24.313323431427012,24.48167880157505,24.623080154033214,24.67687160134582,10.409361115391974,10.288794702243433,10.191422647126293,10.198051339261257,10.228572091414142,10.180823931929483 +1990,4,27,6,0,3,20,5.5,20.19339691659437,88.91138991799878,86.30382784500627,75.1240193932925,0.0,6.5062543737750858,19.55692312354789,1.0,6.5062543737750858,12.300911957626605,0.8205990353271106,16.100000000000001,2.1000000000000001,18.065636055252806,18.340876222084788,18.502200538822457,18.466606066466177,18.439557225481646,18.42662461363782,3.8018186830502896,3.7889558211909842,3.7807467099235645,3.7681405612596905,3.7440667648271013,3.7140060193308226 +1990,4,27,7,0,175,79,6.5,118.38905275919973,78.5284034148503,76.99239977790484,82.26266939838929,0.0,43.081007374416288,112.5916936875324,1.0,43.081007374416288,74.023210041265045,1.5,21.100000000000001,2.1000000000000001,90.635437742756778,91.49396636663441,91.987101682429255,92.422287895684747,92.784894384711095,92.924963634721493,24.855307461395327,25.420814327004653,25.736087662332192,25.828019298580259,25.560803460433515,24.96301026717909 +1990,4,27,8,0,401,141,7.5,309.51812635413819,65.3468167688369,65.1499623546449,91.18707240655236,0.0,104.8462544351119,311.45795037742164,1.0,104.8462544351119,193.91792420878159,1.0373082165713021,23.899999999999999,2.1000000000000001,280.89330619283106,282.13584792301458,282.83728736746542,284.07359360974311,285.10688329782096,285.50419350764855,61.992108005591874,60.233804130231107,59.15915573390739,59.397186927092548,60.170039037207204,60.517300530641172 +1990,4,27,9,0,539,194,8.5,515.85649532419575,52.05631135923325,53.33492169070275,101.10243172551785,0.0,164.0605656361102,533.53813702201955,1.0,164.0605656361102,322.16918310574414,1.2883986048522562,27.800000000000001,2.1000000000000001,508.88110915433481,510.38580300792842,511.21518724361977,512.89635664550156,514.30920466977091,514.84649693627625,100.90745961383421,98.327088538585926,95.096867539689484,93.071666135978759,92.093292379210865,92.034029021543503 +1990,4,27,10,0,620,232,9.5,692.92822501298008,38.88343803954296,41.97535098719735,113.48741341113346,0.0,214.74960009708721,728.77036483283996,1.0,214.74960009708721,432.83095988478601,1.4056117131048458,31.100000000000001,1.5,708.42375297501962,709.88544757079535,710.66380661550011,712.928139604085,714.83064793216499,715.55697560716442,133.15304022444965,131.29345672051232,127.18224395781493,123.39638812197111,120.62272938186973,119.40260500868217 +1990,4,27,11,0,678,256,10.5,831.69721252702902,26.293232195968226,31.88489916967886,131.12568488284222,0.0,250.31188638406235,882.18804598122301,1.0,250.31188638406235,518.56682318131959,1.4650056858928644,33.299999999999997,1.5,864.23201350674344,865.55451549210272,866.23162001214894,868.60234689833226,870.60224760062408,871.35947301293504,155.21938801924452,154.13710941525716,149.72494297015785,144.96217367218273,140.80335432787254,138.61910120071798 +1990,4,27,12,0,628,294,11.5,863.57313131407534,16.01840397821891,24.910942815335623,158.36270398150825,0.0,267.46981934135738,918.50894368670834,1.0,267.46981934135738,538.08276865089351,1.4914626984340535,34.399999999999999,1.5,900.76561105697533,902.16262369577339,902.87607797144653,905.20959861757797,907.18400536460035,907.92645567787145,165.47510021575013,164.89416124779976,160.51720867905433,155.41930691665897,150.74228320637457,148.04880570592803 +1990,4,27,13,0,527,341,12.5,822.1834016559668,14.547049164775085,24.068085192430466,193.8732594103122,0.0,248.03185471058299,872.48343678410197,1.0,248.03185471058299,512.79998819280468,1.493729485861063,35.0,4.5999999999999996,852.45074775736282,854.28876760282083,855.27420898401692,857.69654999319164,859.7362464264578,860.51180021127584,152.98277607960372,152.72889974378774,148.95338425641987,144.47780856055678,140.35291297408071,137.83156055814811 +1990,4,27,14,0,396,346,13.5,689.33393696598262,23.59476777005427,29.88756785475829,223.69171395905516,0.0,213.8770317763001,727.74232556235211,1.0,213.8770317763001,430.76535059061706,1.4725445437932798,32.799999999999997,5.2000000000000002,707.05571967783487,709.1313863280036,710.27424047172769,712.61443883920992,714.57634285606173,715.32912891856324,131.74725257241113,131.1296025684976,127.84430122697729,124.34853032363765,121.229021759202,119.37473541870466 +1990,4,27,15,0,188,369,14.5,514.1260506309809,35.89782965100823,39.470941849429344,243.15703407181016,0.0,160.21768137345288,529.18351869930655,1.0,160.21768137345288,319.13543225804159,1.4212193943642328,32.200000000000003,4.0999999999999996,505.65140954117896,509.00465639628436,510.93454020291711,511.99209069447829,512.89677662820634,513.22703753189558,97.203011800832613,96.411219863907817,94.495909343035819,92.674900359844941,91.153305407558065,90.233715043974968 +1990,4,27,16,0,433,261,15.5,535.69310086984069,48.98872421383013,50.62486154602447,256.4497217049821,0.0,170.21235822323447,554.43652925784761,1.0,170.21235822323447,334.70922249465974,1.3198751556199184,32.200000000000003,3.1000000000000001,529.53772098756997,531.58943070602095,532.74139710658937,534.55914428765925,536.08419871862748,536.6670158875346,104.54267200054819,102.37147946686208,99.272737784017693,97.148850022857332,95.950258817737236,95.651760700891188 +1990,4,27,17,0,235,181,16.5,289.98989281482909,62.265322407580356,62.36826737624015,266.78162682759586,0.0,95.15661407102607,292.5399135878456,1.0,95.15661407102607,180.97616766684413,1.1106749603739783,31.100000000000001,2.6000000000000001,268.84696313238771,270.60902745706028,271.62205648299573,272.55461876655716,273.33841709555685,273.63562137980557,56.75650954610559,55.366215440854866,54.311458516513355,54.15619214840271,54.439102061065228,54.576764514732886 +1990,4,27,18,0,192,91,17.5,143.21413610065431,75.47655963359036,74.21974561624491,275.8531409300078,0.0,51.152577058876197,138.50829115251295,1.0,51.152577058876197,89.503900250272807,1.5,30.0,4.5999999999999996,115.59122976996167,116.56428698495716,117.12295941166869,117.63245468511712,118.05717320016993,118.22115875524216,28.913408232097357,29.327022958624564,29.823282601751977,30.357369235365841,30.518167858646361,30.037788791705161 +1990,4,27,19,0,5,20,18.5,20.441554868595009,87.41215719919118,84.93355392073916,283.990836802608,0.0,6.5834586865902578,19.887167372904948,1.0,6.5834586865902578,12.446478355833845,0.7842944773018821,28.300000000000001,5.2000000000000002,18.306899948393372,18.58517754007703,18.748283070797498,18.710261002140232,18.681268028719387,18.667508262731815,3.845152919707941,3.830302055413751,3.8218672298890706,3.8101332463225952,3.7871912807129267,3.7577936832850378 +1990,4,28,6,0,72,21,5.5,25.77118445242089,88.8624056908189,86.20042777513184,74.8076627507972,0.0,11.434797511351038,20.014627689574226,1.0,11.434797511351038,16.201616941848684,0.8536508023804625,17.800000000000001,2.1000000000000001,16.333008722743518,16.578131695247343,16.719513154219456,16.846582774612667,16.952703201715785,16.993611650888699,6.7542964168372208,6.7225766587337068,6.6716804645116969,6.656935305733569,6.6422908405073517,6.585184223275963 +1990,4,28,7,0,440,59,6.5,159.63232077921759,78.35930701646421,76.7788746441246,82.02224625214085,0.0,63.924971722155156,147.95167555594162,1.0,63.924971722155156,100.66410531307974,1.5,20.600000000000001,3.6000000000000001,108.83713884398307,109.36917032708882,109.65838023322922,110.52170026330904,111.23506449521277,111.51626619648579,36.68220260413554,37.92077441789732,38.610411073646837,38.784215810821784,38.244486615289574,37.075416192192613 +1990,4,28,8,0,663,89,7.5,369.83658205382994,65.18491622397671,64.93889469302499,90.92583247831507,0.0,127.3306434876708,371.73439657955925,1.0,127.3306434876708,231.39187554501279,1.025363096955236,23.300000000000001,6.2000000000000002,335.11782215847285,335.76407045967761,336.10331332387,337.43609640052233,338.55506142461081,338.98072392160873,75.083797015888607,72.554834561968633,71.152503237497015,71.556259641772471,72.750704063969792,73.362618864536913 +1990,4,28,9,0,615,154,8.5,523.10412220016588,51.894582035946804,53.11797585782609,100.81356749406928,0.0,170.95608539778135,542.64032005640809,1.0,170.95608539778135,327.38275326652928,1.2782686381351964,25.600000000000001,6.7000000000000002,518.8694592560613,519.90217731164694,520.44790378129403,522.37489798890545,523.98960649344804,524.60798001454759,105.47679539168271,102.53214540711373,98.918183232422876,96.7199136998629,95.747274416122437,95.773701523384347 +1990,4,28,10,0,642,184,9.5,663.04212294652757,38.71011705431838,41.74017650419177,113.16877227726124,0.0,205.33431578205898,698.43599715546077,1.0,205.33431578205898,414.26717457733605,1.3968031584688205,26.699999999999999,7.2000000000000002,680.83341832138979,681.83795903701957,682.348333495563,684.53664743851652,686.37535292431346,687.0774763094372,127.66569688724491,125.55945452243733,121.30840258176761,117.57181515109858,114.97608603087835,113.97974433381752 +1990,4,28,11,0,446,260,10.5,639.80919360342989,26.084792843988282,31.614956890048276,130.81024504956164,0.0,198.34668250882729,676.65788618305601,1.0,198.34668250882729,400.04652068460069,1.4569728958745227,27.199999999999999,6.2000000000000002,659.2447363968306,660.74786399988818,661.55668314597438,663.79343332823612,665.66744625592241,666.3876206159448,122.64504606607663,121.775084917836,118.4271561321596,114.98436116521097,112.05558222236004,110.44856539530315 +1990,4,28,12,0,614,252,11.5,810.2705667289863,15.730532544202758,24.600090613162937,158.21741845122966,0.0,243.59181188926866,863.02295741048601,1.0,243.59181188926866,505.4625538445647,1.4837812797525145,29.399999999999999,6.2000000000000002,847.18214741479119,848.22361058971262,848.7355298355335,851.12615428798256,853.1400064508523,853.90523613147502,151.11797519219448,150.41949947870069,146.20639264541697,141.4569427082607,137.17454180620894,134.79283808846679 +1990,4,28,13,0,734,225,12.5,896.75152012541366,14.266606175837682,23.7668769932142,194.11358358681383,0.0,269.23012259594816,956.32364915469077,1.0,269.23012259594816,558.57839895223503,1.486037087421769,29.399999999999999,8.8000000000000007,941.36656895243379,942.19106746302748,942.56199529450657,944.90134252466657,946.88230068522944,947.6263351610296,167.24792412905617,166.40961379393462,161.61963865851661,156.15316423258258,151.21709389216625,148.54206386670515 +1990,4,28,14,0,512,278,13.5,722.96486403028518,23.430069143064163,29.649021641091874,224.1102799047272,0.0,218.05566718080971,765.25159161704357,1.0,218.05566718080971,451.39572914496716,1.4644713508353542,30.0,6.2000000000000002,747.05520561641367,748.63119721822727,749.47397547929324,751.77124658159084,753.70078638481732,754.43840179131564,134.89145990376664,134.02964116544501,130.36729293377678,126.47274058938649,123.0731687266691,121.21559705024325 +1990,4,28,15,0,267,302,14.5,508.66610152520479,35.7837768390986,39.28279736378789,243.55759487943988,0.0,158.17641587850886,528.68272541557997,1.0,158.17641587850886,317.24499474655187,1.412307886689623,29.399999999999999,7.2000000000000002,508.24237454913259,510.68574083857595,512.07412625151801,513.61620042348443,514.91386975090154,515.40692059726189,96.838892590932957,95.784732032628654,93.419934248194096,91.288040892520513,89.679373141414118,88.82050170032123 +1990,4,28,16,0,497,196,15.5,512.37702151060978,48.89202545556534,50.46321523417821,256.80140637374296,0.0,162.96583939620911,531.56848420433994,1.0,162.96583939620911,320.23488333141233,1.309463177432744,28.300000000000001,7.7000000000000002,509.73962126609911,511.1974065433742,511.99886825544371,513.75143999967702,515.22195331403225,515.78363230483535,100.40506268900616,97.991664846546328,94.732188445962493,92.600437401274419,91.506248355468017,91.352919176254545 +1990,4,28,17,0,390,157,16.5,338.79138234048025,62.170787694052024,62.216508443626516,267.09445195386235,0.0,112.41166613530341,343.11491542229732,1.0,112.41166613530341,212.28531028071532,1.0977228628003162,28.300000000000001,4.5999999999999996,315.11684362170058,316.46158214508847,317.22022959400971,318.58333840938889,319.72180559111894,320.16020390345193,67.189824334552199,65.158506189280189,63.70637767824558,63.60302397924557,64.168863108131475,64.524875722090187 +1990,4,28,18,0,240,106,17.5,171.8839012467823,75.37531424560997,74.06681178670424,276.1399696680993,0.0,61.667787723826969,165.65216167334239,1.0,61.667787723826969,107.26276318393285,1.5,27.199999999999999,4.5999999999999996,138.07544182903874,139.19741711399735,139.84036717241469,140.39410749722066,140.85693882878348,141.03439888335723,34.80927265592193,35.366016878082846,35.998626414191484,36.638392462962308,36.783751691415297,36.166774989701089 +1990,4,28,19,0,9,29,18.5,29.806434900522422,87.3956009559236,84.85918110993758,284.3288978400414,0.0,10.205462270068892,28.359639494307086,1.0,10.205462270068892,18.308882504298825,0.7562073870806874,26.100000000000001,4.0999999999999996,25.374779043870422,25.757355517534062,25.981138775303194,25.981214862731299,25.984075775466284,25.982555149588048,5.9692654866145753,5.942080806335805,5.9233598690614047,5.9173736939463293,5.8999459441613915,5.8572178468244385 +1990,4,29,6,0,3,11,5.5,11.204101578424174,88.81467542559842,86.09893361546216,74.49451573721018,0.0,3.6233563672823395,10.868162349788628,1.0,3.6233563672823395,6.8142274789003077,0.8837880766448709,16.699999999999999,2.1000000000000001,10.046759768362209,10.19981302110112,10.289518274436723,10.26596066715731,10.247872978260386,10.239416582730616,2.1169151055030686,2.1093543446717833,2.104704034543984,2.0968200516763216,2.0823905852133158,2.0655647394084191 +1990,4,29,7,0,4,29,6.5,29.929058159145928,78.19406924584911,76.56956857790308,81.78334480433028,0.0,9.5086568824881006,29.32329941705602,1.0,9.5086568824881006,18.21959369550839,1.5,15.6,4.0999999999999996,27.036182037941728,27.439682537273093,27.676181208489439,27.619139645708405,27.575511686739805,27.554934793569736,5.5465162898437494,5.5388772156390811,5.5351146056620752,5.5178754121134128,5.4778401563138219,5.4274482124148395 +1990,4,29,8,0,3,78,7.5,79.280544477862321,65.02718151239934,64.73229794107098,90.66584908682799,0.0,24.977687317206847,78.033109459076584,1.0,24.977687317206847,48.358719078399751,1.0137033480215571,15.0,4.0999999999999996,72.346354324504688,73.431629406256107,74.068029764439913,73.951447838616843,73.863851885664545,73.820937767067548,14.592996489279285,14.54343721472298,14.513959397611542,14.474322979721272,14.392585991591897,14.282415737131084 +1990,4,29,9,0,10,193,8.5,199.03127244788936,51.73743957808451,52.90580008370181,100.52538950090076,0.0,62.684819039936038,197.02447252483714,1.0,62.684819039936038,121.70859729709659,1.2683441041529497,15.6,2.6000000000000001,183.4599403688149,185.95305970430877,187.41280735258391,187.21920048294595,187.07978852309483,187.00521404062621,36.856208242517631,36.635768074003003,36.425530371292098,36.23964888630497,36.005262620018087,35.754815595741746 +1990,4,29,10,0,156,333,9.5,449.81886950473404,38.54201288047653,41.510099703124595,112.8494933529493,0.0,140.2488944246617,461.19889685398277,1.0,140.2488944246617,279.38128253791729,1.3881569206450215,16.100000000000001,3.1000000000000001,439.19787335122822,442.31510179454642,444.11335987960263,445.10325691941364,445.9470897169403,446.25770185386602,84.952949089066479,84.109319497090183,82.424553658087888,80.970500597147463,79.856256500348593,79.191650347241577 +1990,4,29,11,0,22,330,10.5,348.78806851228586,25.882391256628157,31.350222974702692,130.49135991543147,0.0,108.78477921065664,348.4844594153538,1.0,108.78477921065664,213.86387916590201,1.4490805358400247,19.399999999999999,4.0999999999999996,326.69294658040309,330.71715402099255,333.06961315444835,332.92163742468551,332.83237670428912,332.76620590149537,64.298423325687267,64.053994717441967,63.594080115425776,63.078663820089645,62.467500264062416,61.899865603760738 +1990,4,29,12,0,133,352,11.5,473.22257644856489,15.448242943161457,24.293780254453115,158.0665163936792,0.0,147.46505359775881,489.91601332376695,1.0,147.46505359775881,294.45307157897571,1.4762311704155753,20.0,3.6000000000000001,468.58025471756321,471.65192251806536,473.41870979429223,474.64165228403931,475.67610317071382,476.06417260165966,89.385829450232748,89.068804260450719,87.486948222057222,85.834813692633801,84.285044205065375,83.200135787767394 +1990,4,29,13,0,589,289,12.5,829.27354980069265,13.990492502827903,23.469446539843624,194.3523388304648,0.0,249.56007537035066,881.16063007758817,1.0,249.56007537035066,517.02698802348743,1.47847657381261,21.699999999999999,2.6000000000000001,864.05816172655864,865.35651914199377,866.01904470136299,868.37214215314896,870.35723735643285,871.10896769696865,154.60892792256462,153.89920186103038,149.67734114706511,144.91288439602104,140.60471030232975,138.19461424479496 +1990,4,29,14,0,335,315,13.5,606.81710727976565,23.268942524486697,29.413765745616715,224.52675853163532,0.0,188.47577861988034,635.71737175998624,1.0,188.47577861988034,378.01198087139193,1.4565405927616824,23.300000000000001,3.1000000000000001,616.03456744704999,618.37852960833311,619.69332671541792,621.35332581167859,622.75606824411113,623.2842489834627,115.67713866338323,114.91179462835044,112.12760868898087,109.23752753464481,106.72267517537684,105.28303046074394 +1990,4,29,15,0,9,274,14.5,280.9847065848968,35.67167442681809,39.097083465554896,243.95443702655456,0.0,88.183621489783945,279.39118283614533,1.0,88.183621489783945,172.0928403263521,1.4035633093744793,23.899999999999999,6.2000000000000002,260.97458862596528,264.40251417602269,266.40848114277969,266.22678957713464,266.1042455338627,266.02987240311171,51.975049810304498,51.75158900868221,51.435672702021932,51.095786163722948,50.678279868736503,50.258954882962428 +1990,4,29,16,0,148,108,15.5,202.53118267643168,48.79630193763202,50.30324749868994,257.14893204503795,0.0,64.279291538364362,208.48336743323588,1.0,64.279291538364362,126.62313743816937,1.2992681791030094,15.0,7.2000000000000002,198.13967461648025,199.14397241189531,199.71589636759512,200.43969793835606,201.04552003664733,201.27815925911523,39.251998649288751,38.49017966801339,37.435959983956373,36.771553522817754,36.425234062508487,36.320424620253 +1990,4,29,17,0,44,109,16.5,129.61203850156909,62.07666451756274,62.06591883364036,267.4030774513884,0.0,41.769225268472965,128.71291343967656,1.0,41.769225268472965,79.770653189335675,1.0850977335280552,14.4,5.7000000000000002,118.97937479884965,120.37205888033655,121.1851538002733,121.23080491137974,121.27964531753138,121.28839006101283,24.577896935729047,24.285225624221418,24.082688901716111,24.032061322141189,24.011269008679875,23.928481058185096 +1990,4,29,18,0,76,106,17.5,127.05712209570626,75.27415527458429,73.91474456859011,276.42257167986065,0.0,42.807085161913577,123.43365370088601,1.0,42.807085161913577,78.184351103130027,1.5,14.4,1.5,108.93796277706902,110.23081145428429,110.98341614834692,111.02065552595124,111.06152330426009,111.06790552414556,24.54452341284097,24.725923518334479,24.947905989074158,25.132587388781438,25.092401356628407,24.757006908138955 +1990,4,29,19,0,23,26,18.5,28.090453779341953,87.37860081143734,84.78523038082888,284.66238833389724,0.0,9.8879766965964802,26.314737299359098,1.0,9.8879766965964802,17.252384152706863,0.729774652599013,14.4,2.1000000000000001,23.253728208770561,23.602684830710711,23.806576530955475,23.805258657220268,23.80690536715845,23.804960533628591,5.7794510018850218,5.7476807924542097,5.7285366761964251,5.725390079541711,5.71232584967896,5.6725515706121419 +1990,4,30,6,0,2,15,5.5,15.139533950276663,88.76823665738715,85.99939684495614,74.18466406190244,0.0,4.8281733490015908,14.784455026346075,1.0,4.8281733490015908,9.2132543145616221,0.9112388080043807,11.699999999999999,2.6000000000000001,13.695283199654982,13.903991766838242,14.026362822203033,13.996579857432618,13.973777591382456,13.963049950157227,2.8203258965966329,2.8111214892053984,2.8055959097055174,2.7958483729952976,2.7772200549937036,2.754886982335548 +1990,4,30,7,0,55,95,6.5,107.96588305873701,78.03275173512593,76.36455652469124,81.54603450057463,0.0,36.773693070959162,104.20932499761518,1.0,36.773693070959162,66.429184871904383,1.5,13.9,2.1000000000000001,91.134104263450013,92.289408705855351,92.962351767973331,92.993336325418738,93.027835296904016,93.032902471101522,21.361858323125681,21.574037664325761,21.683012149572612,21.661462150670644,21.450707620369986,21.101557997914984 +1990,4,30,8,0,234,158,7.5,258.62811364899358,64.87366086974212,64.53023935680115,90.40721494968383,0.0,86.308091610783464,258.59207571572233,1.0,86.308091610783464,161.42869056658839,1.002319496273366,16.100000000000001,4.0999999999999996,234.86787812557247,236.43676435424314,237.33918913968137,238.17898292255012,238.88469807268353,239.15263265874225,50.675582611805289,49.563270898655773,48.967142403228536,49.236078162672072,49.789154052723227,49.925245254533998 +1990,4,30,9,0,139,300,8.5,384.2353585909911,51.58492337388287,52.69846049002543,100.23801956640735,0.0,123.35104989199743,389.31817087377874,1.0,123.35104989199743,238.44101051803239,1.2586212608215113,18.899999999999999,3.6000000000000001,366.45695464317532,369.37039062363101,371.05606903231904,371.83743025709521,372.50665994852352,372.74922167718034,74.235808819499908,72.977675249748344,71.522149119764023,70.676421845525638,70.23314887545088,70.01701636992739 +1990,4,30,10,0,283,353,9.5,565.65600723016632,38.379163759364936,41.285194625373066,112.52972652875202,0.0,175.95093404392458,585.22499140949242,1.0,175.95093404392458,352.45827434788089,1.3796714507672965,19.399999999999999,3.6000000000000001,561.62613095201925,564.4786871976678,566.10408576290558,567.70738713387539,569.06020663271033,569.57094685288007,107.587438558188,106.11542487200465,103.38195032437751,101.20437235213717,99.634367787713288,98.897910140322139 +1990,4,30,11,0,447,319,10.5,701.78848403827396,25.68609391846499,31.09079304547827,130.16914419926385,0.0,217.66396353888868,739.17693159001089,1.0,217.66396353888868,438.41007586728722,1.441328050696534,20.600000000000001,2.1000000000000001,719.13380291590829,721.04777102677986,722.09360834433528,724.41946870309539,726.37167277557205,727.11856081659607,134.42975707474392,133.22931906380228,129.53333626466105,125.86120259193427,122.8723218201651,121.3069950593013 +1990,4,30,12,0,268,368,11.5,612.84517795283773,15.171680701279042,23.99211690171745,157.90987625956595,0.0,186.19313579505737,642.24871122325089,1.0,186.19313579505737,382.20027817736326,1.468812331420608,22.199999999999999,2.1000000000000001,621.10935057942459,623.67504517816644,625.12258404952649,626.961059835122,628.50742193375072,629.09606371871735,114.11001571015964,113.50253272435363,110.89678577957086,108.17004852452389,105.74540858078471,104.28872933935172 +1990,4,30,13,0,7,406,12.5,412.43510879582328,13.718762537787661,23.1758567546067,194.58926595080703,0.0,129.33477398599908,412.5538359538059,1.0,129.33477398599908,253.18086162666728,1.4710481944204445,21.699999999999999,1.5,386.51277893542101,391.27954300170887,394.06579706211119,393.99366504057332,393.97152943536321,393.92774575098161,76.451711191258894,76.224977808449168,75.700808771501571,75.099690883870835,74.364441862742623,73.656985408954284 +1990,4,30,14,0,15,300,13.5,313.09615331130971,23.111336788634265,29.18181344202846,224.9408595968318,0.0,97.776586379225762,312.21823775972689,1.0,97.776586379225762,191.9329129898401,1.4487526615277402,21.699999999999999,2.6000000000000001,292.137147419119,295.86232528264003,298.04127534473082,297.89647004082877,297.80654397545345,297.74312224803094,57.695578775626139,57.490893663401877,57.126041450121008,56.715482081204989,56.206065357494765,55.705118972314665 +1990,4,30,15,0,9,289,14.5,296.00282774950244,35.561464921916986,38.913791377640905,244.34734194745144,0.0,92.885973824261669,294.43357687021273,1.0,92.885973824261669,181.32421666875189,1.3949860189745258,21.699999999999999,5.2000000000000002,275.14040052831291,278.72348046941744,280.81996831746028,280.63925331912804,280.51886381615736,280.4440945542774,54.772781178408536,54.516744381009751,54.162146981236454,53.797069826953582,53.362186367647205,52.931540715344816 +1990,4,30,16,0,414,255,15.5,520.31088895508992,48.701514679372565,50.14495117516155,257.4921425457731,0.0,165.3288573163604,537.06679526292851,1.0,165.3288573163604,325.31499841642676,1.2892900441791455,22.800000000000001,1.5,512.94552965245441,514.92524724753594,516.03712433797045,517.87900670477859,519.4218178818021,520.01306987476733,101.33772069845051,98.970061239393104,95.962191023314716,94.121118418280474,93.239876497990466,93.124421829879878 +1990,4,30,17,0,128,164,16.5,224.2569975617609,61.98293401612746,61.91650220411624,267.707382847695,0.0,72.839171640938062,224.44103063057042,1.0,72.839171640938062,139.27594136727532,1.0727973305438687,22.199999999999999,3.1000000000000001,206.78509241664182,208.57759884436388,209.61722727146653,210.11574973263527,210.54084385673059,210.69633727847935,43.086862923371243,42.264371375872479,41.699864746419898,41.665544501709199,41.843867518982783,41.860273416892866 +1990,4,30,18,0,207,107,17.5,164.87756338411182,75.17308408939556,73.7635623236579,276.7008472841934,0.0,58.826260699122642,158.86041694556167,1.0,58.826260699122642,102.973146472797,1.5,21.699999999999999,4.0999999999999996,133.31106157737005,134.44202983110543,135.09132107677635,135.65393109472419,136.12311979455993,136.30398932313619,33.295927832407038,33.881497784571437,34.476968436924764,35.027818170240224,35.107052919812311,34.472711313062725 +1990,4,30,19,0,9,26,18.5,26.829502758496364,87.36115541052602,84.71171621871098,284.9912044742685,0.0,9.0551396202865995,25.684212998302755,1.0,9.0551396202865995,16.476301505049399,0.7049315277139239,19.399999999999999,4.0999999999999996,23.127939940524755,23.477372181433697,23.681874546110375,23.680782399670036,23.682368624236744,23.680631952713593,5.2919744888095064,5.2715937260459347,5.2585987137442363,5.2549983141467003,5.2392020522893388,5.2004547706360782 +1985,5,1,6,0,17,27,5.5,28.213961350211608,88.72421019524575,85.90505225783775,73.89054384697486,0.0,10.081114746402728,25.767214156830796,1.0,10.081114746402728,17.333557586775516,0.9360487819187053,12.800000000000001,4.0999999999999996,23.113165945502647,23.463901996212172,23.668744526517177,23.669249323497951,23.67244280393804,23.671083152518001,5.9168053409382617,5.8964112366960828,5.8715012064890573,5.8505477944416144,5.816781782748401,5.7674514664787138 +1985,5,1,7,0,276,83,6.5,148.97340976893977,77.88015109904885,76.17046120622236,81.32042213357201,0.0,56.179662152995292,139.84453813069769,1.0,56.179662152995292,93.71855947600595,1.5,16.100000000000001,4.0999999999999996,109.39250158938766,110.20723091782121,110.66849144496754,111.40764229784662,112.01941541160218,112.25984756730485,32.469592764494855,33.388660612064655,33.835447938888969,33.906381927180625,33.456377297857898,32.550751286019789 +1985,5,1,8,0,558,104,7.5,345.63783495732434,64.7287916556425,64.33918596093991,90.16095158536544,0.0,118.54722108029397,346.47100248834249,1.0,118.54722108029397,216.83073876180291,0.9916702787291372,19.399999999999999,6.7000000000000002,313.04738063511286,313.83558214182278,314.26297578295703,315.72006247827693,316.93647868653943,317.40608485067645,69.444427526780558,67.342995960434081,66.328004788194306,66.975574949350232,68.26154489875708,68.745965951069849 +1985,5,1,9,0,647,153,8.5,546.84510834570597,51.441392990012574,52.50262712553948,99.96381890943296,0.0,178.7900188674266,565.24411685555208,1.0,178.7900188674266,342.01138711886284,1.2494814000922494,22.800000000000001,5.2000000000000002,541.44396716910614,542.45019931538093,542.97812933472915,544.90885443490936,546.52896754076221,547.1467354977317,110.00701979241238,106.55139232123584,102.80240587821054,100.75709916176149,100.10498725338815,100.3687511484876 +1985,5,1,10,0,645,204,9.5,690.24907794009687,38.226313716183455,41.07287354870243,112.22356589409395,0.0,219.79785188162779,724.24963406964332,1.0,219.79785188162779,431.18411387228832,1.371675634901771,25.600000000000001,7.7000000000000002,705.66337708654373,706.82406998874501,707.42256398350401,709.67398517718971,711.5683178178989,712.28922972227895,136.48717795085639,133.82832988411167,129.17826320410421,125.42756603918592,122.96474648430069,122.15068027604066 +1985,5,1,11,0,672,252,10.5,828.9468453966515,25.502015960714647,30.845628165033236,129.8587010978876,0.0,256.71010237438543,876.27751102793127,1.0,256.71010237438543,516.90502493133829,1.434013459279194,27.800000000000001,7.7000000000000002,858.77818374975357,860.02833741222832,860.66102380873758,863.03736154823321,865.04408482419217,865.80162653236721,159.3587042616773,157.72467733569104,152.91083454512216,148.01137099461934,144.02767940028849,142.10727699192626 +1985,5,1,12,0,672,271,11.5,886.29589926699612,14.910626474079764,23.70622783575614,157.75732035358473,0.0,274.40124851756076,940.59516704039845,1.0,274.40124851756076,552.20914770309867,1.461807842313651,29.399999999999999,7.2000000000000002,923.868064968569,925.02777101267975,925.59802318732898,927.97085707098336,929.98031490897722,930.73420340197617,170.33985393233729,168.91732121539914,163.8864793324575,158.53960457424091,153.97105608037629,151.65907346693766 +1985,5,1,13,0,715,245,12.5,903.65874328291977,13.462383239039353,22.897697894735785,194.81870296311558,0.0,271.42119631711842,960.42012698385975,1.0,271.42119631711842,562.90560151621412,1.4640331512151727,30.600000000000001,6.7000000000000002,944.7791012728693,945.71666504521318,946.15465298695688,948.52460630100973,950.53127961974587,951.28491030260523,168.70282196799349,167.44382263707539,162.44731408346163,156.99687348042579,152.24056629878532,149.81922140248656 +1985,5,1,14,0,644,276,13.5,839.45718416549448,22.964342602371303,28.962891779430862,225.33878631687494,0.0,260.01422019077489,887.44974944579121,1.0,260.01422019077489,523.31788834090071,1.4413995286734398,31.699999999999999,6.7000000000000002,869.44287358690326,870.83559740682222,871.55187112095086,873.91336828353985,875.90897658939321,876.66103744405063,161.29214471872024,159.652385050719,154.83368443063159,149.92711181269337,145.93071241349955,143.99484519825049 +1985,5,1,15,0,405,265,14.5,580.89294704101599,35.45861032186685,38.7410190448784,244.72260423576085,0.0,184.73261438669783,608.05539905283376,1.0,184.73261438669783,363.50233089058349,1.3868933119288345,31.699999999999999,5.2000000000000002,588.81642493409777,590.54905533788997,591.50294637387105,593.64948653428951,595.44637291368304,596.13792461871913,114.0986938295609,112.3622854339913,108.92480998839244,106.08777382261628,104.11484991394543,103.2922412022274 +1985,5,1,16,0,288,272,15.5,457.13982721045039,48.6126302558054,49.9955860516541,257.818919018858,0.0,147.86372163248319,468.46182492159255,1.0,147.86372163248319,284.92770794067877,1.279890021365422,30.0,5.7000000000000002,445.60832509723264,447.99955906062144,449.3639800926332,450.69172918072991,451.81204236898822,452.23375396526336,89.991290460769051,88.095991418019167,85.760921234039515,84.348163568069054,83.653525024270905,83.490147590694207 +1985,5,1,17,0,447,158,16.5,369.40041830925566,61.89457354629686,61.775239071873884,267.99660749480176,0.0,122.77792896824509,372.48672225187715,1.0,122.77792896824509,231.16341343311896,1.0612475115451452,30.600000000000001,6.2000000000000002,342.89289510432945,344.2379012984232,344.99353993597595,346.36871304657132,347.5202680951034,347.9608578752476,72.957377199844856,70.716092158076862,69.276283824479492,69.370557907067919,70.153145791011852,70.600719798416236 +1985,5,1,18,0,279,103,17.5,181.67826737937102,75.07738253177948,73.62033547791319,276.9650050800017,0.0,65.751485288820973,173.88218319951875,1.0,65.751485288820973,113.28940298121292,1.5,28.300000000000001,4.5999999999999996,144.63632395011507,145.72724071490515,146.3496030994055,146.90132640753228,147.36290391072549,147.53928383329003,37.090380206054569,37.837742827369759,38.593128382889873,39.223055709716967,39.265725093332101,38.48168218552852 +1985,5,1,19,0,69,31,18.5,37.442998127279346,87.34464756238697,84.64209890123692,285.30318327249057,0.0,16.030820668848261,31.760218929985065,1.0,16.030820668848261,23.527036594180196,0.6820206228339529,23.300000000000001,3.6000000000000001,24.806122569972317,25.162515440679357,25.368428383312001,25.548969534728194,25.699551468190698,25.757709898088834,9.3563755402151774,9.2928512242725319,9.2597506506142349,9.3151756295328934,9.3647317216406627,9.308241936335822 +1985,5,2,6,0,1,11,5.5,11.073073290159739,88.6803823936989,85.80947385821368,73.58741721264886,0.0,3.5174718297474281,10.82797619124154,1.0,3.5174718297474281,6.7330673488095476,0.9588005901587833,16.100000000000001,2.6000000000000001,10.042329143783464,10.195382019589747,10.285130149602985,10.261418539194381,10.243175305798356,10.23468389339965,2.0541902213690064,2.0474091577883109,2.0435428976851306,2.0362005690705072,2.0222205559255122,2.0059418242049807 +1985,5,2,7,0,8,69,6.5,70.938892349163524,77.72664608418074,75.97403739837259,81.08646537904426,0.0,22.762100867535658,69.386579757858911,1.0,22.762100867535658,43.269572615833546,1.5,17.199999999999999,2.1000000000000001,63.581106220951519,64.512554020176751,65.058135052655231,64.951903744264669,64.871982640164902,64.832919293450175,13.275938977863843,13.278954602801866,13.277997405747373,13.239613236296,13.139239121283238,13.005496414873562 +1985,5,2,8,0,89,138,7.5,176.81083149151161,64.58361873270069,64.1461705082772,89.90526714202562,0.0,58.49179924355041,176.03889157417365,1.0,58.49179924355041,109.91040010037118,1.5,18.899999999999999,3.1000000000000001,160.80188242851327,162.34840950501479,163.24729211628835,163.68076945103996,164.04858413427175,164.18494819133142,34.226260935492192,33.731490522352225,33.48204989735671,33.635541898644334,33.882941549762563,33.849070587797264 +1985,5,2,9,0,120,267,8.5,340.3751081707037,51.298003685871805,52.30490990997863,99.67843135582969,0.0,109.1845825724175,344.4094593255806,1.0,109.1845825724175,211.40508208788575,1.2401445358082752,20.600000000000001,4.0999999999999996,323.78710967950934,326.45135558817515,327.99450689384832,328.75416078645281,329.40149084763533,329.63900428299371,65.596414406427485,64.48170982521431,63.253572999543287,62.593000242691112,62.287814879446351,62.126691404911881 +1985,5,2,10,0,4,287,9.5,290.02532047116568,38.07381605311148,40.858271361906446,111.90334611976697,0.0,91.369089858872726,288.11210411340437,1.0,91.369089858872726,177.63274984720357,1.3635015827856936,22.199999999999999,3.6000000000000001,268.98213652581927,272.53503814317924,274.61425688009797,274.42816048363642,274.30294782254373,274.22660113315999,53.847150254431689,53.578166082135361,53.235429367018462,52.901436846068052,52.498415334169728,52.089383435470737 +1985,5,2,11,0,87,304,10.5,378.88700709332846,25.31781079930807,30.596829202349724,129.53041125731437,0.0,118.20268828460479,389.36065298324434,1.0,118.20268828460479,235.97520511943642,1.4265339867391347,23.300000000000001,3.6000000000000001,370.12686535795467,372.931761348902,374.5529729927826,375.623037264088,376.52473858478641,376.86578461344442,71.469118690602542,70.992319257615151,69.735227606180786,68.605943636345287,67.662544155001228,67.000647938751385 +1985,5,2,12,0,9,317,11.5,325.25892055441636,14.645676123682863,23.41395924872948,157.589248959567,0.0,102.05407247420752,324.3096793617957,1.0,102.05407247420752,199.48668631455268,1.454646447970077,23.899999999999999,5.2000000000000002,303.19008105736805,307.09520479552424,309.37961174739223,309.26490697086263,309.20049389260612,309.14653903346243,60.202538746622118,60.007858663448339,59.643628039192045,59.231774492184861,58.709960320586923,58.182301850610159 +1985,5,2,13,0,1,326,12.5,326.9231308445078,13.199425084210787,22.61183097311077,195.05141777783672,0.0,102.60417262536861,325.63789589593,1.0,102.60417262536861,200.52253436177833,1.4568645967142764,23.899999999999999,4.0999999999999996,304.0213621034344,308.01833335281776,310.35728871966501,310.25009031918489,310.19182071706678,310.1403135206325,60.467663310453339,60.282514034794488,59.947035600713612,59.569901775871287,59.075186557153323,58.551477616051805 +1985,5,2,14,0,11,303,13.5,312.64515000415281,22.813523550620637,28.737482333761413,225.7474488344912,0.0,98.097568659527383,311.49514189136244,1.0,98.097568659527383,191.65965891322898,1.4338926483524863,24.399999999999999,2.6000000000000001,291.24992569734155,295.00674915854802,297.20447659336304,297.06227182266048,296.97450247887065,296.91189450811453,57.867223648760266,57.656311290657001,57.297208081563547,56.897091697480157,56.401167358841747,55.907306497190596 +1985,5,2,15,0,4,390,14.5,393.12771515607591,35.35198792484486,38.56248568199066,245.10720148355222,0.0,123.2775248502037,392.13412978226108,1.0,123.2775248502037,241.10391455661681,1.3786447292911728,24.399999999999999,2.6000000000000001,367.33493181447852,371.87153193783615,374.52355276445257,374.37508863913035,374.2896157568083,374.221005846759,72.905259720798085,72.485720695215491,71.888782829028074,71.331893399139759,70.72081666127626,70.167242768620426 +1985,5,2,16,0,109,259,15.5,329.29589687176866,48.51961143369635,49.84058590458174,258.1532524190431,0.0,104.20283281260747,333.92445659332259,1.0,104.20283281260747,204.65845565409498,1.2703361087837173,23.899999999999999,3.1000000000000001,314.57064841213287,317.16567710228929,318.66929055527146,319.45291553425284,320.11813149436227,320.36461171362032,62.671617308870829,61.705583088504305,60.532210423287118,59.855235701061737,59.487779212633086,59.281723534772489 +1985,5,2,17,0,30,181,16.5,195.25574805897025,61.801604784177805,61.628174055399455,268.29212558071634,0.0,62.860076036420438,193.78089940143275,1.0,62.860076036420438,120.30278559967232,1.0495760923561628,22.199999999999999,2.6000000000000001,179.05734445965388,181.18132693580611,182.42178598088299,182.53791683474449,182.64978484862203,182.67889026001143,36.916835989768437,36.509580534866579,36.245330816988783,36.21438965025154,36.217805474809055,36.088756207853393 +1985,5,2,18,0,4,46,17.5,47.138003622434113,74.97653342238257,73.47098236752626,277.2345407341913,0.0,14.931263719064853,46.275122830035727,1.0,14.931263719064853,28.71866812956884,1.5,18.300000000000001,5.7000000000000002,42.788107730970502,43.428140896160173,43.80334815456952,43.721799563346515,43.65978856928178,43.630170948255724,8.7044089354777281,8.6877421553451075,8.6823154957131958,8.6623525147939819,8.6088884310761937,8.5346527519598823 +1985,5,2,19,0,3,14,18.5,14.283914737448004,87.32634695290163,84.56950098339948,285.62255126503345,0.0,4.594497428872665,13.894256018705722,1.0,4.594497428872665,8.6884903836484693,0.6601097774462872,16.100000000000001,4.0999999999999996,12.811481531750122,13.006274641130599,13.120453702978722,13.090824358828579,13.068081021274963,13.057439611290045,2.6811807369171099,2.671227090510194,2.6664528724268601,2.6586211252086196,2.6422448370914347,2.6214684774204384 +1985,5,3,6,0,0,15,5.5,15.0,88.6379401230064,85.71598754658162,73.28784401975638,0.0,4.7175606005987705,14.739764349751072,1.0,4.7175606005987705,9.1263602258806689,0.9794055769394001,9.4000000000000004,6.2000000000000002,13.6899178914339,13.898625972021966,14.021041764071475,13.990930005594583,13.967828902063982,13.957008248326982,2.7545472245410707,2.7460487110588301,2.7414358982793248,2.7323687095531182,2.7143233510077951,2.6926138572863989 +1985,5,3,7,0,3,43,6.5,43.736830196140389,77.57722346847382,75.78211044762911,80.85431766944977,0.0,13.831425589738425,42.930072935017847,1.0,13.831425589738425,26.642838125088833,1.5,8.9000000000000004,6.2000000000000002,39.704618943622059,40.302914310197664,40.653703421327236,40.576907499197439,40.51846513504141,40.490603358069528,8.074426099518119,8.0580855956358945,8.0483708438366186,8.0232870932950817,7.9687396173505523,7.8997910512531364 +1985,5,3,8,0,2,81,7.5,81.878063754947959,64.44278099030383,63.95787258225252,89.65122234995103,0.0,25.784628096240695,80.584262934744274,1.0,25.784628096240695,49.945421470094864,1.5,9.4000000000000004,6.7000000000000002,74.718051522910201,75.843546509663852,76.503576051366792,76.384166790952463,76.294493823081439,76.250514174203744,15.06168251069686,15.014083377006672,14.98625460444465,14.946400255815002,14.861808173858382,14.746635898709631 +1985,5,3,9,0,2,256,8.5,257.22823425650432,51.15933175203732,52.11220276709814,99.39423700032798,0.0,81.33551830030801,254.79854345018765,1.0,81.33551830030801,157.42849158435814,1.230999374774758,9.4000000000000004,7.2000000000000002,237.41595991342223,240.57177152510815,242.41882417255675,242.21263295593025,242.0682828558846,241.98656375652916,47.855205878764032,47.515646595512294,47.209798204027017,46.975801949847316,46.704274818225976,46.40508692090863 +1985,5,3,10,0,2,316,9.5,317.51742812929456,37.926654541373,40.64903655477027,111.58312726412733,0.0,100.04578687881357,315.63739914311066,1.0,100.04578687881357,194.53859709925561,1.3554842415283197,10.0,6.7000000000000002,294.86678608681041,298.70778903917392,300.95511362788648,300.77341266269428,300.65422547933423,300.57800646419838,59.004624773220826,58.678141377499948,58.27156373095886,57.894941315695092,57.458011972122051,57.022733532885212 +1985,5,3,11,0,3,393,10.5,395.58876964246843,25.13986540804951,30.353597154338384,129.1992141464498,0.0,124.0723023062752,394.80786738559851,1.0,124.0723023062752,242.7009383525683,1.419193053192869,10.0,9.8000000000000007,369.6493385237049,374.27367923846339,376.97749294840327,376.86135736415656,376.8021344195493,376.74430243072209,73.323429181120773,73.009128273468676,72.480688438829574,71.924717215761703,71.280128549675268,70.667121328033787 +1985,5,3,12,0,0,412,11.5,412.0,14.386875273468226,23.126643032804136,157.41513738333418,0.0,128.57446141184803,411.59111483913534,1.0,128.57446141184803,252.92110584166039,1.4476164078076366,10.6,8.1999999999999993,385.25813414773796,390.07927901636572,392.89838696675662,392.83138479616758,392.81316417172252,392.77119464186723,75.956983500751051,75.69230616280197,75.177843517116955,74.61968387654855,73.945181087621108,73.279923856495429 +1985,5,3,13,0,1,479,12.5,479.92501100203191,12.940993982375527,22.32998593872439,195.281497765432,0.0,149.53438605351784,480.76515589519181,1.0,149.53438605351784,294.84004053056003,1.4498290482828162,12.800000000000001,8.8000000000000007,451.0010351167237,456.40065220423116,459.55556187811453,459.54724420119226,459.58268412882205,459.55721410541628,88.531979337913867,88.201591148231003,87.510226791221953,86.767954727190656,85.916753380213677,85.125352330783073 +1985,5,3,14,0,0,410,13.5,410.0,22.66605574169622,28.51540874495521,226.15285087529426,0.0,128.58942540590013,409.36217932332454,1.0,128.58942540590013,251.60885082069862,1.4265298384501823,12.800000000000001,9.3000000000000007,383.27694568648917,388.06252213941502,390.86052543855124,390.76331428947185,390.72069147886873,390.66852687604216,76.003136035119937,75.678971948321148,75.127942845936133,74.552085038249203,73.88628639870052,73.250629340006384 +1985,5,3,15,0,0,363,14.5,363.0,35.24708834485103,38.386347475142415,245.48721693551872,0.0,114.4064627449289,361.47910436315573,1.0,114.4064627449289,222.54840042019072,1.3705645243752607,13.300000000000001,5.7000000000000002,338.11707332339398,342.4158767073705,344.9299707290491,344.76925331342983,344.67121676219335,344.59986240658458,67.567979293167426,67.192662461089171,66.68586931718086,66.210807434320515,65.679506160264907,65.170805577758529 +1985,5,3,16,0,229,296,15.5,444.15374994027763,48.427420363387895,49.68724045390206,258.48281639478284,0.0,143.0875955099697,451.34927215902371,1.0,143.0875955099697,275.44497921373016,1.2609987073509148,14.4,8.1999999999999993,428.38035288057301,431.26209294313583,432.92093810975859,433.74221573938087,434.45021378968477,434.70276370305896,86.480497976740978,84.766405981819815,82.816639537075162,81.6502327035994,81.060053448924407,80.877815762315223 +1985,5,3,17,0,434,167,16.5,374.20471635404522,61.708982595476904,61.48230016534849,268.5829758517343,0.0,126.94094306634422,376.37304930301639,1.0,126.94094306634422,234.18976867867715,1.0382228474378998,15.6,6.7000000000000002,346.69737106137023,348.12495377701288,348.92854237169013,350.33016459180897,351.50419132571886,351.95320970678154,75.050094084300781,72.867453162031552,71.544324486001926,71.819095257265971,72.752591626645383,73.191685943421291 +1985,5,3,18,0,269,90,17.5,167.19844628285406,74.87578713323849,73.32257715740104,277.4994644860168,0.0,60.774567007096699,159.42687183592577,1.0,60.774567007096699,104.28345233421985,1.5,15.6,5.7000000000000002,132.54473001110784,133.50475909711326,134.05109122568774,134.56544995857297,134.99544930245963,135.15999989313536,34.276597488447337,35.020111831365021,35.748222867523914,36.314403377545858,36.320894851453659,35.555630043272664 +1985,5,3,19,0,39,33,18.5,36.739755827444,87.30760225804458,84.49738543737703,285.93694344104154,0.0,14.273220168903928,32.849759506787585,1.0,14.273220168903928,22.840355046873501,0.6396152439510687,13.9,3.1000000000000001,27.545832637442256,27.951862308970256,28.188018848232208,28.28135860647771,28.360814474218472,28.389980928938897,8.3204403118462196,8.278405041575347,8.2608995850840561,8.2951263559719326,8.3129556139509226,8.2558147015336178 +1985,5,4,6,0,53,24,5.5,28.043389002185172,88.59690961932544,85.62463315311541,72.99191324223803,0.0,11.582299318229675,23.595211086603911,1.0,11.582299318229675,17.434161026209711,0.9980097534992352,5.5999999999999996,0.0,20.039304868915199,20.340659654090359,20.51546538589885,20.586155065664659,20.646656595472844,20.668618496681354,6.8394606797895268,6.8178801298973282,6.7712776819350653,6.739792148096087,6.6987700030010773,6.6357401456557321 +1985,5,4,7,0,393,66,6.5,163.77005536745747,77.43193099465118,75.59474233047086,80.62405708280437,0.0,64.952805506870931,150.88427392024312,1.0,64.952805506870931,102.69880218492328,1.5,10.0,1.5,115.51274581345022,116.13608983562384,116.47932272233102,117.16476835256248,117.735127135223,117.95644218937699,37.578381928744555,38.749628291666198,39.280311954062981,39.240636044712375,38.544661187336764,37.377730999039322 +1985,5,4,8,0,610,103,7.5,372.56360801113203,64.30631182093194,63.77434593225597,89.39892095173009,0.0,131.12070592612596,371.66488194936579,1.0,131.12070592612596,233.4152385522639,1.5,12.800000000000001,2.1000000000000001,337.05890896032378,337.82415765297708,338.23332381741051,339.69155280893483,340.91207415565054,341.3803273129235,76.373526848533189,74.156687088050418,73.22041332386874,74.106837566036731,75.62927031155516,76.120183670344616 +1985,5,4,9,0,721,134,8.5,578.63964682270284,51.02539918897911,51.924556886962016,99.11137447337133,0.0,189.44081740567688,596.11181132449383,1.0,189.44081740567688,361.31314912687668,1.2220429086925035,15.0,3.6000000000000001,572.94794378385291,573.76405606617186,574.17566060299021,576.00317562886858,577.54324501452447,578.12387183628698,116.20373353360327,112.12144841209802,108.15201647095746,106.24413423173911,105.91954742927327,106.43807075265768 +1985,5,4,10,0,793,156,9.5,759.49399039930449,37.78484553951693,40.445227067475535,111.26309011285497,0.0,241.95427460891966,794.28195391357553,1.0,241.95427460891966,472.91306745911766,1.347622423968222,17.199999999999999,1.5,777.16998537158167,778.11491749152322,778.57608237820534,780.50170692096515,782.13955428773306,782.74710966909902,150.39316288580528,146.96837857033208,141.58094289062626,137.34010552304548,134.64642955221868,133.94854393271913 +1985,5,4,11,0,827,170,10.5,885.36427720439588,24.96821778727283,30.116013785120504,128.8652827735806,0.0,273.99525897630497,933.70881139890525,1.0,273.99525897630497,550.27269814964995,1.4119903170505372,17.800000000000001,3.1000000000000001,919.36707287251147,920.22259783325319,920.6137054896285,922.49313273474127,924.10437567243002,924.69186240738202,170.61476749571491,167.86319050934034,162.12759828778826,156.62610927649405,152.53714742830991,150.95009504709577 +1985,5,4,12,0,851,177,11.5,961.24986714263196,14.134363018915666,22.84438048258192,157.23490596928315,0.0,297.41652100082194,1017.6184395789145,1.0,297.41652100082194,596.72424424725909,1.4407178229298498,18.899999999999999,3.6000000000000001,1004.2382850205827,1005.0049430141112,1005.3313062971349,1007.1143015996118,1008.654549085256,1009.2063279814537,185.05720622848713,182.92079377557531,177.03559107157014,170.85240612332186,165.77639952291563,163.50061185259992 +1985,5,4,13,0,857,177,12.5,971.30362128222623,12.687131768954409,22.05222261594689,195.5086562342807,0.0,300.51816927241845,1028.5830383277539,1.0,300.51816927241845,602.8737706319198,1.4429268503800616,20.0,4.0999999999999996,1015.2996211147846,1016.0510287525491,1016.3669297651849,1018.1353288930844,1019.6647939683726,1020.2111781862731,187.00171149040787,184.83470933225775,178.87762880875658,172.61266179199251,167.46799024537529,165.16673464653906 +1985,5,4,14,0,848,172,13.5,918.66808973461718,22.52187652933567,28.29668002893312,226.55468695864224,0.0,284.28146706581509,969.74564843737062,1.0,284.28146706581509,570.7170862304514,1.4193115512875814,20.600000000000001,1.5,955.62702715744422,956.46247160540577,956.83639060724454,958.6948039164846,960.29209183601904,960.87099907076799,176.99005394059506,174.51671629899036,168.70949318373025,162.92227209550626,158.38174759425834,156.49810613781224 +1985,5,4,15,0,805,163,14.5,795.50534386514391,35.14385500062027,38.212595832726635,245.86243430638152,0.0,246.26217515438822,833.43463040350093,1.0,246.26217515438822,495.10566852613397,1.3626530807175046,21.699999999999999,2.1000000000000001,816.87770084283022,817.84025045215196,818.30942703450864,820.24640460952389,821.89497024569607,822.50575346478706,153.19151914786576,149.82380827239766,144.35087242442177,139.8905411873998,137.04163386276002,136.24328533623091 +1985,5,4,16,0,748,142,15.5,627.43417455956467,48.336023386011135,49.53554617487107,258.8074605080776,0.0,205.46838014678153,648.78671744378244,1.0,205.46838014678153,391.55351199464872,1.2518776965426277,21.699999999999999,1.5,627.07480668933624,627.90923472698421,628.3241997189366,630.22331591364582,631.8266913810736,632.42911778933058,126.60542613320489,122.42675176264574,117.95157733174159,115.44351892535349,114.59927719550583,114.95269041521686 +1985,5,4,17,0,620,127,16.5,424.38136687135164,61.61669525020201,61.337626538546814,268.86904401032905,0.0,145.5641060373942,426.84946517109148,1.0,145.5641060373942,265.80910672851132,1.0271855841962363,22.199999999999999,0.0,393.73432053208688,394.69878776660624,395.22078003239812,396.86148672252898,398.23524350926141,398.76129399726875,85.83846821407522,83.079775062903408,81.534503836036578,82.002906068085252,83.336848929233128,83.982355900417559 +1985,5,4,18,0,438,81,17.5,207.77781460512347,74.77515292469317,73.175144469857,277.7596832311509,0.0,78.166052899918526,195.97697017286339,1.0,78.166052899918526,130.13469693496495,1.5,21.699999999999999,2.1000000000000001,158.32025357694084,159.07264625790654,159.48752975090321,160.30112540907689,160.97626791116633,161.23926286740814,43.791215054998084,45.023063920814728,46.175137315939459,47.030439219227979,47.011409215079127,45.853798517119962 +1985,5,4,19,0,96,32,18.5,41.32498721572604,87.2884158104815,84.42576894290002,286.2462598554634,0.0,18.510303411505436,33.972368419040464,1.0,18.510303411505436,25.931718525741498,0.6204837423394425,18.899999999999999,3.1000000000000001,25.901685839334309,26.269073613362202,26.480553222159195,26.666413481539667,26.821898894519617,26.881479953883925,10.755850166001187,10.693992175282521,10.678398763647046,10.761358961150103,10.819033072488493,10.746301744723583 +1985,5,5,6,0,22,21,5.5,22.712530754629427,88.5573145098814,85.53544780498608,72.69971459776671,0.0,8.6263922801868489,20.275364463797551,1.0,8.6263922801868489,14.140539542020335,1.0147446222914782,8.3000000000000007,2.1000000000000001,17.702966020536117,17.970536415235316,18.126419187524633,18.192063360040233,18.247620177033465,18.268346316743724,5.0857056791792354,5.076591205689315,5.0493672357996076,5.0345789947653712,5.0113929519155835,4.9659424784703496 +1985,5,5,7,0,306,81,6.5,158.07124591331342,77.29081285991049,75.41199168007455,80.39576374672403,0.0,61.229800815905563,147.19017351500293,1.0,61.229800815905563,99.376573922183212,1.5,11.699999999999999,5.2000000000000002,115.44406288915235,116.22581462384674,116.66515826805447,117.42253627586481,118.05063766550052,118.29652780556091,35.580357616846534,36.589201434918451,36.994661111281005,36.932910774057589,36.315689639029301,35.30072130431526 +1985,5,5,8,0,511,137,7.5,364.24339962433703,64.17424080968584,63.59564078188917,89.1484692557042,0.0,126.85263773673404,362.54553225998836,1.0,126.85263773673404,227.69023288019611,1.5,14.4,6.2000000000000002,329.70958520985602,330.88216368242348,331.53471878953735,332.79636878458587,333.85566825153228,334.25890267117092,73.671962066443641,71.794098297511738,71.098824945926737,71.971136911880137,73.326168064777605,73.667109121823827 +1985,5,5,9,0,650,180,8.5,582.48216215057164,50.896223555216515,51.74201954183745,98.82998631809485,0.0,190.2487363289458,598.81250106320795,1.0,190.2487363289458,364.19529197230224,1.213272303825267,18.899999999999999,4.5999999999999996,573.56256010405059,574.82081538283535,575.4953583924115,577.52231077117017,579.22360992434449,579.87132708524689,116.43722550257493,112.60313203836147,108.83628085831363,107.07189510504466,106.79922233270773,107.23963921732208 +1985,5,5,10,0,704,221,9.5,758.34029635412674,37.64839978211886,40.24689653474156,110.94342290298191,0.0,241.47495763290925,791.94829841253943,1.0,241.47495763290925,473.1705423628535,1.3399150311384616,22.199999999999999,5.2000000000000002,772.24970267006506,773.540925727689,774.20939975369117,776.49026830926596,778.41490042547957,779.14151276730502,149.77529914041122,146.23393452662404,141.0069614589502,137.09145368861564,134.82567394745232,134.30105390435276 +1985,5,5,11,0,764,214,10.5,876.41439951699886,24.80289823122528,29.88415694813027,128.52880548496066,0.0,271.25274807586641,924.39946185416204,1.0,271.25274807586641,546.00559810809102,1.4049254888049472,23.899999999999999,9.3000000000000007,908.56369387041423,909.48061479376167,909.90952900485104,912.23004370300509,914.19745233278775,914.93350127875692,168.92247834831363,166.27631785011815,160.63218746290431,155.29814556081129,151.36935005058805,149.8006035282219 +1985,5,5,12,0,792,223,11.5,954.35622927115253,13.888275744178099,22.567271690553003,157.04848839806368,0.0,295.29027601266068,1010.8883706400222,1.0,295.29027601266068,593.9962814953152,1.4339508278008972,25.0,8.1999999999999993,995.96749836310653,996.74586602324564,997.08015014589637,999.39882864092283,1001.3721140435375,1002.1041063699199,183.81188513842758,181.76623197474032,175.93097876280791,169.8932822979933,164.97417555082254,162.71636942588881 +1985,5,5,13,0,790,224,12.5,957.61332905387417,12.437876844422261,21.778600156770906,195.7325999735739,0.0,296.29122686244318,1014.6912028040292,1.0,296.29122686244318,595.99714909029456,1.436158368748971,26.699999999999999,6.7000000000000002,999.85955773234775,1000.6229879211047,1000.9479212718853,1003.2645315144674,1005.2364894176631,1005.9676262251807,184.44856444011901,182.39170155210869,176.52873017686895,170.46004915521075,165.51553037273462,163.24877183842824 +1985,5,5,14,0,791,199,13.5,896.88388366728816,22.380920884225535,28.08130437567222,226.9526483867482,0.0,277.63492265675791,944.9281760057836,1.0,277.63492265675791,557.34630422981502,1.4122382506482443,26.699999999999999,7.7000000000000002,929.7307240873937,930.78950138911739,931.30023975278937,933.18106331217882,934.79436857489782,935.38178569936258,172.70654432705197,169.96193451162347,164.24328684810757,158.75990787056762,154.67637485406868,153.07382724074503 +1985,5,5,15,0,760,184,14.5,782.55137670066824,35.04223193917818,38.04122248380206,246.23263826214142,0.0,249.32120761955829,820.0369552125776,1.0,249.32120761955829,487.87951880357105,1.3549107833801906,27.199999999999999,6.2000000000000002,803.15794987528068,804.06470930313458,804.5000119436861,806.6966817972999,808.55648157119435,809.25384323854314,155.06667219398796,151.54207340433814,145.95531002655846,141.59130828338121,138.8427229521524,138.12659331670736 +1985,5,5,16,0,699,159,15.5,614.02547062019653,48.24538842737634,49.3855006629222,259.12703595373034,0.0,200.90653545078524,634.1106818885529,1.0,200.90653545078524,383.56182704245458,1.2429729471859312,27.199999999999999,7.7000000000000002,611.91153317785802,612.89388726279651,613.39877140769499,615.39648426193776,617.07803889697288,617.71444379876766,123.69545480670784,119.71354357243692,115.42394921740492,113.04889159358795,112.2673163890141,112.58686166740942 +1985,5,5,17,0,475,142,16.5,370.87539302917935,61.52473295966642,61.1941638197136,269.15021744551603,0.0,126.38916654076863,372.11993847968654,1.0,126.38916654076863,231.98867378573891,1.016462109660644,26.100000000000001,6.7000000000000002,343.38607574930052,344.56480485750905,345.22095239688178,346.55941869177281,347.68212859241243,348.11015374146871,74.490950835689887,72.261078836957722,71.006831778736569,71.379407051965302,72.435181329703795,72.913723343708725 +1985,5,5,18,0,339,96,17.5,194.95154717499889,74.67464211476437,73.02871056643147,278.01510563622503,0.0,73.400668546013705,185.07995117523245,1.0,73.400668546013705,122.4029746375209,1.5,25.0,7.7000000000000002,151.59224413793447,152.50155201506163,153.01201139840975,153.88930122331874,154.6154214359031,154.9002631545406,41.343659729512424,42.437415806353073,43.408683221052264,44.140819874009772,44.116594527092907,43.074627524744763 +1985,5,5,19,0,56,31,18.5,36.508735279316042,87.26879088630903,84.35466874270293,286.55040165791456,0.0,14.746121674981421,31.936803791979354,1.0,14.746121674981421,22.692738107886949,0.602664385947639,22.800000000000001,6.2000000000000002,26.326919026346484,26.711989241727043,26.935476146820399,27.025958270661658,27.103191748495032,27.131335483070654,8.5736987777646245,8.5351066732375198,8.5266013627067458,8.5715275821019237,8.5917974835213737,8.5298993716385141 +1985,5,6,6,0,31,26,5.5,28.460027601735238,88.51917589513167,85.44846600529178,72.41133850595513,0.0,11.171664918925197,24.88394945949636,1.0,11.171664918925197,17.7018257049406,1.029728958546313,12.800000000000001,2.1000000000000001,21.515037247385315,21.839485879419176,22.028208481692179,22.103918240280148,22.168343132915346,22.192055445514889,6.5905942145981609,6.5768158122727298,6.5387552860416474,6.5139030367749378,6.4780462337899101,6.4169601928628497 +1985,5,6,7,0,331,76,6.5,160.36310992299605,77.15390970555664,75.2339137619077,80.1695197718577,0.0,62.667962478818708,148.59305785444195,1.0,62.667962478818708,100.7539433287042,1.5,16.100000000000001,2.6000000000000001,115.99838943293854,116.72372010166217,117.12877534666305,117.87204240417809,118.48899744865841,118.72998176764617,36.39651011463873,37.462359380555569,37.895384192598179,37.821439403696552,37.158953277110683,36.091630358002938 +1985,5,6,8,0,537,120,7.5,360.26388854770721,64.04659372160565,63.421803791208305,88.8999760282904,0.0,123.27124175290047,358.98914014267694,1.0,123.27124175290047,226.1176913701718,1.5,19.399999999999999,3.1000000000000001,325.83340867526755,326.77425179165664,327.29019772976949,328.85360541860587,330.15634535511163,330.66149874822054,71.494632888930354,69.650687067027107,69.013198854981127,70.017376373081916,71.50348700122629,71.875220672185094 +1985,5,6,9,0,667,157,8.5,571.62814289696496,50.771817963482995,51.56463403820102,98.5502188232859,0.0,186.92527324508936,587.48768046095302,1.0,186.92527324508936,357.35305013969412,1.2046848968391668,22.800000000000001,3.6000000000000001,563.70947105357845,564.72882160522659,565.26300416255185,567.22421136291416,568.87145538529091,569.49728612679087,114.29187791060329,110.30477281556917,106.53922524039939,104.95982874930311,104.86013087870847,105.41384080972558 +1985,5,6,10,0,728,184,9.5,741.23830483189533,37.51732236831899,40.05409420242532,110.62432111360435,0.0,236.12668906314451,774.40532775658346,1.0,236.12668906314451,462.42207271696867,1.3323610508703785,25.600000000000001,3.1000000000000001,756.76410983869675,757.72278859598873,758.19530396038874,760.38568740715698,762.23572532782691,762.93272829107025,146.71453218908201,143.12940972410294,137.85665268780278,133.88852472026156,131.59544813626536,131.10129794791513 +1985,5,6,11,0,772,200,10.5,870.86306222177711,24.643929166637136,29.65810042364616,128.18998609341227,0.0,269.4956958917432,918.07412627371343,1.0,269.4956958917432,542.46305525505693,1.3979983301375367,27.199999999999999,2.1000000000000001,902.95681090925461,903.76757467296579,904.13470581655781,906.40682654262685,908.33495845645825,909.05489782059942,167.90768425316412,164.92568637488199,159.09163365685853,153.83899881750898,150.1478852930282,148.83631130275521 +1985,5,6,12,0,790,209,11.5,939.93966151379539,13.648746588176682,22.295415439390514,156.85583286065443,0.0,290.92351612758745,992.15387584060022,1.0,290.92351612758745,583.56649375100415,1.4273155892961253,28.300000000000001,5.2000000000000002,977.65822065261989,978.66627540047659,979.14023852169873,980.91850091251092,982.45285106996585,983.00382133388609,180.96910144781512,178.45353028232174,172.58270317050173,166.71581689641991,162.09848630328185,160.17827550108515 +1985,5,6,13,0,791,210,12.5,945.9138530393069,12.193264071020877,21.50917708785776,195.9530295070723,0.0,292.7661879831067,998.74651576125052,1.0,292.7661879831067,587.19857961559023,1.429523989220583,29.399999999999999,3.1000000000000001,984.3420540602558,985.34000345809068,985.8071333418261,987.5688719219595,989.09046239096267,989.63558859140664,182.12522230075265,179.58660275686728,173.67081815825418,167.75384632434782,163.09556702970218,161.16235872247876 +1985,5,6,14,0,783,202,13.5,894.18477479590194,22.24312162234569,27.869289255436257,227.346423529164,0.0,276.691904136191,943.64403142516994,1.0,276.691904136191,556.830353980636,1.4053104102152711,30.0,4.5999999999999996,928.77645339835999,929.5554669280981,929.89977361608226,932.17444121033645,934.10670942873196,934.82646523763731,172.43309188379396,169.68365686725767,163.8504690437926,158.31634780438725,154.23689930130746,152.63205455817697 +1985,5,6,15,0,715,180,14.5,744.40801144912041,34.94216399176248,37.87221958682356,246.5976145749191,0.0,237.16595152315838,779.53216051508764,1.0,237.16595152315838,464.36307714021825,1.3473380168872922,30.0,4.0999999999999996,763.20240900116721,764.07357542746388,764.49279055919635,766.67591422599492,768.52077884344362,769.21555652123357,147.51491111964452,144.17757425462761,138.86775129924462,134.73616140998897,132.1432370672787,131.46173350368099 +1985,5,6,16,0,591,208,15.5,593.88178598893478,48.15548508832254,49.23710270951132,259.4413956361623,0.0,193.71495009508376,610.65669999007639,1.0,193.71495009508376,370.5497721439998,1.2342843186829884,29.399999999999999,4.0999999999999996,587.32905584225387,588.86178397428125,589.6978260019373,591.50104330187003,593.02205078713052,593.59443971817939,118.57047236270795,114.89529257280488,111.10640685191873,109.17170935393358,108.65735561596678,108.95870300749618 +1985,5,6,17,0,456,181,16.5,401.71166016653683,61.433087926036116,61.05192420524317,269.4263852866592,0.0,136.21005836068542,402.43627985251271,1.0,136.21005836068542,251.19458695781682,1.0060502262173987,30.0,5.7000000000000002,371.32777684341039,372.88520220810904,373.76335334716634,375.19479458952503,376.39538253167882,376.85341780126333,80.012144395810878,77.804863992710253,76.654998644577091,77.178984903496669,78.316440263912469,78.748600403292656 +1985,5,6,18,0,122,119,17.5,154.90689867407087,74.5742680980705,72.88330336465923,278.2656421848249,0.0,54.18774523878691,149.33630656671809,1.0,54.18774523878691,96.117796214260167,1.5,28.899999999999999,5.2000000000000002,129.49549266001586,130.83501207063418,131.61027563611012,131.92774253869598,132.19761394671164,132.29661447461623,30.99384919653826,31.47312991231092,31.891334075058605,32.167427388435847,32.058722663973661,31.480286476881869 +1985,5,6,19,0,46,30,18.5,34.581408421844692,87.2487317062052,84.28410264265251,286.84927114551317,0.0,13.71210887872679,30.586785283420397,1.0,13.71210887872679,21.503570422922817,0.586108515598188,25.600000000000001,3.6000000000000001,25.485709978476013,25.860070051468977,26.077586419765982,26.166852470359714,26.242812291998675,26.270710431350548,7.9722392590829907,7.9428421568758729,7.9382161023792355,7.9799353032497349,7.9984343202634438,7.93884069433902 +1985,5,7,6,0,10,23,5.5,23.80830079154704,88.48251242466544,85.36371970539696,72.12687604253081,0.0,8.155639199284952,22.519522336538351,1.0,8.155639199284952,14.619645925681313,1.0430703376430852,18.300000000000001,3.6000000000000001,20.421581900980698,20.731827320069467,20.913327684801963,20.911860254421306,20.91291158723816,20.911182910916256,4.7832665351002897,4.7718595136014326,4.7560660877395504,4.7404126835235392,4.7122802593779776,4.6715780416621424 +1985,5,7,7,0,48,113,6.5,125.37430098285904,77.02125860914012,75.06056045108569,79.9454091791796,0.0,42.711451112653883,120.78943126663478,1.0,42.711451112653883,77.168767859932032,1.5,20.0,3.1000000000000001,106.34776956958356,107.68834927039998,108.46918273923812,108.51507932960257,108.56338212069733,108.57259060046826,24.916682925648367,25.150441328546442,25.228381434720614,25.145352433536299,24.862099010108246,24.459481302795524 +1985,5,7,8,0,348,159,7.5,315.61864767174416,63.92339249417029,63.2528780230612,88.65355237766711,0.0,108.17675303634607,313.025372769775,1.0,108.17675303634607,196.55451610031449,1.5,21.100000000000001,4.0999999999999996,285.91523791730089,287.48306857009686,288.376882125522,289.23054109662053,289.95323545136984,290.22272159063863,62.722869252053634,61.40528999103509,60.983567851972971,61.665762234100391,62.616283277656294,62.775006962988712 +1985,5,7,9,0,349,247,8.5,464.76996750567957,50.652191084773015,51.39243967439448,98.27222184149848,0.0,150.56039398690837,472.92960356057597,1.0,150.56039398690837,289.42254380627298,1.1962781907304763,22.800000000000001,5.2000000000000002,449.68093101914599,451.88932760798008,453.14551854917306,454.3949000805286,455.45262447013187,455.8466789265766,91.1184170116709,88.64164207602397,86.294272311248875,85.301768664010282,85.160576001477523,85.336238103966664 +1985,5,7,10,0,453,289,9.5,636.6938012130197,37.39161276404976,39.86686485112416,110.30598722440958,0.0,202.45840630039027,661.04056260160644,1.0,202.45840630039027,397.80433580829674,1.3249595563464096,23.899999999999999,5.7000000000000002,639.77658384978849,641.73603218453468,642.81962129477529,644.95758762672142,646.7526198185642,647.43756984305094,124.75344768223549,121.97030652209081,118.02704442034363,115.29592149684488,113.76414030901769,113.45142283946207 +1985,5,7,11,0,349,370,10.5,673.94018408205841,24.49132501662234,29.437913759331533,127.84904394274918,0.0,209.3650934977054,700.69245141694626,1.0,209.3650934977054,419.6473707613747,1.3912086529565455,24.399999999999999,5.7000000000000002,678.39805728543922,681.1064917555309,682.63115374151039,684.41535419360866,685.92585126532299,686.49201231458005,128.59930455514927,126.85101446197289,123.36084373388803,120.29520558627068,118.0845936481511,117.07964398323118 +1985,5,7,12,0,595,301,11.5,852.56186168700549,13.415904861996546,22.028909086112172,156.656903259443,0.0,264.04621164825789,899.10754651879893,1.0,264.04621164825789,531.25713130261738,1.4208123056910047,24.399999999999999,5.7000000000000002,881.77783228611418,883.12251087357345,883.80900425498544,886.1232431761988,888.08229243172877,888.81758583873636,163.98838588649539,161.8874822441262,156.7615915343618,151.76953944320164,147.87881130779232,146.15774647077814 +1985,5,7,13,0,455,362,12.5,786.0808147731575,11.953324673854308,21.244011359969438,196.16963939486098,0.0,243.70600243217703,827.05412451921131,1.0,243.70600243217703,490.65409773131188,1.423024116471715,23.300000000000001,4.0999999999999996,806.91614369952345,808.79810402643557,809.81394610724806,812.26294088074519,814.32370578267057,815.10759700300127,150.84220417019515,149.07815264032061,144.64902719379481,140.41431893442228,137.11860152596324,135.56194326338047 +1985,5,7,14,0,530,346,13.5,815.42774852068021,22.1084096420093,27.660641528941447,227.73569812329387,0.0,259.45806685164706,854.78604194346872,1.0,259.45806685164706,508.47403750139642,1.3985285119853446,25.600000000000001,6.7000000000000002,833.88323246342702,835.88019386486394,836.95897313859768,839.32288053868615,841.31985765003333,842.07257563766007,160.52709970722432,158.16564206752858,153.28131811885251,148.83872520761739,145.60309520687346,144.25591931759507 +1985,5,7,15,0,613,256,14.5,740.98351649545077,34.84359692796991,37.70557983827515,246.9571502791816,0.0,235.85897676399472,772.97016787145969,1.0,235.85897676399472,462.53532874108191,1.3399351631802285,24.399999999999999,5.7000000000000002,753.09003263052728,754.62926582212435,755.44790627987402,757.75595598873861,759.70042622902167,760.43716635407259,146.06470588021395,142.72326081616214,137.76564380827023,134.07604058111485,131.9429158944713,131.41328895278863 +1985,5,7,16,0,477,237,15.5,549.37207280565849,48.066284732325045,49.09035237604302,259.75039424712105,0.0,178.81948016458077,563.91132132905568,1.0,178.81948016458077,343.29877617364986,1.225811656345457,24.399999999999999,5.7000000000000002,540.39095175697912,542.17469109577803,543.16610345835966,545.03210617188461,546.59883125750196,547.19505642019089,109.22778058002277,106.0572959412584,102.74849582690439,101.10539621907935,100.69376148117279,100.9097113775113 +1985,5,7,17,0,377,189,16.5,372.28564391189832,61.34175438899097,60.9109214844811,269.697438458292,0.0,127.69451657221053,371.44786111766723,1.0,127.69451657221053,231.73063014921973,0.9959477276940384,24.399999999999999,6.2000000000000002,343.48153747242162,345.30095381960814,346.33782368326018,347.30265800120941,348.12231080529477,348.42545613888535,74.835616737779787,72.951773878317653,72.015019870903316,72.450356495223815,73.371106319105891,73.667319434383742 +1985,5,7,18,0,120,128,17.5,163.60708552015655,74.47404636179475,72.73895245215697,278.5112052241399,0.0,57.177038346810136,157.64887557745246,1.0,57.177038346810136,101.49555001704863,1.5,22.800000000000001,6.7000000000000002,136.92121236658181,138.34404788554184,139.16764683532563,139.4960111711556,139.77543072619912,139.87762882404448,32.742714538270697,33.256010479942589,33.68506729545593,33.951197642940926,33.811248581248762,33.188809066026714 +1985,5,7,19,0,22,37,18.5,39.217856373436682,87.22824343514998,84.21408901063262,287.14277181791255,0.0,14.195291459598378,36.233643819949449,1.0,14.195291459598378,24.100442206319546,0.5707695488710107,18.899999999999999,4.5999999999999996,31.80678369878293,32.282367619601764,32.559964556208016,32.562514180999109,32.568396065895648,32.567111040179746,8.2587616296690065,8.2295825368454238,8.2238464002819569,8.2386282092881409,8.2260676274157678,8.1619484443817569 +1985,5,8,6,0,8,20,5.5,20.658118842588976,88.44734036780021,85.28123837167075,71.84641888949864,0.0,6.9136542669695791,19.809416488707694,1.0,6.9136542669695791,12.68200285422655,1.0548664497166458,10.6,2.1000000000000001,18.065614582754417,18.340343472381328,18.50119300827922,18.499036480037013,18.499182920979354,18.49741322273233,4.0517427006875089,4.0427432080791279,4.0311708195457454,4.0197241630313529,3.9974164021328451,3.9636570047961506 +1985,5,8,7,0,97,86,6.5,111.28204555974301,76.89289307929474,74.8919802117416,79.72351782129478,0.0,39.378290574610347,106.3122261407554,1.0,39.378290574610347,69.113449861389299,1.5,12.199999999999999,2.6000000000000001,90.862988987518705,91.872213333425933,92.456860776385383,92.708861402503601,92.922991657689238,93.001982365630525,22.97623373527242,23.330411311470716,23.451722490852315,23.387984350089859,23.093581451624498,22.637342625657762 +1985,5,8,8,0,222,190,7.5,290.47884830309857,63.80465523505966,63.08890291369269,88.40931162907812,0.0,97.735314604380534,287.39606329720669,1.0,97.735314604380534,180.06947491627841,1.5,15.6,3.1000000000000001,263.51654000935798,265.53759258539839,266.70443020404412,267.22010301704449,267.66549486440687,267.82336679281252,56.631711060055153,55.712155604155107,55.462511282657388,55.972245042228344,56.610152648143611,56.604336366389155 +1985,5,8,9,0,505,237,8.5,553.25992791071462,50.53734716037877,51.22547170421664,97.99614859272542,0.0,184.19024866178739,565.19813153981363,1.0,184.19024866178739,345.49718595789471,1.188049850838854,18.300000000000001,3.1000000000000001,539.61246627789637,541.45545910074588,542.48120089822282,544.2791186123311,545.79238883038147,546.36439560424355,111.87761076864497,108.41791604293661,105.20609749021064,103.92056445449948,103.87992129458269,104.27276566183311 +1985,5,8,10,0,312,389,9.5,629.10396350930228,37.27126481822489,39.685248727354704,109.9886304421816,0.0,199.68028672649888,647.21749358967554,1.0,199.68028672649888,391.66700377890515,1.317709704604397,20.600000000000001,3.1000000000000001,622.08218055909742,625.15385367474846,626.90140600607174,628.56481522922695,629.97326241712972,630.49972162900633,121.99613309951093,119.65985700764487,116.38042340787405,114.0871483149495,112.72321995608586,112.31412515354562 +1985,5,8,11,0,448,319,10.5,709.97879549982861,24.345092091940238,29.223662114852516,127.50621390378079,0.0,225.86907974114646,743.37767192996193,1.0,225.86907974114646,443.54419462078647,1.384556318370344,21.699999999999999,2.1000000000000001,723.62848351932234,725.48073598878443,726.48832425322303,728.84196097114602,730.81998826537756,731.57451233388838,139.69507423383629,137.45993083092807,133.12228723800214,129.48192520113648,126.93237709750248,125.92739131797369 +1985,5,8,12,0,435,402,11.5,805.98192217881638,13.189875418181769,21.767848438018774,156.45168042951667,0.0,249.97279026757155,845.60100439737698,1.0,249.97279026757155,502.67237388558522,1.4144412055914164,22.800000000000001,3.6000000000000001,824.04335087089635,826.22216895786323,827.41288545399084,829.79075184494604,831.79587682905719,832.55485135645017,154.52473148981267,152.44203430811197,147.88815845279399,143.67455692020704,140.55315352024917,139.14663981881546 +1985,5,8,13,0,266,488,12.5,736.36039961356664,11.71808614783548,20.98316039968599,196.38211858666102,0.0,233.85635412213216,766.69897967605834,1.0,233.85635412213216,458.68407597699508,1.4166591727395468,23.300000000000001,3.1000000000000001,741.35939741829225,744.54385826733778,746.34131806486323,748.35753926071936,750.06277639474092,750.7031659747355,143.4295489049637,141.86486747042017,138.259511521082,134.8733277813931,132.2137024932623,130.8706682381376 +1985,5,8,14,0,416,359,13.5,728.14602746962044,21.976714168852148,27.45536756127598,228.120155591098,0.0,225.87733959432168,762.08768279913852,1.0,225.87733959432168,454.73798538738436,1.391893044664165,23.899999999999999,4.0999999999999996,741.1678577776687,743.25213484970459,744.39748606945091,746.76542097588731,748.75491157018541,749.51429741404911,139.56117733986252,137.50558003868605,133.32019220198816,129.67979939475174,127.12381866017564,126.03434396095375 +1985,5,8,15,0,284,356,14.5,581.18767897074451,34.746477607884614,37.5412965809915,247.31103382948743,0.0,184.48525491304636,599.28892385120912,1.0,184.48525491304636,362.20634641432173,1.332702599598808,23.899999999999999,3.1000000000000001,576.38756118556523,579.18248942244259,580.77103880027153,582.43697767719254,583.84298229147385,584.3729466305108,112.84804564245674,110.82788411181357,107.79566632639484,105.58020255169139,104.24475085338423,103.73152946634501 +1985,5,8,16,0,250,227,15.5,391.1949728686435,47.977760570260884,48.94525106573744,260.05388834442283,0.0,126.56886662125743,398.99626047507473,1.0,126.56886662125743,244.10563529070092,1.2175547888444236,23.899999999999999,2.6000000000000001,379.60461149297328,381.61614424401898,382.76417533760616,383.99814527000763,385.03587887051174,385.42904150868293,76.65579365527725,74.733074386571772,72.814626617852625,71.940772525301014,71.77150810287938,71.848958621349894 +1985,5,8,17,0,101,214,16.5,263.31818046539746,61.25072866944997,60.77117107841543,269.9632697360183,0.0,85.861712464582823,260.83789916840192,1.0,85.861712464582823,162.27934878683504,0.986152395789859,23.300000000000001,2.1000000000000001,241.61849440688673,244.03747365256132,245.44549351945315,245.59927669118969,245.7484727827767,245.78662949466951,50.206624437612426,49.469689733785884,49.10740465281058,49.216174443809102,49.429660893486925,49.353402935923171 +1985,5,8,18,0,173,119,17.5,170.7464777087155,74.37399449867905,72.59568909798817,278.7517090122733,0.0,60.634672837683105,163.50678443546417,1.0,60.634672837683105,105.87351133345182,1.5,21.699999999999999,2.6000000000000001,140.85557358944919,142.19690562864164,142.970379137956,143.28952822065841,143.5620042915584,143.66070190660892,34.602841380670064,35.222738495539247,35.751132452589133,36.067642736224677,35.903272378988923,35.188685223870408 +1985,5,8,19,0,8,29,18.5,29.825534511137352,87.13179232541094,84.07700080095589,287.3772936470444,0.0,9.8159779332743717,28.747315046206833,1.0,9.8159779332743717,18.175043788768296,0.6061140297590994,18.899999999999999,2.1000000000000001,26.293193519699393,26.691774548835539,26.925241846941173,26.874661746181371,26.836366722531746,26.817903453127197,5.7244855259093912,5.7035330825941664,5.694721863776202,5.6835133175249606,5.6535869307638773,5.6092008101421342 +1985,5,8,20,0,0,0,19.5,0.0,93.07229759699933,89.3493931311712,291.90499158041666,1.0,0.0,0.0,0.6822062654798313,0.0,0.0,1.5,16.699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,9,6,0,58,28,5.5,32.852256695509006,88.41367367975441,85.20104904752199,71.570059281264,0.0,13.919023176754768,27.531075601392885,1.0,13.919023176754768,20.416549299601769,1.0652062353343146,10.0,0.0,23.209553131024801,23.557321694163885,23.758800491954091,23.838771231699475,23.907425234251502,23.932140061737027,8.2224501200835505,8.2041736560080043,8.1506533612451513,8.1071689438810424,8.0473486322617802,7.9651806321414576 +1985,5,9,7,0,307,84,6.5,164.86317832967785,76.76884305349523,74.728218078681,79.50393329789146,0.0,65.001562086743093,152.9408795434457,1.0,65.001562086743093,103.64163594428666,1.5,14.4,0.0,121.12852050177128,121.93352753057738,122.38503175151718,123.17229792368903,123.82581686668007,124.08123234621485,37.922971908164449,38.951142419226414,39.30525387040111,39.153006892776496,38.443919456340574,37.379058167822443 +1985,5,9,8,0,505,126,7.5,355.81543190361299,63.690396225290876,62.929914247821365,88.16736919201489,0.0,124.20202188582576,352.54914204937882,1.0,124.20202188582576,222.43387645158583,1.5,18.899999999999999,0.0,321.54464625284243,322.60001657753946,323.18319228553798,324.41686390104405,325.45203004590246,325.84647347321027,71.652886752862983,69.97329196882086,69.554776890295486,70.632097483719065,72.072059094573177,72.356206577537705 +1985,5,9,9,0,679,124,8.5,550.72105279264656,50.42728602200715,51.06376130673411,97.72215545411214,0.0,180.36570626951701,564.48000089396896,1.0,180.36570626951701,343.95822961010811,1.1799977009427174,22.199999999999999,2.6000000000000001,543.30403283511112,544.01676489654221,544.37154174770615,546.13599886870236,547.62214411302386,548.18265726599839,110.12306369205825,106.02964374484429,102.37969002943214,100.97432783354719,101.02288273182432,101.68437800085287 +1985,5,9,10,0,744,148,9.5,722.01202085223304,37.156266793115506,39.50928148288954,109.67246639564459,0.0,236.55321010659858,751.82713739983956,1.0,236.55321010659858,449.76278108695766,1.3106107349953557,23.300000000000001,3.6000000000000001,735.86288735935364,736.71473587598916,737.12467697453224,739.01827640937665,740.62800478787381,741.22469184937393,146.69964293119739,142.72960350837914,137.37613655939751,133.59744053895417,131.5182803525264,131.34213080767734 +1985,5,9,11,0,796,161,10.5,857.09349580457047,24.20522851151603,29.015406111718516,127.16174629790046,0.0,265.22070426500738,900.23387788710284,1.0,265.22070426500738,532.77529733689607,1.378041235598341,24.399999999999999,3.1000000000000001,886.69575242260873,887.45756573671986,887.79818573324144,889.64073972010874,891.21989272383939,891.79612086003635,165.22551157938932,161.84313797599958,155.88469728308667,150.8553368570345,147.31896777723171,146.25933597582983 +1985,5,9,12,0,783,183,11.5,911.45519500237913,12.970777973601987,21.512327620399265,156.24016337229446,0.0,282.03207724508303,960.73814966757993,1.0,282.03207724508303,566.0424815914098,1.408202546808313,25.0,4.5999999999999996,947.53926166197323,948.32329647003905,948.66827644950104,950.44181941111788,951.97007909885781,952.52071206805203,175.67793014673794,172.8008581646485,166.85011594329916,161.11215727033141,156.83722443671041,155.20066713207137 +1985,5,9,13,0,809,164,12.5,920.64097417801952,11.48757217208554,20.726681163259986,196.59015083017263,0.0,284.81362928030677,971.23058201249364,1.0,284.81362928030677,571.56370624112503,1.410429596496572,25.600000000000001,5.2000000000000002,958.91580167342318,959.55128272168815,959.80646123613099,961.52713526290347,963.01370443591873,963.54610882041811,177.53765457545677,174.58490955165632,168.49960452373415,162.61565638716198,158.23127153127288,156.57395012127787 +1985,5,9,14,0,837,172,13.5,916.08411355635985,21.847963007968627,27.253473339349895,228.49947737209828,0.0,291.94462892208736,962.77690491327053,1.0,291.94462892208736,569.09028660967385,1.3854045020477443,26.100000000000001,5.7000000000000002,948.88086480211814,949.69462709757829,950.05473225904075,951.8962465687564,953.48286166411538,954.05459724421621,181.75075226453353,178.25036950134344,171.84417072817473,166.18914504148145,162.16348765755316,160.8696013343266 +1985,5,9,15,0,801,159,14.5,795.50129424832721,34.65075413192795,37.37936391192639,247.659055259877,0.0,253.45140144074747,829.60585793931796,1.0,253.45140144074747,495.06269271809771,1.3256406968926115,26.699999999999999,5.2000000000000002,813.5416988050365,814.4492061061751,814.88472717924583,816.80333326555865,818.43881018321133,819.04125147855882,157.36339473113964,153.14454792527184,147.38059483768203,143.18835047967431,140.78824534728327,140.53222825966489 +1985,5,9,16,0,746,139,15.5,630.36468758944318,47.889887742231345,48.801801593293796,260.3517364318612,0.0,206.47462712861048,648.29075280429049,1.0,206.47462712861048,393.322742933499,1.2095135257806624,25.600000000000001,5.2000000000000002,627.21164545965178,628.00411520629211,628.39496065442165,630.28026184332373,631.87265774207242,632.46966051872027,126.69947525127408,122.1828893137565,117.80797604342955,115.68417002048555,115.3052645833274,115.88812390902095 +1985,5,9,17,0,649,111,16.5,429.27388546178435,61.16000921031403,60.632690075708595,270.22377380354163,0.0,151.39896563087964,428.82183131852975,1.0,151.39896563087964,268.6254759851152,1.5,24.399999999999999,6.2000000000000002,396.90202475265181,397.68280007768027,398.09404966505275,399.65725753782004,400.96946559286442,401.4693581020224,88.470405871169064,85.712565432087786,84.471533998861787,85.344528592477616,87.015318398994182,87.654156809817806 +1985,5,9,18,0,471,76,17.5,217.99658372432907,74.27413221702741,72.45354626126718,278.987069766205,0.0,84.546477771367933,204.11464592508673,1.0,84.546477771367933,137.23394965867698,1.5,22.800000000000001,5.2000000000000002,164.53614829705901,165.18469363169817,165.53435484722252,166.62922173676313,167.5331625881114,167.88948552907803,47.616671720205268,49.196197319662538,50.434965074657725,51.201144143960029,50.968914911028278,49.541905039808888 +1985,5,9,19,0,110,31,18.5,42.637510639432413,87.01987897486347,83.9269964028434,287.59565040281933,0.0,19.69541758912656,34.308878546280468,1.0,19.69541758912656,26.742588623380023,0.6500756391062108,21.100000000000001,5.7000000000000002,25.633907250666887,25.990498495247113,26.195082237594999,26.381269670884283,26.537393757956416,26.596880423546757,11.460263365708917,11.37266264480629,11.340858915490971,11.420097278430365,11.483699780737345,11.411680035301471 +1985,5,9,20,0,0,0,19.5,0.0,93.0535628751413,89.28496172130727,292.1832913516981,1.0,0.0,0.0,0.6485950122941696,0.0,0.0,1.5,18.899999999999999,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,10,6,0,1,24,5.5,24.085013889815578,88.38152406413708,85.12317641150038,71.2978899467697,0.0,7.7006938643907752,23.498124415587586,1.0,7.7006938643907752,14.670963049015478,1.0741708700864407,17.199999999999999,0.0,21.738123911406127,22.069307359296058,22.263471097004242,22.22095449266838,22.188623089456414,22.173186856755127,4.4999848903844626,4.4864553590823526,4.4774824479792104,4.4621145562801923,4.4324944799936876,4.3963823080923641 +1985,5,10,7,0,86,68,6.5,90.882225884567248,76.6491348988934,74.56931564153884,79.28674486552988,0.0,32.181880350009983,86.769086404205453,1.0,32.181880350009983,56.482111357749474,1.5,18.899999999999999,2.1000000000000001,74.274377483456192,75.095877338606499,75.571702589055207,75.79088696552283,75.976656320856918,76.045655518408537,18.808794441212147,19.095005985656204,19.179172228957675,19.114271665608388,18.864294789195974,18.49216587998805 +1985,5,10,8,0,90,163,7.5,204.17241805959208,63.58062592776895,62.775944138333266,87.92784241962526,0.0,67.55388756636647,202.36848417511098,1.0,67.55388756636647,126.88947690998793,1.5,21.699999999999999,3.1000000000000001,185.43742713439531,187.21992670540106,188.25562343407535,188.74591104038694,189.16182705619849,189.31602098305186,39.208110530569442,38.769640482391736,38.661475027667038,38.98045946012148,39.329326259334614,39.235784234965706 +1985,5,10,9,0,146,257,8.5,349.06416100780757,50.3220031200312,50.9073355625715,97.45040173627933,0.0,113.74063912682014,351.93727478069133,1.0,113.74063912682014,216.77583548112162,1.1721197194331316,22.199999999999999,3.6000000000000001,331.7467549406669,334.32844896894886,335.82144001340225,336.58495833322752,337.23696180936361,337.47460227403661,68.053492759644541,66.653970936866855,65.395368167249615,64.940693131759787,64.892329326091584,64.878923330090728 +1985,5,10,10,0,226,380,9.5,554.79042650375254,37.046601409024994,39.3389941227825,109.35771679927593,0.0,175.86292479780931,566.37263988978543,1.0,175.86292479780931,344.18699353003399,1.303661967596693,23.899999999999999,5.2000000000000002,541.95907462887021,545.38373810703706,547.35186287240629,548.41772158621677,549.33395069327889,549.66365938834247,106.67339982725036,104.761098974563,102.24159442593628,100.53893516364748,99.525008830188796,99.167559137733335 +1985,5,10,11,0,299,369,10.5,630.98250069509959,24.071724153867276,28.813201689502346,126.81590674476264,0.0,200.40341691037935,654.44172501272431,1.0,200.40341691037935,393.23100976703807,1.3716633608220854,24.399999999999999,3.1000000000000001,632.48447439642337,635.17089234475031,636.68719579250603,638.47924129978423,639.99310208932957,640.5632427939355,122.96782932900361,121.03129018650969,117.63487863456803,114.92125600607415,113.07445181238542,112.29503885528953 +1985,5,10,12,0,559,334,11.5,854.94840149093136,12.758726388793797,21.26243893607238,156.02237049248137,0.0,272.16012567809565,898.27939913851753,1.0,272.16012567809565,533.05340755072393,1.402096615179612,26.100000000000001,2.1000000000000001,878.7848565205901,880.48281853691151,881.37782154028571,883.8183453482917,885.88193861940465,886.65828898344535,168.72879966480781,166.14503493737283,160.82778013069699,155.9676398690986,152.43661084333749,151.016902373427 +1985,5,10,13,0,80,443,12.5,517.94617316658719,11.261802533582015,20.47463019244661,196.79341513807557,0.0,161.74470171427396,527.56234582921036,1.0,161.74470171427396,320.50705344192994,1.40433584108959,26.699999999999999,5.2000000000000002,501.39938770419735,505.6434103840096,508.10409487087225,508.84952482036158,509.50091378037348,509.72627420607307,97.330871582594725,96.567131308923791,94.996068653269674,93.541381720309388,92.311550858131099,91.483618700818951 +1985,5,10,14,0,244,393,13.5,610.29922523538232,21.72208280237177,27.054964592627687,228.87334327282468,0.0,189.72809605304249,632.95389519556329,1.0,189.72809605304249,380.67070972674054,1.3790633813938447,27.800000000000001,5.7000000000000002,610.45302855565797,613.24922914198294,614.83512673043947,616.69382581058107,618.2581075626299,618.85237771132938,116.28261878315709,114.62655284382235,111.53375879669163,109.07716084689038,107.32819418363158,106.53820490347201 +1985,5,10,15,0,103,321,14.5,403.02108164810767,34.55637598821038,37.21977678914584,248.00100634508186,0.0,127.59037904991953,410.8047241871937,1.0,127.59037904991953,250.705377717864,1.3187498172678618,28.300000000000001,3.6000000000000001,390.13131239922598,393.12745232110984,394.85994018649581,395.89188480917255,396.76548279616327,397.09185945384695,77.066803798881921,75.994110234747183,74.451865071808825,73.412749101615361,72.752033707913199,72.399610354637616 +1985,5,10,16,0,444,233,15.5,526.27349083110073,47.80264339635743,48.66000825221879,260.64379904042875,0.0,171.27254302390432,538.9450804550811,1.0,171.27254302390432,329.11236027487087,1.2016876553794642,27.800000000000001,5.2000000000000002,516.25194914747237,517.98761424720954,518.95432346503276,520.83044360711722,522.40289436314822,523.00340224809702,104.2243996461977,101.03142646950056,97.977434607615692,96.737483450182069,96.667113750056842,97.018471147123762 +1985,5,10,17,0,410,184,16.5,385.9217026531071,61.069596614175204,60.4954972659883,270.47884731087305,0.0,133.35643915671812,385.26662978415288,1.0,133.35643915671812,241.54359450559693,1.5,26.699999999999999,4.5999999999999996,355.74933192921509,357.32307337912619,358.21204537107008,359.66821083804939,360.88708000533552,361.35454050619018,77.761958466189213,75.864609668755108,75.040085844828639,75.818483801909466,77.116975969619247,77.443673516986564 +1985,5,10,18,0,286,104,17.5,190.89373287834138,74.17448134770878,72.31255859697399,279.2172057103935,0.0,71.599694122610416,180.68326184213012,1.0,71.599694122610416,119.02135505817624,1.5,26.100000000000001,3.6000000000000001,151.78174779725225,152.87798212451841,153.50038311953523,154.0727522515096,154.55200144879316,154.73434395275689,40.676988932649238,41.697048975782039,42.491970820612892,42.935211830227416,42.682640493333068,41.654217768436254 +1985,5,10,19,0,49,34,18.5,39.310604689884379,86.90812952503227,83.77807992591967,287.80881537028705,0.0,15.622520584378753,34.737209733536083,1.0,15.622520584378753,24.438950133379468,0.6923430962449006,23.899999999999999,3.1000000000000001,28.855319604673621,29.276218108643906,29.520697267856743,29.620039824446962,29.704768342152292,29.735734796803797,9.1229029389796032,9.0625709321980832,9.0302558601990128,9.0592425324267509,9.080039029319634,9.0223960471199351 +1985,5,10,20,0,0,0,19.5,0.0,93.03372381427192,89.22042888962643,292.4559236640301,1.0,0.0,0.0,0.6143792437178068,0.0,0.0,1.5,21.100000000000001,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,11,6,0,78,31,5.5,37.733533504901558,88.35090103242086,85.04764283214845,71.03000404765362,0.0,17.512472012964576,29.88875742204106,1.0,17.512472012964576,23.692839025680478,1.0818346210631447,18.300000000000001,2.1000000000000001,24.010833067833282,24.366997736387852,24.571989440368245,24.747406005619712,24.894368200465269,24.950573764782547,10.377063767128691,10.363242334051042,10.286788452038568,10.229981912945917,10.155498220531811,10.044098836604885 +1985,5,11,7,0,495,55,6.5,187.98790141080556,76.53379141639576,74.41531103166052,79.0720433419602,0.0,78.273033955189831,170.15207124648148,1.0,78.273033955189831,118.19156984007996,1.5,21.100000000000001,3.1000000000000001,129.413551550596,129.86132498185728,130.09379357964332,130.977027388197,131.71139093642577,131.99740755553378,45.740947737358312,47.181612314140175,47.644477988352463,47.313848709209587,46.223859924245218,44.757383738176195 +1985,5,11,8,0,434,140,7.5,339.54496915115828,63.475351001324,62.627021010767194,87.69085046069372,0.0,117.96195515261815,336.22317439006486,1.0,117.96195515261815,212.59218054690595,1.5,23.300000000000001,2.6000000000000001,306.74945550395478,307.93417579970384,308.59624589128271,309.89704077984334,310.98428784041062,311.40240694001494,67.913844368619877,66.505770567662566,66.249369443406565,67.350091313594262,68.716040878800172,68.899235135454859 +1985,5,11,9,0,628,151,8.5,548.28617126104905,50.221489559894756,50.756217436920195,97.18104944692152,0.0,179.32923054981876,560.90904200923296,1.0,179.32923054981876,342.95208175055313,1.1644140355627648,26.100000000000001,3.1000000000000001,538.66447827462241,539.60564673517433,540.09735974873934,542.04465872052708,543.67822739496557,544.30047805109803,109.08236166132913,105.12652692746644,101.70665154876492,100.57082903475164,100.82721087332855,101.51481337701485 +1985,5,11,10,0,465,255,9.5,615.4803977522879,36.94224590332599,39.17441296261177,109.04460908691838,0.0,200.68214710918417,637.94679977679266,1.0,200.68214710918417,384.71552810674547,1.2968628015823014,27.800000000000001,2.6000000000000001,618.48651897350396,620.15153289065586,621.06133848193565,623.17610953444819,624.95194963324855,625.62889295173477,123.61295382655568,120.50684344742379,116.46982927785382,113.90056323157413,112.60418975153863,112.47767804091296 +1985,5,11,11,0,408,342,10.5,700.15874871228368,23.944560640856523,28.617099969637135,126.46897593102058,0.0,222.6893454615373,730.88286255030653,1.0,222.6893454615373,437.5095408885673,1.365422695979011,27.199999999999999,4.0999999999999996,710.43786046582329,712.43743358378526,713.53479783113357,715.89784688220402,717.88238370953195,718.64051191040483,137.5721468176489,135.15333881200064,130.86875750949474,127.46204727648571,125.21301077363211,124.36960367332635 +1985,5,11,12,0,513,289,11.5,767.86810347622918,12.553827908081734,21.01827271693966,155.79834082813747,0.0,237.8920717223375,807.28192664595463,1.0,237.8920717223375,479.32174879272986,1.3961237233422408,29.399999999999999,4.5999999999999996,789.81839093213875,791.22541872375609,791.96174193475451,794.34981032284236,796.36051852610603,797.12458877434767,147.66729526738209,145.27380809411116,140.47062099243752,136.23508069276258,133.27354970861612,132.12074196460216 +1985,5,11,13,0,595,306,12.5,864.30624075883111,11.040793061990712,20.227063672095074,196.99158631721278,0.0,267.66572619724769,909.00270387063165,1.0,267.66572619724769,538.42859601359555,1.3983783733462287,30.0,5.7000000000000002,891.84429498971747,893.16121417574846,893.8309543573414,896.12311915350824,898.06618117126413,898.79325697211107,166.3187219510213,163.50095416478172,157.96306420065577,153.00115258989251,149.50321697622397,148.20401615629066 +1985,5,11,14,0,610,298,13.5,842.18977083446237,21.598999296948445,26.85984691688414,229.2414318328529,0.0,260.90448129301814,882.18514617784149,1.0,260.90448129301814,524.86056149554577,1.3728701817880353,30.600000000000001,4.5999999999999996,863.78858125067438,865.2977855352699,866.08586465186386,868.4019469848995,870.3620499900702,871.09815257676257,161.94520287889929,158.91806556575031,153.45140955846301,148.9432831422057,145.79477433480352,144.74185955598912 +1985,5,11,15,0,293,347,14.5,580.80762113747687,34.46329419713397,37.06253113778279,248.33668076370628,0.0,188.19137350314801,597.96874907837685,1.0,188.19137350314801,361.9560947961312,1.3120303124748316,28.300000000000001,5.2000000000000002,575.5072627480223,578.22871425758137,579.77266313474388,581.42884958724244,582.82811014427648,583.35384338313202,115.03163707398524,112.74224627398668,109.57238600047332,107.42040141170966,106.19762592365113,105.86422656034486 +1985,5,11,16,0,242,254,15.5,414.29116425665927,47.716006764475196,48.51987687969481,260.92993881099807,0.0,133.94425544380806,421.44469282760724,1.0,133.94425544380806,258.52684706947218,1.1940769423139754,27.199999999999999,3.6000000000000001,400.63523748433062,402.85969603808508,404.13190843884377,405.44561914086177,406.55004209342269,406.96867318452138,80.931199969342046,78.900285906820301,76.940414932264417,76.15441114399367,76.072329153212266,76.178201635278953 +1985,5,11,17,0,214,169,16.5,274.83469213612693,60.97949367795801,60.359613170332125,270.72838893376706,0.0,93.345248875010626,273.88963600492104,1.0,93.345248875010626,171.64897303214954,1.5,27.800000000000001,5.2000000000000002,252.75270280138244,254.38814132017455,255.32773686813991,256.25546584749236,257.03407125932523,257.33071866157957,54.47632868043501,53.378319578206785,52.886880607500302,53.336677727548782,54.062575655432511,54.175360449423373 +1985,5,11,18,0,63,115,17.5,134.28731758771892,74.07506584814622,72.17276245894584,279.4420371260022,0.0,45.373533788673029,129.91694122401259,1.0,45.373533788673029,82.643992165163795,1.5,27.800000000000001,4.5999999999999996,115.84403530022018,117.24415029994984,118.05931048987433,118.10379749267491,118.15105017388029,118.15941805769373,26.172439271903507,26.439070827514712,26.649459321241441,26.734035417408396,26.564331728563001,26.145507906111323 +1985,5,11,19,0,35,38,18.5,41.883010854944359,86.79659647323746,83.6303121262979,288.0167252332262,0.0,15.440423974319067,38.293016639526563,1.0,15.440423974319067,25.737731780234895,0.7330334435601245,25.600000000000001,3.1000000000000001,33.238055205152165,33.730618358024671,34.017835338149347,34.019645913212379,34.025366985479266,34.023620107165655,9.022809234753927,8.9606169893887344,8.9251110678537522,8.9240569465212012,8.9115025987087613,8.852755444303833 +1985,5,11,20,0,0,0,19.5,0.0,93.01284743509225,89.1558721845178,292.7228020476536,1.0,0.0,0.0,0.5795574302104542,0.0,0.0,1.5,22.199999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,12,6,0,80,35,5.5,42.007971882350795,88.32181196097459,84.97446842020342,70.76649511248156,0.0,19.310806643062033,33.42488633424081,1.0,19.310806643062033,26.357745576659756,1.0882655942813777,18.300000000000001,3.1000000000000001,26.928339510020731,27.327790920504334,27.557824665133932,27.746579622031899,27.904837795669604,27.965249229532798,11.446218118552684,11.431413452688528,11.346372343183683,11.280387345683105,11.194998139832293,11.070907017348405 +1985,5,12,7,0,361,68,6.5,165.89152436367203,76.42283184810442,74.26623891189035,78.85992100520217,0.0,65.800943603489188,151.83450179036754,1.0,65.800943603489188,104.11062063190205,1.5,20.0,3.1000000000000001,118.97828306198741,119.60912031842592,119.95628195364367,120.6788736491724,121.28034884170484,121.51399095456361,38.52368299271464,39.607435359909722,39.930406269035473,39.6519699129774,38.796629252604596,37.655385466507447 +1985,5,12,8,0,4,206,7.5,207.84803659685249,63.37457432025473,62.48316959272236,87.45651410460624,0.0,66.490274840203512,204.52367457359694,1.0,66.490274840203512,127.11875666339317,1.5,21.699999999999999,3.6000000000000001,189.36732440006932,191.90410688799642,193.38871530823383,193.19035510623831,193.04795298649844,192.9712608560979,38.709940869816322,38.482963471520627,38.41601446852016,38.434251652932574,38.369033556760655,38.130814138871699 +1985,5,12,9,0,215,277,8.5,413.43682699486004,50.125732146656524,50.61042576948119,96.91426304241868,0.0,135.27149584894133,416.69136052268152,1.0,135.27149584894133,256.4567749018791,1.156878925765989,23.899999999999999,4.0999999999999996,394.38243971598047,397.12086957925521,398.69913468071189,399.48664601312089,400.16485062970577,400.40678096578574,80.956151585263598,79.06168169691486,77.472283588080145,76.917769003627981,76.932110439269948,77.015172535032704 +1985,5,12,10,0,358,345,9.5,623.15706098136775,36.84317210379289,39.01555959540027,108.7333760163222,0.0,197.88716914857309,640.36466230728047,1.0,197.88716914857309,387.9205861041836,1.2902127135513268,26.699999999999999,3.6000000000000001,617.05955347779059,619.80763519515904,621.36397740777977,622.98513466075008,624.35888355355746,624.8708248950694,120.88958943411791,118.15250709383135,114.75416164744676,112.59477725287589,111.47903835231084,111.29474771476298 +1985,5,12,11,0,243,427,10.5,640.69981820114162,23.823711354909527,28.42714712799701,126.12124929767111,0.0,199.22107660180316,662.59841886526522,1.0,199.22107660180316,399.43648431032398,1.359319287501128,27.800000000000001,4.5999999999999996,638.52470050817965,641.56838023383227,643.29820236210867,645.18441936249246,646.77353441296464,647.3754325259456,121.97401488872357,120.06458981810115,116.83048967359368,114.3204730509508,112.68348965185065,111.96218387563272 +1985,5,12,12,0,730,272,11.5,954.51356428218344,12.35618236629431,20.779917167824788,155.56813526255698,0.0,295.4513710946938,1004.0668710842384,1.0,295.4513710946938,594.16361977454608,1.390284209457307,29.399999999999999,4.0999999999999996,987.5865208721932,988.65358097442459,989.16233744054989,991.51631683874791,993.5189976949606,994.26232163485997,183.8976764492887,180.65885965288282,174.35224136262474,168.65732636037649,164.63820427495813,163.2013952270211 +1985,5,12,13,0,181,358,12.5,528.10160457332313,10.824555577776014,19.984037489250277,197.1843355633953,0.0,164.41990550663542,544.64770158775286,1.0,164.41990550663542,328.37245431882883,1.3925576721526378,30.600000000000001,4.5999999999999996,523.05498194050961,526.10558031609708,527.85367388802615,529.1232153075573,530.20159597406473,530.60222047628974,100.14922508581374,99.010247616332592,96.732375619756311,94.752197403016311,93.278903234636601,92.49578808750104 +1985,5,12,14,0,144,349,13.5,477.6814542139964,21.478637607057767,26.668125900684437,229.60342070758324,0.0,151.37752276120256,490.36080819239652,1.0,151.37752276120256,297.11110692474494,1.3668254025086197,29.399999999999999,7.7000000000000002,468.96043021687865,472.0424103231054,473.81537381466592,475.00682497929915,476.01757650787897,476.3940262436526,91.93213440231608,90.785533338324399,88.765314337801399,87.173198387068297,86.037317715249188,85.42454317038947 +1985,5,12,15,0,419,296,14.5,631.03439344448293,34.37146145305744,36.90762395473101,248.66587426359473,0.0,200.66509189797688,654.07487619513529,1.0,200.66509189797688,394.5286617382659,1.3054825219406618,27.199999999999999,8.1999999999999993,633.57925303833076,635.50146234980525,636.56411587119487,638.77441055048007,640.62728731525124,641.33651206609966,123.53514570664247,120.62542211461586,116.68049987767917,114.11508379499811,112.80191005614139,112.60001149214375 +1985,5,12,16,0,558,186,15.5,556.60615782863101,47.629959234623286,48.38141491882901,261.2100205785876,0.0,181.78632462208549,570.84035811935064,1.0,181.78632462208549,348.51866183469514,1.1866811256609267,27.199999999999999,7.2000000000000002,549.12134389143409,550.33350789992369,550.9850231282976,553.09970866200695,554.86931528674097,555.54750728009572,110.75388955690687,106.95506109556059,103.51252030779519,102.25831256274334,102.36824720811777,102.93403375250615 +1985,5,12,17,0,344,154,16.5,324.82846315319296,60.88970542444243,60.22506006886514,270.97229943441556,0.0,112.40335900107959,324.19401000592876,1.0,112.40335900107959,203.83494809427177,1.5,26.100000000000001,5.7000000000000002,299.1444205222146,300.41899517431773,301.13725407295465,302.5478735479345,303.72332430399842,304.17897601154681,65.369294337310535,63.84613095170549,63.260446934384127,64.042177210097208,65.228963462458651,65.482334200972616 +1985,5,12,18,0,261,123,17.5,203.50527234154407,73.97591180328003,72.03419590001258,279.66148640072623,0.0,74.397694986797347,193.07111485300356,1.0,74.397694986797347,126.92725676621124,1.5,24.399999999999999,5.7000000000000002,163.58056410745854,164.8615801199638,165.59287800094347,166.2228389072072,166.74960565344617,166.95075476766965,42.445801448018877,43.491455668574069,44.241476320950014,44.617425607815264,44.294867618037188,43.233192394949974 +1985,5,12,19,0,28,33,18.5,36.177577833345431,86.68533356185898,83.48375458293553,288.21931891662973,0.0,13.056313989613287,33.546029361687864,1.0,13.056313989613287,22.22464812030185,0.7722520406278979,23.300000000000001,4.0999999999999996,29.455809663150927,29.894274713135726,30.15021236679431,30.149877368688767,30.153216767370239,30.151117592626996,7.6402145407924138,7.5915483474210932,7.5589236351458826,7.5511108970066232,7.5335448123851245,7.4822876809313241 +1985,5,12,20,0,1,1,19.5,1.0158579715117924,92.99099909932472,89.09136707490485,292.9838415869399,1.0,0.31471019366957131,0.99240387608929914,0.5441285309701224,0.31471019366957131,0.059775172297469273,1.5,21.100000000000001,3.1000000000000001,0.91266150168250337,0.92657537372170773,0.93473634165484543,0.93783544795080243,0.9404302783945615,0.9414235808042386,0.18461913405589972,0.18472833505848696,0.18442154216385548,0.19491247475299073,0.19845588595702235,0.19701099699352187 +1985,5,13,6,0,35,37,5.5,40.109066727646002,88.29426214614969,84.90367107866211,70.50745696709964,0.0,15.689158890431797,35.398154396100971,1.0,15.689158890431797,24.653562328765666,1.093526388951223,17.199999999999999,1.5,30.981019559773003,31.447771933879899,31.719412404791278,31.72276076067326,31.729813474791975,31.728547699761151,9.2336020180359757,9.2101467762187266,9.1638136066478051,9.1121659591981583,9.0359888169381914,8.9452736344871315 +1985,5,13,7,0,375,85,6.5,187.59539729157848,76.3162718882609,74.12213046946793,78.65047148761026,0.0,73.644734106357035,172.32703616130897,1.0,73.644734106357035,117.68955003134994,1.5,21.100000000000001,2.1000000000000001,136.55937939473327,137.36691920064601,137.81601739628897,138.6220415510349,139.29309201557876,139.55363725832362,43.119438627308753,44.285234328534465,44.62947398057706,44.332745872755808,43.412333168346585,42.172409659285378 +1985,5,13,8,0,336,147,7.5,302.95628928751665,63.27829499940603,62.34441090832866,87.22495561973253,0.0,106.75213376668626,300.11445995676706,1.0,106.75213376668626,190.15979931700488,1.5,22.800000000000001,2.1000000000000001,273.65686849598438,274.90470957744418,275.60802062256971,276.94378428318367,278.05550779511782,278.48733309413353,61.30720680386618,60.26837108538507,60.182611257776621,61.280788722946596,62.501521192326138,62.563049064999369 +1985,5,13,9,0,510,165,8.5,489.60606869545234,50.03471343763068,50.46997527153823,96.65020916828037,0.0,159.90397711724265,500.3129733448676,1.0,159.90397711724265,307.02452723744523,1.1495128100462193,25.0,1.5,478.98737164806977,480.05323907678758,480.62706410419696,482.64892588345572,484.33643001038672,484.98729708875089,96.922357388729367,93.518964064233103,90.680129658694923,89.925531131727382,90.359257951682864,90.971959868371442 +1985,5,13,10,0,688,184,9.5,719.71431025040806,36.74934651612629,38.86245086867114,108.42425524592323,0.0,229.2712385938608,747.43646672988916,1.0,229.2712385938608,449.20246283952019,1.2837112558166717,27.800000000000001,2.6000000000000001,730.42083247229152,731.34705159444218,731.8051237780212,734.00593823690576,735.86149264502546,736.56193421642547,141.9425180409217,137.77575153096726,132.63367552761923,129.33449486465548,127.74852518003838,127.80739886353432 +1985,5,13,11,0,551,256,10.5,741.40090698525523,23.70914149054027,28.24338427747498,125.77303664421419,0.0,236.10384533579247,776.3011864580435,1.0,236.10384533579247,463.07104483806557,1.3533532250011073,28.899999999999999,2.6000000000000001,759.66931875430714,760.86095985011036,761.47165099972722,763.86454306913379,765.8784839016995,766.64395843860029,146.60778294122375,143.42906045998541,138.31428840305878,134.38326543635324,131.9303848783436,131.23839564042066 +1985,5,13,12,0,744,200,11.5,896.66805215031616,12.165881369526485,20.547458202993006,155.33183770547458,0.0,285.72585761310472,941.71889260477417,1.0,285.72585761310472,556.89106242831974,1.3845784358912363,30.600000000000001,2.6000000000000001,928.08374063708868,928.9771288905913,929.38737339894362,931.14500721172158,932.66153829858263,933.20612273081713,177.78628874143271,174.38231780653683,168.16161415029882,162.6653302874609,158.74561601077914,157.47888138469895 +1985,5,13,13,0,789,182,12.5,924.60831457715324,10.613097855845746,19.745607293476535,197.37133112522682,0.0,294.68685437319738,971.92524432582752,1.0,294.68685437319738,574.04510123074874,1.3868742270059713,31.699999999999999,2.1000000000000001,959.01695402950929,959.7583689566211,960.07416393379629,961.80947950902555,963.31110866853271,963.84672840341909,183.50754138877969,179.93503234879464,173.42817348591507,167.66136461401814,163.54788326520497,162.24205013874192 +1985,5,13,14,0,516,234,13.5,695.86724468658031,21.360922490910085,26.479807254261893,229.95898706789887,0.0,215.46439566535929,730.34352230052627,1.0,215.46439566535929,435.03563647993508,1.3609295413948297,32.200000000000003,2.1000000000000001,715.26538563750285,716.22801598296337,716.71032746503511,719.09522563532619,721.09629124566516,721.8624670621632,134.04296107830075,131.22886370066237,126.50398547881525,122.77358711137605,120.4565144168503,119.75454642322326 +1985,5,13,15,0,705,175,14.5,739.84673188712179,34.28083226281739,36.7550534118264,248.98838482959687,0.0,235.7318102195556,770.09871471839779,1.0,235.7318102195556,461.50058552410013,1.2991067709522641,32.799999999999997,2.1000000000000001,754.39056174321456,755.19599672205584,755.57875838841812,757.74087413972666,759.56759443802991,760.25430067250386,146.25680928547601,142.15237347913848,136.73487412906732,133.06934397519069,131.17068618120163,131.08325043737401 +1985,5,13,16,0,591,188,15.5,581.57737636087336,47.54448442027379,48.24463147817587,261.4839114583617,0.0,189.98159751630374,595.75542306482612,1.0,189.98159751630374,363.90108063866757,1.179499916991972,31.699999999999999,2.6000000000000001,573.55069697255533,574.77868870574787,575.43646860886258,577.55510333178734,579.33053689143753,580.00859146609741,115.75451233061597,111.75013707904873,108.13382198164807,106.79934959883207,106.8959351799145,107.49510847167709 +1985,5,13,17,0,539,135,16.5,403.75125565788693,60.80023913062524,60.09186202539529,271.21048172343285,0.0,141.50080972264067,402.28139307485594,1.0,141.50080972264067,253.29382872027895,1.5,30.600000000000001,3.1000000000000001,372.07512326212276,373.09324860103771,373.64884594649038,375.35659224259109,376.78167255232177,377.33225616259705,82.181168905150599,80.000635920733842,79.187814453977111,80.261627371653461,81.927639793660745,82.368459953433316 +1985,5,13,18,0,517,64,17.5,224.64631349587623,73.87704742351119,71.89689866926173,279.87547807919714,0.0,88.21518425857036,208.0308895102653,1.0,88.21518425857036,141.11204630873181,1.5,30.600000000000001,3.1000000000000001,167.73902939945134,168.24487535173955,168.50766299167609,169.5209310198255,170.35939072392983,170.68772724509668,49.778864978478481,51.574750406535991,52.878621350081673,53.536841798397077,53.074820670995244,51.453250287866588 +1985,5,13,19,0,140,36,18.5,52.240542181010866,86.57439581066367,83.3384697337493,288.4165376253646,0.0,24.364998817001503,41.617060693985216,1.0,24.364998817001503,32.719151706038048,0.8100939155103948,27.800000000000001,3.6000000000000001,30.491075866156731,30.90244301103996,31.137775525425571,31.348202648491753,31.525624076588304,31.592496942070966,14.348785644490288,14.165818624605171,14.022741494412811,14.027463143954169,14.069414352204399,14.00726979557767 +1985,5,13,20,0,4,2,19.5,2.0679258590748071,92.96824252650056,89.0269869703303,293.2389589834783,1.0,0.62989111624780858,1.9848077521785983,0.5080920564093837,0.62989111624780858,0.22232189412642109,1.5,23.899999999999999,2.1000000000000001,1.8253237087500607,1.8531514528284694,1.8694731949031567,1.8756712500322719,1.8808609109197894,1.8828473922287483,0.36951298277678934,0.3697310712667356,0.36911673094799008,0.42186254575815157,0.4242419130260669,0.42134808916134009 +1985,5,14,6,0,94,26,5.5,34.461840412688396,88.2682548578696,84.8352665511789,70.25298366117984,0.0,16.835821055956078,26.220104997839105,1.0,16.835821055956078,21.635499061203973,1.0976746718576065,17.800000000000001,0.0,20.490992855413793,20.792363619967798,20.964977437408415,21.122928989154079,21.255555239330501,21.306001718153304,9.9830842329545355,9.9705447740960818,9.8936429094473297,9.8300944036387019,9.7473850938013822,9.6338442273046123 +1985,5,14,7,0,447,71,6.5,194.33728185297176,76.21412369777191,73.98301341217788,78.44378966520706,0.0,78.038524357672088,177.05318063763144,1.0,78.038524357672088,122.46462215253169,1.5,22.199999999999999,2.1000000000000001,137.5410575661287,138.16272476699692,138.49889334337541,139.51781817386583,140.3624524921913,140.69395859327125,45.850510187512562,47.178453836830613,47.506900789523911,47.102387894400039,46.04413015816781,44.671178106393526 +1985,5,14,8,0,650,94,7.5,397.04330869380016,63.186508424779745,62.210762277892435,86.9962985856952,0.0,140.2703728415795,390.89994062899962,1.0,140.2703728415795,248.36568643930556,1.5,25.0,3.6000000000000001,357.51372174388865,358.16011265485361,358.49340611257787,359.906176035827,361.09000843787646,361.54227231236496,79.953288689192277,78.276228466692714,78.259017800132483,79.99612670163161,81.919549168723208,82.123590503641097 +1985,5,14,9,0,749,123,8.5,601.08621897789124,49.948411803024115,50.33487653031003,96.38905638933522,0.0,202.16413126403674,612.58084844068651,1.0,202.16413126403674,375.00698164382226,1.1423142484267974,28.300000000000001,4.0999999999999996,590.30721864373481,591.12915950828096,591.54199648655356,593.32374619679069,594.83087069179135,595.39335143744609,122.44947468517209,117.78086371880572,114.04225284776442,112.99823464592998,113.50416083327364,114.39719657191013 +1985,5,14,10,0,804,142,9.5,769.3335529739694,36.66073042544668,38.71509887202409,108.11748888543967,0.0,252.18334762962633,797.56993664779975,1.0,252.18334762962633,478.79276206788228,1.2773580546545276,28.899999999999999,5.7000000000000002,781.81605404990307,782.60063641837678,782.96552229559961,784.8208080811221,786.40420136654279,786.98453119308033,156.00813532443277,151.19021077506346,145.4689043174607,141.79019215037744,140.04295309431771,140.17284166823217 +1985,5,14,11,0,831,162,10.5,895.2806060406208,23.600808140706484,28.065847361761097,125.42466164851912,0.0,285.32866398005598,936.46030077382386,1.0,285.32866398005598,556.24783893167285,1.3475246399079468,30.0,4.5999999999999996,922.88234915051999,923.63365431114312,923.96110138601546,925.78795621012,927.36040835445954,927.92770062958903,177.59607309404677,173.37031046795752,166.82536787529762,161.5870432626846,158.22550313181853,157.4174978791568 +1985,5,14,12,0,850,169,11.5,966.09756287218715,11.983007459099676,20.3209792758784,155.0895562300482,0.0,298.87456416836682,1014.6945580950924,1.0,298.87456416836682,599.54733675954913,1.3790067878559444,31.100000000000001,4.0999999999999996,1002.0263575953013,1002.6880274521639,1002.9545263977208,1004.6758599235088,1006.1681981903112,1006.6982860836908,186.30624864180095,182.38719914029346,175.57037494811144,169.75108657525544,165.6337060939012,164.44216060894996 +1985,5,14,13,0,824,208,12.5,984.67978736791167,10.406423607104612,19.5118285580569,197.55223904008272,0.0,313.78591235284551,1033.3130256169595,1.0,313.78591235284551,610.95734523627868,1.3813285365452215,31.699999999999999,5.2000000000000002,1019.1927437995424,1020.1275492338284,1020.5504656983161,1022.268779296517,1023.7627021546715,1024.2895944075187,195.25102205986485,191.47144793691388,184.61635933254519,178.52261687017236,174.15979283065005,172.76866163030957 +1985,5,14,14,0,812,201,13.5,928.97902190692616,21.245778624877147,26.294896940447614,230.3078080168738,0.0,295.98723428781818,971.54277909899974,1.0,295.98723428781818,577.02594428089219,1.3551830932225595,32.200000000000003,4.0999999999999996,956.48831850358761,957.52079477866732,958.01134455815077,959.86050341669636,961.45416187324327,962.02728870874012,184.00121511703068,179.70094546531226,173.04510963624975,167.71647153025219,164.28438118015754,163.43545138206974 +1985,5,14,15,0,775,195,14.5,817.14467754339091,34.191363080906356,36.60481895725749,249.30401285394177,0.0,267.73138055369748,849.24198505284608,1.0,267.73138055369748,509.30652727712328,1.292903368894009,32.200000000000003,4.0999999999999996,832.01954638543123,832.97375009112909,833.43258761222285,835.67542926478473,837.57775986208719,838.28610203707979,165.84503806642121,161.06351648411987,155.00278535525405,150.9930730502993,148.92627210375679,148.89653166196294 +1985,5,14,16,0,648,157,15.5,589.6752045459632,47.45956822620998,48.10953738838016,261.7514809334878,0.0,198.11169783150984,603.79620072793432,1.0,198.11169783150984,368.60121797667961,1.1725329986037822,32.200000000000003,3.1000000000000001,583.04382912413598,583.97430935723162,584.45204391416382,586.45660895126036,588.14276624940885,588.78085907271088,120.67108846262026,116.29705022221357,112.43454606629362,111.04678716706907,111.21476263315441,111.93249124911567 +1985,5,14,17,0,673,107,16.5,443.9063569732665,60.71110435289106,59.960044909026145,271.4428409231578,0.0,156.80912371352835,440.7439632721883,1.0,156.80912371352835,277.58133754383903,1.5,31.699999999999999,2.6000000000000001,409.13745632319205,409.86557508093517,410.24289709216953,411.78638000014286,413.08279488935528,413.57577218549443,90.635811180161227,88.129436885023068,87.366386570532015,88.709008190780125,90.651175689813314,91.19602082133899 +1985,5,14,18,0,512,74,17.5,234.24725855963396,73.77850303959262,71.7609122063811,280.0839389139215,0.0,93.295443959447482,217.36222199921991,1.0,93.295443959447482,147.250342707492,1.5,31.100000000000001,3.1000000000000001,176.26160729036505,176.87371101895718,177.19765588783858,178.29480520847102,179.20246818675906,179.55822666565763,52.788562580782092,54.638453590641149,55.948529268144966,56.589732303958264,56.068960679103597,54.386314320246598 +1985,5,14,19,0,180,36,18.5,57.329806204496954,86.46383953997153,83.19452090259367,288.6083248825857,0.0,28.846658545001066,43.39590177070103,1.0,28.846658545001066,36.293752068579309,0.8466449344971321,27.199999999999999,2.6000000000000001,29.071960394828828,29.439601570971888,29.647115723494821,30.010746725065278,30.313698109962775,30.431292767231533,17.067553051103776,16.826129394240571,16.613202636073641,16.610768388333369,16.672196812891613,16.606654418939243 +1985,5,14,20,0,1,1,19.5,1.0181015092988908,92.9446398362147,88.96280326698181,293.4880726207779,1.0,0.31473935966080352,0.99240387608929914,0.4714481503742853,0.31473935966080352,0.058967134983131712,1.5,23.899999999999999,2.6000000000000001,0.91266154538760402,0.92657541742680827,0.93473637335277227,0.93783546989245892,0.94043030033621777,0.94142359509328843,0.18463615515947546,0.18474533673690699,0.18675528976640213,0.19822001850490001,0.19807807604471989,0.19663293639811494 +1985,5,15,6,0,2,25,5.5,25.182333452124077,88.24379139208038,84.76926846917067,70.00316939101968,0.0,8.0844600604101089,24.535897168371328,1.0,8.0844600604101089,15.339832342628613,1.1007636830315546,15.6,2.6000000000000001,22.682545211763884,23.028042812459429,23.230577326788868,23.186244762574646,23.152547363170239,23.136443536894337,4.7246428597925956,4.7105655695813482,4.701002698661112,4.6846069320603192,4.6531782139171227,4.6149854622284874 +1985,5,15,7,0,3,84,6.5,84.834513677638824,76.11639592240492,73.84891196790441,78.23997154256081,0.0,27.1540670759486,82.992276944000082,1.0,27.1540670759486,51.756591183227911,1.5,16.699999999999999,2.1000000000000001,76.316539873309594,77.438667299089786,78.0960445039061,77.973295920728361,77.881232452105237,77.835961926364959,15.864380341644727,15.857619726305703,15.842392513073634,15.784456798633006,15.661028534726197,15.507716202557958 +1985,5,15,8,0,1,156,7.5,156.46820377431655,63.099206289654674,62.08223732281289,86.7706677200413,0.0,49.798339958890182,153.94492450762203,1.0,49.798339958890182,95.592174365194921,1.5,18.300000000000001,4.5999999999999996,142.64547844052402,144.67033136154319,145.85651450352725,145.67529218526892,145.54212081065202,145.4737500604148,29.021761198498137,28.897670305086006,28.855464645051008,28.835856329488649,28.737294921170378,28.532578599618436 +1985,5,15,9,0,1,183,8.5,183.64004082761531,49.86680149448058,50.2051360207391,96.130974910608,0.0,58.036722996969978,181.25156247646137,1.0,58.036722996969978,112.26988743207745,1.135281937460918,18.899999999999999,5.2000000000000002,168.48529339220727,170.87880892163324,172.28121881565153,172.09657703746794,171.96303104769143,171.89218616670155,34.00191074478689,33.820985527179651,33.688373366810204,33.58304135555327,33.413412925093532,33.185513175539278 +1985,5,15,10,0,7,265,9.5,270.47266175238627,36.577280011449076,38.573510935566524,107.81332302209904,0.0,85.202152908927474,268.15878388185899,1.0,85.202152908927474,165.63710170086918,1.2711528085161583,20.600000000000001,5.2000000000000002,250.25976320390632,253.59515380536439,255.54751655838953,255.36775904803176,255.24585881122621,255.17247336212634,50.151486813536906,49.837241609811137,49.523152610444804,49.265505552275513,48.957124776360494,48.623983427598226 +1985,5,15,11,0,7,326,10.5,332.18666997527299,23.498660418169273,27.89456706148839,125.07646130209496,0.0,104.67626832018431,330.39553889926657,1.0,104.67626832018431,203.69046304765186,1.3418337040545651,20.600000000000001,4.0999999999999996,308.82712222651566,312.81944407973793,315.15505973160083,315.02196220286379,314.94344155485362,314.88280463742632,61.763149083592317,61.399768261653158,60.95810255705846,60.568699330518683,60.134271232562554,59.692680996537341 +1985,5,15,12,0,72,377,11.5,444.61454378910884,11.807633269567061,20.100561202675134,154.84142415105683,0.0,138.90302538016655,451.28777859785288,1.0,138.90302538016655,275.00180713818116,1.3735696720109283,21.699999999999999,5.2000000000000002,428.17104608319147,431.96428688674609,434.16640878079477,434.76700233579845,435.29428214315658,435.47450713461149,83.449469287578964,82.673140799772327,81.315800134243403,80.20318989205208,79.282991478578111,78.678863472567571 +1985,5,15,13,0,1,298,12.5,298.94390037826281,10.204532480442351,19.28275664169209,197.72672394526927,0.0,93.842550616315407,297.11666987057862,1.0,93.842550616315407,183.35366294915633,1.3759211070641286,22.199999999999999,3.6000000000000001,277.0955094955084,280.80079461228047,282.96977406305513,282.8710078963112,282.81713202846561,282.76974812852376,55.275819650390119,55.0357665764339,54.712219481591504,54.40817655873218,54.020751991640779,53.595739753301501 +1985,5,15,14,0,89,479,13.5,558.91529391880169,21.133130880901646,26.11340130728679,230.64956102372435,0.0,176.83775065079203,567.74411855567564,1.0,176.83775065079203,345.81353609330228,1.3495865480918854,23.300000000000001,5.7000000000000002,539.96165333846022,544.44823770586265,547.04797813086896,547.83198996716749,548.51925460168559,548.7550109713161,106.49439569323474,105.25001133079003,103.31610154432217,101.8079026129316,100.67799990468312,100.00689716120175 +1985,5,15,15,0,24,253,14.5,272.30329260873708,34.10301244114762,36.45692141496853,249.61256130947797,0.0,85.941953510278921,273.04855342803899,1.0,85.941953510278921,168.1284386754669,1.286872607544573,22.800000000000001,4.0999999999999996,256.23579258762686,259.08575488562559,260.74857285822907,261.03195203275294,261.2859060172799,261.3677134049114,51.091383893265188,50.608786679718534,50.016794901721291,49.632894236794471,49.325228509788722,49.045186193561662 +1985,5,15,16,0,9,235,15.5,241.02495956905418,47.37519891099468,47.97614525582212,262.0126009449852,0.0,76.19413864162172,238.42187175081406,1.0,76.19413864162172,147.49389458977888,1.1657800218894399,21.699999999999999,5.2000000000000002,222.28995485423704,225.26426573218552,227.00539922804782,226.80655338352628,226.66669248169589,226.58819892861476,44.756138341946958,44.427691458204592,44.169203096209394,43.996829995881662,43.782147306889932,43.517404617798455 +1985,5,15,17,0,2,176,16.5,177.0051456612839,60.62231294895353,59.82963641267524,271.6692844322894,0.0,56.307834063322666,174.29558577678051,1.0,56.307834063322666,108.18201766361423,1.5,20.600000000000001,4.0999999999999996,161.68567788934641,163.94607821313969,165.27004671459889,165.07905915192234,164.93985219624273,164.86718842154539,32.855863100154167,32.681580149670083,32.603884332933625,32.569221926899246,32.463650738405626,32.251644921929341 +1985,5,15,18,0,0,94,17.5,94.0,73.6803110944924,71.62627963308134,280.28679791672334,0.0,29.923619452482267,92.170965991359338,1.0,29.923619452482267,57.35412166929229,1.5,19.399999999999999,5.2000000000000002,85.031391394581249,86.28555958295793,87.020485185293296,86.887013884573776,86.786945478836287,86.737653834657891,17.443408761883433,17.433449696995083,17.432208070791603,17.394240523162487,17.280605739428008,17.117671308169406 +1985,5,15,19,0,0,31,18.5,31.0,86.35372238545305,83.0519723178862,288.79462656785205,0.0,9.8067492883553413,30.407948863476363,1.0,9.8067492883553413,18.884034339072588,0.8819828179817728,18.899999999999999,4.0999999999999996,28.167086902234971,28.59607992043486,28.847658301756137,28.793400284257814,28.752133447672097,28.73243832907222,5.728540584929795,5.7105161588922257,5.6998029659060103,5.6819365704695226,5.6463264929983934,5.6015907464297099 +1985,5,15,20,0,0,1,19.5,1.0,92.92025160789025,88.89888541156238,293.73110263052143,1.0,0.31450404003991794,0.99240387608929914,0.43419768987101137,0.31450404003991794,0.0075961164082149479,1.5,18.300000000000001,5.7000000000000002,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,5,16,6,0,4,17,5.5,17.369086920699463,88.22087112239859,84.70568839798666,69.75810841871156,0.0,5.631869179510085,16.830868920683912,1.0,5.631869179510085,10.570181637290069,1.1028426821110848,16.100000000000001,2.6000000000000001,15.536710775616591,15.773247921185428,15.911868185616029,15.877600992119056,15.851387747272595,15.839032638327566,3.2918970820918436,3.2815355163731326,3.2742655496515414,3.2614598135801529,3.2380828374832364,3.21108321943426 +1985,5,16,7,0,5,61,6.5,62.401671108694764,76.02309371472921,73.7198468877314,78.0391141335052,0.0,19.829656066071127,61.192986022439563,1.0,19.829656066071127,38.0452096380398,1.5,17.199999999999999,3.1000000000000001,56.513889428996563,57.359038887019118,57.854430028604476,57.75596668163346,57.681606885844893,57.645573530545072,11.584249097369224,11.566142207167427,11.550802367356219,11.511356639922459,11.429169995872741,11.326627863979368 +1985,5,16,8,0,6,123,7.5,125.82063383543762,63.01637663617851,61.95884597584835,86.54818869984891,0.0,39.892882362264174,123.77008669974786,1.0,39.892882362264174,76.828347258506284,1.5,18.899999999999999,2.6000000000000001,114.72247381439912,116.37119254664927,117.33726888880302,117.17820800590387,117.060274472763,117.00084544481147,23.254910381063301,23.162886128013877,23.130286523367825,23.105359553072752,23.01513069312001,22.846854821978475 +1985,5,16,9,0,8,227,8.5,232.13365809890689,49.78985272135795,50.080756124802406,95.87613628994058,0.0,73.621467873794714,229.43624032429938,1.0,73.621467873794714,142.02618078858444,1.1284147067970338,20.0,2.6000000000000001,213.77013306589262,216.64677647924449,218.33083037856875,218.13025419841054,217.98827792774361,217.90960145992111,43.197487813971506,42.878089654982105,42.648284468223103,42.505631283606959,42.32148466957694,42.069726325902742 +1985,5,16,10,0,8,288,9.5,294.26627753304933,36.49894647686407,38.43768963950876,107.51200722447487,0.0,93.083408493655256,291.93156992083124,1.0,93.083408493655256,180.2602101404789,1.2650952862026434,20.0,3.6000000000000001,272.67370288300469,276.24856563328228,278.34042018578111,278.16098693319668,278.04162292879209,277.96710333268607,54.836537932446909,54.458179634306973,54.082106770988794,53.786686912377263,53.453310612372952,53.100085768129901 +1985,5,16,11,0,8,364,10.5,371.08122892936296,23.402639611712278,27.72956871389516,124.72878526122453,0.0,116.96298894314782,369.48926154401477,1.0,116.96298894314782,227.63459364231781,1.3362806282195006,20.600000000000001,3.6000000000000001,345.79402299394854,350.15867047266903,352.71104964386535,352.59216669893289,352.52871444189748,352.47094876256983,69.101236225995194,68.662118165136093,68.117441417619176,67.645367410522994,67.144242775390993,66.656825813373359 +1985,5,16,12,0,7,405,11.5,411.58258716708963,11.63982069327241,19.88628198060078,154.58760102884605,0.0,129.75446106318029,410.67408146631925,1.0,129.75446106318029,252.70962939257504,1.368267515030319,22.199999999999999,3.6000000000000001,384.61433871071813,389.37558563990638,392.158840319239,392.10509502666667,392.0981368411247,392.06034259157309,76.754640151564644,76.30933992962396,75.675399978780561,75.105675366650416,74.498051054973914,73.92380589322805 +1985,5,16,13,0,2,477,12.5,478.89037194980222,10.007420087749367,19.058446850252057,197.89444996694112,0.0,151.0215996924822,478.69704413206119,1.0,151.0215996924822,294.25971372029852,1.3706524510097635,22.800000000000001,4.5999999999999996,448.93144990436178,454.32230229806464,457.47185472817432,457.48248721071678,457.53385405701118,457.51440466179997,89.479925620211375,88.922966425557618,88.107032617847253,87.386820747151702,86.652884449070129,85.988001914519117 +1985,5,16,14,0,0,274,13.5,274.0,21.022904605146778,25.935327221918122,230.98392437513266,0.0,86.034208488164296,271.84291974774453,1.0,86.034208488164296,167.92840441933689,1.3441403898306064,22.199999999999999,3.6000000000000001,253.31548192320503,256.76788864961844,258.78949444220302,258.65657270559382,258.57276396198847,258.5150856709962,50.616406826892366,50.385324922580565,50.110912080565889,49.858585322627057,49.529649430250032,49.153592477728523 +1985,5,16,15,0,52,326,14.5,367.90216453579484,34.0157410846748,36.311363081779156,249.9138359260051,0.0,117.4093964059382,370.13935527755717,1.0,117.4093964059382,227.25529531857853,1.2810147594372834,22.199999999999999,2.6000000000000001,349.24781366277284,352.71486956459654,354.73256876835916,355.13605573045083,355.49675163952475,355.61379199967337,70.110478195276045,69.248547517405527,68.222192498855918,67.561928847545133,67.102299280487884,66.777352875543926 +1985,5,16,16,0,314,140,15.5,350.73966169497993,47.2913671459495,47.84446951312442,262.2671459836757,0.0,117.14307702170636,358.66709838659096,1.0,117.14307702170636,220.1244175793336,1.1592406058536298,22.199999999999999,3.1000000000000001,343.86207210828758,344.81419909659638,345.33625403192599,346.85473196802985,348.12104682086789,348.61049734530621,70.988478676090821,68.641283181792033,66.62779694185312,66.03818491834646,66.30696699374775,66.687490661035426 +1985,5,16,17,0,87,166,16.5,209.89303004572955,60.53387909652184,59.70066606842245,271.8897219918569,0.0,69.517521329741328,208.27223297810735,1.0,69.517521329741328,130.50625144711023,1.5,21.100000000000001,2.6000000000000001,192.28381644294166,194.09380650109091,195.14522218351988,195.67002211118142,196.11455325137842,196.27999704466879,40.409394124095762,39.920885662831303,39.768308786450376,40.075870728968425,40.437174049222968,40.361515402304619 +1985,5,16,18,0,184,105,17.5,163.40523520948184,73.58250613220419,71.49304574155488,280.4839864106347,0.0,60.069635758001944,155.3573177161783,1.0,60.069635758001944,102.14698288108546,1.5,21.699999999999999,2.1000000000000001,132.67414843597641,133.77712446683461,134.40856169750359,134.99826505764551,135.48945703492805,135.67902326204856,34.423546936770848,35.245036592688059,35.793517449991619,36.037735380785278,35.743563422773065,34.905405211283217 +1985,5,16,19,0,56,46,18.5,52.911121323333404,86.24410330525536,82.91088912356904,288.9753909548773,0.0,21.101875034163037,46.712458182169989,1.0,21.101875034163037,32.868070239009192,0.9161780254364538,20.0,3.1000000000000001,38.569778532011092,39.123472593992034,39.444842453207073,39.568646883195491,39.674968936282667,39.713282335210415,12.46427585174933,12.349378714686864,12.234010806659278,12.192774601175488,12.168232819292619,12.098893934444947 +1985,5,16,20,0,0,0,19.5,0.0,92.89513695190406,88.8353009767594,293.9679709602121,1.0,0.0,0.0,0.39634240065090653,0.0,0.0,1.5,18.899999999999999,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,17,6,0,2,18,5.5,18.186668873715785,88.19949155123957,84.64453588244177,69.51789498776911,0.0,5.8053658934120875,17.75272228554406,1.0,5.8053658934120875,11.06777451096529,1.1039573433446748,15.0,0.0,16.438880813348888,16.689331178112258,16.836170634559593,16.800441597903063,16.773089637218447,16.760218358387974,3.391554922661383,3.3810505671649875,3.3744824747483602,3.3624029149207399,3.3393679019847422,3.3121053421186408 +1985,5,17,7,0,3,37,6.5,37.847233551679267,75.93421875983825,73.59583545269119,77.84131533803135,0.0,11.998875714161922,37.105495742151071,1.0,11.998875714161922,23.047296250292277,1.5,15.6,3.6000000000000001,34.31925955572116,34.834075060902641,35.135873663308217,35.066535521716546,35.013641539392232,34.988559814703187,7.0082333861283388,6.9944645934292069,6.9846071904576466,6.9595126528803108,6.9088457356221182,6.8480168821825691 +1985,5,17,8,0,1,118,7.5,118.47192623609718,62.938003902386654,61.84059449680524,86.32898797882767,0.0,37.486995149508658,116.57117505090143,1.0,37.486995149508658,72.323438116376792,1.5,16.699999999999999,2.6000000000000001,108.05960122136321,109.64925929376642,110.5810853597126,110.42651311099527,110.31154465002541,110.25399376018419,21.869237501127596,21.794900250987585,21.7629545241854,21.726652313377315,21.6257539015883,21.461377627375608 +1985,5,17,9,0,7,238,8.5,242.50309347002315,49.717531734560794,49.96173515841973,95.62471314343733,0.0,76.932046104083554,239.69854553815,1.0,76.932046104083554,148.39184573671184,1.1217115157954813,16.699999999999999,3.6000000000000001,223.36456290290712,226.35711770103913,228.10890018664378,227.90641125602954,227.76382075696392,227.6839837894768,45.147004904625049,44.806324310346888,44.560607451818314,44.411091355002256,44.221606868988474,43.961601506102376 +1985,5,17,10,0,10,263,9.5,270.84693797781887,36.425676188740184,38.30763283513147,107.21379402618179,0.0,85.649792256651082,268.55311146700632,1.0,85.649792256651082,165.87151372356809,1.259185325003857,18.300000000000001,4.0999999999999996,250.74985616364742,254.06497430327516,256.00510770500841,255.82587072203756,255.70456424844718,255.6312627379786,50.435213918773641,50.097785674718487,49.765255975329957,49.499882269393446,49.193202721428285,48.864630359269846 +1985,5,17,11,0,67,330,10.5,389.39141252526645,23.312679376696238,27.570872247072323,124.38199511533375,0.0,123.08828875892877,393.49886265385612,1.0,123.08828875892877,240.63420396891294,1.3308656606250573,19.399999999999999,4.0999999999999996,372.57877873335769,376.05642185845306,378.07757797854606,378.53458819907542,378.94061445799116,379.07494035563161,73.784572251565791,72.970434198617269,71.804433588424359,70.919312712367599,70.259176226056582,69.816017383648287 +1985,5,17,12,0,19,412,11.5,429.89037411618011,11.479620065480052,19.678216601782196,154.32827358284246,0.0,134.7529986735141,429.51636134001916,1.0,134.7529986735141,263.98672031490713,1.363100762137925,19.399999999999999,4.5999999999999996,403.03066298313246,407.85608249187618,410.67547510682073,410.6267619332819,410.62542548850212,410.58850470918429,79.825843416414699,79.302878042151519,78.5727006524031,77.92689145071121,77.278604922181273,76.697138442357939 +1985,5,17,13,0,14,306,12.5,319.25001913159684,9.81507805465427,18.83895449809552,198.05508168909248,0.0,100.61518112276667,317.97148594089663,1.0,100.61518112276667,195.85382332697327,1.3655230854704543,18.899999999999999,6.7000000000000002,297.42285762984966,301.21174349428077,303.42771328594927,303.33177267517584,303.28230614321717,303.23480091469168,59.423283756596177,59.10187759210514,58.660478976408406,58.254171666165817,57.798667124691306,57.351137571943781 +1985,5,17,14,0,10,204,13.5,213.00617225845531,20.915025897104353,25.76068220531265,231.31057764417238,0.0,67.087178048092156,211.31373304508469,1.0,67.087178048092156,130.47653641088638,1.3388450944179846,18.899999999999999,4.5999999999999996,197.07824980086514,199.74344467486293,201.30382456646993,201.17494265356811,201.08919312167086,201.03573092240651,39.484485038343983,39.28679120543152,39.060326933532849,38.849859723921014,38.586606019081984,38.296937385527947 +1985,5,17,15,0,86,319,14.5,388.42681272949739,33.92951208408983,36.168147821991695,250.20764536997956,0.0,124.21568012559165,391.37222959961161,1.0,124.21568012559165,239.85416438573105,1.2753300762880055,19.399999999999999,4.5999999999999996,370.6445869697734,374.05649765792714,376.03857849268672,376.42697988982115,376.77774410159429,376.88853313801815,74.3701991331112,73.33412808233463,72.113055360744838,71.314690447977043,70.783287300667794,70.471267278001065 +1985,5,17,16,0,61,202,15.5,243.04232315522242,47.20806607057506,47.71452646638754,262.5149931843505,0.0,78.181937206278093,242.58529177908969,1.0,78.181937206278093,149.84014278610826,1.1529143357734772,19.399999999999999,3.1000000000000001,227.82086708144243,230.20003955614888,231.58622971890077,231.75411822824614,231.91255654014415,231.95645394935011,46.32567124391327,45.651369434092906,45.090303838974314,44.861979122554821,44.764298413061233,44.639284332414583 +1985,5,17,17,0,10,173,16.5,178.06437670827179,60.44581930866774,59.57316525963095,272.1040657525272,0.0,56.78339561815428,175.28350241435058,1.0,56.78339561815428,108.84003404045072,1.5,20.0,3.6000000000000001,162.66405657714486,164.89407555426112,166.19979483909714,166.00971981268015,165.87139038590664,165.79895379280606,33.107605785253639,32.918565529128834,32.844173636598768,32.826030584435465,32.739592014403861,32.532697858195782 +1985,5,17,18,0,29,51,17.5,60.268403217310464,73.48512478352083,71.361256979966,280.6754380821892,0.0,19.916158682744058,58.614664806912359,1.0,19.916158682744058,37.043486243617359,1.5,18.899999999999999,4.5999999999999996,52.996548928881822,53.691693610961181,54.097570090070519,54.103384312782545,54.113191858394899,54.112219146308519,11.556453509778384,11.635796232725722,11.688511775577114,11.694231089540425,11.611479657082123,11.451440726321914 +1985,5,17,19,0,4,32,18.5,32.503318120893766,86.13504258006783,82.77133738300653,289.1505687488523,0.0,10.451816760252633,31.663890074573384,1.0,10.451816760252633,19.803246331364782,0.9492945286072594,16.699999999999999,4.5999999999999996,29.16846734468573,29.611330177319022,29.870912888818076,29.814914649571811,29.772428824424068,29.752049115777751,6.1105448446783441,6.0875922271418581,6.072162207259395,6.0511098936623702,6.0129454641140754,5.9660273248963005 +1985,5,17,20,0,0,0,19.5,0.0,92.86935358738445,88.7721157435379,294.19860144210577,1.0,0.0,0.0,0.3578849874680376,0.0,0.0,1.5,16.100000000000001,4.5999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,18,6,0,22,26,5.5,28.075803971250011,88.17964836063733,84.58581849194087,69.28262323533232,0.0,10.161874441645645,25.866596466209046,1.0,10.161874441645645,17.242760215680747,1.1041501060163483,13.9,7.2000000000000002,23.144919675749634,23.495152842868862,23.699646888050427,23.69807407333505,23.699593605461494,23.697524470866611,5.9693801558862081,5.9560003092387452,5.9321969167494624,5.9055277921013705,5.8626339756367587,5.8073904372149849 +1985,5,18,7,0,86,80,6.5,104.45857479212297,75.84976930490754,73.476891484279,77.64667381567295,0.0,37.285964706010944,99.490832946188462,1.0,37.285964706010944,64.916829239753383,1.5,13.9,6.2000000000000002,85.90010614606868,86.851763533698787,87.40289985836003,87.653891370078952,87.866950595999299,87.94585617227014,21.910642416996488,22.197426081063785,22.232496440950616,22.093231650460396,21.780397254360274,21.369728508043607 +1985,5,18,8,0,474,148,7.5,372.51757907695253,62.86406897457098,61.72748549368983,86.11319260050404,0.0,132.38061331679398,366.23136474611738,1.0,132.38061331679398,233.01589992981246,1.5,15.6,6.7000000000000002,335.46021357538137,336.70566128097647,337.39774816978445,338.74461888420052,339.87202674776665,340.30374327046519,75.425096502373037,74.269034383124421,74.454511309595503,76.007473090709269,77.624405482693561,77.557524120765549 +1985,5,18,9,0,783,119,8.5,623.89146499811181,49.64980091772223,49.84806740600742,95.37687884486982,0.0,209.97116923310597,633.41220238989263,1.0,209.97116923310597,388.97496637272394,1.115171450192221,17.199999999999999,8.1999999999999993,611.23463322695227,612.00816816913698,612.39058038637268,614.14517287609067,615.63283059645505,616.18476396492883,126.3769316915814,121.45869084631238,117.90708004721891,117.21742766940417,118.19415165322565,119.22843138144438 +1985,5,18,10,0,832,137,9.5,790.98257094472694,36.35741083203374,38.183333677309285,106.91893839179733,0.0,252.06551694433765,817.3900153551848,1.0,252.06551694433765,492.03098594589972,1.2534228288023153,18.300000000000001,7.2000000000000002,801.9034347082677,802.63675672557724,802.97220153737294,804.7968829076716,806.35506715006636,806.92438875564847,155.66969704407157,150.39956248462727,144.64738594385892,141.25616874489779,139.94190010269958,140.33379515868532 +1985,5,18,11,0,862,148,10.5,913.16879029316397,23.22870595911424,27.418492129819587,124.0364635747731,0.0,290.95488274035574,949.36802905681236,1.0,290.95488274035574,565.18974856323064,1.3255890853939951,19.399999999999999,6.7000000000000002,936.51914816548958,937.51753313104621,937.99163105160665,939.09752186153378,940.08711465413091,940.41045689177315,180.50041968213847,175.49434068151203,168.85402428654845,163.83809431454472,160.84559952952708,160.55462333635072 +1985,5,18,12,0,879,154,11.5,982.70246928571532,11.327069385411995,19.47643686387673,154.06365649785022,0.0,304.12488528197241,1025.4554586010236,1.0,304.12488528197241,607.22772150964363,1.3580698756133545,20.600000000000001,4.5999999999999996,1013.6780686828957,1014.6423947265159,1015.0880429674887,1015.9237639307013,1016.6997646251027,1016.9313919971988,189.12216606406074,184.68061250594693,177.80319184261765,171.92848784815786,168.02685990977182,167.04715496598229 +1985,5,18,13,0,880,154,12.5,987.91691190149299,9.627494099711152,18.62433496841534,198.2082852044237,0.0,305.73340385270984,1031.1900489339089,1.0,305.73340385270984,610.35430946315728,1.3605335306567612,21.699999999999999,6.2000000000000002,1019.5288508126253,1020.4848176801422,1020.9247991340766,1021.7307195430185,1022.4831335926272,1022.704491709324,190.12859225965857,185.65442602637131,178.73353232595991,172.81577056742279,168.88281500671516,167.89835032437921 +1985,5,18,14,0,871,150,13.5,935.5652534307942,20.809421888348535,25.589474567397666,231.62920217697786,0.0,298.09979844944155,973.54718833367554,1.0,298.09979844944155,578.80812242961701,1.3337011284327849,22.800000000000001,5.2000000000000002,960.95134287644805,961.94684125854269,962.41535440991231,963.46101588660974,964.40450258059309,964.70695258569299,185.11644524656344,180.28016481074414,173.50901904956712,168.11526514823876,164.81376213379943,164.20185465788549 +1985,5,18,15,0,845,139,14.5,822.3827912373938,33.84429096362002,36.027281159199916,250.49380142782357,0.0,262.0879547708077,851.62974571110647,1.0,262.0879547708077,511.34080423724936,1.2698187874945805,23.300000000000001,6.7000000000000002,836.86562351389443,837.57859099201687,837.89699162695888,839.71339086968715,841.26834457097402,841.83356806225424,162.1734440934984,156.92422355744375,150.88045269011303,147.070103473307,145.33400719809694,145.60125662510157 +1985,5,18,16,0,759,118,15.5,629.92917995199491,47.12529134435552,47.586334339032426,262.7560224222531,0.0,212.09989531982086,642.26309672952971,1.0,212.09989531982086,392.67957126058616,1.146800762006691,23.899999999999999,4.5999999999999996,622.62311960984812,623.34943767160667,623.70162383718707,625.4499296391599,626.93329970225409,627.48270027967317,128.51218915927109,123.51921671969876,119.53752819629601,118.40209170416233,118.91843050768288,119.88575106543142 +1985,5,18,17,0,534,104,16.5,375.44964060772577,60.35815244585698,59.44716722977422,272.31223034323494,0.0,132.39000575247039,372.05502291550943,1.0,132.39000575247039,235.41624474600658,1.5,23.899999999999999,5.2000000000000002,345.27187566548656,345.96276512864142,346.32597336074019,347.86160720402074,349.14347088317612,349.6380152607644,76.025818412188045,74.223200972671137,73.913052547265792,75.316455183707333,77.085312544109541,77.405668496048861 +1985,5,18,18,0,448,93,17.5,237.14583628064958,73.3882057487549,71.23096143493763,280.86108903404664,0.0,92.729195026134065,220.29411856606984,1.0,92.729195026134065,148.4834478712946,1.5,22.800000000000001,4.5999999999999996,182.31637963293869,183.16824194735688,183.6354964507965,184.54702763918647,185.30503535090929,185.5983812616079,52.823399610617862,54.550194273955789,55.685452801855099,56.077505538808381,55.410885754698654,53.791301436112086 +1985,5,18,19,0,11,39,18.5,40.410395421546795,86.0266018066632,82.6333840763451,289.32011312326364,0.0,13.888569136585023,38.363253038766196,1.0,13.888569136585023,24.827825388891458,0.9813904889242888,20.600000000000001,6.7000000000000002,34.274203007137814,34.786781613022107,35.086522558698135,35.088230285432083,35.093491690641677,35.091952004171219,8.1600253077625649,8.1181999266992673,8.0759178263706843,8.0474098053848859,8.008969368728863,7.9509320747979748 +1985,5,18,20,0,0,0,19.5,0.0,92.84295792311424,88.70939378662254,294.42291986330434,1.0,0.0,0.0,0.3188292781650084,0.0,0.0,1.5,16.100000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,19,6,0,84,31,5.5,39.007930900217438,88.1613354629814,84.5295418654379,69.05238710109346,0.0,18.40572261135776,30.41325168904163,1.0,18.40572261135776,24.493251107476418,1.10346048602561,12.199999999999999,3.6000000000000001,24.185479735327892,24.54201948459918,24.746849972027956,24.927741817901815,25.079366877894181,25.137281425473205,10.913710343643881,10.904145297443689,10.822248982054694,10.755118195125373,10.667575053820281,10.543803229202474 +1985,5,19,7,0,412,78,6.5,195.95837747430642,75.76974019258263,73.36302535879616,77.45528885575608,0.0,79.317858070719808,177.97855598058894,1.0,79.317858070719808,122.81080824934314,1.5,14.4,4.5999999999999996,141.32308445301777,142.04766831996852,142.44454001964937,143.23670085299713,143.89848179386462,144.15348270616454,46.760095729273395,47.943049732888895,48.150743436863202,47.618359258214291,46.500110671399163,45.180663495443518 +1985,5,19,8,0,602,117,7.5,403.1453652613464,62.79454924489736,61.619517949338935,85.90093000810852,0.0,145.1360785164218,395.62891363308802,1.0,145.1360785164218,252.59307799632387,1.5,16.699999999999999,3.1000000000000001,362.29356309898964,363.15743257682277,363.61752750138504,365.20441681119445,366.529427570591,367.0398283825358,82.215702664235565,80.999798824793999,81.400356164296781,83.386990968060417,85.358915737540158,85.2621315411198 +1985,5,19,9,0,712,149,8.5,609.13754705340727,49.58661888547993,49.73974316267462,95.13280722022878,0.0,204.7589437885151,618.34924778977199,1.0,204.7589437885151,380.40306244347238,1.1087937188057915,19.399999999999999,5.2000000000000002,595.59152148424084,596.48863161133886,596.94649095928764,598.88636006993011,600.52221051760569,601.1373762508241,123.22389883356722,118.54102045655942,115.13373634937372,114.51341749785936,115.49444937788694,116.46974304603647 +1985,5,19,10,0,780,172,9.5,786.10504564232906,36.294087574886255,38.064780668679845,106.62769716758822,0.0,257.66834048871289,812.41113924792103,1.0,257.66834048871289,489.90516480542277,1.247807766142917,20.600000000000001,5.7000000000000002,795.73093546673226,796.54412952799635,796.92561929837007,799.06028176394398,800.87133544781477,801.54377111662291,158.90037501234505,153.507813655879,147.77488656911481,144.51292005348679,143.38231446272798,143.86193254697037 +1985,5,19,11,0,807,186,10.5,903.29207830327755,23.150638451935478,27.272437338017536,123.69257358116643,0.0,287.82786447363281,940.88072956700375,1.0,287.82786447363281,561.26928727507288,1.3204512209672312,22.800000000000001,6.2000000000000002,926.30655118259006,927.23213543430552,927.66414820792022,929.52987707194939,931.13378844706892,931.71276737974028,178.74369289023457,173.86808074583365,167.26606180038007,162.40848009399815,159.59563422367319,159.31388293715671 +1985,5,19,12,0,828,194,11.5,975.5578426532627,11.182193589529644,19.281011178690203,153.79399310601409,0.0,310.91290078826989,1020.4436935020809,1.0,310.91290078826989,605.37624300156722,1.3531753332722618,23.899999999999999,4.5999999999999996,1006.919184359077,1007.7389894415662,1008.0964729948359,1009.8228046741154,1011.3222192900961,1011.8516204284392,193.47474810906695,188.83549308512417,181.70423621236327,175.95207068568547,172.23441821325594,171.35369805328963 +1985,5,19,13,0,832,195,12.5,984.39769495007704,9.444652144766518,18.41464377200867,198.35372924831998,0.0,313.7359319730997,1030.009300477167,1.0,313.7359319730997,610.76662232108686,1.3556843083790988,24.399999999999999,4.0999999999999996,1016.5633922841995,1017.372732562217,1017.7227871485572,1019.4304825269032,1020.9157531802292,1021.438435140449,195.24132504851272,190.54907758198468,183.34360988013651,177.52541595720589,173.76230126401214,172.87431355592395 +1985,5,19,14,0,819,188,13.5,927.69841939107039,20.706021020192292,25.421713542099415,231.93948159736556,0.0,295.620392810054,967.31484599448231,1.0,295.620392810054,576.21815392698852,1.3287089475296323,25.0,4.5999999999999996,952.99470394098114,953.89710615608658,954.31117165701733,956.14879023127924,957.73284055823024,958.30159679533995,183.78542977005156,179.06272606313939,172.30298529890416,167.0523345352091,163.92554368629214,163.32465078207844 +1985,5,19,15,0,785,175,14.5,810.97289207275912,33.76004581515093,35.88877036505357,250.77211919311281,0.0,265.63369575260811,838.68006442839021,1.0,265.63369575260811,504.65563273484975,1.2644810987114814,26.699999999999999,6.7000000000000002,822.16049820859689,823.18004676740964,823.68029356785826,825.62549974038325,827.28559566718263,827.89351767798428,163.93172817666064,158.68833603656225,152.79576933474937,149.21424569522964,147.69920834785398,147.9574409729334 +1985,5,19,16,0,730,154,15.5,647.55728830874568,47.04304119488037,47.45991331211866,262.99011641197046,0.0,217.78997152897483,660.00820462535114,1.0,217.78997152897483,404.19294606108559,1.140899398948125,26.699999999999999,4.5999999999999996,638.77996052238461,639.66765241893813,640.11372032100758,642.10162683736087,643.78065570432454,644.40959495822801,131.92443660955564,126.90532229872787,122.87872617111668,121.7658944203361,122.32498707539203,123.28660624143178 +1985,5,19,17,0,632,124,16.5,446.44773150292252,60.27089972461085,59.322707087903524,272.5141329411141,0.0,157.23407451259484,441.63719880770464,1.0,157.23407451259484,279.4803100669244,1.5,26.699999999999999,6.2000000000000002,410.34941375312519,411.23148290396398,411.69943971506751,413.36769370636802,414.76412558981764,415.29925652223164,90.286399232162367,88.147298480023281,87.781073910824986,89.406605675479909,91.453844781587449,91.823142504925286 +1985,5,19,18,0,456,85,17.5,232.68971110104999,73.2917897774256,71.10220881103439,281.0408778378909,0.0,91.484935538497268,215.49071180107228,1.0,91.484935538497268,145.64643772176782,1.5,26.100000000000001,4.5999999999999996,178.11046953852249,178.87912335441533,179.29729200266701,180.17252948756484,180.90076642836371,181.1821230785616,52.075776576104445,53.813641405528955,54.960725742997653,55.350438576396684,54.673964457276789,53.049724595107122 +1985,5,19,19,0,130,46,18.5,62.974935108242256,85.91884388540241,82.49709709181171,289.4839797561385,0.0,28.028952255295938,51.720426145310888,1.0,28.028952255295938,39.443477643422177,1.0125188525450173,23.300000000000001,3.1000000000000001,38.87874404820451,39.397861455311201,39.695875971860744,39.951148518281308,40.166242079365276,40.247523636828376,16.729511579115318,16.544572636565178,16.301215919046744,16.172865266101152,16.098942844148393,16.001835787472064 +1985,5,19,20,0,0,3,19.5,3.0,92.81600513890673,88.64719756049186,294.6408540368136,1.0,0.94351212011975361,2.9772116282678973,0.2791803810423936,0.94351212011975361,0.022788349224644844,1.5,18.300000000000001,2.6000000000000001,2.737983578286781,2.7797251944043939,2.8042083528142956,2.813505878582562,2.821290369913839,2.824270439415355,0.55349647197456253,0.55382448689011854,0.55290509953470657,0.55367938843383169,0.55325717775607197,0.54892782656680827 +1985,5,20,6,0,182,28,5.5,45.520728109320373,88.14454505179974,84.47570975637434,68.82728023308987,0.0,25.979294386767599,29.720731407196396,1.0,25.979294386767599,28.833715354360034,1.1019253535692028,12.800000000000001,1.5,20.321257397509189,20.608234538547357,20.768483377796123,21.061810780194211,21.306686142931149,21.401158747352962,15.456585677640289,15.436837371367746,15.293889398211617,15.173678899192774,15.026844879664271,14.83711208423504 +1985,5,20,7,0,539,60,6.5,215.29955713163434,75.69412289822712,73.25424402561337,77.26726024485883,0.0,89.895813292626499,192.80010699102294,1.0,89.895813292626499,135.18754491980621,1.5,16.699999999999999,2.6000000000000001,149.57800408061965,150.06312770522968,150.31228310396307,151.26010986133218,152.05080938932824,152.35662198360677,53.191807824996992,54.615884783112342,54.784383147410878,54.051885360897799,52.627322460499933,51.040128420556407 +1985,5,20,8,0,705,86,7.5,422.21646463980795,62.729418674189766,61.51668725355764,85.69232785177115,0.0,153.03278530621611,412.93294066107512,1.0,153.03278530621611,263.97098674775953,1.5,20.0,4.5999999999999996,378.90039406912007,379.53845329347996,379.86127813892449,381.31116149668446,382.52745111445171,382.9905948370988,86.506310204903556,85.131500671136067,85.580411616411524,87.727794342630489,89.85894462327758,89.784648039507204 +1985,5,20,9,0,792,108,8.5,620.9240108285926,49.52794058857654,49.63674878403755,94.89267223863625,0.0,209.1483478876892,629.27233979646496,1.0,209.1483478876892,386.92490988259709,1.1025776502834912,24.399999999999999,4.5999999999999996,607.94898555651139,608.61773447507358,608.93811288010556,610.60983874008559,612.03025461265599,612.55444088611023,125.90774105782728,120.9395723921473,117.36187093611558,116.65242040960969,117.6230845211919,118.67712310852194 +1985,5,20,10,0,840,124,9.5,786.36243324371605,36.235639244938426,37.95195771550858,106.34032851972086,0.0,257.65284644685443,809.62456467385164,1.0,257.65284644685443,487.86744970996119,1.2423401682692692,27.199999999999999,4.5999999999999996,794.68269797004018,795.5930465455283,796.03240385681943,797.39535620496758,798.58142480430138,798.99478510658707,158.68879836945325,153.24428162048559,147.56187324195378,144.20103856368374,142.91854555993555,143.38223975378199 +1985,5,20,11,0,872,134,10.5,910.03864940291271,23.07838908225316,27.132711338357037,123.35071734426447,0.0,289.9896567619374,945.24800238240152,1.0,289.9896567619374,563.29317973283969,1.3154524184846688,29.399999999999999,5.2000000000000002,932.93398202233789,933.82897653243447,934.24186186677628,935.35452399245889,936.34941496654938,936.6751544252636,179.98862778932383,174.95945598566755,168.28759472577971,163.24828592936689,160.24685317207141,159.96566316087967 +1985,5,20,12,0,837,149,11.5,939.96045189140546,11.045003894011538,19.092004380208678,153.51955592728675,0.0,299.5241210374864,979.71824558243566,1.0,299.5241210374864,580.94594234249303,1.348417626923962,30.600000000000001,7.2000000000000002,968.31711920200519,969.24337957920136,969.66912407850407,970.51126347350794,971.29083356888066,971.52521404797574,186.12978980626809,181.60003408409722,174.80187130296716,169.1827401883215,165.46531229026903,164.61040884372699 +1985,5,20,13,0,627,262,12.5,857.59850455379512,9.266532459214153,18.20993660382808,198.49108641656284,0.0,273.25843299832223,898.39910120660829,1.0,273.25843299832223,534.51584908746452,1.3509759405257755,31.100000000000001,6.7000000000000002,883.19942893342989,884.10852178091284,884.53511543466016,886.8856676429923,888.87796941673707,889.6231152894876,170.01899946390751,166.11852332442399,159.95064249869517,155.12015593257584,152.07420225406057,151.29285349628009 +1985,5,20,14,0,546,247,13.5,740.80238609430262,20.604753319502738,25.257409421788665,232.24110232954408,0.0,235.96741618615977,773.44216140944786,1.0,235.96741618615977,462.71632773528773,1.3238689949477265,31.699999999999999,5.2000000000000002,757.86278549419353,758.88411433108979,759.39472849498975,761.786417955253,763.79907825416922,764.56332080403922,146.45986749199074,142.68460849967181,137.41284607714286,133.68572033207587,131.61421222956864,131.36081703754203 +1985,5,20,15,0,385,232,14.5,544.44567909185912,33.67674740998923,35.752624544704744,251.04241725788427,0.0,177.59035404459397,562.75294234565263,1.0,177.59035404459397,340.98817253483111,1.259317190503252,31.100000000000001,6.7000000000000002,545.87641244018153,547.28127089538555,548.04650777652307,550.15283630320141,551.91433971885783,552.59171967313648,109.17959245751015,106.13433795047925,102.57464964866783,100.56471985141972,99.80413154195719,99.87785626385903 +1985,5,20,16,0,563,191,15.5,572.54900987462247,46.961316462211414,47.33528556100236,263.2171608087979,0.0,191.79134673491822,583.45201185531801,1.0,191.79134673491822,358.41220570955988,1.1352097241357693,30.600000000000001,6.7000000000000002,561.83751621938802,563.06580916890266,563.72436716167294,565.86571596800934,567.66018118535453,568.34554559024218,116.0281658055938,111.91895361199019,108.56783892110559,107.71842478550555,108.25686176628265,109.00389210187454 +1985,5,20,17,0,512,150,16.5,412.16731454708457,60.18408472277061,59.19982181069938,272.7096933426935,0.0,147.09253489086501,407.38216870350504,1.0,147.09253489086501,257.60702247162624,1.5,30.0,5.2000000000000002,378.48564276333803,379.70268496889258,380.3732209047576,381.78225475031229,382.96523296613316,383.41512410993658,84.456170704025752,82.654841544710422,82.416687258513306,83.860724385919966,85.592261465982091,85.822875545800485 +1985,5,20,18,0,570,65,17.5,250.80851566495565,73.19591964489356,70.97505040720614,281.2147455875114,0.0,98.905921959862354,230.11740122576288,1.0,98.905921959862354,157.28124137423879,1.5,28.899999999999999,4.0999999999999996,187.64819948964407,188.1508428852855,188.4070697411095,189.44212037161219,190.30090170024275,190.63506750421212,56.207557948878645,58.304135263868524,59.658410112513465,60.089329896870581,59.269313176283511,57.352564017640461 +1985,5,20,19,0,200,38,18.5,64.580865770141372,85.81183300212022,82.36254521135773,289.64212686563013,0.0,32.175960758983798,48.882878475461141,1.0,32.175960758983798,40.839618205494979,1.0427278743460526,26.699999999999999,4.0999999999999996,32.309323677344004,32.692640109626744,32.908047023085089,33.300773983454903,33.628616373184009,33.755279080903144,19.338977220531564,19.103192287005417,18.758628248033745,18.560089932442143,18.448168075336199,18.328571876696756 +1985,5,20,20,0,3,1,19.5,1.0740509182714226,92.78854926549889,88.5855879838806,294.8523338734434,1.0,0.31546670197744647,0.99240387608929914,0.2389448551383483,0.31546670197744647,0.15354651206793693,1.5,25.600000000000001,6.7000000000000002,0.91266263530664171,0.92657650734584629,0.93473716383657302,0.93783601707410602,0.94043084751786488,0.94142395143401636,0.18506062792324862,0.2059485220072014,0.22155223307420174,0.22180842203264994,0.22166275331996749,0.22021136213098996 +1985,5,21,5,0,0,0,4.5,0.0,93.80927745372509,89.46066815399065,64.15172771998999,1.0,0.0,0.0,0.7874709032931625,0.0,0.0,1.5,18.300000000000001,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,21,6,0,0,26,5.5,26.0,88.1211714445525,84.4170722784279,68.61323368971465,0.0,8.2422599216054238,25.474531308882177,1.0,8.2422599216054238,15.836689451526205,1.1064504836102893,18.899999999999999,3.1000000000000001,23.60818119012535,23.967965088343853,24.178947411889968,24.132894372744431,24.097844008399999,24.081139745220536,4.8149344470522593,4.8007853404137117,4.7920484541935107,4.7764421260443024,4.7454373424600842,4.7070957232882646 +1985,5,21,7,0,30,121,6.5,129.69573703760258,75.62290557100785,73.15055102939495,77.08268813186638,0.0,43.981408999681776,125.04181596611443,1.0,43.981408999681776,79.834498143420504,1.5,20.600000000000001,3.6000000000000001,111.63549103254088,113.07886304386432,113.92036794468505,113.97192916531982,114.02545068506063,114.03630261169846,25.800597131633843,25.964557785515101,25.958465285552517,25.812553851858894,25.512418137392554,25.141278859662233 +1985,5,21,8,0,79,188,7.5,225.79367170458593,62.668647859731394,61.41898524072799,85.48751379368689,0.0,74.697303352025244,221.89309381250365,1.0,74.697303352025244,139.11185531327735,1.5,22.800000000000001,3.6000000000000001,204.86144362004441,207.05009522563918,208.32441212110658,208.4461734622293,208.56509334535409,208.59465699567846,43.074057464853638,42.799858628342747,42.869593820072737,43.211101735576349,43.454361216195416,43.205909510965682 +1985,5,21,9,0,138,285,8.5,374.55225991682539,49.47371742548281,49.53906674358711,94.65664770085324,0.0,121.9985392355422,375.63381770096282,1.0,121.9985392355422,232.59809689010083,1.0965226898827924,23.899999999999999,3.6000000000000001,354.20271184123646,356.99939907014618,358.61819896428216,359.43629891906937,360.13487236141913,360.38950429800025,72.365287857249299,70.848715285975018,69.76744090807685,69.631566179857913,69.900605259426314,69.965204897843833 +1985,5,21,10,0,55,258,9.5,301.43212835575059,36.181994515937234,37.844844195202214,106.0570913627886,0.0,96.137747751800461,302.33478876367622,1.0,96.137747751800461,186.05284843849503,1.237020127127603,25.0,4.0999999999999996,284.98600869183377,287.88370055645953,289.57118672600012,289.85333899029172,290.10950602697415,290.18902439906805,57.238520380754906,56.465721064066948,55.678466060039575,55.245163385811829,54.985624674349815,54.773218893558933 +1985,5,21,11,0,9,344,10.5,352.01910777380101,23.01186352741767,26.999312090125265,123.0112953101786,0.0,111.45905756841272,350.156190659093,1.0,111.45905756841272,215.90741006976634,1.3105930601315554,25.600000000000001,4.0999999999999996,327.54765820854669,331.72033509294192,334.16070395028328,334.03707405242551,333.96819477345423,333.90963526712579,65.810678911929159,65.37259684214257,64.859620804185838,64.437118929628312,63.984562839938384,63.54388329354542 +1985,5,21,12,0,88,357,11.5,440.25079535121938,10.915497223532082,18.909477533604434,153.24064705142612,0.0,137.25636174547068,450.93223344950843,1.0,137.25636174547068,274.34191344769766,1.3437972608095397,27.199999999999999,4.5999999999999996,429.81061799191383,432.83726297384044,434.58349141189836,435.87050396317761,436.95385620354153,437.36446886713713,83.188922683728862,82.098677497470618,80.326105018788155,79.073804181020279,78.25476321794514,77.792923158863459 +1985,5,21,13,0,338,339,12.5,660.43837667569687,9.093111840747973,18.0102693966051,198.62003446658144,0.0,210.14104176015906,689.72842643742626,1.0,210.14104176015906,413.45778418871203,1.3464089475450518,27.800000000000001,3.6000000000000001,671.38795451378087,673.00922392901759,673.8869615860516,676.37728145898109,678.46096729451665,679.26349040070704,130.05700955237444,127.47365035606263,123.21734602098199,120.03008520541265,118.06498477383055,117.42567451721808 +1985,5,21,14,0,534,335,13.5,818.58728393844035,20.50555067197726,25.096573690596156,232.53375413906718,0.0,260.51926158180481,850.89944627439763,1.0,260.51926158180481,510.5506492020632,1.3191817000557124,30.0,4.0999999999999996,830.79979211741352,832.62881734730149,833.61056324897072,836.01498143817378,838.04496929479023,838.80969381174828,161.06132927037328,157.14994669002499,151.70512393148505,147.84315997259037,145.65444349014297,145.31272582744523 +1985,5,21,15,0,490,309,14.5,707.32548535712829,33.59436930624407,35.61885471868541,251.30451790832433,0.0,224.97989996568865,728.78050220611863,1.0,224.97989996568865,441.55054183178635,1.254327217079986,29.399999999999999,2.6000000000000001,707.52101492928966,709.50441148850086,710.59532607886092,712.82812677351853,714.70653113419894,715.41825252577041,138.03524924932523,134.08365337454262,129.65205916559765,127.17204077639704,126.26044049500737,126.41313390434766 +1985,5,21,16,0,392,253,15.5,519.27835960003654,46.88012063943584,47.21247528820981,263.4370443126421,0.0,172.62936966320478,527.54134145633145,1.0,172.62936966320478,324.96259173732562,1.1297311775065777,28.300000000000001,4.0999999999999996,504.8863396660762,506.75734379279277,507.80603763299689,509.74133294726016,511.36198250051558,511.98203249573965,103.81079569538581,100.53044092547235,97.96928885342524,97.443447852117473,98.04299790790931,98.566985810930873 +1985,5,21,17,0,121,194,16.5,256.17735631612993,60.097733381333434,59.07855024104588,272.898834036314,0.0,85.310942219901648,253.40490093822206,1.0,85.310942219901648,159.11846300476353,1.5,28.300000000000001,3.6000000000000001,234.52832363736366,236.59050563559737,237.7860268183484,238.3623196596848,238.85279435367124,239.03311446968181,49.361388152196916,48.776134591525214,48.684567853346223,49.166066130493633,49.673874737428179,49.568000853838313 +1985,5,21,18,0,113,128,17.5,165.06964966081239,73.10064012597859,70.84953909020805,281.3826359520017,0.0,58.301633567126785,158.12698511395712,1.0,58.301633567126785,102.46283955831103,1.5,26.699999999999999,6.2000000000000002,138.81231622078295,140.24758260720748,141.07802929504686,141.43018261643763,141.72943058950784,141.83935246723047,33.65564784849429,34.247542436302517,34.602542700764729,34.698598068025113,34.380621633944621,33.682527464931141 +1985,5,21,19,0,23,24,18.5,27.109606695750536,85.70563460476365,82.22979809100958,289.7945152448537,0.0,10.127589517669042,24.946334322563999,1.0,10.127589517669042,16.891537453010496,1.0720615804297058,23.300000000000001,3.1000000000000001,21.280844408576872,21.590576759254152,21.770984894193859,21.85374622626313,21.923645193046379,21.949864628172875,5.9987153962235791,5.9691525272186032,5.9194726004174036,5.8921773232438088,5.8657241294550584,5.820718106199152 +1985,5,21,20,0,0,0,19.5,0.0,92.76064326156694,88.52462452136959,295.057291454329,1.0,0.0,0.0,0.1981308931952169,0.0,0.0,1.5,21.100000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,22,5,0,0,0,4.5,0.0,93.79647416938995,89.41421685332232,63.940342945347865,1.0,0.0,0.0,0.7683895975625197,0.0,0.0,1.5,16.699999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,22,6,0,1,29,5.5,29.099149492346829,88.0422865019426,84.30980341933804,68.44560581113156,0.0,9.40778574493668,28.261476032888051,1.0,9.40778574493668,17.729264636265974,1.1574495700330694,17.199999999999999,3.1000000000000001,26.084264544506691,26.481379475552131,26.714123570461112,26.664031233885961,26.62602881700187,26.607792072847669,5.4992973814720996,5.4836300040366366,5.4721853774230187,5.4524101358625838,5.4149304072363336,5.3695628063802348 +1985,5,22,7,0,131,93,6.5,131.18709766871876,75.55607307880243,73.05194653633025,76.9016728910017,0.0,47.782751082092901,123.67078203416162,1.0,47.782751082092901,81.431573732667388,1.5,19.399999999999999,5.7000000000000002,105.99759193273988,107.08464445625114,107.71180342730815,107.98869389827072,108.22561163277459,108.31168348923813,28.178521934070531,28.555824763428134,28.554336549100654,28.299474177351154,27.815582926098578,27.25970135014148 +1985,5,22,8,0,87,172,7.5,213.74427761890195,62.61220410796162,61.32640023287134,85.28661531188416,0.0,70.823315265201444,209.89992052513509,1.0,70.823315265201444,131.6563574408072,1.5,20.600000000000001,6.2000000000000002,193.85300642657731,195.89583732795185,197.08484016531312,197.18772978155042,197.29031610236129,197.31412755903665,40.819415655281666,40.551438865333516,40.621684957194446,40.954477613108054,41.194219778768385,40.961387963877513 +1985,5,22,9,0,9,219,8.5,224.85139918608257,49.42389736021808,49.446675697514436,94.42490692664197,0.0,71.296511790404566,222.08066482677197,1.0,71.296511790404566,137.56016512804001,1.090628396284295,21.699999999999999,5.7000000000000002,206.901607656073,209.69681090006708,211.33333368444886,211.13568063033776,210.99541249823315,210.91808181169301,41.791898585874321,41.489339990471322,41.286836485211722,41.169665138912293,41.00620144002459,40.764555123521539 +1985,5,22,10,0,10,225,9.5,232.90759930233457,36.13307810388058,37.743415035387365,105.7782447815311,0.0,73.599176097918914,230.63016289864348,1.0,73.599176097918914,142.5805744253187,1.2318477933388847,21.100000000000001,5.2000000000000002,215.12710681281533,218.02932952936126,219.72843533675001,219.55644721216021,219.43758653776993,219.36856597368882,43.273100220425754,42.992449193023063,42.73952426787244,42.543989427296445,42.304009447959523,42.025412498563632 +1985,5,22,11,0,19,388,10.5,404.94831717979736,22.95096125808349,26.872232065635433,122.67471506666315,0.0,127.69250182920901,403.60292819612062,1.0,127.69250182920901,248.50106644417656,1.3058735574527245,21.699999999999999,4.5999999999999996,378.54103677927162,383.13339985680341,385.81716169070853,385.71312711138785,385.66487746287146,385.61031602713138,75.556802463166747,74.963472128518958,74.269049264397452,73.722917980582451,73.189132188874538,72.711292722003563 +1985,5,22,12,0,3,322,11.5,324.84106818049816,10.793655743076162,18.73348774692402,152.95759834505034,0.0,102.34545440353827,322.9948212569862,1.0,102.34545440353827,199.29739548185648,1.339314750023689,22.800000000000001,3.6000000000000001,301.55533217480917,305.50957041843867,307.82346393480015,307.73447073425211,307.69094451701085,307.64548822486313,60.35081325693892,60.020512697317081,59.615696650801276,59.264079679212855,58.859446075433162,58.424565535660271 +1985,5,22,13,0,4,384,12.5,387.80818240032505,8.924363835097493,17.815698370794916,198.74025770121406,0.0,122.23408355395861,386.37967866251643,1.0,122.23408355395861,238.09381302871247,1.3419838469349004,24.399999999999999,3.6000000000000001,361.43340060245998,365.99840007438854,368.66798301928225,368.61389969807618,368.60439039453769,368.56758039511908,72.224059558051025,71.775843082202243,71.208575967486667,70.728671459617914,70.220388510163048,69.710835942033597 +1985,5,22,14,0,2,402,13.5,403.81351120274314,20.40834709222327,24.939219156047518,232.81713069214766,0.0,127.28758088580769,402.09407840318494,1.0,127.28758088580769,247.84436104796973,1.3146474769365881,23.300000000000001,2.6000000000000001,376.31612759122913,381.04227125427508,383.80584759723843,383.72171563229472,383.68930533946263,383.64158709281162,75.216212917133873,74.711749460159623,74.102879201117688,73.603361679437583,73.077709212375893,72.572249692102417 +1985,5,22,15,0,1,393,14.5,393.81424245315054,33.51288795167533,35.48747390092305,251.5582473250455,0.0,124.77226315527238,391.43245175316315,1.0,124.77226315527238,241.5538738395887,1.249511305117994,23.300000000000001,3.6000000000000001,366.38584528121078,370.97649695170304,373.66071890754841,373.52366717828352,373.44767863410237,373.38240058576179,73.65068183683799,73.036606949783717,72.433501437131213,72.006130462922201,71.584272191537778,71.156559159766218 +1985,5,22,16,0,1,338,15.5,338.68082942450769,46.79945990935556,47.091508752412075,263.64965877451255,0.0,107.79084677169701,335.36528869989229,1.0,107.79084677169701,207.53397123837436,1.124463160802093,22.800000000000001,5.7000000000000002,313.30271037138334,317.28252337689617,319.61017918794221,319.42179388641739,319.29944352391573,319.21944993855942,63.364792630838735,62.775477425436826,62.342779115531449,62.123259554012549,61.900812008874105,61.585225488719203 +1985,5,22,17,0,208,212,16.5,319.25568250210148,60.01187400282656,58.958933083067535,273.0814802757016,0.0,107.43224429730087,314.98769123443452,1.0,107.43224429730087,197.99302230010255,1.5,22.800000000000001,4.0999999999999996,292.3871269235903,294.60377905159089,295.88314782154799,296.47989473080276,296.99326506514103,297.17695303554012,61.996903982892235,61.114015910485278,60.996817206129869,61.682696488296635,62.428833476714075,62.358878544710869 +1985,5,22,18,0,256,112,17.5,196.5031771600004,73.00599796554042,70.72572926496224,281.5444952289645,0.0,73.407749000244024,184.95546980187254,1.0,73.407749000244024,122.59935879945776,1.5,22.199999999999999,4.0999999999999996,157.92815170429125,159.09662818303414,159.76127743566309,160.38019294881008,160.89813402449823,161.09572064125791,42.121664179785164,43.225698419143406,43.9026404453056,44.101113397426616,43.600133528118732,42.481033831995539 +1985,5,22,19,0,0,33,18.5,33.0,85.60031537514699,82.09892623627758,289.94110829589897,0.0,10.390270142167406,32.435763496960597,1.0,10.390270142167406,20.101778067178483,1.1005601772493714,21.699999999999999,3.1000000000000001,30.092088166755218,30.550740621639072,30.81974959741018,30.7618789383578,30.717842128768968,30.69684689282208,6.0686976258016472,6.050885129789755,6.0404308186008757,6.0216247565751964,5.9834828444298811,5.9356685977531836 +1985,5,22,20,0,0,2,19.5,2.0,92.73233908693717,88.46436526110809,295.2556611039012,1.0,0.62900808007983589,1.9848077521785983,0.1567485172031447,0.62900808007983589,0.015192232816429896,1.5,20.600000000000001,4.5999999999999996,1.8253223855245198,1.8531501296029285,1.8694722352095299,1.8756705857217075,1.8808602466092257,1.8828469596102357,0.36899764798304163,0.36921632459341241,0.36860339968980449,0.36911959228922131,0.36883811850404763,0.36595188437787218 +1985,5,23,5,0,0,0,4.5,0.0,93.78446845749814,89.36947487956971,63.73426643721116,1.0,0.0,0.0,0.7499102255850236,0.0,0.0,1.5,16.699999999999999,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,23,6,0,1,13,5.5,13.100924996406693,87.96779330549408,84.20756164016105,68.28128654016061,0.0,4.1665665334913431,12.804927240683327,1.0,4.1665665334913431,7.9661386072378741,1.2034978956989866,16.699999999999999,4.5999999999999996,11.871481079676707,12.052361699091845,12.158422819062647,12.130367831692869,12.108782739210332,12.098735504229655,2.4332881925398433,2.4257094651154825,2.4213112018770784,2.4124766182393866,2.3955531062334998,2.3759227524683939 +1985,5,23,7,0,2,45,6.5,45.586131005405292,75.49360705688018,72.95842736438367,76.72431498323417,0.0,14.409061364870638,44.751585396618758,1.0,14.409061364870638,27.768277302882741,1.5,17.199999999999999,3.6000000000000001,41.453347238156219,42.079474613907799,42.446608528174238,42.366272407637588,42.305132315847402,42.27599249159698,8.4172953248954929,8.3971443718158643,8.3835558116661897,8.3549413949407842,8.2975834488550078,8.227569264958392 +1985,5,23,8,0,4,160,7.5,161.92463339228965,62.56005151189923,61.23891708809854,85.0897595032629,0.0,51.738973229856065,159.19020388880605,1.0,51.738973229856065,98.93935004920867,1.5,17.800000000000001,3.1000000000000001,147.54153523690363,149.61681777000086,150.83224879402607,150.64872386709055,150.51416574972163,150.44474624936635,30.108889399839747,29.996814023785927,29.976151900865574,29.97627903231357,29.884945643601391,29.661842199936864 +1985,5,23,9,0,3,254,8.5,255.95393024702113,49.37842504601898,49.35955055686146,94.19762244223779,0.0,81.478777647172393,252.86276117367561,1.0,81.478777647172393,156.65192441663316,1.0848944384323902,17.800000000000001,3.1000000000000001,235.60576837112589,238.7667642964303,240.61714170502589,240.41375108464064,240.27170640145383,240.190861535707,47.761287511990325,47.404222412712294,47.166957452723032,47.041339615806564,46.867696424999608,46.599408579886955 +1985,5,23,10,0,1,314,9.5,314.79178204060179,36.088810971849334,37.64764080435941,105.50404744874378,0.0,99.560237053665745,312.07987375896181,1.0,99.560237053665745,192.88518651554708,1.2268233741403294,19.399999999999999,2.6000000000000001,291.36029781796515,295.19988133738224,297.44689800061661,297.27375535357004,297.1612579727979,297.087825908181,58.607843713785698,58.190320226382156,57.804014319530772,57.52408685282311,57.206858841370142,56.844646019035068 +1985,5,23,11,0,1,414,10.5,414.89296748723552,22.89557590585371,26.751458289743017,122.3413901918928,0.0,130.78878321487628,413.09244607541609,1.0,130.78878321487628,254.64851442701658,1.301294349637062,20.600000000000001,2.6000000000000001,386.7319955019787,391.56035788550861,394.38346544021653,394.29742031294353,394.26445385613221,394.21550690679243,77.288804199722392,76.737748321811864,76.093683451485276,75.587404190044396,75.067734034990181,74.5654457180338 +1985,5,23,12,0,0,269,11.5,269.0,10.679446508543638,18.564087987279688,152.67077146825793,0.0,84.713907040467802,266.91700326337866,1.0,84.713907040467802,164.94695160611772,1.3349706189235988,21.100000000000001,2.6000000000000001,248.6346671773691,252.02774879233127,254.01457244675717,253.91341366233857,253.85496507874649,253.80814443656433,49.845256313266866,49.614395724568737,49.343123943048241,49.099810880038561,48.786486212651724,48.419043260386196 +1985,5,23,13,0,1,441,12.5,441.9530518783464,8.76025899704042,17.62628008004246,198.85144843296683,0.0,139.33785082580081,440.877673019214,1.0,139.33785082580081,271.49050643831447,1.3377011517441049,22.800000000000001,2.6000000000000001,412.90735116261851,417.99221592512998,420.96447988275742,420.95292016973343,420.98279459597109,420.95761648705036,82.44154743982358,81.891513213214097,81.181687485740838,80.591225420462592,79.995183828380902,79.421759216481206 +1985,5,23,14,0,1,429,13.5,429.90788462512734,20.31307899001148,24.78536007843563,233.09093013341553,0.0,135.53337129844104,428.32999154189918,1.0,135.53337129844104,263.93609067288679,1.3102667230162628,21.100000000000001,4.5999999999999996,401.14226505053591,406.10998687709559,409.01417718577363,408.94904293137438,408.93438457860714,408.89171739820074,80.126389099076917,79.543030165403152,78.856308164978458,78.321468444837876,77.781399764567865,77.264608611051031 +1985,5,23,15,0,0,387,14.5,387.0,33.43228278191353,35.35849717264725,251.8034357881831,0.0,122.58508727187538,384.52341681037097,1.0,122.58508727187538,237.35707951580261,1.2448695526685005,21.100000000000001,4.5999999999999996,359.79177846262337,364.33037520998766,366.98446806606728,366.84479025993471,366.76602818754617,366.70022094954595,72.337816171724626,71.74841184588081,71.170591812272534,70.759003177781096,70.345993268619083,69.921311674163661 +1985,5,23,16,0,1,320,15.5,320.68235039958614,46.71934317722165,46.972414293348855,263.8548993056062,0.0,101.97294233272237,317.38256410437805,1.0,101.97294233272237,196.45558247871932,1.1194050371239033,17.800000000000001,6.7000000000000002,296.32886274900989,300.14867496832068,302.38330674926004,302.18947498490814,302.06102106818093,301.9801383785051,59.918333218719496,59.390802452802099,59.004199703948743,58.800611373526664,58.580952395612371,58.269879336267486 +1985,5,23,17,0,0,241,16.5,241.0,59.92653724620898,58.84101289358952,273.2575601546373,0.0,77.449574780143578,237.15356860460776,1.0,77.449574780143578,147.466474662927,1.5,16.100000000000001,7.2000000000000002,220.13645843909148,223.06180500523027,224.77351612792592,224.56828343647814,224.42329746695043,224.34264073271635,45.074179035439315,44.812359337746948,44.739314305119457,44.778100172544498,44.716388091287762,44.439685211211561 +1985,5,23,18,0,1,122,17.5,122.33210060177537,72.91204184604281,70.60367684186483,281.7002723976327,0.0,39.411678813997483,119.57033486702969,1.0,39.411678813997483,74.699485789315233,1.5,15.6,7.2000000000000002,109.92644584254865,111.50206621603107,112.42455855155866,112.26930236833932,112.15403628806057,112.09604069208797,22.953769717754167,22.983771040081344,23.005727417446277,22.958838633065945,22.792050631938874,22.54756849279789 +1985,5,23,19,0,0,42,18.5,42.0,85.49594319610294,81.97000097289423,290.08187206290586,0.0,13.562105910214779,40.850627206732291,1.0,13.562105910214779,25.598794161050851,1.1282604142727402,15.0,7.2000000000000002,37.557138131061954,38.126195130441886,38.459683251338831,38.390548738291358,38.338276529262181,38.313013710080625,7.9363357361399247,7.9087776451172527,7.8868667131642702,7.8552507057815664,7.8014836200993543,7.7381772062217946 +1985,5,23,20,0,0,2,19.5,2.0,92.70368777132441,88.40486698798249,295.44737946308555,1.0,0.62900808007983589,1.9848077521785983,0.11480978639330928,0.62900808007983589,0.015192232816429896,1.5,15.0,4.5999999999999996,1.8253223855245198,1.8531501296029285,1.8694722352095299,1.8756705857217075,1.8808602466092257,1.8828469596102357,0.36899764798304163,0.36921632459341241,0.36860339968980449,0.36911959228922131,0.36883811850404763,0.36595188437787218 +1985,5,24,5,0,0,0,4.5,0.0,93.77331917512342,89.32651125999273,63.53358522749947,1.0,0.0,0.0,0.7320818510475888,0.0,0.0,1.5,14.4,4.5999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,5,24,6,0,0,23,5.5,23.0,87.89769808453623,84.11036453813448,68.12035903604163,0.0,7.233592920918114,22.610032885157796,1.0,7.233592920918114,14.002813224116171,1.2449700385939622,13.9,4.5999999999999996,20.991207433531972,21.311226490433668,21.498930704909579,21.455958683865244,21.423127542247101,21.40761016739479,4.2241793420180489,4.2115717484502841,4.2044994319512172,4.1911368197231775,4.1641328012689245,4.1308475312773272 +1985,5,24,7,0,0,64,6.5,64.0,75.43548596033084,72.86998701759158,76.55071481644643,0.0,20.168688555947661,62.922017460035221,1.0,20.168688555947661,39.014598412849836,1.5,13.9,4.5999999999999996,58.325509082606835,59.211421674961933,59.730980793381768,59.628964764387909,59.551835113333574,59.51454783019016,11.781970775039266,11.751568480012665,11.732132726548766,11.696262105982491,11.622055799705603,11.527179279557604 +1985,5,24,8,0,1,117,7.5,117.4824185794094,62.51215103313218,61.156517254383324,84.89707288655308,0.0,37.159189182715373,115.57439464842793,1.0,37.159189182715373,71.718999670527879,1.5,14.4,3.6000000000000001,107.14547010730652,108.72565726166005,109.65196053465584,109.49870276348751,109.38469367877981,109.32764054097898,21.671840046518064,21.605673151816823,21.579073101221887,21.545045350809346,21.443161992420549,21.276307932147031 +1985,5,24,9,0,1,178,8.5,178.65239392184893,49.337241954492924,49.277662566836916,93.97496566918362,0.0,56.441325659610222,176.22027424788189,1.0,56.441325659610222,109.21675385108381,1.0793205923999678,15.0,5.7000000000000002,163.77442965038716,166.11389790175147,167.48479691107929,167.30422256440693,167.17351530472192,167.10428744102001,33.02939672865336,32.861297768534286,32.751780780519233,32.667364955446153,32.517107933255964,32.296168888554618 +1985,5,24,10,0,1,210,9.5,210.79274213929304,36.04911054269599,37.55748781268505,105.23475704233847,0.0,66.501498124282094,208.38916998508464,1.0,66.501498124282094,128.99987182030154,1.2219471312969459,15.0,5.2000000000000002,193.8771400593086,196.60987808569044,198.21088408936072,198.04430757453224,197.92772869395804,197.86166697402112,39.013776217112913,38.81346843180706,38.643764219270011,38.502597042276321,38.295457010771678,38.02804172320122 +1985,5,24,11,0,1,275,10.5,275.89386511619449,22.84559565300223,26.63697239874667,122.01173905390218,0.0,87.157050463597585,273.5790547250952,1.0,87.157050463597585,169.0847772200984,1.2968559017747274,15.0,5.7000000000000002,254.99321503973954,258.45621897063711,260.48377388468418,260.34773103629271,260.26172805806544,260.20277537613202,51.280624032558926,51.005272371215959,50.710905105615467,50.46420678000873,50.150971662314525,49.793490574340382 +1985,5,24,12,0,1,295,11.5,295.94886870132621,10.572821250362935,18.401326903485387,152.3805576864645,0.0,93.220119070286586,293.9146577516014,1.0,93.220119070286586,181.52357829164421,1.3307653995280984,15.6,5.7000000000000002,274.06469585606663,277.73719496043407,279.88699129616765,279.7917237570544,279.740480901686,279.69432861566924,54.906061727645813,54.630572892806441,54.299493132686585,54.007724896604799,53.65233133206798,53.251813646858182 +1985,5,24,13,0,1,284,12.5,284.95402049001297,8.600765194726955,17.442071451324495,198.95330852560775,0.0,89.751165905741104,282.9360151659825,1.0,89.751165905741104,174.77368758982047,1.33356136908833,15.6,5.7000000000000002,263.73702402534798,267.29088496212324,269.37142480550506,269.27823446684943,269.22768641541904,269.18276432248626,52.847010640277688,52.588511760018356,52.279331954532729,52.006036144714173,51.667663998159675,51.280929560048541 +1985,5,24,14,0,1,266,13.5,266.90898155848896,20.21968543209847,24.635012297319033,233.35485568211996,0.0,84.055778728231331,264.66065949080081,1.0,84.055778728231331,163.58604189798965,1.3060398177394053,15.6,4.5999999999999996,246.59806518846852,249.963567634665,251.93428145589556,251.8060830040875,251.72554106675295,251.66971020155549,49.441911999391529,49.191674351610359,48.919178838137931,48.685966264267691,48.384798772363041,48.034814432338592 +1985,5,24,15,0,0,249,14.5,249.0,33.35253631392721,35.23194175190908,252.0399178875027,0.0,78.612931417885335,246.44875985168341,1.0,78.612931417885335,152.47112365788166,1.240402028156908,15.6,4.5999999999999996,229.51796543106613,232.69006475549796,234.54787219058593,234.38049793808645,234.26668067847891,234.19849319115863,46.183597516518965,45.929431657181851,45.694289245772552,45.501321241357523,45.24328122056265,44.92980623821245 +1985,5,24,16,0,0,173,15.5,173.0,46.63978209948173,46.85522235260607,264.05266438900907,0.0,54.616528486147146,170.66877847336647,1.0,54.616528486147146,105.76309021486232,1.1145561306379905,15.0,3.6000000000000001,158.56361611850591,160.85152845269042,162.19240755934362,162.01907001495223,161.89369412348631,161.82718996294528,31.968812631376963,31.81901524004607,31.715198354695357,31.627639260188275,31.472308779591057,31.251231806763609 +1985,5,24,17,0,0,126,16.5,126.0,59.84175611824645,58.72483406994394,273.4270046826201,0.0,39.805133034076221,124.01787349644633,1.0,39.805133034076221,76.934350274592646,1.5,14.4,5.2000000000000002,115.01834098319023,116.71522072791137,117.70998104986516,117.55122482039097,117.4335055401659,117.37419866439241,23.231022290306598,23.151976661956176,23.114453163780905,23.072697869665951,22.963102800526197,22.789781440522987 +1985,5,24,18,0,0,72,17.5,72.0,72.81882235212281,70.48343920104513,281.8499191717999,0.0,22.697818092646404,70.793107331880492,1.0,22.697818092646404,43.900965383426843,1.5,14.4,6.7000000000000002,65.613854543987543,66.608433077725991,67.191698457058209,67.080226037122344,66.996114237527522,66.955273323481833,13.254883643234709,13.223442720625229,13.204526210413013,13.167044928062255,13.084881539638504,12.976794133323894 +1985,5,24,19,0,0,31,18.5,31.0,85.3925871143206,81.84309441316212,290.2167752641152,0.0,9.7496252412374567,30.479632207358641,1.0,9.7496252412374567,18.878597009473737,1.1551959060738413,13.9,6.2000000000000002,28.292496975630058,28.723827008845394,28.976819645747717,28.92075106705596,28.877998556027315,28.857705115481906,5.6937715569717211,5.677023607631245,5.6674917384380592,5.6497937893945362,5.6137819566184533,5.5689207168221229 +1985,5,24,20,0,0,3,19.5,3.0,92.67473947824506,88.34618525186458,295.632385562503,1.0,0.94351212011975361,2.9772116282678973,0.07232901759482441,0.94351212011975361,0.022788349224644844,1.5,13.300000000000001,7.7000000000000002,2.737983578286781,2.7797251944043939,2.8042083528142956,2.813505878582562,2.821290369913839,2.824270439415355,0.55349647197456253,0.55382448689011854,0.55290509953470657,0.55367938843383169,0.55325717775607197,0.54892782656680827 +1985,5,25,5,0,0,1,4.5,1.0,93.76307792297831,89.28538752948468,63.338385744222194,1.0,0.31450404003991794,0.99240387608929914,0.714950846310507,0.31450404003991794,0.0075961164082149479,1.5,13.300000000000001,0.0,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,5,25,6,0,32,37,5.5,40.33478751364612,87.83200266593171,84.01822525562056,67.96290678934758,0.0,15.374672411076771,36.153537780121965,1.0,15.374672411076771,24.786548420374583,1.28219614704303,13.300000000000001,0.0,31.787746559927491,32.265575154788536,32.543892499454721,32.545743695286006,32.551384096227366,32.549701989176057,9.0252737379761765,9.0294637047022359,9.0034413802678515,8.9600416962502152,8.8789172078669534,8.7750380842715998 +1985,5,25,7,0,378,84,6.5,195.86199159327185,75.38168512015586,72.78661572437873,76.38097260478203,0.0,78.787194212704165,177.70692170523341,1.0,78.787194212704165,122.8666916923103,1.5,15.6,0.0,142.74571763242699,143.52601894144749,143.95609854063238,144.79077612316692,145.48757227958501,145.75665860006472,46.832762434512098,47.825069637486614,47.786543900101577,47.118866969488487,45.963075292642777,44.734694055351305 +1985,5,25,8,0,735,78,7.5,433.44636264288636,62.46846058819079,61.079178828566754,84.70868120584547,0.0,157.50406576128412,421.47297180495082,1.0,157.50406576128412,270.67457869826671,1.5,17.800000000000001,2.6000000000000001,387.68608369967291,388.23750973886274,388.50651214988051,389.87935294799684,391.03344730745744,391.47049914900504,88.412373301837789,87.403397472606017,88.22773794344161,90.663134905341764,92.849645960734577,92.537192791292696 +1985,5,25,9,0,824,97,8.5,635.40791521691051,49.300286509853855,49.20097939308704,93.75710661578086,0.0,214.22943627292003,641.18343614127275,1.0,214.22943627292003,395.55920898233381,1.0739067382739205,19.399999999999999,2.1000000000000001,620.51178975522703,621.07884546454818,621.33822997677669,622.90632073874212,624.24452061775321,624.73293470392525,128.03741444794662,122.93777373277997,119.65380271296313,119.38232047060227,120.77202605353678,121.97463172174258 +1985,5,25,10,0,868,111,9.5,799.88038154756975,36.01389091869179,37.47291822564246,104.97062966456672,0.0,262.20601705716604,820.91345849868765,1.0,262.20601705716604,496.05427310599163,1.2172193789842156,21.699999999999999,2.1000000000000001,806.60164964965588,807.40648711653057,807.78283371773193,809.09412995458604,810.23975467677701,810.63416192603165,160.85046550483258,154.86106740736372,149.20422721646551,146.26946029003628,145.55684709892589,146.33311675300331 +1985,5,25,11,0,889,120,10.5,915.39750047422058,22.8009036415872,26.52875071881332,121.68618356847078,0.0,291.73230728000516,948.20170124843196,1.0,291.73230728000516,566.5236373508551,1.2925587030895782,23.899999999999999,3.6000000000000001,936.49139138965882,937.2817522453671,937.63334050793571,938.71840489479393,939.69102710994525,940.00613838834113,180.63663676844513,174.92914306656914,168.17867938328891,163.54449098128185,161.10766308285727,161.2279609683911 +1985,5,25,12,0,903,124,11.5,981.60175856252192,10.473716302149075,18.245248657150686,152.08737746491107,0.0,312.8615967324663,1020.9082178441381,1.0,312.8615967324663,606.62962205329654,1.3266996299105243,25.0,4.0999999999999996,1010.1680854220318,1010.9220338489683,1011.2413638412627,1012.0946194957157,1012.8871457406706,1013.1219284548525,194.3062562784082,188.747599547297,181.43614922159128,175.85238461755173,172.49751939440688,172.2125025864982 +1985,5,25,13,0,821,189,12.5,973.01556272216192,8.445847959034957,17.263129818883687,199.04555100871934,0.0,310.1268891232607,1014.7700571811231,1.0,310.1268891232607,603.70319721274154,1.329564998684718,25.600000000000001,5.7000000000000002,1001.7868844370429,1002.5286791962351,1002.8409483708858,1004.5264991026289,1005.9924007269955,1006.5076606351467,192.94058549586012,187.87526515340892,180.67486754411328,175.03626277507951,171.65901976717836,171.04117091816829 +1985,5,25,14,0,246,339,13.5,562.87148949193056,20.128108399062782,24.488193354523755,233.60861624673853,0.0,178.77170267823348,580.24768622613306,1.0,178.77170267823348,351.25646742347357,1.3019671212960215,26.699999999999999,5.7000000000000002,560.33701981333309,562.73047086088889,564.08294115596425,565.848850604581,567.33415943442287,567.89803424315051,109.45685860785738,107.13242251480081,103.9849535219097,101.93624711689907,100.84858743467302,100.59818887144775 +1985,5,25,15,0,499,251,14.5,659.21750859450651,33.27363423461206,35.10782705843225,252.2675327376669,0.0,215.2066139762174,678.92646554602788,1.0,215.2066139762174,411.79197344354452,1.2361087694751096,26.100000000000001,4.5999999999999996,660.53138549349626,662.05792060699184,662.88176759981764,665.04480109014798,666.86412364996204,667.55356142640358,131.87615496377106,127.72100226177035,123.42163272744004,121.24728982288566,120.69894458803472,121.06366535389878 +1985,5,25,16,0,386,237,15.5,501.52986969052648,46.56079110845427,46.73996549010332,264.2428559939796,0.0,166.88446524775952,508.73114679644902,1.0,166.88446524775952,314.04709043784743,1.1099157264272133,26.100000000000001,4.0999999999999996,487.22941170058414,488.94682982527002,489.90673003630246,491.84002137035219,493.45735129536138,494.07766180242641,100.11369112579291,96.916869987825677,94.527533240230269,94.175129423198626,94.916394775380496,95.480177936303548 +1985,5,25,17,0,493,140,16.5,396.78104835100021,59.75756596135898,58.610442834096276,273.5897478614359,0.0,138.69641994334654,390.90602342254755,1.0,138.69641994334654,248.05894573536324,1.5,26.100000000000001,4.5999999999999996,363.84140530072341,364.95661872625948,365.56933573667129,366.94901603374456,368.10545261193772,368.5469416609522,79.253560055222678,77.741175873926736,77.713924045330586,79.290169057383238,81.018876776764742,81.148024447570492 +1985,5,25,18,0,560,72,17.5,260.17441544749613,72.72639193215134,70.36507515355147,281.9933900524308,0.0,104.46731651620328,238.41604510777648,1.0,104.46731651620328,163.24858768511191,1.5,25.600000000000001,3.6000000000000001,196.31931978783433,196.88526692020247,197.17684372119146,198.28435117037455,199.20380081889135,199.56159798743619,59.673730471547415,61.846679223984459,63.128244495684953,63.439269425479189,62.440112295216494,60.411468560449705 +1985,5,25,19,0,341,35,18.5,84.117810253923423,85.29031729911816,81.71827941815081,290.34578932278765,0.0,45.342375983517471,59.560278045419267,1.0,45.342375983517471,53.316485524350242,1.1813974189064393,22.800000000000001,2.6000000000000001,34.624137011830868,34.948364893754899,35.122697849488524,35.669888284761996,36.126301324771767,36.302868197321153,27.426985997571048,27.263804507244419,26.778755531989997,26.338800471801914,25.950966485200428,25.633726508731741 +1985,5,25,20,0,14,4,19.5,4.4181668207887563,92.64554356391447,88.2883744307359,295.8106208954521,1.0,1.263452328829926,3.9696155043571966,0.029323017794730368,1.263452328829926,0.67658269800822401,1.5,18.899999999999999,0.0,3.6506529171222017,3.7063084052790192,3.738950378508239,3.7513452610882201,3.761724582863256,3.7656965825170485,0.86915019809401484,0.89690830865476245,0.89567374523455356,0.89669535964418534,0.89610456200015509,0.8902853696152897 +1985,5,26,5,0,3,1,4.5,1.0394699237751013,93.7537895464805,89.24615823427686,63.14875370723343,1.0,0.31501714904899425,0.99240387608929914,0.6985607214989122,0.31501714904899425,0.20400334297656381,1.5,12.199999999999999,1.5,0.91266196165369462,0.92657583369289898,0.93473667525740012,0.93783567887418784,0.94043050931794692,0.94142373118831624,0.18479827143767633,0.18490726800160681,0.18459998308942704,0.18485706275604127,0.23578934683585587,0.24642891612676981 +1985,5,26,6,0,298,26,5.5,57.505578557650097,87.77070464926412,83.93115264514923,67.80901351262108,0.0,35.595610753775745,33.467011235637443,1.0,35.595610753775745,36.565827695326156,1.315467873817889,14.4,2.6000000000000001,19.146459006355933,19.391484013865011,19.522266256317629,19.937588137393469,20.283176694731672,20.417383361347632,21.05197037451871,21.238246351124488,21.168484513008927,21.017345184799353,20.726087013559543,20.325502977361339 +1985,5,26,7,0,619,49,6.5,232.9894269810593,75.33217680296816,72.70830047988818,76.21518822756185,0.0,98.38185735920176,206.13497191084269,1.0,98.38185735920176,146.09360918898267,1.5,18.300000000000001,2.1000000000000001,160.08869014090283,160.48961880568214,160.68446685960254,161.63364893154966,162.42827627951149,162.73317002552326,58.592478705898472,60.022151900942326,59.982129944204438,58.97535799709118,57.272665419015041,55.554947865561019 +1985,5,26,8,0,764,69,7.5,439.31434892313177,62.42893513910042,61.00687662047382,84.52470923535196,0.0,163.99996955070375,426.27318248081536,1.0,163.99996955070375,273.99849902793545,1.5,22.199999999999999,2.1000000000000001,392.55948576290189,393.02513267205825,393.2405458154762,394.50699419649982,395.57633561757456,395.97679526595681,91.888291447072078,90.924358794755051,91.863025483062472,94.420270745509498,96.66795184102547,96.264275870736213 +1985,5,26,9,0,836,86,8.5,633.03828718362581,49.26749422786482,49.12946521471538,93.54421357235194,0.0,218.99879930288321,637.58875321684911,1.0,218.99879930288321,393.44209429959329,1.0686528570576053,25.0,1.5,617.23917978267639,617.91750564548965,618.24141044094893,619.57920957736428,620.73247869969362,621.14278176014705,130.55044625366804,125.45697932855848,122.24411099652289,122.06979726913926,123.47151664750307,124.66624954187259 +1985,5,26,10,0,885,98,9.5,801.11425516977999,35.98306310721466,37.393890186119314,104.71191926638492,0.0,262.71461019866973,821.73224519940163,1.0,262.71461019866973,496.63072264119029,1.2126404816430354,26.699999999999999,2.6000000000000001,808.10007608358228,808.80512411158543,809.12185578371316,810.36463580699501,811.45506354896122,811.82631422099371,161.21849394087289,155.15256782775046,149.43403323583377,146.45401607677346,145.72213523952857,146.51844565573461 +1985,5,26,11,0,914,107,10.5,925.49062103753579,22.761378399147773,26.42676436391067,121.36514792376956,0.0,294.98089943387146,958.31372528572274,1.0,294.98089943387146,572.63969399310281,1.2884032651493607,28.300000000000001,1.5,947.12440368766647,947.82392308265105,948.12006104378236,949.16723068053523,950.11033802446605,950.41213240346519,182.72026541404804,176.89677646347954,170.01795759626339,165.28612894677377,162.79586424243467,162.92947102871767 +1985,5,26,12,0,870,105,11.5,931.96805996418743,10.382052683781232,18.095892764323544,151.79167983515748,0.0,297.06925823013819,969.15926135757775,1.0,297.06925823013819,576.03549122945083,1.3227738525885915,30.0,2.1000000000000001,959.32538413898396,959.95653714451123,960.2092501154865,961.04417715826798,961.81684039786865,962.04804947486753,184.57460110787349,179.26501888973229,172.27727056871208,166.94415926698807,163.74597196734436,163.48282381401526 +1985,5,26,13,0,743,221,12.5,931.19418579439025,8.29547087931491,17.089512951052907,199.1279017595722,0.0,296.82633793702013,972.85938822706134,1.0,296.82633793702013,579.63426567101089,1.325712531408604,30.600000000000001,3.1000000000000001,959.02833830942916,959.64727180747514,959.89280371201812,962.16618644968923,964.10352265220877,964.81778101223733,184.676662474219,179.55710015143777,172.56909885671274,167.47855164395716,164.57989090812566,164.31916718051272 +1985,5,26,14,0,624,229,13.5,797.51413823054099,20.03829303663735,24.34492261301009,233.85192705788097,0.0,254.10736366776715,830.09800526645313,1.0,254.10736366776715,497.54653793382425,1.2980489734020704,29.399999999999999,5.7000000000000002,815.17014196596222,816.03393254511536,816.44389188662876,818.80058372390442,820.79078675018627,821.53976350842663,157.66576468632749,153.24291292603448,147.40073143050549,143.45210364456253,141.41004973904776,141.31627723514256 +1985,5,26,15,0,742,193,14.5,800.91349310972294,33.19556548440349,34.98617477353691,252.48612419880763,0.0,262.45446054814852,825.99343884920836,1.0,262.45446054814852,499.32068999216028,1.231989783168868,28.899999999999999,3.6000000000000001,809.48204470187602,810.37603739266603,810.80451054263403,813.04794231321409,814.94841317698695,815.65620505380423,161.44293539202673,155.81061847122305,150.07221537124013,147.06842884587306,146.26184985407266,146.86999628155752 +1985,5,26,16,0,166,232,15.5,346.00035464760504,46.482387432883506,46.62667839618596,264.4253796927839,0.0,113.09359134501948,347.55599432905024,1.0,113.09359134501948,214.91998030912231,1.1054830704903726,28.300000000000001,2.6000000000000001,329.46889552344965,331.8254841329919,333.18555959002515,333.95109950824872,334.60475954304491,334.8430501121926,67.296944530595354,65.751707971240251,64.601180597970782,64.3836625354121,64.613584800496426,64.715355927708856 +1985,5,26,17,0,602,115,16.5,429.56306333659495,59.67400443791128,58.49788721303995,273.7457267625159,0.0,155.20679170544977,422.81723999812175,1.0,155.20679170544977,268.97932362647708,1.5,29.399999999999999,3.1000000000000001,393.98235373727772,394.75772205679402,395.16208661386935,396.78826317164857,398.14873674479071,398.67045292504696,88.394605233397755,86.66861831736081,86.738090668458668,88.693650834179337,90.814148854765747,90.933614356435811 +1985,5,26,18,0,540,74,17.5,256.48704792036278,72.63480485682958,70.24864489949421,282.13064237983957,0.0,102.78457176898476,235.22778967022185,1.0,102.78457176898476,161.03191645938014,1.5,28.300000000000001,3.1000000000000001,194.11798336011452,194.70317920466707,195.00697886916106,196.13410020823815,197.06910576757355,197.43370457942416,58.730193838533488,60.858227561775422,62.109482569358022,62.420340507096157,61.451843256418435,59.466743082145634 +1985,5,26,19,0,389,32,18.5,88.85565202018843,85.18920499737663,81.5956295559609,290.46888839688273,0.0,49.13592373856104,61.364791923075991,1.0,49.13592373856104,56.168209191933045,1.206893126097642,24.399999999999999,3.1000000000000001,34.151467576960506,34.438425450137451,34.588890586031134,35.111018355791458,35.548183658211819,35.715760664368105,29.734375914491448,29.577111586768716,29.049744094983094,28.539874992545492,28.065210591390333,27.698821806143471 +1985,5,26,20,0,22,5,19.5,5.6789521189923402,92.61614863106897,88.23148778862323,295.98202949040194,1.0,1.5880478351609446,4.9620193804464954,0.0,1.5880478351609446,1.0421599938908452,1.5,20.0,2.6000000000000001,4.5633292499905584,4.6328984891965561,4.6736972730110562,4.68918828279938,4.7021621007461301,4.7071251129701279,1.1702590494757092,1.170968532816089,1.1695848381122922,1.1709915988585888,1.1702652058691809,1.1628445158675007 +1985,5,27,5,0,2,1,4.5,1.0276147199085535,93.74549261148661,89.20887140983119,62.96477402194773,1.0,0.31486303139872907,0.99240387608929914,0.6829519697612151,0.31486303139872907,0.13824526930000439,1.5,14.4,2.1000000000000001,0.91266173070912127,0.92657560274832562,0.93473650776060646,0.93783556293105119,0.94043039337481005,0.94142365568274688,0.18470832926951525,0.18481742847900121,0.1845103906013856,0.18476777562436855,0.22246789620786056,0.22511980635381823 +1985,5,27,6,0,236,29,5.5,54.286569186724428,87.71379756623494,83.8491514185785,67.65876302987986,0.0,32.018869134268684,34.106162052577162,1.0,32.018869134268684,34.65507131205338,1.345043360375831,15.6,2.6000000000000001,21.180404288286763,21.461956462118135,21.615979710620479,22.058553196785208,22.425183551903828,22.569105606458525,18.900116173576123,19.093529130463672,19.053928884564641,18.958903726104069,18.729460716032722,18.365726291315159 +1985,5,27,7,0,563,58,6.5,226.03151972979646,75.28693027420107,72.63502509227574,76.05346108818401,0.0,96.760487489525858,200.4785681382252,1.0,96.760487489525858,141.76926197282336,1.5,18.899999999999999,3.1000000000000001,156.57791276273653,157.03395323399019,157.26238739300419,158.19880696475835,158.98284526596089,159.28358882139909,57.690244320727039,59.009262645318771,58.908202055994018,57.922930322188463,56.275112144206069,54.636757290334849 +1985,5,27,8,0,720,82,7.5,431.72677182008954,62.39352678790662,60.939582222012135,84.34528058603023,0.0,156.72591430959685,419.31229572223668,1.0,156.72591430959685,269.73285707930188,1.5,22.800000000000001,4.5999999999999996,385.7298977690416,386.31881320874459,386.61012782304607,388.02595725150297,389.21410639015579,389.66597207682696,87.780853728670806,86.994823456202838,87.959660691871321,90.45847458355594,92.640058736379885,92.174571041246253 +1985,5,27,9,0,800,102,8.5,626.18217631521202,49.23879785905015,49.06308082377481,93.33645281152262,0.0,211.03488554537128,631.13521541799048,1.0,211.03488554537128,390.01477731936887,1.0635590275874798,25.600000000000001,4.0999999999999996,610.45589711186346,611.06259818702654,611.34740256041425,612.96482657024319,614.34186489601382,614.84744877195885,125.65267182184709,120.73942082245513,117.71364028107118,117.73527239978789,119.26027006854126,120.4507092707062 +1985,5,27,10,0,844,121,9.5,792.19784902635183,35.956535251582785,37.32035794755685,104.45887707984647,0.0,259.6012789586955,811.96673191641457,1.0,259.6012789586955,491.40656601121793,1.2082108518077865,28.300000000000001,5.2000000000000002,797.28554167644802,798.16643972667157,798.58909520006546,799.93223004007666,801.10270334899633,801.50830797975004,159.20374109774633,153.32581318592892,147.76723141486778,144.89204935315871,144.19842197305181,144.95159651362468 +1985,5,27,11,0,874,132,10.5,915.31964589364452,22.726894278076198,26.330979353054413,121.04905728053598,0.0,291.68092460475941,946.82738412600133,1.0,291.68092460475941,566.48354549153828,1.2843901200563264,30.0,5.7000000000000002,934.68755936265393,935.56059986071205,935.9614683330052,937.05246812482733,938.0297784067742,938.34692802132872,180.53887724668016,174.87128705418039,168.16621039958108,163.56511990606379,161.14321529523264,161.25351457349856 +1985,5,27,12,0,899,131,11.5,986.22598460056804,10.297736345078347,17.953293949791,151.4939415254017,0.0,314.32278946360117,1024.4592918104695,1.0,314.32278946360117,609.43290294761277,1.3189886129146937,31.100000000000001,5.7000000000000002,1013.5184664202499,1014.3154095613492,1014.6597544133666,1015.4993032338278,1016.2811551910884,1016.5111078416131,195.17713634437607,189.60638051249319,182.28191073055004,176.68555927351025,173.31964274530284,173.02980449133233 +1985,5,27,13,0,888,137,12.5,986.55453216419869,8.149596046403554,16.921279069030287,199.2001012450925,0.0,314.41792109399978,1024.9851152538793,1.0,314.41792109399978,609.51263709290527,1.3220044478758286,31.100000000000001,6.7000000000000002,1014.0192920965884,1014.84633468083,1015.208577200845,1016.0060175238509,1016.7537664643788,1016.9695746066445,195.20362151442413,189.63782936802582,182.32711830625797,176.73438319142161,173.36491203218452,173.07232221259929 +1985,5,27,14,0,864,150,13.5,938.03950122901415,19.950187901011493,24.205221370915808,234.08451031920177,0.0,307.45983939894467,970.99530269539514,1.0,307.45983939894467,580.21386465736862,1.2942856921373438,31.699999999999999,6.7000000000000002,958.63869289761931,959.61942978592265,960.07780083332432,961.07907412855707,961.98903528886467,962.27378483409473,190.28231516340961,184.53193559159953,177.51025462149582,172.59563110127394,169.87493262462991,169.85215819141749 +1985,5,27,15,0,841,139,14.5,829.02467527252304,33.11832233577384,34.86700889484129,252.69554110247188,0.0,271.9064357254382,853.6976801695638,1.0,271.9064357254382,515.40148522272682,1.228045043722198,32.200000000000003,6.7000000000000002,839.24658453546544,839.93898261840104,840.24366715735562,842.04670908736932,843.59388969319343,844.15203354287951,167.33348972719295,161.30548139518453,155.24070832945259,151.97174775810174,151.01422597383726,151.68339074910722 +1985,5,27,16,0,770,99,15.5,628.88290031626093,46.40459111429942,46.51539789919367,264.60014478000295,0.0,217.86891101531145,637.08056420093249,1.0,217.86891101531145,391.58146049152447,1.1012573698863533,31.699999999999999,5.2000000000000002,619.34281859793077,619.89196090581231,620.13806963634295,621.71708548011918,623.06551833388039,623.55692810642358,130.93376929338535,125.70279733952206,122.05078869151096,121.4128097177622,122.47885198112441,123.61195246276354 +1985,5,27,17,0,741,87,16.5,475.41435494860616,59.591111510913294,58.38721701540804,273.89488160494625,0.0,172.76726369243053,466.43094056249129,1.0,172.76726369243053,296.79628333156745,1.5,31.100000000000001,5.7000000000000002,436.03650174503503,436.63755137216509,436.93179705918203,438.40594504305977,439.64833623755857,440.11620800025992,98.224117942252803,96.181247570602594,96.26800492025454,98.466011973116409,100.84987786326754,101.01835947704355 +1985,5,27,18,0,575,63,17.5,258.39538755181843,72.54411717481649,70.13420998313248,282.26163638529067,0.0,104.42816693165865,235.71449819048857,1.0,104.42816693165865,161.93095910634693,1.5,28.899999999999999,4.5999999999999996,194.20075568636963,194.67175835222872,194.90671844434934,195.93201005815871,196.78474734242386,197.11498080065763,59.599631856019172,61.810604242180759,63.123983779053262,63.426029232427112,62.387605004435663,60.323465466581624 +1985,5,27,19,0,298,40,18.5,84.174672372590393,85.0893224848481,81.47521905626236,290.5860494073852,0.0,44.072178552401532,61.877567217760728,1.0,44.072178552401532,53.46945940215786,1.231708835996327,27.199999999999999,3.6000000000000001,38.116860801071233,38.499610726109751,38.709161183784822,39.300819391491338,39.792548174945679,39.98435983593734,26.602596395369169,26.556524524007745,26.148849562508119,25.747082479948126,25.346665280554987,24.992915126708294 +1985,5,27,20,0,13,6,19.5,6.413878379490261,92.58660257779555,88.175577528421,296.1465579827534,1.0,1.9128295572007261,5.9544232565357946,0.0,1.9128295572007261,0.63225856015639448,1.5,22.199999999999999,3.1000000000000001,5.476005764299873,5.5594886921657043,5.6084455379352187,5.6270310988824646,5.6426009045473915,5.6485533821243212,1.2601936479955285,1.2603130773611659,1.2583086829698831,1.2600380036257031,1.2595222006927755,1.2509717540043161 +1985,5,28,5,0,3,1,4.5,1.0432703240254679,93.73821985064912,89.1735690288511,62.7865306712967,1.0,0.31506655425224911,0.99240387608929914,0.668161928976014,0.31506655425224911,0.20318985599762684,1.5,17.199999999999999,2.6000000000000001,0.91266203568715909,0.92657590772636356,0.93473672895153015,0.93783571604185978,0.94043054648561863,0.94142375539299372,0.18482710402817804,0.18493606768721749,0.18462870358363495,0.18488568536273678,0.24687068334239298,0.24598516886456437 +1985,5,28,6,0,158,37,5.5,54.140048548101603,87.66127102705973,83.77222228323295,67.51223916525254,0.0,28.661047084114699,38.416239818476257,1.0,28.661047084114699,34.294262991951051,1.3711514412350008,17.199999999999999,2.6000000000000001,27.396035672382038,27.780541871598487,27.99738653864074,28.349337556074659,28.641736318217983,28.755721543399655,16.882101297295677,17.038295085553543,17.015139383071645,16.945668969563599,16.763634154300675,16.460045464182304 +1985,5,28,7,0,421,70,6.5,196.12914624067832,75.24591186474215,72.56677023292802,75.89588997340181,0.0,80.64287115784532,176.2704881714613,1.0,80.64287115784532,123.66091998760243,1.5,20.600000000000001,3.6000000000000001,139.34655948041595,139.93026269595811,140.24208607092993,141.29104495076047,142.16206286477083,142.50280120677368,48.160506357794659,49.207342583829188,49.080379513250961,48.315315232039588,47.058774950969806,45.75360159763374 +1985,5,28,8,0,492,161,7.5,400.44757818647952,62.36218487496237,60.87726408111198,84.17051751469256,0.0,145.23476252901651,390.62953402516507,1.0,145.23476252901651,250.36145570009631,1.5,23.899999999999999,3.6000000000000001,358.83830326881332,360.19305249603298,360.94434956149826,362.34855322925739,363.52408084055276,363.97385365476089,81.844248453240539,81.319007290466246,82.127577256803775,84.148318483709161,85.865833658461071,85.351492783731501 +1985,5,28,9,0,471,218,8.5,526.99273607621149,49.21412753575764,49.00178373094914,93.13398829466155,0.0,175.69380242733536,531.17450405910677,1.0,175.69380242733536,329.46906662770999,1.0586254234606924,26.100000000000001,5.2000000000000002,508.19594325818605,509.80611961544827,510.7003958753827,512.53994547569152,514.08427898681396,514.67146572582021,104.44904957972899,101.04735925688225,98.885382561020364,98.99596722090493,100.15095959302593,100.86911829237822 +1985,5,28,10,0,569,270,9.5,722.91148170396423,35.93421286608076,37.2522720164261,104.21175106138196,0.0,235.94459311800463,740.93705760889679,1.0,235.94459311800463,450.98696414201152,1.2039309479090363,28.300000000000001,4.0999999999999996,720.41964922184252,722.1465020835451,723.08282463548915,725.24774707041774,727.07495927644595,727.76089482208386,143.93116523484011,139.10434231158138,134.5688115810797,132.6291959018279,132.44122357843708,133.05419872997339 +1985,5,28,11,0,534,272,10.5,750.9656673709585,22.69732190573247,26.241356746527252,120.73833645682987,0.0,245.46778686695731,778.06171215171173,1.0,245.46778686695731,468.68975108011568,1.2805198186209519,30.0,3.6000000000000001,760.43710877771798,761.87690490504735,762.63485058538924,764.94081082702508,766.88613416840599,767.61923752898042,151.40524489901807,147.09614613890881,141.88421455451208,138.63428695741842,137.13560120519085,137.1785113287614 +1985,5,28,12,0,329,375,11.5,688.21986869355499,10.220658572724053,17.81748201614726,151.19466584920093,0.0,218.73504243464612,711.34572446383197,1.0,218.73504243464612,428.75008560034399,1.3153444574700617,31.100000000000001,3.6000000000000001,690.33635786945365,692.79014716885831,694.16156758017587,696.04492552188208,697.63850483200565,698.23543223226693,134.42408702860388,131.4990061500458,127.41894553715635,124.53683175245364,122.8639840340375,122.49611865807883 +1985,5,28,13,0,128,419,12.5,541.56366868911175,8.008184543293352,16.758486856668604,199.26190631525753,0.0,171.65869242382814,554.47196566886657,1.0,171.65869242382814,337.05123384959563,1.318441217054105,31.100000000000001,4.0999999999999996,530.71824478316296,534.09717423866493,536.03947104569488,537.45899791817385,538.66038935833808,539.10972319493533,104.2454905986706,102.53876165441461,100.1147834734598,98.449805595253096,97.430304182063978,97.01359852284105 +1985,5,28,14,0,372,375,13.5,714.65615031699315,19.86374519766097,24.069112970114805,234.3060958760077,0.0,227.11734224585135,736.18933286925221,1.0,227.11734224585135,444.88067338956751,1.2906775728436344,31.100000000000001,5.2000000000000002,714.24611274118695,716.85551069507937,718.31727447234607,720.15608910513379,721.71576618945937,722.2957640204005,139.18311010840151,135.78838581766431,131.59742907605909,128.90992050799375,127.53790751691996,127.39202048121841 +1985,5,28,15,0,348,241,14.5,526.93190266348734,33.04190046652781,34.750355785493674,252.89563748301228,0.0,171.78954112522564,542.51802847720967,1.0,171.78954112522564,330.33084444048961,1.2242744929402265,30.600000000000001,6.7000000000000002,525.5488560051499,526.99360079602047,527.7859286522721,529.93788992146381,531.73428403140565,532.42757162387625,105.1834437755975,102.04270607931278,98.726513338336432,97.129393220458979,96.79318700517203,97.04641852309301 +1985,5,28,16,0,259,297,15.5,475.59128601848749,46.327425019117925,46.406162968388536,264.76706439421895,0.0,156.68868812390212,479.4407881109413,1.0,156.68868812390212,296.57334016669824,1.0972377930212458,30.600000000000001,7.7000000000000002,456.53943372738183,459.06729383156085,460.51345594599928,461.94677870137957,463.15502231878247,463.60982334439154,93.359429977677763,90.84519029284985,89.062796437141969,88.882898827939073,89.473135636712058,89.81202305589045 +1985,5,28,17,0,395,181,16.5,388.68749152991052,59.508929421121124,58.27848380427329,274.0371558339894,0.0,134.60662821126351,383.34882263145528,1.0,134.60662821126351,243.45541910719407,1.5,30.600000000000001,6.2000000000000002,356.07858223235405,357.57048649328698,358.40849866534904,359.9368733439731,361.21209714088491,361.70434750133529,76.909897670073093,75.722935699309375,75.83722544892376,77.349697410995631,78.963776383052732,78.931300662350495 +1985,5,28,18,0,139,121,17.5,168.49102319067629,72.45438666542424,70.0218332449306,282.38633524188924,0.0,60.884092894559629,160.46979132187028,1.0,60.884092894559629,104.57035886372705,1.5,28.899999999999999,4.5999999999999996,140.90072785821974,142.27338053918896,143.06535285073045,143.41514322791414,143.71315810526096,143.82198799968128,35.180968563738467,35.851006510821435,36.22417720720118,36.279013258145774,35.877751189033816,35.094256052742608 +1985,5,28,19,0,29,56,18.5,60.357981853903432,84.9907430140309,81.3571227612937,290.69725206516387,0.0,21.867867717817383,55.820266310691956,1.0,21.867867717817383,37.108274408496065,1.2558681957024085,24.399999999999999,4.5999999999999996,48.579525639475115,49.285848878585981,49.697621340339829,49.706391045700883,49.719523300177968,49.719148319353259,12.912838863489865,12.887596868937431,12.808558136142846,12.713196361367853,12.58561422324744,12.454825017835086 +1985,5,28,20,0,0,1,19.5,1.0,92.5569526414647,88.12069483969157,296.3041556856009,1.0,0.31450404003991794,0.99240387608929914,0.0,0.31450404003991794,0.0075961164082149479,1.49462076628026,23.899999999999999,3.1000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,5,29,5,0,0,1,4.5,1.0,93.7319985786113,89.14028741762625,62.61410660618978,1.0,0.31450404003991794,0.99240387608929914,0.6542246606723267,0.31450404003991794,0.0075961164082149479,1.5,17.199999999999999,4.0999999999999996,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,5,29,6,0,1,28,5.5,28.109728029983589,87.61311085613977,83.70036206736323,67.36952563104518,0.0,8.9272054977124835,27.522364900356425,1.0,8.9272054977124835,17.122389821886831,1.3939952044935087,17.199999999999999,5.2000000000000002,25.491245537067776,25.879616147243972,26.107346618666817,26.057763114049376,26.02003550108142,26.002044512365007,5.2139341733930733,5.1999652229559752,5.1914293932334994,5.1748612234250899,5.1409357518053893,5.0985244751514074 +1985,5,29,7,0,2,82,6.5,82.601294630257669,75.20908504089194,72.50351349054394,75.74257291337015,0.0,26.346318523264838,80.89132037997885,1.0,26.346318523264838,50.385758380966124,1.5,16.699999999999999,3.6000000000000001,74.617568233214925,75.725247701388909,76.374354211780357,76.252455838415514,76.160901463390786,76.116019518643,15.406936063169875,15.384713170931454,15.358021630350356,15.298236660528749,15.182375504655459,15.043022753214743 +1985,5,29,8,0,2,192,7.5,192.97511327044637,62.33485608074541,60.819887580338,84.00054073620713,0.0,61.908714600797943,189.57526514290433,1.0,61.908714600797943,117.97999229887725,1.5,17.800000000000001,5.2000000000000002,175.69043757981373,178.10939330786073,179.52547618665997,179.32872228883758,179.18615876901012,179.11078678024214,35.970099466162267,35.848732690856806,35.848186509608055,35.882977325501322,35.800261621811771,35.525126360928901 +1985,5,29,9,0,5,290,8.5,293.2838812151349,49.193410922648326,48.945528277121205,92.93698138556852,0.0,93.617177185541095,289.76542395394654,1.0,93.617177185541095,179.59752358758189,1.0538523099706238,17.800000000000001,4.0999999999999996,270.32150291594985,273.83931021109032,275.89757357450867,275.69523074664397,275.55753795572923,275.47510026142345,54.848694385538181,54.388131261058497,54.104007067952232,53.993191769132714,53.846680454976337,53.567938367168964 +1985,5,29,10,0,5,324,9.5,327.98319933296023,35.91599907427433,37.189579303706886,103.97078534866161,0.0,103.79465349354905,325.17021548635063,1.0,103.79465349354905,201.00419598301445,1.1998012720519486,18.300000000000001,4.0999999999999996,303.84967431152228,307.78961617272626,310.09482349689398,309.92485146802983,309.81616502653765,309.74306579671287,61.103084249128791,60.615481574014801,60.191845977508116,59.917911804275697,59.619667320000168,59.269340411125818 +1985,5,29,11,0,1,399,10.5,399.89758290185642,22.67252864235972,26.15785280055866,120.43340860661495,0.0,126.66494399060883,397.76498024912871,1.0,126.66494399060883,245.41385518143591,1.276792928521435,19.399999999999999,4.5999999999999996,372.1754320009195,376.87073149361402,379.61636879847708,379.52390136342206,379.48452843169264,379.43401471238656,74.795609981601771,74.239845337604137,73.636576798092577,73.1830638280465,72.71582668115424,72.246290853299627 +1985,5,29,12,0,1,406,11.5,406.95272258229835,10.150696559341897,17.68848172970716,150.89438135020364,0.0,128.90770057575622,405.29691379586916,1.0,128.90770057575622,249.9010022780954,1.3118419324662196,18.899999999999999,5.7000000000000002,379.17026359233046,383.94061735540998,386.72992200629125,386.69107653494433,386.69580730909291,386.66302799152027,76.177007783189254,75.661049491266169,75.038190413401935,74.544609551745779,74.031994105460541,73.52766838922237 +1985,5,29,13,0,1,286,12.5,286.95831661344903,7.871196983253874,16.60119546034214,199.31309203758184,0.0,90.384022069631044,284.87699538209171,1.0,90.384022069631044,176.01834387690909,1.3150232949068474,17.199999999999999,3.6000000000000001,265.55320459089569,269.12716289247658,271.21944711250069,271.13084110781466,271.08417615574012,271.04067762107155,53.218736531857267,52.946209200246365,52.630578826184852,52.362034061288085,52.028607058495524,51.650469512393833 +1985,5,29,14,0,1,245,13.5,245.91399480596988,19.778921013233315,23.936622898572573,234.516421901011,0.0,77.43356054130436,243.6486896199489,1.0,77.43356054130436,150.69313152477156,1.2872248870860847,17.199999999999999,3.6000000000000001,226.86414776323545,229.99734000465068,231.83238108805384,231.70659206505456,231.62611979667199,231.57210576395894,45.511652093071753,45.286400762724774,45.054657208178838,44.857701706072113,44.591462486949858,44.27068539569958 +1985,5,29,15,0,0,249,14.5,249.0,32.96629902774693,34.6362442176348,253.08627281438578,0.0,78.61186345763133,246.3902550252208,1.0,78.61186345763133,152.47657786768934,1.220678039431991,17.199999999999999,3.6000000000000001,229.45187420331629,232.62498553327509,234.48344252095836,234.31803737116698,234.20580676558905,234.13825972942945,46.162211496030707,45.89822864682646,45.668970380855562,45.491845370480249,45.25178381504179,44.946203878468417 +1985,5,29,16,0,1,339,15.5,339.69089484349172,46.250914846423065,46.29901471213699,264.9260556419556,0.0,108.09925921052955,336.11855513355158,1.0,108.09925921052955,208.15716894245375,1.0934234700761187,18.300000000000001,3.6000000000000001,313.998243154796,317.99734975017918,320.33649169220377,320.14934191092016,320.02806367188703,319.94844302582032,63.462751600151002,62.880330701656405,62.484896049756252,62.310526525628873,62.123171787841244,61.814283871179491 +1985,5,29,17,0,1,206,16.5,206.52737491115118,59.42750266051432,58.17174086609777,274.17249619995187,0.0,66.047196216417206,203.16632653669433,1.0,66.047196216417206,126.29181747037252,1.5,17.800000000000001,4.5999999999999996,188.58321259947519,191.17394071681719,192.69074846418417,192.4895515003308,192.34463485896987,192.26709640193613,38.440675506552694,38.264107473535404,38.222162098147656,38.235682803394226,38.148660896140683,37.883730673032659 +1985,5,29,18,0,0,119,17.5,119.0,72.3656727883874,69.91157877058508,282.5047051145989,0.0,38.283016501782072,116.40725802961443,1.0,38.283016501782072,72.653727554528942,1.5,17.199999999999999,3.1000000000000001,107.21655245929371,108.76679308200433,109.67464511873577,109.52034711595593,109.40561412779456,109.34810286231902,22.314783264449709,22.331789015534529,22.341341803372181,22.288091042741289,22.125426307585759,21.894610788523785 +1985,5,29,19,0,6,34,18.5,34.913628751658443,84.89354075878818,81.24141607349407,290.80247889623956,0.0,11.255082997639771,33.970777387037629,1.0,11.255082997639771,21.2708660360422,1.279392873370051,17.199999999999999,4.0999999999999996,31.249358764678803,31.722436988434566,31.999675948355204,31.939106594570458,31.893126075989738,31.871092561186842,6.5846613968689773,6.5659191976685278,6.5497627190813255,6.522651539374313,6.4745759709801387,6.4196626353575921 +1985,5,29,20,0,0,3,19.5,3.0,92.52724543797008,88.06688994164963,296.45477465919225,1.0,0.94351212011975361,2.9772116282678973,0.0,0.94351212011975361,0.022788349224644844,1.5,16.699999999999999,2.6000000000000001,2.737983578286781,2.7797251944043939,2.8042083528142956,2.813505878582562,2.821290369913839,2.824270439415355,0.55349647197456253,0.55382448689011854,0.55290509953470657,0.55367938843383169,0.55325717775607197,0.54892782656680827 +1985,5,30,5,0,0,1,4.5,1.0,93.72685107579078,89.10905764048826,62.4475836348185,1.0,0.31450404003991794,0.99240387608929914,0.6411708471869342,0.31450404003991794,0.0075961164082149479,1.5,12.800000000000001,2.1000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,5,30,6,0,1,24,5.5,24.110886764399471,87.5692992189496,83.63356383692066,67.23070591549714,0.0,7.6316224162419326,23.63565084062785,1.0,7.6316224162419326,14.679498561124149,1.413755017869165,13.300000000000001,2.1000000000000001,21.913468404768103,22.247402037404076,22.443231341445401,22.398236718675186,22.363874249197796,22.347618581421585,4.4566845193286895,4.4441000432090467,4.4367905469743896,4.4224107078356427,4.3932692331363468,4.3573884780653191 +1985,5,30,7,0,229,112,6.5,181.07037213414577,75.17641047751064,72.44522942898249,75.59360704286821,0.0,69.767922694305909,167.60695282793992,1.0,69.767922694305909,113.03226032341057,1.5,14.4,2.6000000000000001,140.42776305989429,141.60443701134372,142.27504039190899,142.86845537390198,143.36782281934308,143.55696312045649,41.46556544594813,42.07402419436135,41.947462765502038,41.418193295419243,40.562035598508388,39.662085993463776 +1985,5,30,8,0,208,183,7.5,284.57805272915635,62.311484530956754,60.767415119979525,83.83546923938596,0.0,97.984829459397602,278.97630974374135,1.0,97.984829459397602,177.73237292001625,1.5,17.199999999999999,2.6000000000000001,256.07256895896103,257.83765698313607,258.85092120642599,259.81464335158967,260.62103257724516,260.93001356677559,55.722605255197998,55.498421246496896,55.92864212900497,57.00212279679053,57.869895467674112,57.478314469249341 +1985,5,30,9,0,257,328,8.5,496.96481969251738,49.17657337016689,48.89426575048173,92.74559057245793,0.0,165.61342156139233,496.62277652470755,1.0,165.61342156139233,308.0389040219352,1.0492400410478064,19.399999999999999,1.5,471.31639736761855,474.42614960339364,476.21584890604663,477.07303714984175,477.81701392890147,478.07714308561367,97.832155904707022,95.460408389794523,93.996538547839961,94.017541780805644,94.656774877197748,94.921938557772194 +1985,5,30,10,0,502,310,9.5,710.21676765297502,35.901794849682446,37.132223284760606,103.73621973363974,0.0,231.44689283410133,726.6027883289064,1.0,231.44689283410133,443.22206399315485,1.1958223677719693,21.100000000000001,1.5,704.6007023970518,706.64111830229047,707.76586202747058,709.96062897244087,711.81018619757049,712.50714481593263,140.97894011524133,136.4479372771649,132.17012548421366,130.36326526862189,130.19562143039551,130.72952514045107 +1985,5,30,11,0,338,403,10.5,706.58412098574286,22.652379043864997,26.0804191397754,120.13469390153847,0.0,224.470860302473,725.88082124761809,1.0,224.470860302473,439.98577656714195,1.2732100324519604,22.800000000000001,3.6000000000000001,702.63343335091668,705.46596529999999,707.0622726543005,708.93609176343341,710.52279383300743,711.11479130076305,137.20427301558755,133.82025968520512,129.8258548119571,127.41162448049718,126.28886969967601,126.2177773836149 +1985,5,30,12,0,430,429,11.5,838.94836150642482,10.087714129774099,17.566312725259277,150.59364020386758,0.0,266.89660604411324,869.49971595536726,1.0,266.89660604411324,522.9016250309628,1.3084815821571143,23.899999999999999,3.1000000000000001,847.80004534564398,849.99391882576992,851.19114648671177,853.54493632141907,855.53530670307021,856.28169092500207,164.51160375294538,160.40691695891226,154.96424762843344,151.30865227950454,149.37380819775487,149.14227583085497 +1985,5,30,13,0,532,373,12.5,883.22516903684664,7.738594094542472,16.449464477966632,199.35345356063252,0.0,288.60962933264182,917.60993026027177,1.0,288.60962933264182,550.53418653570543,1.3117511230727394,24.399999999999999,2.1000000000000001,897.50861110982476,899.28981757557221,900.23204743069505,902.69950225403386,904.78977002331123,905.57080882840739,178.39158493362132,173.87694832518252,167.74076634177348,163.45795910664836,161.09920776351018,160.81422293646 +1985,5,30,14,0,360,427,13.5,756.36575363733732,19.695675540075428,23.807778885796957,234.71523559657183,0.0,240.32265677801331,778.0317072858943,1.0,240.32265677801331,470.77396158228248,1.283927881680418,23.899999999999999,3.6000000000000001,754.07546555259466,756.99278862354174,758.63260926767975,760.55950947055203,762.19443391629204,762.80190126994364,147.14614307157325,143.62338413564791,139.27210873116294,136.48409493347654,135.05332587143104,134.88011297990866 +1985,5,30,15,0,146,300,14.5,420.2867549018672,32.89152070627755,34.52470540983255,253.2673122523114,0.0,135.30844289937602,426.09991527235223,1.0,135.30844289937602,261.3166529545345,1.2172555581941307,25.600000000000001,4.5999999999999996,406.36784469266956,409.18189735359636,410.80432667737324,411.82251420153784,412.68741080388759,413.00705151607525,81.452591256737364,79.720707113659159,78.001749493160901,77.197138758892876,76.973895699319584,76.934702650155032 +1985,5,30,16,0,202,244,15.5,383.82819726403312,46.17508913136538,46.1939963712357,265.0770397237177,0.0,126.33579835370558,387.04199895118268,1.0,126.33579835370558,239.79585152073193,1.0898134935727164,25.0,4.0999999999999996,367.86862535539581,369.97805049554074,371.18645099066021,372.5030111459107,373.60739465591439,374.0281669483486,75.277906947846333,73.313326283946239,71.902605922948212,71.789422003393796,72.287734989485699,72.543991651671277 +1985,5,30,17,0,67,217,16.5,252.43808086766521,59.3468779421311,58.067043175800535,274.30085283721934,0.0,83.410626914583034,248.50984025152263,1.0,83.410626914583034,155.60067960701517,1.5,24.399999999999999,4.0999999999999996,230.72470613356816,233.19776434275516,234.63817331915141,234.80105940762965,234.95583036666187,234.99781273418961,48.228722140564749,47.85172606188091,47.853312187634181,48.189770155896696,48.455434791484265,48.21482755843676 +1985,5,30,18,0,165,120,17.5,176.96471140553069,72.27803663074765,69.80351183705604,282.61671520923824,0.0,63.800202188402842,167.8717553325844,1.0,63.800202188402842,109.78639167470725,1.5,22.800000000000001,4.0999999999999996,147.11596057086336,148.47968958004449,149.2650585399241,149.61441127731717,149.91272307020856,150.02103131142701,36.859203422049312,37.609742123690069,38.017750224226347,38.058589648152108,37.596126376113716,36.739158283625635 +1985,5,30,19,0,20,62,18.5,65.084490870323819,84.79779075588709,81.12817489994241,290.90171526534533,0.0,23.420732730408481,60.481577673104773,1.0,23.420732730408481,40.022479004413476,1.3023027215031373,21.699999999999999,3.1000000000000001,52.837013158285153,53.606038157307104,54.054497152153573,54.067248139534733,54.083985628746326,54.084732465796577,13.81181440160673,13.802937847050725,13.733054438915516,13.637729657028475,13.499916534237505,13.352813936687559 +1985,5,30,20,0,0,3,19.5,3.0,92.4975269964789,88.01421212152943,296.59836977883384,1.0,0.94351212011975361,2.9772116282678973,0.0,0.94351212011975361,0.022788349224644844,1.5,19.399999999999999,3.6000000000000001,2.737983578286781,2.7797251944043939,2.8042083528142956,2.813505878582562,2.821290369913839,2.824270439415355,0.55349647197456253,0.55382448689011854,0.55290509953470657,0.55367938843383169,0.55325717775607197,0.54892782656680827 +1985,5,31,5,0,0,1,4.5,1.0,93.72279494150398,89.07990585315605,62.28704231106601,1.0,0.31450404003991794,0.99240387608929914,0.6290277081511086,0.31450404003991794,0.0075961164082149479,1.5,16.699999999999999,2.1000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,5,31,6,0,11,36,5.5,37.231535132067407,87.52981474172357,83.57181700528012,67.09586317051321,0.0,13.180866837025325,34.795777309933619,1.0,13.180866837025325,22.87440289902203,1.4305911087472039,17.199999999999999,2.6000000000000001,31.215295753471718,31.686689694672701,31.9620811413693,31.963453835644238,31.968092224830542,31.966595255045508,7.7086106137115928,7.7174405717249028,7.7101157512454961,7.6902446300988831,7.6365611921881387,7.5525035802172216 +1985,5,31,7,0,27,85,6.5,93.167629980222685,75.14784613425657,72.39188964881039,75.4490884640592,0.0,31.115315689709345,90.138158771079631,1.0,31.115315689709345,57.300866450036949,1.5,17.800000000000001,3.1000000000000001,81.233420311300023,82.324540324078768,82.961595454792374,82.983571911102956,83.009816575215595,83.01256884055843,18.295880662891165,18.35574424275244,18.312754659872144,18.200426717107476,18.004776015159695,17.775629514196122 +1985,5,31,8,0,7,154,7.5,157.42356673791249,62.29201190468371,60.71980620544601,83.67542010709958,0.0,50.324487130228775,154.6605811558652,1.0,50.324487130228775,96.184561909249169,1.5,18.300000000000001,2.1000000000000001,143.37055167345775,145.38296511302661,146.56149012018739,146.38128443347378,146.24897616913026,146.18090948682274,29.259593502571569,29.169850097421161,29.166548571473331,29.176693391571444,29.087531606481651,28.858642725384286 +1985,5,31,9,0,14,272,8.5,281.21283463318485,49.163538070557145,48.84794450882412,92.55997119921302,0.0,89.430266594668765,277.77946607238431,1.0,89.430266594668765,172.17993085670403,1.0447890562036868,20.0,4.0999999999999996,259.27612392877165,262.62096013996245,264.57791245074327,264.37388559654408,264.23366722001629,264.15130211449423,52.379734313782322,51.930986769880462,51.660534285510401,51.561911317006498,51.430644357905891,51.171463146685809 +1985,5,31,10,0,9,291,9.5,298.18013630206605,35.8914992579239,37.08014416697056,103.50828915418806,0.0,94.714528147741447,295.45016372971492,1.0,94.714528147741447,182.67818521622308,1.1919948177691715,22.199999999999999,5.2000000000000002,275.98498498116408,279.59608745471957,281.70907200081439,281.53390481780315,281.41846973227712,281.34503757719847,55.727183548000937,55.289971671082043,54.918951783866973,54.677755301148508,54.408944359745639,54.087137576433747 +1985,5,31,11,0,1,432,10.5,432.89872515348043,22.636735326646978,26.009002946614363,119.8426082251312,0.0,136.48040039828774,430.898768096553,1.0,136.48040039828774,265.76204316196521,1.2697717262624668,24.399999999999999,5.7000000000000002,403.58551336638152,408.57485220340141,411.49168698660003,411.42204426071282,411.40396349494642,411.35954237953786,80.649420979033323,80.004791593686903,79.313722955032972,78.811350602142696,78.315384750433822,77.829682686224075 +1985,5,31,12,0,2,372,11.5,373.90794764854581,10.03156261586292,17.450989431539796,150.29301638071775,0.0,117.83720712270838,372.02789580934467,1.0,117.83720712270838,229.53599392420392,1.305263947265453,26.699999999999999,5.2000000000000002,347.74505076998901,352.19504838744541,354.79804281449401,354.73939856107103,354.72485946615478,354.68713912648093,69.555445645394002,69.104639711679852,68.578142565135735,68.164913980057577,67.718876374552821,67.256034378532732 +1985,5,31,13,0,2,393,12.5,394.91957772175749,7.6103373501336495,16.30335393628968,199.3828079928094,0.0,124.47556656028402,393.21117786520927,1.0,124.47556656028402,242.50615589116344,1.3086251275843441,26.100000000000001,6.7000000000000002,367.76186216298794,372.41042629305105,375.12900187902881,375.0903211342453,375.09386790883514,375.06181457015134,73.521087980091053,73.025405915475218,72.441154708976285,71.987822617661777,71.511966350552484,71.028455009894913 +1985,5,31,14,0,112,425,13.5,527.56786853545918,19.61397329297723,23.68261099065274,234.90229391253027,0.0,169.85086259889411,537.65775352422634,1.0,169.85086259889411,328.22689147142262,1.2807867777886335,28.300000000000001,8.8000000000000007,513.3207249161286,516.84979292680828,518.88311706005311,520.23413983723651,521.37906565507183,521.8053603681368,102.72690745100496,100.89041744500153,98.621042225112618,97.253821955985018,96.533046317254431,96.248125591891508 +1985,5,31,15,0,621,189,14.5,701.29887839992114,32.81757178162327,34.41577305820753,253.43862688164367,0.0,229.74314795871391,722.15285347042891,1.0,229.74314795871391,437.98854256688594,1.2140068902963352,30.0,8.8000000000000007,706.68076313796416,707.52924703729525,707.94431581946594,710.18372544990416,712.07030681891717,712.78213110612535,141.02405533929934,135.9989908448446,131.11442213164764,128.76614949294955,128.37298941537352,129.02775740683225 +1985,5,31,16,0,475,229,15.5,558.41871106353869,46.09997924409796,46.09115330726544,265.2199420619317,0.0,190.65507189186329,564.66559709878288,1.0,190.65507189186329,349.05990067935642,1.0864069190743308,30.0,6.7000000000000002,542.84456752710526,544.47622243851151,545.37689752281017,547.3016962989534,548.92000334595093,549.53313584869875,113.89158971864744,110.0969337833552,107.49371133365091,107.31285264493002,108.343388313123,109.10013876363865 +1985,5,31,17,0,476,154,16.5,406.49200329176216,59.267104166247684,57.96444735792023,274.42217934326266,0.0,144.94706540325708,399.55381683696754,1.0,144.94706540325708,254.23407645784366,1.5,29.399999999999999,6.2000000000000002,372.37876752405555,373.61026098277279,374.28941486426879,375.74236059830656,376.95918028760974,377.42454701579112,82.517032199779209,81.21372739431456,81.425820729126784,83.163718154433781,84.977405441980622,84.919651569911736 +1985,5,31,18,0,287,121,17.5,220.58134263942014,72.19154085085968,69.69769885560753,282.7223378202764,0.0,82.850738621706128,206.57111099598333,1.0,82.850738621706128,137.52711346511094,1.5,28.300000000000001,5.2000000000000002,177.63504230844271,178.88630198428746,179.59619922674199,180.25482948896706,180.80750507642455,181.01718960020531,47.7142599757128,48.98866649557575,49.686056698368816,49.786416912828614,49.094629134665752,47.781033667121626 +1985,5,31,19,0,167,51,18.5,77.074245444868225,84.70356884360876,81.01747559375227,290.9949493976462,0.0,35.050904097524324,62.901571394854741,1.0,35.050904097524324,48.214974959127446,1.324615923351971,26.699999999999999,5.2000000000000002,46.46920337002642,47.041426327631804,47.367488174559575,47.656808907817002,47.900740189180567,47.992597600495877,20.933612077832066,21.000645280503797,20.81142901724019,20.552698600738619,20.219933583547597,19.905622488406692 +1985,5,31,20,0,6,6,19.5,6.2132995806611611,92.46784278990103,87.96270976854926,296.73489880091444,1.0,1.9297972051494896,5.9544232565357946,0.0,1.9297972051494896,0.30392853914592566,1.5,24.399999999999999,3.6000000000000001,5.4760311313759837,5.5595138696891935,5.60846307353225,5.6270441373605236,5.6426122087142598,5.6485617255431979,1.1888555093859081,1.1894558576451602,1.188144445189014,1.1905440508945218,1.1903030765231195,1.1814501844516321 +1985,6,1,5,0,0,0,4.5,0.0,93.71984341775233,89.05285362633882,62.13256182240264,1.0,0.0,0.0,0.6178189373143025,0.0,0.0,1.5,21.100000000000001,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,6,1,6,0,20,40,5.5,42.258824605031137,87.49463262526653,83.51510743728052,66.96508009964955,0.0,15.588446872053785,38.653356605113366,1.0,15.588446872053785,25.969688503817668,1.444645770159462,21.699999999999999,2.1000000000000001,34.258836623642509,34.773981752004723,35.074416777113633,35.077359895662902,35.083897015529942,35.082579146280921,9.1123333598073906,9.1323930749758642,9.1276508637205787,9.1027390376733344,9.0327646675387676,8.9240055835912937 +1985,6,1,7,0,95,114,6.5,142.81447975564498,75.12334733476729,72.34346285243114,75.3091121111701,0.0,51.511577076647562,135.25335015250653,1.0,51.511577076647562,88.681130901368647,1.5,25.0,2.6000000000000001,117.54840294555838,118.84476340778153,119.59503478316083,119.91202066283256,120.18272020947164,120.28157512605958,30.516361156687726,30.787473602927143,30.681040980857539,30.37801454304995,29.89802491609985,29.372786171487324 +1985,6,1,8,0,79,185,7.5,223.68884510065632,62.27637754534979,60.67701753873106,83.52050834117257,0.0,74.671243869128958,219.15414746682191,1.0,74.671243869128958,137.81031318546943,1.5,26.699999999999999,6.2000000000000002,202.49746412347645,204.66551543171471,205.92741543653375,206.04629285835733,206.1625245177384,206.19127960389073,42.913584134673407,42.763697787878996,42.934248929305326,43.332020561165997,43.56296463540626,43.233523915713228 +1985,6,1,9,0,344,305,8.5,531.55976374724696,49.154226215984856,48.806510106647885,92.3802752068134,0.0,178.84926891469809,532.66050670942616,1.0,178.84926891469809,330.91419750040376,1.0404998774748229,28.899999999999999,4.0999999999999996,506.95844565960499,509.58717593228801,511.08646128112213,512.48173272021165,513.66592614005685,514.10434201821431,105.55943818125479,102.73875330189276,101.05126099646141,101.3191115031228,102.37242950807169,102.84003674844548 +1985,6,1,10,0,517,308,9.5,720.71377079369495,35.88500969944505,37.033279064457076,103.2872232065783,0.0,240.59979485895127,736.73289094659845,1.0,240.59979485895127,449.69133128000067,1.1883192416230575,30.600000000000001,6.2000000000000002,714.74850976020696,716.76936002129833,717.8791151727188,720.07347253078217,721.92580412072334,722.62097316751749,146.34955960259856,141.59401801425267,137.21262822416114,135.41944892137309,135.33706439830689,135.92599097759143 +1985,6,1,11,0,632,269,10.5,837.31053603864507,22.625457831711525,25.943547166713973,119.55756188854402,0.0,274.0906211249852,866.6735417476674,1.0,274.0906211249852,522.07001896655959,1.2664786170929594,31.699999999999999,5.7000000000000002,849.54617519134047,850.76372581714577,851.37850445910351,853.75512176246434,855.76704514124606,856.51847004424826,169.08646057885252,163.80596965923374,157.81277595366416,154.23649321744526,152.76946018675267,153.01342419614932 +1985,6,1,12,0,704,272,11.5,943.99605105951912,9.982081867523249,17.342521019146798,149.99310357936238,0.0,300.80313020390429,982.0494122526336,1.0,300.80313020390429,587.64102900558953,1.3021895634266176,32.200000000000003,5.7000000000000002,966.2925127770435,967.2431060859052,967.68554065607509,970.01633998364775,972.00072826223618,972.73319633699793,186.62130312227549,181.29381042971144,174.33917570005627,169.55876609663127,167.03282835040551,166.92888029299914 +1985,6,1,13,0,643,312,12.5,929.58479359370767,7.4863896401030905,16.162924255611458,199.40099628083306,0.0,296.123332421935,966.37458039744934,1.0,296.123332421935,578.47802552473843,1.3056457176288627,32.799999999999997,6.7000000000000002,949.63495217088212,950.844042660779,951.44243358083054,953.68034536783398,955.58766905634945,956.28983674126164,183.48128884138367,178.34746438059429,171.64833687400196,167.04154967641952,164.59310234140457,164.46248738168376 +1985,6,1,14,0,658,269,13.5,872.14515093738601,19.53378331772207,23.56115168080458,235.0773642785213,0.0,285.63142857207123,904.17440445214288,1.0,285.63142857207123,543.50868264950566,1.277801770085498,33.299999999999997,6.7000000000000002,887.49059666028757,888.62548211641104,889.18545708093825,891.55639255513222,893.56777577414459,894.31570885689177,176.55155646805025,171.24477453365824,164.89467404053696,160.86329672118373,158.97608299953623,159.09285267993931 +1985,6,1,15,0,658,250,14.5,793.5112970236537,32.7444621771274,34.30948336099646,253.60009396877751,0.0,259.54933107100561,815.27902372160224,1.0,259.54933107100561,495.01906657567287,1.2109318426689497,32.799999999999997,5.2000000000000002,796.38274013878629,797.73314365050737,798.4353667373299,800.7866325772053,802.7728356729923,803.51724717104776,159.02689664918069,153.54083915452779,148.21856781394783,145.64198841483068,145.17265071924933,145.84033504973357 +1985,6,1,16,0,571,246,15.5,642.7177914202291,46.025619384194435,45.99053298588222,265.3546924305712,0.0,219.69124737416675,649.02363328034994,1.0,219.69124737416675,401.00183066255431,1.0832027660184704,32.200000000000003,6.2000000000000002,625.16644973016344,626.94035447843237,627.91500174130238,629.86068398771533,631.50512875554239,632.12014873937926,131.22279418334335,126.75379525352076,123.71629932768312,123.45651906960279,124.60464388462725,125.50190257337179 +1985,6,1,17,0,466,196,16.5,443.87964324476661,59.18823238288786,57.86401164385114,274.5364328574028,0.0,157.18722381770405,436.46625654993079,1.0,157.18722381770405,277.49893309196648,1.5,31.699999999999999,4.5999999999999996,406.51446568272456,408.14158702563623,409.05157730490282,410.60727309306577,411.9106421201069,412.4086498627849,89.623609559277654,88.283987066299986,88.4940983230764,90.284490900529676,92.141735058652813,92.044902589833427 +1985,6,1,18,0,315,125,17.5,234.83004393289937,72.10624961957801,69.59420731191268,282.8215483772673,0.0,88.519314375242942,219.48491968483273,1.0,88.519314375242942,146.32919337782226,1.5,31.100000000000001,3.1000000000000001,188.70262299837782,189.99198513092222,190.72211511351173,191.39279806588686,191.95649701977831,192.16946302857195,50.956287201131424,52.338441719069735,53.098853331095569,53.201665764224892,52.443441414171879,51.021577283377418 +1985,6,1,19,0,83,59,18.5,72.113681039440024,84.61095159757569,80.90939489256951,291.0821723984901,0.0,28.98908115109246,63.286629924556102,1.0,28.98908115109246,44.77214998992774,1.3463491242458385,26.699999999999999,2.6000000000000001,51.508284919925451,52.209866411771465,52.615652236522266,52.773963874147888,52.910069244995825,52.958878163288553,17.198399558891165,17.248571227014281,17.139574625978121,16.979563136332992,16.751884454461361,16.516387918122213 +1985,6,1,20,0,0,4,19.5,4.0,92.43823776133424,87.91243040372906,296.86432242677705,1.0,1.2580161601596718,3.9696155043571966,0.0,1.2580161601596718,0.030384465632859792,1.5,23.899999999999999,2.6000000000000001,3.6506447710490395,3.7063002592058569,3.7389444704190598,3.7513411714434151,3.7617204932184514,3.7656939192204715,0.73799529596608326,0.73843264918682483,0.73720679937960898,0.73823918457844262,0.73767623700809526,0.73190376875574437 +1985,6,2,5,0,0,1,4.5,1.0,93.7180056853898,89.02791824135257,61.98421987756018,1.0,0.31450404003991794,0.99240387608929914,0.6075646605617364,0.31450404003991794,0.0075961164082149479,1.5,18.300000000000001,2.6000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,6,2,6,0,39,37,5.5,41.439665253586092,87.46372475400513,83.46341754873468,66.83843884661887,0.0,16.775147031333866,36.0734599334452,1.0,16.775147031333866,25.766777057097851,1.4560452514240625,18.899999999999999,2.1000000000000001,30.652734597693136,31.107970539452225,31.372151554471685,31.478794954442616,31.569567542175186,31.602921322866063,9.816359264036306,9.8744535063648833,9.8776230796327482,9.8626934158896162,9.7903195705766475,9.6503572700331066 +1985,6,2,7,0,308,99,6.5,192.64261850900908,75.10286684865613,72.29991491269135,75.17377161744191,0.0,77.283263551696507,175.65556640773337,1.0,77.283263551696507,121.07161928298065,1.5,22.800000000000001,2.6000000000000001,143.39645849322756,144.32835506237689,144.84939172640486,145.75552645068208,146.51033611124092,146.80339255166007,46.19701094476526,46.947827950922758,46.730292397274745,46.025566275646092,44.964760441286181,43.87941196860163 +1985,6,2,8,0,510,131,7.5,381.05839383289617,62.2645185742182,60.639003113738795,83.37084669254538,0.0,136.22004032468229,369.91876800133309,1.0,136.22004032468229,238.15930331708745,1.5,25.0,4.0999999999999996,340.16000385923002,341.2261955494721,341.80881035133854,343.10932908354516,344.19786774696877,344.61449821593885,76.343789820440932,76.064899612541836,77.067014458243207,79.13099225818479,80.795704886163207,80.188325368183442 +1985,6,2,9,0,717,168,8.5,640.56364006826607,49.148557158329425,48.769905426674555,92.20665088577394,0.0,220.72228407226234,644.04756699506356,1.0,220.72228407226234,400.01866145460218,1.0363731063655612,26.100000000000001,4.5999999999999996,620.30275220601857,621.34761847963023,621.89021543420438,623.92865882894625,625.64882104033211,626.29482800530457,130.61929393699947,126.00035511850594,123.2880057173159,123.74824028189668,125.61754892063446,126.73125505250538 +1985,6,2,10,0,497,248,9.5,644.96589227905474,35.88222215199988,36.9915621791728,103.07324568083631,0.0,210.49289365557516,660.07240443462763,1.0,210.49289365557516,402.92222464199483,1.1847962934893579,28.300000000000001,3.6000000000000001,641.16869037619085,642.72032383405644,643.56284989583776,645.69305069351083,647.48409879668998,648.16256334682953,128.10174101017529,123.74552058508567,119.83007186192707,118.35562556981675,118.41399337861668,119.03852547164203 +1985,6,2,11,0,554,336,10.5,834.42260509247444,22.618405485468553,25.88399072918288,119.27995837659736,0.0,272.47753544297416,861.4085624935467,1.0,272.47753544297416,520.26109087089606,1.2633313215053885,28.899999999999999,2.6000000000000001,840.9893585693859,842.85054613628733,843.84935699311495,846.23982697425822,848.26166849593267,849.01834052602123,167.59786534756981,162.67029762250345,157.05400051497347,153.72698209194212,152.35055574144576,152.5035019739918 +1985,6,2,12,0,307,439,11.5,732.20556033849175,9.939101384796912,17.240911372429338,149.69451294117567,0.0,232.65442887400917,754.86206038701005,1.0,232.65442887400917,456.13172536191075,1.2992589596535735,31.100000000000001,3.6000000000000001,731.5487188487175,734.34735926697988,735.9190555391674,737.92286534696609,739.61790677005729,740.25277005932048,142.6607420727303,139.45989143437112,135.19323817001677,132.3514147499528,130.81687605500085,130.52343777584821 +1985,6,2,13,0,218,364,12.5,573.52541155540769,7.3667159834467135,16.02823620116823,199.4078850706461,0.0,182.18562572517223,591.8318575495407,1.0,182.18562572517223,358.13863429389789,1.3028132843541322,29.399999999999999,4.5999999999999996,571.92101364224902,574.26582470095423,575.58790536620972,577.46613871416355,579.04357410879584,579.64457242533149,111.63876766334774,109.23951265795129,105.98109449315176,103.86897533280741,102.75964395011694,102.51427652665141 +1985,6,2,14,0,10,288,13.5,297.17453284363165,19.45507939105044,23.443435903060603,235.24022534942884,0.0,93.633664368574017,295.06662503271502,1.0,93.633664368574017,182.21136606993278,1.274973025998048,29.399999999999999,2.6000000000000001,275.63576787021293,279.23784123334701,281.34564925536677,281.22416140862026,281.15185939273624,281.09672035639323,55.177085413563589,54.811294922549372,54.432425346513497,54.139436183043756,53.807859520917745,53.450378210972964 +1985,6,2,15,0,109,327,14.5,417.14549987280736,32.67220550527579,34.20587503626083,253.75159721877486,0.0,134.07251190869786,422.26178180851775,1.0,134.07251190869786,259.52307208658158,1.208030187993157,27.800000000000001,2.1000000000000001,401.43515717162029,404.44613589791544,406.1863013851862,407.2616015587771,408.17211236848971,408.51126740405675,80.570364175722545,78.985014313887874,77.393157047823664,76.667641701455238,76.467070304484139,76.387447062372644 +1985,6,2,16,0,66,245,15.5,290.93670892588273,45.95204657047582,45.892184954944746,265.481225086204,0.0,93.704943351339907,289.62244463408217,1.0,93.704943351339907,179.46089313721183,1.0802000186779335,27.199999999999999,2.6000000000000001,272.31456162745513,275.09536260355191,276.71520160752965,276.94641873524353,277.16066148422715,277.2233024047564,55.229621187401762,54.389110255449417,53.826666939517359,53.732188670159267,53.791104296998846,53.69538885859496 +1985,6,2,17,0,0,205,16.5,205.0,59.11031575064547,57.76579582513243,274.6435741391007,0.0,65.318741014648552,201.64082220500373,1.0,65.318741014648552,125.35318525063268,1.5,27.199999999999999,1.5,187.17684934454292,189.761393003824,191.27478264346828,191.07400732890844,190.92922611637314,190.85194344340994,38.018625958913226,37.853636777015744,37.815164221665135,37.826272763619677,37.732207005833679,37.466184216907642 +1985,6,2,18,0,77,155,17.5,181.97464668221411,72.02222855863111,69.49310570323223,282.91432548972557,0.0,62.662129628350783,174.70578875055253,1.0,62.662129628350783,112.06771875209546,1.5,25.600000000000001,1.5,156.65036211513961,158.44984528685524,159.49563796078928,159.57844009921271,159.661241488028,159.68001822030942,36.322058872394749,36.783387207471776,37.035762851520147,37.020654023392737,36.630807509098304,35.966781003422085 +1985,6,2,19,0,147,56,18.5,79.492379054328865,84.52001626394856,80.80400985432529,291.16337827106065,0.0,35.058019410897209,66.104378762495557,1.0,35.058019410897209,49.753832818236042,1.367517549459341,25.600000000000001,1.5,49.896502946618753,50.521448890395746,50.878860829437556,51.188217441279548,51.44825729361294,51.546897628718703,20.878425456334114,20.996297260646013,20.850693178003901,20.621482430850346,20.297346771777278,19.962677621655661 +1985,6,2,20,0,2,8,19.5,8.0745634030891402,92.40875634669803,87.86342070578195,296.98660436411234,1.0,2.535400164271747,7.9392310087143931,0.0,2.535400164271747,0.14482557222202191,1.3367488141920543,23.300000000000001,1.5,7.301318015037622,7.4126295125746067,7.4779102035324998,7.5026965841620559,7.523455777029934,7.5313969269097978,1.5066819614458986,1.5071166855018316,1.5041637050574739,1.5058748133868165,1.5045640202340831,1.4930404884152944 +1985,6,3,5,0,2,0,4.5,0.03472636395828705,93.71728713450804,89.00511295963457,61.842092594361695,1.0,0.00045144273145773242,0.0,0.5982814157220774,0.00045144273145773242,0.12966668038568618,1.5,15.6,0.0,6.7648480797316616e-07,6.7648480797316605e-07,4.9063303195093581e-07,3.3962162204833919e-07,3.3962162204833909e-07,2.2117155558329975e-07,0.00026345936366206537,0.00026315869342866208,0.00026243507768213551,0.017237240744850797,0.04163194072627039,0.041628060554169975 +1985,6,3,6,0,76,43,5.5,51.713183361992151,87.43705980119844,83.41672640236061,66.71602088458049,0.0,22.449551036293819,42.884130541633454,1.0,22.449551036293819,32.109834293644518,1.46490138162022,17.800000000000001,0.0,35.365315058013707,35.884267038425499,36.183965002227815,36.298857528908307,36.397770558635081,36.433086389230411,13.11784567355757,13.213446895309195,13.228325622256994,13.203168493166297,13.086195207023849,12.878987336992184 +1985,6,3,7,0,167,98,6.5,148.88122151681816,75.08635497616253,72.26120894482463,75.04315918470618,0.0,55.963769836449558,138.4182796835168,1.0,55.963769836449558,93.12181444442011,1.5,20.600000000000001,0.0,116.67616676653238,117.71364386969194,118.30737874418342,118.8630663830632,119.3283440465363,119.50674161945692,33.351191924781808,33.769513694009817,33.607479458133731,33.180002467035337,32.532090409465575,31.85635537680097 +1985,6,3,8,0,184,182,7.5,272.310302584243,62.25637000617661,60.60571431522288,83.22654549718135,0.0,94.029929741503238,266.0699942616306,1.0,94.029929741503238,168.95210786876751,1.5,22.800000000000001,0.0,245.14985715850042,247.10543913293856,248.23344115747068,248.77074015640454,249.23056421408558,249.39706009115542,53.498942037957882,53.374041190503213,53.811161167408017,54.68992223872705,55.316894177009068,54.87694349523111 +1985,6,3,9,0,501,203,8.5,533.4106705986103,49.14644857021438,48.738070815367564,92.03924264034244,0.0,182.32067616734602,535.96280367828649,1.0,182.32067616734602,333.33666983247963,1.0324094207872212,26.100000000000001,0.0,513.55376008072722,515.02809618676781,515.8397436483807,517.64297882036203,519.15990072545628,519.73399162307373,107.83286309587533,104.36123392230961,102.29585980394921,102.6750159318677,104.1039958925588,104.87496417606664 +1985,6,3,10,0,496,247,9.5,643.35792272695721,35.88303141203791,36.954924987614966,102.86657412083345,0.0,209.97281042558444,658.18067671745666,1.0,209.97281042558444,401.92739309478515,1.1814266597810343,29.399999999999999,3.1000000000000001,639.33774143305925,640.88094717129377,641.71865698548288,643.84679530599374,645.63601519391773,646.31387512585093,127.78849819876328,123.44083834976335,119.53286818701461,118.06162494489433,118.12059778982828,118.74453082347425 +1985,6,3,11,0,342,385,10.5,692.8303414165656,22.615436254752073,25.830268780518054,119.01019313250667,0.0,225.03621113475492,711.02766906938984,1.0,225.03621113475492,431.45376613999036,1.260330463616144,30.0,1.5,688.53562911695099,691.2500007844435,692.7761287612625,694.6207270461822,696.18413557519204,696.76610429821847,137.49417884650688,133.98291502982499,129.9624057717825,127.59707142741505,126.57112797848434,126.53525220009577 +1985,6,3,12,0,267,451,11.5,706.13340327792935,9.902441552953185,17.146159086635656,149.39787056236247,0.0,229.26026893887089,727.47455402554397,1.0,229.26026893887089,440.13036376404295,1.2964726568261993,30.0,2.1000000000000001,703.9116842100741,706.77265957463487,708.38331234132511,710.40516108030465,712.11360480326846,712.75501953212006,140.37016670108602,137.19415146609865,133.09280985815323,130.45760543417583,129.05882804719968,128.80840355463801 +1985,6,3,13,0,691,234,12.5,898.56538975129865,7.251284275218172,15.899350820504361,199.40336853181643,0.0,286.40466690148799,935.59935607632485,1.0,286.40466690148799,559.61217495255278,1.3001281997227974,30.0,3.6000000000000001,921.62682568626667,922.28890091178755,922.56535453445895,924.86361741581629,926.81731590786796,927.541163597832,177.90360533766071,172.73640404820961,165.98367801615336,161.34867792174032,158.91565175371733,158.84185410845248 +1985,6,3,14,0,659,253,13.5,858.12187099706284,19.377840211628957,23.329501143876968,235.39066776234682,0.0,273.394063454812,889.47610320034846,1.0,273.394063454812,534.90050813280959,1.272300685020038,32.799999999999997,2.1000000000000001,873.50747278071015,874.51209089282975,874.99964427661621,877.37735790802139,879.39013481718769,880.14203816133431,169.04587676257285,163.75973812296758,157.59411952887234,153.79438108429653,152.11884682602462,152.36276598938269 +1985,6,3,15,0,506,212,14.5,630.97382450654368,32.60081910700649,34.10498933250776,253.8930270368801,0.0,211.95221152141735,649.26884883228786,1.0,211.95221152141735,394.93561144401201,1.205301664693545,31.100000000000001,3.6000000000000001,633.25626714583416,634.27260439192901,634.79482393179364,637.12376212454035,639.07700567113636,639.82212619198265,129.78572453828758,125.2988373401448,120.98620829120794,119.06668434383418,118.88606311916867,119.46016829017405 +1985,6,3,16,0,74,278,15.5,329.59377227652965,45.87930062617746,45.796160817387275,265.59947890016525,0.0,106.30525149012448,328.20889180957602,1.0,106.30525149012448,203.36814782029231,1.0773976272465595,30.600000000000001,4.0999999999999996,308.92399139142418,311.98825008702482,313.77209727871684,314.05262861500643,314.31054040335806,314.38766354011148,62.684234211764576,61.681309481923144,61.012017300919034,60.904302610163924,60.991161274646664,60.90478545673119 +1985,6,3,17,0,64,278,16.5,312.22700167186804,59.033409491829,57.6698612027979,274.74356764553517,0.0,103.57448914676938,307.18955490516413,1.0,103.57448914676938,192.61310503522947,1.5,30.0,4.0999999999999996,285.37875914061999,288.3319368061226,290.05043528793175,290.30400129269395,290.5376368000484,290.60701928688667,59.765275919877517,59.322446321382259,59.380231737561047,59.875361182001754,60.256990881866322,59.947921320567971 +1985,6,3,18,0,348,103,17.5,225.4723703770776,71.93954467623492,69.3944634727204,283.0006509902629,0.0,87.284830358150501,209.43258200794932,1.0,87.284830358150501,141.54382386713237,1.5,30.0,3.6000000000000001,177.51392884935319,178.44262853257081,178.95817048390751,179.95928454664019,180.78980737110936,181.1140383068244,50.1806487539491,51.768278113182618,52.628613905677746,52.795764750949864,52.030520472564433,50.496282570367477 +1985,6,3,19,0,298,50,18.5,98.150764212454646,84.43084069012671,80.70139779038216,291.23856393180137,0.0,48.907896936270603,74.652683837650557,1.0,48.907896936270603,61.763048101898022,1.3881351100124801,28.300000000000001,2.1000000000000001,49.217805344992996,49.720556931010989,49.998948343430449,50.485905509811388,50.893394665298878,51.049666120947464,29.175913980694165,29.460377013980231,29.273457209625001,28.891638613640268,28.329950988301004,27.756537612800944 +1985,6,3,20,0,19,7,19.5,7.7241570732929308,92.37944249378288,87.81572653330778,297.10171138559076,1.0,2.4039229406940668,6.9468271326250939,0.0,2.4039229406940668,0.84199854388825868,1.5,24.399999999999999,0.0,6.3889314638235648,6.4863342924332947,6.5433745285378748,6.5649959501202266,6.5831651074945228,6.5900640321227115,1.58949792120919,1.5908217244612786,1.5856747255534587,1.5827588369889107,1.5770047779957717,1.5640504427395197 +1985,6,4,5,0,2,1,4.5,1.0354476216548789,93.71768961095961,88.98444726811569,61.70625438804976,1.0,0.31496485912143141,0.99240387608929914,0.5899821544909435,0.31496485912143141,0.13727681597939287,1.5,19.399999999999999,2.1000000000000001,0.91266188329748421,0.92657575533668857,0.93473661842811939,0.93783563953632998,0.94043046998008906,0.94142370557035004,0.18476775533877463,0.1848767867288828,0.18456958563201822,0.20386636663000057,0.22606446892255366,0.22461739109718357 +1985,6,4,6,0,139,39,5.5,55.036487025900911,87.4146033310685,83.37500980092145,66.59790690648117,0.0,27.233397608917429,41.322153451173087,1.0,27.233397608917429,34.467034943876818,1.4713129655664137,21.100000000000001,2.1000000000000001,31.268407172374104,31.712365874712283,31.965243403803008,32.186089284940245,32.37196486562803,32.442207170396507,15.913671669173628,16.080292479537452,16.112750119318736,16.085967920414749,15.92782831660787,15.635791809527998 +1985,6,4,7,0,414,91,6.5,217.36998724789913,75.07375963532974,72.22730538161979,74.91736545589735,0.0,89.160792638347075,195.48604117067296,1.0,89.160792638347075,136.22031163586917,1.5,23.899999999999999,2.1000000000000001,157.87512336510972,158.72175083696342,159.18646409620402,160.06203253254967,160.79560653837558,161.07662281641038,53.472625479359046,54.301562754027394,53.938114264684245,52.985620842966689,51.613928734246166,50.338831623346074 +1985,6,4,8,0,669,92,7.5,420.64753525531881,62.25186486755269,60.577100021100215,83.08771251814701,0.0,156.32141351341104,406.33511483058544,1.0,156.32141351341104,262.89651003389815,1.5,25.600000000000001,0.0,373.99847517058129,374.59961973382627,374.89771232283493,376.30794686662222,377.49008801877989,377.94074655191588,87.108195879291728,86.841476948698528,88.204000077501036,90.794908057221974,92.846407402635379,92.105605923439057 +1985,6,4,9,0,663,156,8.5,593.48595671487237,49.147816606856864,48.710944222039174,91.87819076512373,0.0,199.39208596383227,596.41973459302983,1.0,199.39208596383227,370.91082641625269,1.0286095719921189,27.199999999999999,1.5,574.27193444018724,575.20467828081837,575.68878699598122,577.68083995559584,579.35657216951142,579.99072935211007,117.80977525593407,113.66444883440631,111.31380628918777,111.85254282909884,113.68609672745762,114.69579240892178 +1985,6,4,10,0,714,166,9.5,736.80048976622152,35.887331334248024,36.92329643241829,102.66741941069256,0.0,241.52690770495559,754.7762449998994,1.0,241.52690770495559,459.48410232172529,1.1782110568352322,28.899999999999999,2.1000000000000001,739.09583948538716,739.83721278885173,740.18547957805572,742.29365172468238,744.07783384987943,744.74278002229414,147.54885610883804,141.91187988623616,136.92233594517126,134.95193852858884,134.96786343205665,135.89711749698782 +1985,6,4,11,0,672,224,10.5,829.1044719740803,22.61640759378022,25.782312930840106,118.74865238913253,0.0,264.1817623489647,858.17641370563786,1.0,264.1817623489647,516.96314668014475,1.2574766732323852,30.600000000000001,2.6000000000000001,842.94243922292435,843.8114204931951,844.22279649910809,846.56947560164917,848.55408990960336,849.29665852602045,163.14949736616677,157.73431751668031,151.75880670704757,148.31154288488756,147.03469964287294,147.4308583285756 +1985,6,4,12,0,81,449,11.5,526.43656558255509,9.871914960754475,17.058257491353842,149.10381482254658,0.0,168.73144293335164,532.95362608266714,1.0,168.73144293335164,325.85265663417681,1.2938311662083197,30.600000000000001,2.6000000000000001,506.58426228977856,510.83854099022363,513.30412040570502,514.09061999249366,514.77727358404991,515.01466309664852,101.44508952585785,99.966164162768393,98.091784151791131,96.855098084390576,96.047594796493286,95.626136340929136 +1985,6,4,13,0,3,378,12.5,380.88699119605531,7.14006606386547,15.77632936626335,199.38737012488664,0.0,120.04541231381752,379.04476067036944,1.0,120.04541231381752,233.86505479227432,1.2975908154175326,30.600000000000001,1.5,354.40704612488406,358.9128321789654,361.54815839156203,361.50317115325271,361.50034221005433,361.46685882916915,70.884301717822439,70.415054670912141,69.863814787412252,69.434344591888618,68.977970830006996,68.509319541343658 +1985,6,4,14,0,1,337,13.5,337.91900198640781,19.302049581601224,23.219387479284386,235.5284949030858,0.0,106.46772883243749,335.54198355884824,1.0,106.46772883243749,207.2818519490832,1.269784858103175,29.399999999999999,2.1000000000000001,313.29943493298452,317.40686942802898,319.81051991314604,319.7039509651637,319.64728814743461,319.59519807354712,62.736215719113481,62.330068365749938,61.9054644895905,61.58181512534086,61.212918342525171,60.804891634663633 +1985,6,4,15,0,14,202,14.5,213.60558723451445,32.530324084849205,34.00687003194699,254.02428079394664,0.0,67.518516782536921,211.47274988405741,1.0,67.518516782536921,130.7739682246943,1.2027459770329183,26.699999999999999,4.0999999999999996,197.37049850257989,200.01391681013695,201.56136975328141,201.40633570739269,201.29953535883746,201.23710388724791,39.688874302302857,39.410958109636873,39.175151386914862,39.008904322169244,38.806099368327288,38.562508524310914 +1985,6,4,16,0,121,306,15.5,390.50444940892288,45.80742415939012,45.70251419875605,265.70939749152365,0.0,127.15047304487292,391.15403315136598,1.0,127.15047304487292,242.63221525188135,1.0747945090457227,27.800000000000001,4.5999999999999996,369.64213119213525,372.58307748712559,374.28600609326026,375.18504517903295,375.95064288960759,376.23162387131589,75.270543432755503,73.73087303106027,72.680538698041715,72.61798655301962,72.969010946360129,73.043823138431932 +1985,6,4,17,0,1,150,16.5,150.53617643361673,58.95757084389374,57.57627053275714,274.83638160818947,0.0,47.770480487903939,148.11335628581972,1.0,47.770480487903939,91.96121629343925,1.5,25.600000000000001,2.6000000000000001,137.42192288314988,139.40620531812414,140.56898507850028,140.3936323737789,140.26463219807357,140.19855174874905,27.84609234353972,27.747278879950748,27.713187949673891,27.686033806448318,27.576824998343312,27.370320358960143 +1985,6,4,18,0,148,130,17.5,182.31826153455378,71.85826629998328,69.29835094090078,283.08050997578505,0.0,65.315872276420095,173.31865002580139,1.0,65.315872276420095,113.13041895135757,1.5,26.100000000000001,3.6000000000000001,152.70737552254553,154.16826005105298,155.01091415248035,155.38105184879552,155.69664390172011,155.8116911701693,37.760085355344955,38.496133514664912,38.892963200869197,38.935298528034963,38.481128029826557,37.628847211964477 +1985,6,4,19,0,3,52,18.5,52.489893365869129,84.34350325307472,80.60163619620093,291.3077292234682,0.0,17.203109042666991,50.737560115922037,1.0,17.203109042666991,32.005630213702858,1.4082144976328945,25.0,3.6000000000000001,46.361080956849108,47.058181159150671,47.466422034138354,47.384121802431373,47.322146756605683,47.291929409466889,10.066256072437199,10.050340771974691,10.029389364332035,9.9855167040151951,9.9046629888706708,9.8111531645674734 +1985,6,4,20,0,9,9,19.5,9.3502944337450025,92.35033967792604,87.76939294350912,297.2096133844131,1.0,2.9388123698298423,8.9316348848036924,0.0,2.9388123698298423,0.4374517727974363,1.5,23.899999999999999,2.1000000000000001,8.2141151940175146,8.3393405819695783,8.4127414808205714,8.440600157935938,8.4639519548206046,8.4728660152771091,1.8039715688120825,1.8073206058292497,1.8052771916686781,1.8065490653018834,1.8029024137666647,1.7875040960679747 +1985,6,5,5,0,0,0,4.5,0.0,93.71921164087003,88.9659271023432,61.576777860476874,1.0,0.0,0.0,0.5826762664665873,0.0,0.0,1.5,21.100000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,6,5,6,0,94,42,5.5,52.904737778204868,87.39631789848136,83.33824037822825,66.48417671669912,0.0,24.655863472771081,41.891572021269802,1.0,24.655863472771081,33.182447222158991,1.4753669850747988,21.100000000000001,3.6000000000000001,32.979675500454654,33.455814517120636,33.729012646341978,33.961451461068805,34.156079555201494,34.230567420311722,14.418292362417835,14.557505356801094,14.58114364428938,14.566393667425201,14.443250380210333,14.1951698594963 +1985,6,5,7,0,129,100,6.5,139.43863432114856,75.06502645152833,72.19816205164561,74.79647939083218,0.0,51.299835415372399,130.78621059846978,1.0,51.299835415372399,86.557605773318599,1.5,22.199999999999999,4.0999999999999996,112.72858327765172,113.88900130435465,114.55822419087448,114.85374112047421,115.1070987891724,115.19876487783804,30.477078140479936,30.752942152549231,30.603893222741963,30.243493299663196,29.700266226743796,29.154663196899939 +1985,6,5,8,0,62,185,7.5,215.48023089844588,62.250934315701116,60.55310670788366,82.95445279425776,0.0,71.562269402838311,211.15154441069805,1.0,71.562269402838311,132.75996389107203,1.5,23.899999999999999,5.2000000000000002,195.05879920677995,197.2279071361439,198.49157317962229,198.61167467758304,198.72800630463536,198.75767129504533,41.160108966247776,41.059582162877867,41.228873549662282,41.581004898738293,41.766448734497772,41.433907526926106 +1985,6,5,9,0,675,139,8.5,584.60324114785135,49.152576068305706,48.68846134110117,91.72363123472387,0.0,201.85085692558536,587.08093927619325,1.0,201.85085692558536,365.16904887495258,1.0249743815012844,26.100000000000001,5.7000000000000002,565.995312633803,566.78056618924029,567.17613413137394,569.06402734168694,570.65601164734744,571.25514418134298,119.00652894968817,114.84379769508131,112.55939030918275,113.17517890335992,115.08113625458222,116.10836435865811 +1985,6,5,10,0,6,272,9.5,276.79832152436103,35.89501506850366,36.89660311803902,102.47598538890266,0.0,87.814120297423855,274.00667421503374,1.0,87.814120297423855,169.53714846920863,1.1751502285685196,26.699999999999999,6.2000000000000002,255.6699784356058,259.08455219986894,261.08325410842536,260.9083810302447,260.79118028475364,260.71893950806907,51.605888029448955,51.231555407602919,50.925445727214559,50.728187776647637,50.487261485596932,50.181143687180267 +1985,6,5,11,0,12,297,10.5,307.80928392196859,22.62117688096492,25.74005151102056,118.49571205397802,0.0,96.995399530423043,305.59580212278843,1.0,96.995399530423043,188.72262499468133,1.254770583995373,26.699999999999999,5.7000000000000002,285.64642170188324,289.34330516143154,291.50627743606213,291.37582922135084,291.29723779769455,291.23853453127367,57.168617087526904,56.757930721977708,56.349102459485159,56.046334575591814,55.716255280126461,55.358655758535967 +1985,6,5,12,0,10,367,11.5,376.56421052203075,9.847327780653428,16.97719470095593,148.81299355255422,0.0,118.70013073412809,374.8280425700637,1.0,118.70013073412809,231.17415488809502,1.2913349879958487,27.800000000000001,4.5999999999999996,350.78466980869467,355.18590213838064,357.75954622460159,357.70008206260889,357.68519999058009,357.6470035135128,70.113532373700806,69.601139925287583,69.03153645482243,68.600575606920984,68.156067552990194,67.712870012100296 +1985,6,5,13,0,376,359,12.5,721.04439864667734,7.033037352610499,15.65923320395882,199.3598442897228,0.0,235.3961768408542,748.25430852982049,1.0,235.3961768408542,450.79091565163282,1.2952014618000058,30.0,5.2000000000000002,729.39312754527828,731.05842823250816,731.95418391142891,734.45278346557768,736.5507545943326,737.35072587696777,145.2324415152562,141.46401471778859,136.57544965532443,133.45481671111273,131.88867702200423,131.7719761085439 +1985,6,5,14,0,390,381,13.5,739.69528981859776,19.227696578307768,23.113137613524827,235.65352367998426,0.0,241.10271378236214,763.46714400469239,1.0,241.10271378236214,461.96098021954788,1.2674256271266806,30.600000000000001,5.2000000000000002,742.52520752451574,744.6039122914375,745.74493086206178,748.14968630542012,750.17264431082685,750.93962476282945,148.01789982052028,143.90715647956492,139.16429053570977,136.4175819133221,135.31042530107743,135.3865420797589 +1985,6,5,15,0,8,113,14.5,119.63919763166665,32.46074532975191,33.911563446150666,254.14526309524544,0.0,37.743951894169811,118.20759996150599,1.0,37.743951894169811,73.17523493209552,1.2003627953086764,25.600000000000001,4.5999999999999996,110.02325342980664,111.57442147959524,112.48320217054027,112.37420457250548,112.29633379342701,112.25398174185189,22.136201976374256,22.019098626550573,21.923578289914367,21.844630624316082,21.727027873264539,21.576540007613392 +1985,6,5,16,0,389,243,15.5,515.11421678296767,45.73646253870121,45.61130070932751,265.8109293604629,0.0,175.29986675052422,520.33293921587745,1.0,175.29986675052422,322.50779452031867,1.0723895498475005,27.199999999999999,4.5999999999999996,498.87980540715091,500.61748681840515,501.58731166120947,503.5544733994592,505.20196860112054,505.83215903853164,104.35789008118887,101.07046422701146,98.896562788137587,98.937000954141794,100.02399580300393,100.6893226163981 +1985,6,5,17,0,260,191,16.5,330.75496460558395,58.882859007188344,57.48508796723958,274.9219881081812,0.0,114.84101483526726,325.41511987960524,1.0,114.84101483526726,206.33579842075358,1.5,25.600000000000001,3.1000000000000001,302.71999872672723,304.52393642470054,305.55454191443494,306.58112858250433,307.44395018671753,307.77102228526871,65.610958418672212,64.878038340963485,65.085672001726351,66.247746784356863,67.356317312977538,67.164818094527249 +1985,6,5,18,0,4,55,17.5,56.420112020917905,71.77846300705676,69.20483923436063,283.1538908465482,0.0,17.890860389972271,55.352905576826707,1.0,17.890860389972271,34.386748983223882,1.5,25.0,2.6000000000000001,51.242545693512518,52.007805919861134,52.456401127286576,52.363343047718537,52.292816027814219,52.258888273147953,10.440532199883261,10.424868082478287,10.415838092267856,10.385663770970364,10.314865214154214,10.222405694539974 +1985,6,5,19,0,9,26,18.5,27.484684390555099,84.25808278541419,80.50480267967303,291.3708769256824,0.0,9.0756360342018123,26.596891101663967,1.0,9.0756360342018123,16.873081057929308,1.4277672699502237,25.0,5.2000000000000002,24.131079870100123,24.492852698694584,24.704650655917067,24.701785714097809,24.701924506684129,24.699601403169027,5.3177485060342056,5.3166451052190036,5.3059020130970413,5.288656244138874,5.2525870746711965,5.2015176966804715 +1985,6,5,20,0,0,3,19.5,3.0,92.3214909145113,87.72446420763232,297.3102834264901,1.0,0.94351212011975361,2.9772116282678973,0.0,0.94351212011975361,0.022788349224644844,1.5,21.699999999999999,5.7000000000000002,2.737983578286781,2.7797251944043939,2.8042083528142956,2.813505878582562,2.821290369913839,2.824270439415355,0.55349647197456253,0.55382448689011854,0.55290509953470657,0.55367938843383169,0.55325717775607197,0.54892782656680827 +1985,6,6,5,0,0,0,4.5,0.0,93.72184863493831,88.94955504919106,61.45373369052875,1.0,0.0,0.0,0.5763696249874615,0.0,0.0,1.5,21.100000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,6,6,6,0,0,33,5.5,33.0,87.38216314670979,83.30638768855378,66.37490912422903,0.0,10.598630780648605,32.151898281674207,1.0,10.598630780648605,20.106574807997127,1.4771396326325679,21.100000000000001,3.1000000000000001,29.6981051461463,30.150129068058156,30.415092760264592,30.358601342196444,30.315729415078057,30.295170317221551,6.1891383052169857,6.175145356383454,6.1660923681183837,6.1466953549288652,6.1054589491420588,6.0529919946789228 +1985,6,6,7,0,0,100,6.5,100.0,75.06009884918313,72.17373426039528,74.68058814553444,0.0,32.147649293275215,97.701818495467805,1.0,32.147649293275215,61.028315473074571,1.5,20.600000000000001,3.6000000000000001,89.90236975335597,91.220745791057979,91.992958524708556,91.854876008151606,91.751816310078851,91.700625556856437,18.82534503392122,18.800318564715429,18.756874544886507,18.670152928600661,18.516485969080474,18.340678876360098 +1985,6,6,8,0,3,164,7.5,165.4757356354115,62.25350776009334,60.53367855896412,82.82686849565387,0.0,52.856597183034587,162.5497583301302,1.0,52.856597183034587,101.11468440202422,1.5,21.699999999999999,5.2000000000000002,150.67167765786556,152.796201624649,154.04046594240933,153.85505710762368,153.71918744241833,153.6490097834546,30.727015801630642,30.648615458513852,30.653750785068315,30.663937503255472,30.563980362316961,30.317279896480152 +1985,6,6,9,0,3,301,8.5,302.98116296400764,49.160640561690016,48.67055575704585,91.57569550688852,0.0,96.736442514582663,299.17611805934428,1.0,96.736442514582663,185.56174240680835,1.0215047380242799,21.699999999999999,5.2000000000000002,279.10825860277458,282.73256913213129,284.85314340549189,284.65288365193919,284.51768047464105,284.43552940889123,56.603278273634579,56.144704472468099,55.882214168116235,55.80435262383844,55.683434297202496,55.395800738825265 +1985,6,6,10,0,86,382,9.5,450.79561219988926,35.90597529352035,36.874769509751516,102.29246849127271,0.0,145.9452916524281,452.00001604458407,1.0,145.9452916524281,278.52464536113814,1.1722449441226777,23.300000000000001,5.2000000000000002,428.06134308581255,431.93799230572483,434.18940016336558,434.69210125274742,435.14181411335608,435.2869456443434,86.921826487962477,85.3832475988889,84.032345758229994,83.48060590675351,83.301631364214444,83.166931899899723 +1985,6,6,11,0,8,303,10.5,310.20840969125993,22.629601843687745,25.703409839207556,118.25173665445371,0.0,98.135581805954487,307.86947845544296,1.0,98.135581805954487,190.1976143100093,1.2522128315340753,22.800000000000001,4.0999999999999996,287.58580577802115,291.34529840127925,293.54514385182398,293.41625373277412,293.33922762161075,293.2808801094771,57.814148064634267,57.40471251443433,57.007439964791232,56.715624509021332,56.392531186307693,56.032735081081285 +1985,6,6,12,0,6,358,11.5,363.7407915796361,9.828481189129105,16.90295369245622,148.5260610668859,0.0,114.63804846845825,361.81939058783365,1.0,114.63804846845825,223.27822932853488,1.2889846098992226,22.800000000000001,3.6000000000000001,338.29488076588592,342.60820449953604,345.13113513936077,345.06774412306277,345.04846724770556,345.00960375895039,67.662429817033356,67.195621513600884,66.678973757447025,66.285413017545736,65.86488593122283,65.429291973044229 +1985,6,6,13,0,9,412,12.5,420.67065089728493,6.930179417638056,15.548123704454309,199.32077803184822,0.0,133.36361407599276,419.19010313686078,1.0,133.36361407599276,258.38950259715011,1.2929604469262213,25.0,3.1000000000000001,392.67928868492402,397.50313829966444,400.32255691121713,400.3010992761553,400.32127471127808,400.29356577282738,78.884853601746187,78.277872979016095,77.57447986949488,77.046943460091939,76.52513923587405,76.030599352049478 +1985,6,6,14,0,532,392,13.5,881.66940219238495,19.15477571570515,23.010796905673377,235.76558530236235,0.0,287.71262384100248,909.36612516241257,1.0,287.71262384100248,549.25391270025921,1.2652230444465737,27.199999999999999,2.6000000000000001,887.46607807915882,889.62006826957361,890.78714737884695,893.15583854744796,895.16464056417146,895.91151994182201,176.79807121735396,171.66668321077464,165.83540106133938,162.36092392585761,160.89729610116353,161.03268066262785 +1985,6,6,15,0,313,381,14.5,641.04002402392621,32.39211154141488,33.81911840386828,254.25588605199223,0.0,207.83276644150885,652.88278346397021,1.0,207.83276644150885,399.28607549658904,1.198151756150071,26.699999999999999,2.1000000000000001,629.25983808090587,632.14046121355022,633.77458323396013,635.52543095906412,637.00692540804516,637.55956990121376,125.89063426241981,122.38101054385305,119.05776778972017,117.65156991685421,117.46117453755748,117.73634936043513 +1985,6,6,16,0,80,361,15.5,417.05025178708109,45.66646386397911,45.5225779007483,265.9040280216757,0.0,136.35270495053703,415.54425554333784,1.0,136.35270495053703,257.54941450814562,1.070181605310051,26.699999999999999,3.1000000000000001,391.81336346940066,395.497023671379,397.63836143251183,398.06233353769818,398.44540588236384,398.56570475231445,80.411692370739658,79.018135715025878,78.103267043504417,78.003651185771702,78.186725057267438,78.133849352614845 +1985,6,6,17,0,363,228,16.5,423.59312131616127,58.80933508899595,57.39637899229382,275.00036315002836,0.0,147.80186128360972,415.8010289797146,1.0,147.80186128360972,263.6921009463951,1.5,26.699999999999999,2.6000000000000001,387.76024157229301,389.8825587610728,391.09034852034085,392.20031668478629,393.13974186391829,393.48972658633431,84.30054070791806,83.283122667649053,83.569749954393103,85.095723168365396,86.550429348441199,86.324210583959427 +1985,6,6,18,0,247,140,17.5,228.05789985307919,71.7002055518026,69.11400021172653,283.22078534286675,0.0,84.646517277321877,214.59636073007999,1.0,84.646517277321877,142.28644915325467,1.5,26.100000000000001,2.1000000000000001,186.23300340581989,187.66323832141046,188.47910202549559,189.19994333261394,189.80360821334182,190.03387155115692,48.810787733009732,50.039495876526999,50.703063751426555,50.809983468528301,50.15229133918821,48.868970361517164 +1985,6,6,19,0,55,57,18.5,66.161893299368785,84.1746584993968,80.41097488724311,291.42801276284604,0.0,25.744889740686634,59.498213356429815,1.0,25.744889740686634,41.115744421066651,1.4468039268673323,23.899999999999999,2.1000000000000001,49.550249561155965,50.234666386855388,50.631556902122355,50.792380727201589,50.929510256009479,50.979695482337817,15.178383156296002,15.274380642970572,15.236952365021004,15.144185370574345,14.968513149505988,14.739126885031261 +1985,6,6,20,0,0,7,19.5,7.0,92.2929387684721,87.68098382332178,297.4036977989508,1.0,2.2015282802794256,6.9468271326250939,0.0,2.2015282802794256,0.053172814857504636,1.5,22.199999999999999,2.1000000000000001,6.3886283493358205,6.4860254536102513,6.5431528232333545,6.5648470500259766,6.583010863132289,6.5899643586358234,1.2914917679406452,1.2922571360769435,1.2901118989143154,1.291918573012274,1.290933414764168,1.2808315953225538 +1985,6,7,5,0,0,1,4.5,1.0,93.72559307418074,88.93533053084683,61.337190526142656,1.0,0.31450404003991794,0.99240387608929914,0.5710646541262447,0.31450404003991794,0.0075961164082149479,1.5,16.699999999999999,1.5,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,6,7,6,0,0,25,5.5,25.0,87.37209590368906,83.27941829488458,66.27018183765486,0.0,7.8626010009979517,24.576025417605226,1.0,7.8626010009979517,15.220351873042439,1.4766972000785552,17.800000000000001,2.1000000000000001,22.816529819056488,23.164376620036599,23.368402940119111,23.32165987133115,23.285946033961721,23.269067787829108,4.5914934841646939,4.5777850315600723,4.570097723898165,4.5555673431833048,4.5262080036247694,4.4900283341954061 +1985,6,7,7,0,0,99,6.5,99.0,75.05891814552339,72.15397487417466,74.56977695538967,0.0,31.806285399762785,96.73997388636829,1.0,31.806285399762785,60.416063670660009,1.5,18.899999999999999,0.0,89.039079302418301,90.346354063958955,91.112096609399316,90.974784871660844,90.872255847875365,90.821374845864383,18.624121489484608,18.598598921307786,18.555951595420744,18.471045450546711,18.320111708556961,18.146950058446393 +1985,6,7,8,0,10,185,7.5,189.92138595408713,62.25951298465126,60.5187575754716,82.70505878662107,0.0,61.071227872414497,186.36542681535411,1.0,61.071227872414497,116.11246876462573,1.5,18.899999999999999,0.0,172.74180797775867,175.0914094698374,176.46649075505266,176.2714820771314,176.13001005959873,176.0553927560853,35.426439766127316,35.336778798236971,35.370620665845252,35.427948733526485,35.351153104184,35.064365196949666 +1985,6,7,9,0,5,304,8.5,307.30281607401184,49.17192266305975,48.65715909169372,91.4345103395635,0.0,98.174214871451838,303.44268169470155,1.0,98.174214871451838,188.22039341752634,1.018201594370727,21.699999999999999,0.0,283.170597113822,286.82293422355292,288.95966320067112,288.7598045843784,288.62535382639692,288.54310182846598,57.447069150695405,56.968739544740821,56.69572500844103,56.618759113231931,56.503146554793126,56.217438604622927 +1985,6,7,10,0,3,296,9.5,298.40038257638514,35.92010444657932,36.85771813517156,102.1170574236175,0.0,94.351983062864264,295.44289962547066,1.0,94.351983062864264,182.81303677904666,1.169495995503468,21.699999999999999,0.0,275.71925895100452,279.38217865615155,281.52621976701846,281.35293553676462,281.23883530908643,281.16611761997478,55.445429233070016,55.036688820940455,54.707240471773588,54.502316844531151,54.252512132633676,53.929101311293806 +1985,6,7,11,0,5,365,10.5,369.50643245914,22.641540969353738,25.67231049518645,118.01707834918781,0.0,116.99718578041586,367.12297874165762,1.0,116.99718578041586,226.69428453113531,1.2498040516323963,22.199999999999999,2.1000000000000001,343.33807724206093,347.7168120435382,350.27792720768952,350.16977605868703,350.11492022062487,350.06058584572037,69.009928133131979,68.474835506947116,67.947710356618032,67.574259035317553,67.189445767892252,66.776759465854596 +1985,6,7,12,0,1,263,11.5,263.95714016929753,9.81517280540831,16.835512410831647,148.24367508913167,0.0,83.127343823636153,261.76736040653805,1.0,83.127343823636153,161.86944143640838,1.2867805057633563,21.699999999999999,3.6000000000000001,243.83827685565208,247.16290970274699,249.1096796952649,249.01544913296394,248.9621499946183,248.91784972954125,48.896567701419855,48.642243492820953,48.372683802722698,48.153444609733434,47.869900671755467,47.53026426737118 +1985,6,7,13,0,2,302,12.5,303.92779109282077,6.831479634654843,15.443062121033403,199.2701923826352,0.0,95.742916390641966,301.79978013908317,1.0,95.742916390641966,186.47598303266423,1.2908680556206904,21.100000000000001,2.1000000000000001,281.51187363573808,285.25363090932598,287.44375811600776,287.36545373725716,287.3286478562311,287.28773555368122,56.393019951146357,56.063892479401595,55.706773346659837,55.426381638525967,55.092138875759026,54.711521383240203 +1985,6,7,14,0,2,284,13.5,285.84220215704971,19.083287095038315,22.912413383580187,235.86452606066098,0.0,90.329342265800662,283.4545869677832,1.0,90.329342265800662,175.24702664504807,1.2631771325257986,20.600000000000001,0.0,264.29017240060193,267.84936571606312,269.93299662790525,269.81401501682552,269.74272401422621,269.68896987338292,53.154425647583899,52.838608331148613,52.520969288762437,52.274548832653828,51.973053988604292,51.617919869405256 +1985,6,7,15,0,2,252,14.5,253.6633350044925,32.32445524195117,33.7295862307628,254.3560695548367,0.0,80.110105794394627,251.00261059366517,1.0,80.110105794394627,155.35101478321155,1.1961124629152788,21.100000000000001,2.6000000000000001,233.86041110617029,237.06772277294718,238.94598218450085,238.78315285149634,238.67345111788845,238.60651258957148,47.048912318432166,46.761752519535619,46.517025946725425,46.340488734435247,46.104654898552312,45.801848853586868 +1985,6,7,16,0,1,193,15.5,193.70170049641553,45.59747893222492,45.43640521713,265.9886521373101,0.0,61.341959111939246,191.10404307282229,1.0,61.341959111939246,118.46290690028937,1.068169502520877,20.0,2.1000000000000001,177.69138427560324,180.21417928684031,181.69233340133547,181.51219750173811,181.38321731720831,181.31337742277663,35.899790392715005,35.709974626734116,35.586454739146141,35.499695793931629,35.344441048285006,35.108973034373626 +1985,6,7,17,0,1,235,16.5,235.54009035095623,58.73706204389107,57.31021036137711,275.07148673354845,0.0,75.575815595481885,231.5861556202521,1.0,75.575815595481885,144.10631110714496,1.5,20.600000000000001,3.1000000000000001,215.08987252200006,217.97978071232799,219.67102570601674,219.46489317446387,219.31855895233986,219.23792448921441,43.933773235620002,43.729126754610199,43.699525176906214,43.751216240210653,43.683203189120022,43.382092269572098 +1985,6,7,18,0,1,139,17.5,139.35794579290345,71.62356579073098,69.02590638697775,283.2811885792571,0.0,45.050595657022434,136.04503514871121,1.0,45.050595657022434,85.126125643694053,1.5,20.0,2.1000000000000001,125.12755554586231,126.90173721695821,127.94018938162529,127.7731440479662,127.64983332493925,127.58705546799813,26.246872254898651,26.296497902387767,26.323027781242175,26.262147214991924,26.058503928299977,25.766664367736858 +1985,6,7,19,0,1,57,18.5,57.168141329419853,84.09330990888701,80.32023042795973,291.4791454092843,0.0,18.757519339603114,55.22521309914147,1.0,18.757519339603114,34.863956489033427,1.4653339789336775,19.399999999999999,1.5,50.419041323935964,51.175952776436915,51.619177003977924,51.531491451069698,51.465566733204447,51.433313862837934,10.969376822644714,10.958116346086859,10.939850972908935,10.894723154148316,10.806251613442905,10.700738956237601 +1985,6,7,20,0,0,9,19.5,9.0,92.26472536094627,87.6389945240454,297.48983605468237,1.0,2.8305363603592624,8.9316348848036924,0.0,2.8305363603592624,0.068365047673934531,1.5,19.399999999999999,2.1000000000000001,8.2139507348603367,8.3391755832131746,8.4126250584428792,8.4405176357476801,8.4638711097415129,8.4728113182460572,1.6604894159236878,1.6614734606703563,1.6587152986041194,1.6610381653014956,1.6597715332682148,1.6467834797004244 +1985,6,8,5,0,0,1,4.5,1.0,93.73043467865888,88.92324997164974,61.227214878304366,1.0,0.31450404003991794,0.99240387608929914,0.5667604158999523,0.31450404003991794,0.0075961164082149479,1.5,18.300000000000001,3.6000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,6,8,6,0,4,49,5.5,49.469643769718203,87.36607027712917,83.25729585638324,66.17007136212038,0.0,17.227194378301878,46.384636918123157,1.0,17.227194378301878,30.180764543180359,1.4740968410322433,18.899999999999999,3.1000000000000001,41.966776892447356,42.600977298912198,42.971696765478654,42.89886688019039,42.84451545503736,42.817499638830341,10.055957252804443,10.05732095896283,10.050405806683743,10.016654736717662,9.9356015421446315,9.8282673327410102 +1985,6,8,7,0,3,88,6.5,88.920134703210138,75.06142364619932,72.13883440657538,74.46412902237529,0.0,28.504386158003889,86.941625880983892,1.0,28.504386158003889,54.250844150347689,1.5,21.100000000000001,4.5999999999999996,80.095085829199888,81.275905716192511,81.967679217849849,81.839730053520782,81.74388186908152,81.696639308155341,16.686018640695323,16.660358675946188,16.623209394601247,16.549524020969255,16.417221921756035,16.264521512365874 +1985,6,8,8,0,136,188,7.5,254.95249005216493,62.268876271076415,60.50828368944862,82.58911969592606,0.0,87.221735571842004,249.33027879071489,1.0,87.221735571842004,158.29666955690092,1.5,22.800000000000001,4.0999999999999996,229.50772786320312,231.51669122663276,232.67898262672159,233.22929862792898,233.69778215470646,233.86971097866538,49.720867924577831,49.681765946408397,50.087824982914157,50.851872509184616,51.359223698211423,50.927727996911074 +1985,6,8,9,0,9,299,8.5,304.94612527689281,49.18633407846159,48.64820115328504,91.30019762217707,0.0,97.46650250102546,301.09515741971052,1.0,97.46650250102546,186.77118756139626,1.0150659643525557,22.800000000000001,4.5999999999999996,281.05704414183776,284.66291617248601,286.77227051033265,286.57119335283869,286.435579657544,286.35301667992275,57.034009690284101,56.54834434311519,56.272135926658088,56.196430810141067,56.086085941117453,55.807265085165938 +1985,6,8,10,0,191,369,9.5,521.84904532739085,35.937294948716044,36.84536978752197,101.94993286483354,0.0,168.17455088559325,526.90574563631606,1.0,168.17455088559325,324.00269379641475,1.1669041952150314,23.300000000000001,4.0999999999999996,503.34213690357171,506.67172928616401,508.58921107739866,509.68433356065361,510.62150531966131,510.96120246671251,100.82601668748597,98.433959959723879,96.362280075388568,95.633245907800031,95.616919910293277,95.732629249487118 +1985,6,8,11,0,246,409,10.5,630.76414069061138,22.656853901271706,25.646673600991612,117.79207601031067,0.0,204.47858657708576,645.96291969999925,1.0,204.47858657708576,393.37123100983342,1.2475448784133696,25.0,5.2000000000000002,622.91275607791283,625.76997322629211,627.39002578506836,629.28507876690321,630.88242935288429,631.4847333320738,124.50080526951203,121.38227955493521,117.97818685453073,116.13500097487493,115.47416295777283,115.5076238494911 +1985,6,8,12,0,515,388,11.5,881.0848479075222,9.807198127539092,16.77484390150043,147.9664936006833,0.0,280.43491482141934,911.96599320129576,1.0,280.43491482141934,549.1513751796823,1.2847231342282512,26.699999999999999,4.5999999999999996,891.35837682301008,893.24686560357532,894.25732054423725,896.7090155723572,898.78319445521106,899.55960725416446,172.96647226125131,168.18554039199518,162.29913821296611,158.50821098534405,156.63894896511067,156.61969178734017 +1985,6,8,13,0,231,520,12.5,742.76577137004801,6.736932304200634,15.344109451151086,199.2081437088051,0.0,235.67155160170771,760.04309452239681,1.0,235.67155160170771,461.23720126980373,1.2889245486117602,27.800000000000001,3.6000000000000001,732.37263887400377,736.26499483852956,738.48762630684769,740.04076469638335,741.37034139196487,741.85352668780217,143.4073121457061,140.38256761268011,136.66589832268775,134.26418222295715,132.95575911134821,132.66129350713678 +1985,6,8,14,0,577,346,13.5,877.84461990094189,19.013236544232026,22.818037744451598,235.95020810482052,0.0,286.7926995992778,906.1544248210248,1.0,286.7926995992778,547.0894203216136,1.2612878836461774,28.300000000000001,2.6000000000000001,885.79404938415223,887.62026850198959,888.59248158244952,891.01567920932246,893.06871162395271,893.83389014890417,176.48889945429585,171.22526287703198,165.24419982815368,161.68111215171064,160.19751603409983,160.37669900802376 +1985,6,8,15,0,195,336,14.5,498.3385705747387,32.2578127827116,33.64302072087259,254.44574154846939,0.0,160.71121582288802,504.63684311231651,1.0,160.71121582288802,309.5385645855302,1.1942444861869015,28.899999999999999,5.7000000000000002,482.95152482725075,486.02158313607697,487.78679909927644,488.87526817277489,489.80497298380737,490.14373034810194,96.766555090854794,94.49025424680832,92.336854650274915,91.40835595723064,91.210664349628928,91.259223322551179 +1985,6,8,16,0,249,266,15.5,440.98196937881471,45.5295611984239,45.35284394054568,266.0647656489772,0.0,148.15582415577438,443.52792347542413,1.0,148.15582415577438,275.14932295429429,1.0663520416433412,27.800000000000001,4.0999999999999996,422.76967766056879,425.03975628510517,426.33608125047772,427.71699719209857,428.88039694188399,429.31896576858401,87.954008613228623,85.588518706674662,84.017960048149959,84.023730492316574,84.73524643395875,85.101605853277206 +1985,6,8,17,0,385,214,16.5,422.40711367638562,58.66610461040692,57.22665002504932,275.1353429235553,0.0,147.83582099890654,414.2479478580259,1.0,147.83582099890654,262.89526026512584,1.5,27.800000000000001,4.5999999999999996,386.75893365698147,388.7594777075231,389.89480880910219,390.97648861786337,391.89303266586421,392.23349957944367,84.250130988095989,83.200383684246304,83.498994365972976,85.061002092847701,86.554201000388147,86.34042659463698 +1985,6,8,18,0,193,151,17.5,220.35167835607439,71.54861660499661,68.94063085018092,283.33509907580856,0.0,79.762355655533995,208.51771936711646,1.0,79.762355655533995,136.60310931765213,1.5,27.199999999999999,3.1000000000000001,183.58769188685238,185.24259733251841,186.1946243815853,186.59265740751513,186.93418362067439,187.05660688155217,46.056595183510971,47.016024006535801,47.542224976887546,47.587963794419998,46.988857517939792,45.898117394409368 +1985,6,8,19,0,47,64,18.5,71.973455623327283,84.01411674947092,80.23264679558187,291.5242864914821,0.0,26.677093453600399,65.866533078948422,1.0,26.677093453600399,44.257995056291854,1.4833660084482663,25.600000000000001,2.1000000000000001,56.620142186364056,57.421469365979313,57.887653532966134,57.899482979117948,57.91619883172725,57.916230456169743,15.655325230592917,15.73233238735568,15.714412171477903,15.624055051858456,15.44088633685814,15.21417162584433 +1985,6,8,20,0,0,7,19.5,7.0,92.23689237325121,87.5985382857672,297.56868105263806,1.0,2.2015282802794256,6.9468271326250939,0.0,2.2015282802794256,0.053172814857504636,0.9643800219865852,23.300000000000001,2.1000000000000001,6.3886283493358205,6.4860254536102513,6.5431528232333545,6.5648470500259766,6.583010863132289,6.5899643586358234,1.2914917679406452,1.2922571360769435,1.2901118989143154,1.291918573012274,1.290933414764168,1.2808315953225538 +1985,6,9,5,0,2,0,4.5,0.037930469215378272,93.73636056060326,88.91330694921551,61.123871017365936,1.0,0.00049309609979991665,0.0,0.5634527164762119,0.00049309609979991665,0.13033105886882682,1.5,18.899999999999999,1.5,7.3890218435534939e-07,7.3890218435534939e-07,5.3590238058947625e-07,3.7095756686346591e-07,3.7095756686346596e-07,2.4157844139532143e-07,0.00028776802820159247,0.00028743961595993704,0.00028664923419608878,0.026144818960348974,0.042039689410214728,0.042035451225399811 +1985,6,9,6,0,47,28,5.5,33.532419086081106,87.3640377487331,83.23998121532071,66.0746528985333,0.0,13.975355437944398,28.659059888837898,1.0,13.975355437944398,20.860766148277733,1.4693872227228395,20.0,1.5,24.063557223738822,24.418921973571642,24.624758558624023,24.714191080067106,24.790282539692477,24.818273440948481,8.1714886738745545,8.2264335109308178,8.2331943114193304,8.222303808232013,8.1589880928055898,8.0371032803149181 +1985,6,9,7,0,394,97,6.5,217.91355959186973,75.06755274259783,72.12826110735995,74.36372540659521,0.0,88.814492514150061,195.99909421249913,1.0,88.814492514150061,136.6198387811192,1.5,22.199999999999999,2.6000000000000001,158.90115915062606,159.80969796963569,160.31151135402797,161.21230031841827,161.9665397757376,162.25585837825398,53.475004491262553,54.12252403675528,53.611962026890005,52.587372606219738,51.25242523430628,50.076088295673046 +1985,6,9,8,0,540,150,7.5,415.89071786726288,62.28152252291173,60.50219487904921,82.47914399490715,0.0,151.5934916800467,402.32979086964406,1.0,151.5934916800467,259.8101127457478,1.5,23.899999999999999,2.1000000000000001,369.97911118778967,371.22052599012409,371.90125419171454,373.28086749507645,374.43676694266003,374.87798662654643,84.791556937718994,84.744932446763755,86.048187882271776,88.353496363542064,90.066206767871478,89.278866805926228 +1985,6,9,9,0,261,314,8.5,486.45333172429258,49.203785803870744,48.643610086960194,91.17287422138494,0.0,165.85084852012227,486.4225975749232,1.0,165.85084852012227,303.1971047547097,1.0120989196769272,26.100000000000001,2.1000000000000001,461.38161220646089,464.07701299746361,465.62092891764394,467.03628424320596,468.23201442911375,468.68005363121904,97.47642499497924,95.14878168983752,93.875916405005995,94.311808630135531,95.358102514411101,95.675863476021362 +1985,6,9,10,0,505,279,9.5,683.17050589778228,35.95743942483027,36.83764372987152,101.79126720077363,0.0,222.8166097537767,697.00125664137374,1.0,222.8166097537767,426.58686266059499,1.164470373892572,27.800000000000001,3.1000000000000001,676.47046222580934,678.25413921768018,679.23068908632172,681.42100093156398,683.26440394030806,683.96099458371532,135.15782639800267,130.56744687371301,126.60328489324294,125.26869023646078,125.51328471434724,126.23476508527821 +1985,6,9,11,0,456,291,10.5,702.14474409382296,22.675401818110405,25.626417106153813,117.57705438079952,0.0,229.30303103721192,724.3437316637004,1.0,229.30303103721192,438.78402455960457,1.2454359425436627,30.600000000000001,5.7000000000000002,706.26330764127579,707.80942944241417,708.6387402570997,711.00191814417531,712.98793066942198,713.7424163316349,140.87927941569552,136.56345583258965,131.88761180509337,129.32757398195511,128.49019319301917,128.78824976696515 +1985,6,9,12,0,575,309,11.5,859.68757792761983,9.80435194606029,16.72091646929891,147.69517164465256,0.0,273.82914215147883,891.33152423165507,1.0,273.82914215147883,535.51327601176752,1.2828129374333095,31.100000000000001,5.2000000000000002,874.85285018342597,876.0582218417203,876.66438786341314,878.92553172206522,880.84410363990503,881.55735265250007,169.38622814006303,164.40663673842587,158.31805343593047,154.3530407926167,152.3982454340148,152.4563096928344 +1985,6,9,13,0,637,343,12.5,957.56564664510802,6.646539464817058,15.251326283162397,199.13472484642543,0.0,304.9775398870637,991.84429986490477,1.0,304.9775398870637,595.24414143821548,1.2871301617302984,31.699999999999999,5.7000000000000002,974.28584323865539,975.71530625052696,976.44224499812435,978.52668438975775,980.31204507191342,980.96076382312856,188.51050084146439,182.94704332749646,176.21220316223702,171.75568845357338,169.50215340504195,169.55598329563472 +1985,6,9,14,0,486,304,13.5,752.26271021533842,18.944635745468133,22.72772334145363,236.02251021710316,0.0,245.78393920650925,777.3476941309666,1.0,245.78393920650925,469.75976083274827,1.2595552597028974,31.699999999999999,7.2000000000000002,759.06278997827667,760.60934792677017,761.43150692113818,763.83761254283252,765.863824532899,766.63018932908403,151.32239294561745,146.84595005846816,141.71046724904588,138.70614590334949,137.50104462241848,137.6574268972779 +1985,6,9,15,0,530,243,14.5,684.65557906462936,32.19222434405657,33.559478099574925,254.5248383063449,0.0,223.84566496954722,702.55318515585725,1.0,223.84566496954722,428.07247560784828,1.1925473643645057,32.200000000000003,7.7000000000000002,684.92066135472237,686.18052511693543,686.84353946817851,689.21535463716305,691.20672604586593,691.96399634178965,136.84513207816948,132.09557403625334,127.60564516819498,125.72769322250051,125.61335911851999,126.26882758406383 +1985,6,9,16,0,398,224,15.5,504.08951998450738,45.462766731344566,45.27195713089951,266.13233790829236,0.0,171.86974509764929,508.92301053905487,1.0,171.86974509764929,315.65294998347957,1.0647279976616302,31.100000000000001,5.2000000000000002,488.59934762999762,490.16844403903127,491.03924872782699,492.97598992450958,494.59794170374505,495.21842210005548,102.35037590381218,99.052749403249152,96.876587459258815,96.914379124465384,98.006732848192826,98.691912537652939 +1985,6,9,17,0,135,255,16.5,328.23798603815499,58.59652924403823,57.14576705681952,275.1919199170186,0.0,110.96229083282263,323.03650155871264,1.0,110.96229083282263,203.6961058064617,1.5,31.100000000000001,5.7000000000000002,300.22951077834682,302.79698778858722,304.28328196265727,304.95469241152159,305.52875532601809,305.73725280253524,63.778895283154931,63.219267567402852,63.339416092240015,64.134957335604199,64.842051979925927,64.572331266794635 +1985,6,9,18,0,360,122,17.5,251.84356814529346,71.47543182041045,68.85824718570824,283.38251878655126,0.0,96.907500900520475,234.38602753759261,1.0,96.907500900520475,157.97249368060088,1.5,30.600000000000001,5.7000000000000002,200.38546773393193,201.50185136880759,202.12510949552188,203.20181331540692,204.09584708559549,204.4441100092717,55.73737917209661,57.450682858796206,58.378363484844627,58.555981908211365,57.72111292170338,56.050682427706661 +1985,6,9,19,0,72,56,18.5,68.31909746084537,83.93715889680892,80.14830128887291,291.5634505872804,0.0,27.042135142183778,60.741592123094897,1.0,27.042135142183778,42.445047073586132,1.5,29.399999999999999,4.0999999999999996,49.961386341128701,50.636867984026061,51.027813684061826,51.188621962266595,51.326005003763527,51.376047084123876,15.893793130606323,16.03773538302222,16.031148942505322,15.947666160912135,15.753614309404812,15.483435266205733 +1985,6,9,20,0,11,9,19.5,9.4683707105604302,92.20948104826878,87.5596563309708,297.6402189936149,1.0,3.0215379361258052,8.9316348848036924,0.0,3.0215379361258052,0.49244953597324903,1.1144561087642355,27.800000000000001,4.0999999999999996,8.2142332884617346,8.3394596419540896,8.4128360865653118,8.440659015441911,8.4640187340638438,8.4729019069469285,1.8635431907747086,1.8599595010085614,1.8534366669742321,1.854047871400051,1.8526696317408635,1.840351564843137 +1985,6,10,5,0,3,2,4.5,2.0573048021468652,93.74335536317778,88.90549233112334,61.02722087207748,1.0,0.62975304250774555,1.9848077521785983,0.5611342298949801,0.62975304250774555,0.2110542878513601,1.5,23.300000000000001,3.1000000000000001,1.8253235018472109,1.8531512459256196,1.869473044843065,1.8756711461590132,1.8808608070465309,1.8828473245834374,0.36943240374170738,0.36965058419163216,0.36903646519073147,0.40934523500140801,0.43211237172436001,0.42921973461010382 +1985,6,10,6,0,213,36,5.5,61.118778085970064,87.3659472677613,83.22743248371947,65.98400024518578,0.0,34.095383382598158,40.856767263583166,1.0,34.095383382598158,38.622633927218466,1.4626090802143432,23.899999999999999,4.0999999999999996,27.404639503357341,27.772742636772687,27.977376484375657,28.339066656137653,28.640679180356649,28.757273408706382,19.924410499211987,20.184615590826603,20.239826745306413,20.21054590891114,19.996712282566115,19.589950415159166 +1985,6,10,7,0,422,94,6.5,223.54888093978741,75.07724101066546,72.1222010535605,74.26864492234225,0.0,91.638164681573429,200.2696216372716,1.0,91.638164681573429,140.06053956773093,1.4983100912012746,25.0,2.6000000000000001,161.84272361244049,162.71958645262092,163.20120925700297,164.09043313853957,164.83611346579079,165.12113458000189,55.195790161321575,55.87086999101831,55.335566198265511,54.249521345627116,52.837694737364664,51.608511551771549 +1985,6,10,8,0,494,144,7.5,387.25403227303502,62.2973753900879,60.500427285484875,82.37522108351082,0.0,141.02314486494879,374.75641502457097,1.0,141.02314486494879,242.13248323250883,1.5,27.800000000000001,3.6000000000000001,344.3808620368103,345.56570994213024,346.21656728069769,347.57736560832132,348.71488510301629,349.15150832084623,78.776455713909058,78.931416023055831,80.250285310577539,82.431744385589369,83.962410040398552,83.151100479867509 +1985,6,10,9,0,225,271,8.5,419.66754238402206,49.224188283649724,48.64331252620768,91.05265184140781,0.0,140.50482339994804,419.88696403341856,1.0,140.50482339994804,261.93020197312637,1.0093015868295119,30.0,4.0999999999999996,397.77567484335793,400.1354041598471,401.48898195602584,402.83914565617408,403.97446459380831,404.40485471508919,82.498176915767615,80.586584631545932,79.571882477935119,80.024098710429442,80.972254338001378,81.239760459757989 +1985,6,10,10,0,172,388,9.5,525.66380702826473,35.980430918209365,36.83445789957849,101.64122428911436,0.0,172.03687778583753,530.39749413719244,1.0,172.03687778583753,326.40077296479581,1.1621953779363068,31.699999999999999,4.5999999999999996,506.12921097507564,509.58449882149307,511.57540177210456,512.69185249437965,513.64745604561062,513.99370477403681,102.99289608103285,100.58294784329507,98.549280844222437,97.85862018526079,97.902352438841277,98.014032314892304 +1985,6,10,11,0,175,402,10.5,559.80556870948112,22.697047795885382,25.61145707596212,117.37232331011643,0.0,180.56817498552505,569.43420510454109,1.0,180.56817498552505,347.90767105722665,1.2434778694619038,32.799999999999997,3.1000000000000001,545.62143434249504,549.03756875675231,551.00003103596032,552.2883048948454,553.38591735651005,553.78892479678166,109.21847254516463,106.87156565795698,104.32787065420759,102.92239678212749,102.33725704430587,102.22626547728782 +1985,6,10,12,0,640,268,11.5,881.09077078400571,9.806429717240922,16.67369386293557,147.4303581179088,0.0,288.81512267478473,914.45705330860756,1.0,288.81512267478473,548.93146904355694,1.281050339768284,33.899999999999999,4.0999999999999996,899.24258157113604,900.14271973110567,900.56155471912268,902.89363673281309,904.87488318507462,905.6091200770253,178.70339739012209,173.21380484952763,166.66231153877948,162.48482966755884,160.52714239257725,160.67587097872888 +1985,6,10,13,0,272,381,12.5,643.5282840217069,6.56031168188946,15.164772628548238,199.05006603485242,0.0,204.49063674922829,663.0614777134241,1.0,204.49063674922829,401.33303963515363,1.2854851051737333,33.899999999999999,4.0999999999999996,642.34500304159292,644.76416483452022,646.12184154957288,648.03812857970479,649.65340087722871,650.26317471586026,125.30453412070445,122.31457909681947,118.57841314134934,116.22898635438183,115.05901483550392,114.91947098198683 +1985,6,10,14,0,695,235,13.5,876.4373575093332,18.87750235036687,22.641526155759568,236.08132857513544,0.0,287.33064669909032,907.05881088033902,1.0,287.33064669909032,546.12163783381766,1.2579791920820005,33.299999999999997,3.6000000000000001,891.86577444773229,892.72109191973539,893.11477092378266,895.4647267127981,897.4597975447748,898.199810521769,177.55264982423128,171.79251945549584,165.28877718561262,161.37123945136932,159.75462635806522,160.06823053559415 +1985,6,10,15,0,554,248,14.5,710.08469552717702,32.127733927891505,33.479016977880924,254.5933047044455,0.0,238.25108966237016,728.26296540424391,1.0,238.25108966237016,443.71591459615001,1.1910206043523535,33.299999999999997,3.6000000000000001,710.27868211853331,711.58027606446979,712.26276660462872,714.6298680192856,716.62216364169592,717.37530009278578,145.37838662326004,140.30431108899907,135.62933759688352,133.72740080496314,133.69124103260677,134.41191886486939 +1985,6,10,16,0,644,178,15.5,631.8338005360099,45.397154164221725,45.193809560139215,266.1913438053824,0.0,212.19709470176375,637.81160445326839,1.0,212.19709470176375,394.89397846573758,1.0632961222193276,33.299999999999997,4.0999999999999996,617.2001357164803,618.23922081848877,618.78073673475694,620.90919906132683,622.69990708178841,623.37716806543551,126.33458165668824,121.70280927384265,118.79906860495828,118.90924815710407,120.46278151686074,121.55406968895221 +1985,6,10,17,0,467,148,16.5,401.88394027944707,58.528404046594204,57.0676315751864,275.2412101073304,0.0,143.5219084724958,393.9833328885652,1.0,143.5219084724958,251.38167951051707,1.5,33.299999999999997,2.6000000000000001,368.29132258331481,369.45256317698926,370.09017087843756,371.53511497332204,372.74470732072655,373.20772918316584,81.443431504346449,80.295700170269825,80.661838797144952,82.503680724999541,84.317099052315086,84.189854298041709 +1985,6,10,18,0,440,105,17.5,264.26637589594213,71.40408612506563,68.7788293880411,283.42345312461026,0.0,103.40384949188342,243.95590569692152,1.0,103.40384949188342,165.47917499561962,1.5,31.699999999999999,2.1000000000000001,207.6221339199999,208.56209928488096,209.07726644434558,210.09717538323525,210.9463858895125,211.27479041609155,59.362310524188246,61.305211511351203,62.376043035698679,62.54992608626398,61.567536013362741,59.687883464665759 +1985,6,10,19,0,231,59,18.5,98.845604928423597,83.86251628335955,80.06727093022216,291.596655221909,0.0,46.79485496978414,78.902110010195827,1.0,46.79485496978414,62.326152573521902,1.5,29.399999999999999,2.6000000000000001,55.382808561269847,55.980276715426243,56.315878387496618,56.855235795933297,57.304116162082124,57.478536896657779,27.550229560086262,28.016675269012001,28.055822731962962,27.88172072079831,27.437173826245505,26.801088177089444 +1985,6,10,20,0,1,2,19.5,2.0432289919273461,92.18253218938874,87.52238913018805,297.70443945127926,1.0,0.64706353313813059,1.9848077521785983,0.0,0.64706353313813059,0.053275367129633946,1.2554504840407787,28.300000000000001,3.1000000000000001,1.8253492141830725,1.8531772057101192,1.8694920661871004,1.8756838607820139,1.8808740840715008,1.8828556334390616,0.38790596806883509,0.38783685750910141,0.38683612042529941,0.38702621906553408,0.38652519136835856,0.38359289125226875 +1985,6,11,5,0,1,1,4.5,1.0192010301641246,93.75140138604485,88.89979439834302,60.937323931667926,1.0,0.31475365343205147,0.99240387608929914,0.5597946376327058,0.31475365343205147,0.073023597319992556,1.5,20.600000000000001,1.5,0.91266156680675303,0.9265754388459575,0.93473638888740374,0.93783548064570288,0.94043031108946173,0.94142360209611609,0.18464449692159704,0.18475366897908008,0.18444680642296923,0.19818958517597801,0.20559249289193382,0.20414723038967408 +1985,6,11,6,0,40,30,5.5,34.722567773435557,87.37174534409594,83.21960512986281,65.8981857019912,0.0,14.14896048039833,30.108775672226621,1.0,14.14896048039833,21.604438149881332,1.453795683847928,21.100000000000001,1.5,25.526608572252375,25.90503947666695,26.124560105004363,26.218819072761914,26.298868991921758,26.328449982674083,8.2800324228373743,8.3307608715292396,8.3338119910456232,8.3215851896030628,8.2604220432670239,8.1411600338556269 +1985,6,11,7,0,3,103,6.5,103.9210434788473,75.0904223110894,72.1205982426267,74.178964038859,0.0,33.576349204291731,101.33481593195589,1.0,33.576349204291731,63.431515485605317,1.4929245076585507,21.699999999999999,2.1000000000000001,93.073526779581229,94.425990519419372,95.217897320031824,95.077297232799836,94.972600084317563,94.920347478477254,19.677688358441085,19.65395539414439,19.602473391074458,19.50188718015038,19.331534847767621,19.143236481340644 +1985,6,11,8,0,7,148,7.5,151.4466549173863,62.31635739371126,60.502915331436746,82.27743688442365,0.0,48.367542898762458,148.72096138546294,1.0,48.367542898762458,92.522854589307798,1.5,22.800000000000001,2.1000000000000001,137.8656386756964,139.81176295831929,140.95155392987436,140.77512568480788,140.6453003243183,140.57881781696148,28.11248928405498,28.047073713469363,28.055617005494739,28.06435271116095,27.968168681299481,27.739404571530326 +1985,6,11,9,0,10,279,8.5,285.60693260838582,49.24745156719402,48.64723374483939,90.93963689902652,0.0,91.19246680974419,281.8914321726856,1.0,91.19246680974419,174.87974249631242,1.0066751439485493,23.300000000000001,1.5,263.0159876250853,266.4310860173282,268.42928215025307,268.22593092387848,268.08666362697846,268.00436926301114,53.323226866639949,52.894960413916934,52.664900140211167,52.608639285627397,52.502116548019814,52.229279047252824 +1985,6,11,10,0,9,312,9.5,319.20321902794188,36.006163099031816,36.835729112211354,101.49995925516335,0.0,101.46522797775252,316.21268221767968,1.0,101.46522797775252,195.60706569748316,1.160080067149562,25.600000000000001,2.1000000000000001,295.53163780922591,299.35538199405073,301.59243951467215,301.42067936690978,301.30993301390447,301.23655496382588,59.672111717946173,59.16927871898811,58.771517287944,58.539391701745473,58.288859532058574,57.966619807154089 +1985,6,11,11,0,3,457,10.5,459.70545893672164,22.721657151639697,25.60170798113488,117.17817707047566,0.0,145.80808070646427,457.59440634210904,1.0,145.80808070646427,282.30255222250202,1.241671277634239,25.600000000000001,1.5,428.99558457094827,434.1995825030599,437.2406952329693,437.19232110391215,437.19422577021794,437.15539269036958,86.205113125886427,85.419944608740948,84.632016041926008,84.099814264831281,83.615959523461015,83.141447457134419 +1985,6,11,12,0,5,226,11.5,230.79078596989672,9.81322887994076,16.633135483552145,147.17269258455377,0.0,72.896350098494153,228.8054362486082,1.0,72.896350098494153,141.48945951092008,1.2794357466737893,25.0,2.1000000000000001,213.16058281351258,216.06935936427914,217.77256987768195,217.67569978921239,217.61744023571427,217.57380472933181,42.875057675437063,42.645489824652536,42.407363523674263,42.214271393360697,41.966239218039924,41.670335786482241 +1985,6,11,13,0,7,491,12.5,497.75880123550456,6.4782687986770675,15.084507740399149,198.95433562682032,0.0,157.00238838306527,496.76999936073423,1.0,157.00238838306527,305.98305014229709,1.2839895628373637,26.699999999999999,2.1000000000000001,466.19925754562047,471.70731930510425,474.92473185744205,474.97800396673318,475.06552403640353,475.05916196384902,93.013532341809466,92.209149827332695,91.288544941135555,90.622575482609491,90.012056722670906,89.463726694893609 +1985,6,11,14,0,411,329,13.5,708.55093635791536,18.811860082127403,22.55950475350136,236.12657750048623,0.0,225.46072632671056,731.66760219941989,1.0,225.46072632671056,442.93339423920679,1.2565595816212118,29.399999999999999,4.0999999999999996,712.68672658870946,714.39000484923713,715.31387967969317,717.75785829685287,719.80774208447917,720.59014353763223,138.58103103189012,134.50445497184083,129.9131390248784,127.36751766130786,126.46785559894424,126.66332447844033 +1985,6,11,15,0,288,254,14.5,494.43148529342011,32.06438934274893,33.401698297887094,254.65109449286362,0.0,164.01250000980369,503.94370440345062,1.0,164.01250000980369,308.2560117635785,1.189663682340445,30.0,2.1000000000000001,486.66105424275798,488.64870729383335,489.76838702386726,491.21029198104912,492.42858761569505,492.88474408636012,99.384342225281898,96.476136440285515,93.782789421131156,92.690018595830452,92.618249303849836,92.899887010936766 +1985,6,11,16,0,546,201,15.5,586.28119872825425,45.33278464025958,45.11846764079118,266.241763894741,0.0,196.39478165977428,592.09407094386552,1.0,196.39478165977428,367.02256601740305,1.062055145546809,30.600000000000001,2.6000000000000001,571.1379083568861,572.3917369815963,573.06664654690519,575.26431772766932,577.10571824172462,577.80920079635871,116.90030264852321,112.80842129086514,110.21533803964738,110.35823584287246,111.78603821287361,112.72399149748971 +1985,6,11,17,0,368,178,16.5,378.46856110186457,58.46179869192836,56.992314661932156,275.28321014531343,0.0,133.84060946995984,372.11831549744761,1.0,133.84060946995984,237.25924991027213,1.5,28.300000000000001,3.1000000000000001,346.7632793758213,348.19808766143939,349.00203966840087,350.56113700111291,351.8604462960003,352.36333429268291,76.172354131769509,75.211558749568724,75.518724373709972,77.15548523256254,78.763680498605993,78.609157284799636 +1985,6,11,18,0,285,145,17.5,248.51523806409219,71.33465498462527,68.7024517752304,283.4579109839103,0.0,92.857353461448128,233.15587081366274,1.0,92.857353461448128,154.92458688259174,1.5,28.300000000000001,2.6000000000000001,202.64796067644562,204.12315199000244,204.96221778357381,205.70022935301131,206.31961508697111,206.55453912638239,53.503105697418746,54.893216034260981,55.651368199025384,55.762041511166544,55.005420822889739,53.561317651232514 +1985,6,11,19,0,91,59,18.5,74.818200112027128,83.79026881358398,79.98963238272167,291.6239208607238,0.0,30.262294716094903,65.767339731084363,1.0,30.262294716094903,46.458557699461274,1.5,27.199999999999999,2.6000000000000001,53.441558854939181,54.149191126859478,54.557892122570308,54.724077028936051,54.866587373916325,54.917999530231974,17.745658088804383,17.934379361543144,17.953728098551405,17.870153834298538,17.646333728170738,17.324119152690283 +1985,6,11,20,0,0,9,19.5,9.0,92.1560861570624,87.48677640110067,297.7613353981676,1.0,2.8305363603592624,8.8410166005897466,0.0,2.8305363603592624,5.4729741276602502,1.3878683759623147,26.100000000000001,2.6000000000000001,8.2139507348603367,8.3391755832131746,8.4126250584428792,8.3935545073114515,8.3788813008694127,8.3720519487123379,1.652558877009572,1.647326947583408,1.6445590519309383,1.6389492351557706,1.6279132714632301,1.6148867533294409 +1985,6,12,5,0,0,1,4.5,1.0,93.76047869872346,88.89619895641461,60.85423715132984,1.0,0.31450404003991794,0.99240387608929914,0.5594207821438576,0.31450404003991794,0.0075961164082149479,1.5,23.899999999999999,6.2000000000000002,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,6,12,6,0,56,45,5.5,51.614655075442954,87.381376140921,83.21645206478449,65.8172799775165,0.0,21.693615855759056,43.761402821857459,1.0,21.693615855759056,32.059923407157733,1.4429732288577677,23.899999999999999,6.7000000000000002,36.673852780718263,37.214938901143753,37.528174044609372,37.647927924967277,37.750584724727219,37.787630723974772,12.698017116054572,12.777874651452178,12.781194356436082,12.750974327539634,12.641525811237617,12.451127785196263 +1985,6,12,7,0,97,117,6.5,146.77590012875856,75.10702889064744,72.12339468741989,74.09475678597113,0.0,53.000719604154547,138.46223705092515,1.0,53.000719604154547,91.13435571413271,1.4876145902663869,25.0,7.2000000000000002,120.3413524153525,121.66748648413591,122.43483523435786,122.75786953585235,123.0341344240471,123.13466711135256,31.558382555103286,31.725643555300515,31.504028304254888,31.131267655640656,30.627961218781298,30.140608976370267 +1985,6,12,8,0,169,180,7.5,263.19495625327284,62.33839005085003,60.5095918406499,82.18587374541254,0.0,90.664292128983718,256.66286233595173,1.0,90.664292128983718,163.33898287115352,1.5,26.699999999999999,8.1999999999999993,236.34611932913725,238.28392196144262,239.4024301559179,239.938740478407,240.39653655298895,240.56335353868587,51.507096511069669,51.536371745700102,52.045337421392176,52.908802937663417,53.450189549982895,52.966525383585278 +1985,6,12,9,0,152,298,8.5,398.4093157493478,49.27348546346,48.65529780907603,90.83393041320514,0.0,131.79268089307439,396.99190487558565,1.0,131.79268089307439,247.34924866073118,1.004220817690099,26.699999999999999,8.8000000000000007,374.70443599875011,377.59614190258208,379.26900144395779,380.11262616792192,380.83449417182982,381.09654445820138,77.297489587982184,75.792489282749898,74.995012490824962,75.287486601273883,75.909804168641614,75.999919545043809 +1985,6,12,10,0,417,304,9.5,637.7245193166367,36.03453046643841,36.84137326421672,101.3676183183687,0.0,212.55761809294171,650.00351709243455,1.0,212.55761809294171,398.64711250602818,1.158125312384297,28.300000000000001,9.8000000000000007,628.82564854383395,630.80694629446214,631.90518129597615,634.11469301052443,635.97020872837288,636.67522443124221,128.58501880269571,124.39983167757354,120.86011012946925,119.7428661199428,120.10232210732778,120.73731266013895 +1985,6,12,11,0,171,403,10.5,557.21712349443771,22.749097768188342,25.597082987334094,116.99489375519536,0.0,176.63757275460372,566.601970968042,1.0,176.63757275460372,346.31932940093452,1.2400167768405392,28.899999999999999,6.2000000000000002,542.75952173530106,546.18168109093699,548.14941461816352,549.44093264913704,550.53977932366627,550.94442039365754,106.74124510482207,104.43042680795844,101.97681527648498,100.68678444015829,100.18352199653813,100.10591570858418 +1985,6,12,12,0,4,195,11.5,198.83330632083147,9.824550102473767,16.599196615696176,146.92280214384596,0.0,62.759730374209319,196.95211335916483,1.0,62.759730374209319,121.85999218622267,1.2779695434941143,28.300000000000001,7.2000000000000002,183.29479863168572,185.84222483072807,187.33428895559189,187.23919056334228,187.17950708031873,187.13803071920589,36.877086300418767,36.697944813486913,36.515697135894804,36.363194720326007,36.15347063275653,35.893350527124419 +1985,6,12,13,0,33,242,12.5,273.87397309370027,6.400440634761201,15.010589919158175,198.847740552155,0.0,86.509523334990845,275.54047570086027,1.0,86.509523334990845,169.34873323486127,1.2826436917146147,22.199999999999999,5.2000000000000002,259.75307573315996,262.39573562180118,263.93481406822463,264.29970708069783,264.62010242850107,264.72909283923008,51.625120508892159,51.045885984092017,50.329328703697861,49.871030752018683,49.54180631536304,49.287235277390373 +1985,6,12,14,0,4,233,13.5,236.6960063106487,18.74773882394231,22.481720227152067,236.15819018769707,0.0,74.537093870087944,234.48108752583826,1.0,74.537093870087944,145.04956690880584,1.255296298654134,22.800000000000001,2.6000000000000001,218.4206176023965,221.417346664436,223.17231635944157,223.05233030345056,222.97576704620639,222.92410870060831,43.810148680321618,43.570768754446227,43.33895397740455,43.15510395529838,42.913263443884311,42.615277735629455 +1985,6,12,15,0,1,183,14.5,183.83554293540186,32.002242181223785,33.32758526925591,254.69817056389766,0.0,58.05719750366125,181.59431396012712,1.0,58.05719750366125,112.49910553117805,1.1884760446765672,22.199999999999999,4.5999999999999996,168.77725438940953,171.19708712506284,172.61511512372564,172.46992989556398,172.36830968922587,172.31073197008871,34.027460208353617,33.869685932202074,33.741477269494716,33.634160214763028,33.460037512310244,33.222238171825971 +1985,6,12,16,0,6,208,15.5,212.23923315814918,45.26972175291028,45.045999348825475,266.28358451779565,0.0,67.201423553655758,209.4772118651191,1.0,67.201423553655758,129.84137162422317,1.061003778472395,21.699999999999999,3.1000000000000001,195.05664522836517,197.75021655061855,199.32783129659657,199.14238445743618,199.01079362198317,198.9382305533756,39.341310490371662,39.094797570562314,38.938859406554663,38.848474337824129,38.696992237354451,38.457063137936473 +1985,6,12,17,0,322,194,16.5,369.75118792509375,58.396784348076935,56.91988827673693,275.31792099659583,0.0,129.12501683155867,362.85148185400647,1.0,129.12501683155867,230.37400101867178,1.5,24.399999999999999,3.6000000000000001,338.67262247478754,340.49674717816981,341.53406324585285,342.57217056631384,343.44827363406677,343.77699699711167,73.643588221950253,72.756838199014396,73.010186781133498,74.364826998611505,75.660762101661334,75.466258137861317 +1985,6,12,18,0,365,130,17.5,263.00688245634052,71.26721455537894,68.62918890014156,283.48590475722517,0.0,100.97568789128803,245.01033301810594,1.0,100.97568789128803,164.90207777019154,1.5,23.899999999999999,3.6000000000000001,210.20637011678895,211.4029086341331,212.07218773106592,213.17212085718063,214.08593919819879,214.4414311290958,58.085418741767498,59.85027504832501,60.8061650180992,60.986714838725327,60.120802981918104,58.39309924165039 +1985,6,12,19,0,91,56,18.5,71.934194751158515,83.7204962777487,79.91546186583204,291.645270898527,0.0,29.170255732443589,63.19807041427903,1.0,29.170255732443589,44.674163825522712,1.5,23.300000000000001,3.1000000000000001,51.297020430323435,51.973669566714435,52.36437743484683,52.52629542452771,52.665017830743473,52.715163312046549,17.08286273043975,17.275177661693071,17.307747229365237,17.235137564566891,17.025107105195509,16.709328438007091 +1985,6,12,20,0,2,7,19.5,7.0888827762331159,92.13018286305801,87.45285710531581,297.810903226451,1.0,2.2412837684329743,6.8745223323261779,0.0,2.2412837684329743,4.383544087102492,1.5,22.199999999999999,2.1000000000000001,6.388688069444969,6.4860860984446589,6.5431959247521974,6.5275580399374586,6.515504663306058,6.5099167587371038,1.3239694592934594,1.320161848205067,1.3177665351633492,1.3126198828839555,1.3030136820590965,1.2922259155523124 +1985,6,13,5,0,1,1,4.5,1.0192901120750804,93.7705652426498,88.8946894353063,60.77801486144267,1.0,0.31475481149689399,0.99240387608929914,0.5599968324014604,0.31475481149689399,0.073357349195386487,1.5,15.6,5.2000000000000002,0.91266156854210789,0.92657544058131214,0.93473639014600152,0.9378354815169182,0.94043031196067717,0.94142360266347691,0.18464517276153236,0.18475434404772012,0.18444747963535188,0.19828895227041873,0.20578722904234834,0.20434195658646523 +1985,6,13,6,0,173,37,5.5,57.430146958877557,87.39478156710743,83.21792372882165,65.74135209896957,0.0,31.302610734774145,39.753091744353725,1.0,31.302610734774145,36.365404502871797,1.4301611545214596,16.100000000000001,4.0999999999999996,27.660926328750367,28.040297257324895,28.25291251070287,28.620301222766319,28.925814640500487,29.044691667491009,18.354822318308894,18.564793010952862,18.58420642487313,18.53903792028683,18.347853067212647,17.993057766481485 +1985,6,13,7,0,453,73,6.5,212.00282781465251,75.12699148456389,72.13053051287032,74.01609466472752,0.0,89.019586185067141,187.8962159212528,1.0,89.019586185067141,133.5177620395344,1.482383759602984,16.699999999999999,5.7000000000000002,148.84227738815932,149.45255094339583,149.77625284876365,150.85444490437777,151.7526534507833,152.1014169371652,53.889386999438621,54.519348884145707,53.877479015325591,52.734497284080575,51.305028066084148,50.099580742423477 +1985,6,13,8,0,583,115,7.5,401.90235772113829,62.36339399909298,60.520388158435765,82.10061034993784,0.0,148.23797043166832,387.78749274032816,1.0,148.23797043166832,251.86096626129759,1.5,18.300000000000001,5.7000000000000002,355.90698735530555,356.72561956696308,357.15569536408998,358.75311027795942,360.08382430793966,360.59893653725896,82.501513982634322,82.695774706231006,84.205140508917765,86.70128043769202,88.480100260917752,87.613553759823375 +1985,6,13,9,0,601,185,8.5,581.91761862851581,49.30219969308235,48.66742772933025,90.73562790924109,0.0,199.88091689699775,583.09456081862186,1.0,199.88091689699775,364.07074792489834,1.0019398800853585,19.399999999999999,5.7000000000000002,559.72124274862119,560.92843048032944,561.57610445454429,563.67634275404691,565.43897598756394,566.11049368912859,117.4355565486447,113.64956807708897,111.71676800232856,112.5814621748746,114.53524108531791,115.42448371871158 +1985,6,13,10,0,612,236,9.5,725.71912826123526,36.06542854384394,36.85130553366314,101.24433864905895,0.0,243.53018562844295,740.85313344565873,1.0,243.53018562844295,453.24061822996129,1.1563319931971336,20.0,5.7000000000000002,721.82998713406425,723.14008233205436,723.82706105247507,726.15909674689078,728.12463338717794,728.86477446304048,147.78870031444885,142.41450192523573,137.92795990746583,136.4446737474392,136.87071713964028,137.80631463743717 +1985,6,13,11,0,439,328,10.5,723.9127743701971,22.77924039945739,25.597494242984936,116.82273475977993,0.0,230.33115234858991,745.52437504299701,1.0,230.33115234858991,452.27843068611736,1.238514966494776,20.600000000000001,6.2000000000000002,725.93527145011603,727.73029758742916,728.70765473531083,731.11566546492531,733.13780437267371,733.90702571238307,141.2507677698103,136.92884039492657,132.34411021691704,129.9588558399825,129.25231676431585,129.5970085715538 +1985,6,13,12,0,480,352,11.5,812.06220473835447,9.840198448321381,16.57182867871672,146.68129838464407,0.0,265.338872062642,840.62287349821986,1.0,265.338872062642,506.7818011741029,1.2766520943849842,20.600000000000001,6.7000000000000002,821.44272531267688,823.09620153974561,823.97336507114392,826.4567852142834,828.55200842106592,829.3414088364492,163.58368012515325,158.96968814656569,153.38711128833131,149.90792937462339,148.30008366746657,148.33440309622429 +1985,6,13,13,0,506,352,12.5,840.88833881481037,6.32686761591435,14.943076306870692,198.7305265144125,0.0,274.87416355630234,871.10434983784955,1.0,274.87416355630234,524.54676466886178,1.281447621367809,21.100000000000001,5.7000000000000002,852.06742799059589,853.66663255746562,854.50758877766918,856.99553911134876,859.09760116649784,859.88687195963405,169.53757211990569,164.69370021909501,158.85047141941175,155.19052573960471,153.49079870132263,153.54039524780185 +1985,6,13,14,0,120,408,13.5,518.93894954086977,18.685174692953986,22.408236120940643,236.1761194082741,0.0,164.43321367795275,528.03092980499616,1.0,164.43321367795275,322.8990746443082,1.2541891831376728,20.600000000000001,5.7000000000000002,504.40101823137695,507.80686919912341,509.76938091988859,511.11125201982821,512.24698635245397,512.67080538492621,99.352764798387241,97.41587758457392,95.210794248677331,94.003909287701873,93.477156376343743,93.297654769112455 +1985,6,13,15,0,72,343,14.5,403.20795663497188,31.941347789515326,33.256743296580844,254.73450521518888,0.0,130.31606095247705,404.33798372304398,1.0,130.31606095247705,249.10451012945904,1.1874571088271784,21.699999999999999,4.5999999999999996,382.53512207757046,386.13064859298811,388.22056077877073,388.66878526903872,389.06966758234637,389.19919654598692,77.623950585488828,76.346905244245434,75.176345773013622,74.64873163671426,74.432126904624468,74.259475021207237 +1985,6,13,16,0,422,236,15.5,534.52156026209582,45.20803148087976,44.97647414086549,266.31679792150317,0.0,178.15517240088749,539.12218225618017,1.0,178.15517240088749,334.46399802075166,1.0601407145122816,21.699999999999999,5.2000000000000002,517.95808656921542,519.61924462363913,520.54295238780787,522.51156061486483,524.16112984923745,524.79124409586905,105.92347752028087,102.50383993414788,100.32077877860867,100.45059856952113,101.63767177341397,102.35894573793202 +1985,6,13,17,0,291,193,16.5,352.12653700118722,58.33343359583749,56.85042516818678,275.34534799496384,0.0,122.67009456609698,345.81161906938303,1.0,122.67009456609698,219.52469742812039,1.5,21.699999999999999,5.7000000000000002,322.54772328689705,324.36256051745988,325.39655840377321,326.43486973618451,327.30906456554328,327.6389824142305,69.855089037831746,69.166795414631267,69.508939947139012,70.823614526090807,72.042419872167457,71.786252545292655 +1985,6,13,18,0,425,113,17.5,268.35495251448367,71.20184159511972,68.55911545956515,283.5074503503343,0.0,104.53308544425697,248.36119505009219,1.0,104.53308544425697,168.09180531019479,1.5,20.600000000000001,5.7000000000000002,212.22693884617485,213.24492063946064,213.80612675868963,214.86280352569108,215.74212828223111,216.08269761663513,60.039109383780527,61.971076760354428,63.031769052138323,63.210223762506885,62.239890024806058,60.365924310295853 +1985,6,13,19,0,102,62,18.5,79.98408245154441,83.65327826445345,79.84483506978418,291.660731645358,0.0,32.696587105278304,69.973913007915769,1.0,32.696587105278304,49.650917228299711,1.5,20.0,5.2000000000000002,56.551676038176836,57.291049646287995,57.71761612198069,57.889150746351845,58.036520410435237,58.089396627730565,19.120400010407586,19.349875151357359,19.401339064038542,19.327619362354557,19.090707303503635,18.731147472421831 +1985,6,13,20,0,9,7,19.5,7.4050234604722176,92.10486176247802,87.42066944288703,297.85314276326676,1.0,2.3678463936443657,6.7557497849921599,0.0,2.3678463936443657,5.0516701701565774,1.5,17.199999999999999,5.7000000000000002,6.1698513891987492,6.2639089422921801,6.3189699315745411,6.3441989205048435,6.3652647661990054,6.3733839099666554,1.4747371057724048,1.4802841397320814,1.4792798578610857,1.4795689949407815,1.474980323019186,1.4603921002234523 +1985,6,14,5,0,0,1,4.5,1.0,93.78163692272382,88.89524697874639,60.7087086808593,1.0,0.31450404003991794,0.99240387608929914,0.5615044593615894,0.31450404003991794,0.0075961164082149479,1.5,9.4000000000000004,1.5,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,6,14,6,0,77,41,5.5,50.085120431015056,87.41190136935379,83.2239681782734,65.67046932528844,0.0,21.981419596429888,41.300381883546272,1.0,21.981419596429888,31.105935881175583,1.4153723988408888,11.699999999999999,2.6000000000000001,34.050113895606017,34.549528622829932,34.837798007839538,34.951356544529965,35.049061347341485,35.083980599674426,12.87910468424173,12.959100028135245,12.957109656337025,12.914245143061137,12.790436923884071,12.59163415816006 +1985,6,14,7,0,353,95,6.5,203.25094807048811,75.15023941968359,72.14194405408942,73.94304656317465,0.0,83.833723186480483,182.8331748511099,1.0,83.833723186480483,127.57921539360468,1.4772356419559376,15.0,2.6000000000000001,148.32974530168792,149.2172737791968,149.70893801412507,150.60386455461759,151.35213470497902,151.64006661352283,50.598585451904647,51.073269261493536,50.490621939904138,49.514487094830109,48.301827692674678,47.270300208349767 +1985,6,14,8,0,535,142,7.5,405.16020746388847,62.39128912064237,60.535234272794746,82.02172163607766,0.0,151.04814750575841,391.04719542252303,1.0,151.04814750575841,253.12665677658464,1.5,19.399999999999999,3.6000000000000001,359.38769496926113,360.55421432529369,361.19010143926766,362.53884145843114,363.66886629956383,364.10008256044938,84.275020386314424,84.50571296986935,86.008388020184398,88.334417262722653,89.935288731607002,89.010139499155457 +1985,6,14,9,0,642,180,8.5,603.8595651657879,49.33350403780831,48.68354561128726,90.64481933726495,0.0,207.65028676158732,604.67813771321494,1.0,207.65028676158732,377.54063023904763,0.9998336453911462,21.699999999999999,4.5999999999999996,581.03161542097257,582.18930275140588,582.80483271472747,584.8895019639823,586.64203847927035,587.30697180296738,121.98583763628568,117.99091642483806,115.96101999872654,116.85147506710969,118.88643549508032,119.83297341116076 +1985,6,14,10,0,672,205,9.5,742.63136350386549,36.09875406716238,36.86544057837944,101.1302482548026,0.0,249.73077429168282,758.24396965158326,1.0,249.73077429168282,463.53933514026346,1.1547009955195424,22.800000000000001,3.1000000000000001,740.52431132490563,741.56298845308413,742.08607283236643,744.36765114169759,746.29465749204701,747.01656004604877,151.69203340622326,145.99095456757436,141.25331419463413,139.65987386560298,140.09160078709573,141.11704819732395 +1985,6,14,11,0,633,280,10.5,850.84636848664616,22.811958956135776,25.60285316393161,116.6619443455429,0.0,278.4592800907609,877.05515434345659,1.0,278.4592800907609,530.34855305134704,1.2371664340029667,23.300000000000001,3.6000000000000001,859.48680314700164,860.78376906381266,861.4458726817486,863.80645209458851,865.80648515026928,866.55103422310162,171.03959232966767,165.24582665895204,159.33574408525791,156.24824655780128,155.40847922999029,155.99475689103926 +1985,6,14,12,0,712,259,11.5,941.49945469683746,9.859984451990561,16.550979496313275,146.44877445703287,0.0,308.74629427746834,976.36321522142021,1.0,308.74629427746834,586.10658964675304,1.2754837412788598,25.0,4.0999999999999996,961.22232529612882,962.05839944187676,962.43096759609318,964.75555771310917,966.73730507481548,967.4655981768974,191.1067556082219,185.15736753456571,178.08710842440712,173.54691116000669,171.40079734376516,171.57531556039487 +1985,6,14,13,0,721,248,12.5,944.81528838263796,6.257601318297152,14.882022671434644,198.60297790221574,0.0,309.95935286057789,980.7519766907576,1.0,309.95935286057789,588.09362128236171,1.2804014534708035,25.600000000000001,2.6000000000000001,966.28385682098428,967.00092915338678,967.30211135162688,969.60294184878796,971.56599109726312,972.28604503626161,191.94843957132986,185.91446916782789,178.75186954450825,174.14372053764487,171.96460754113269,172.15496467014736 +1985,6,14,14,0,704,257,13.5,908.16510371676031,18.624210098957906,22.339118339971876,236.18033818375054,0.0,289.35702870460705,938.76447149142507,1.0,289.35702870460705,565.68534012651992,1.2532380448622835,25.600000000000001,4.0999999999999996,922.6213872107553,923.62375895660682,924.10446444195054,926.47428434838912,928.48562666443661,929.2316645130087,178.62460650310231,172.6924380706586,166.17418169870666,162.38147333897948,160.9464149254911,161.37264077885166 +1985,6,14,15,0,602,277,14.5,780.79401264907347,31.881765228886056,33.18923989757003,254.76008040637387,0.0,255.14762011763125,799.24692916667595,1.0,255.14762011763125,487.09075621475461,1.1866062644244055,26.100000000000001,2.1000000000000001,779.65778433119817,781.22033568968425,782.05216004633871,784.37664714263997,786.33942552239102,787.07510414965373,155.42325050582099,149.92684265575559,145.02854908914148,143.12985719304717,143.15279521843252,143.97482357516637 +1985,6,14,16,0,585,216,15.5,630.30699570317233,45.14778211781575,44.90996286577098,266.3414023722612,0.0,211.05641642820524,635.87515901702659,1.0,211.05641642820524,394.14606848495663,1.059464632034286,26.100000000000001,3.1000000000000001,613.68941137693184,615.08701369433948,615.84214326950325,618.05231136811949,619.90839510026694,620.61353426465143,125.59067583550551,121.20156562287684,118.43107444068795,118.55946070616982,120.05246510248456,121.04790707528009 +1985,6,14,17,0,566,163,16.5,473.05303895442728,58.27182034384978,56.783998781281085,275.3655008913125,0.0,169.23098697426144,462.95641413352371,1.0,169.23098697426144,295.35244358450217,1.5,25.600000000000001,3.6000000000000001,433.84145164100812,435.13264436574377,435.83770460045713,437.34299994587275,438.6080705107064,439.08759012937401,95.684010527929644,94.506335596641577,95.133342332864345,97.376496926488002,99.512519375690005,99.262179889728785 +1985,6,14,18,0,387,104,17.5,245.88432464061898,71.13861337194733,68.4923062013248,283.5225671920769,0.0,95.831444052789266,227.71661642596359,1.0,95.831444052789266,154.17701498947989,1.5,24.399999999999999,4.5999999999999996,194.55821504939513,195.48402216695175,195.99407701167905,197.01861464759929,197.86993184377229,198.20089838653303,55.048048583842117,56.830482279740409,57.805287523763866,57.978497934780243,57.09863448017294,55.377834561291976 +1985,6,14,19,0,160,52,18.5,80.39449624818181,83.5886940720026,79.77782706885384,291.6703323086442,0.0,35.743268914878222,66.665580337271152,1.0,35.743268914878222,50.305421633820643,1.5,22.800000000000001,2.6000000000000001,49.854700798524568,50.4363823416682,50.767526007650986,51.074186900307808,51.331591763017173,51.42947990410434,20.891545289543714,21.248104404743433,21.344370880451411,21.267422547344129,20.970819067263363,20.503477479239777 +1985,6,14,20,0,1,8,19.5,8.0455329671695832,92.08016184357977,87.39025084463584,297.8880572804193,1.0,2.537746537032846,7.8574572629122192,0.0,2.537746537032846,4.9277409588564147,1.5,17.800000000000001,2.6000000000000001,7.3013224347040984,7.4126333167340723,7.4779121288822417,7.4604459822656048,7.4469912741022375,7.4407450714150674,1.4883172065487416,1.4840366015696609,1.4818339209026792,1.4767565545197983,1.4665566772839418,1.4545348414268373 +1985,6,15,5,0,0,0,4.5,0.0,93.7936676890453,88.89785052374324,60.64636743455291,1.0,0.0,0.0,0.563923019241197,0.0,0.0,1.5,13.300000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,6,15,6,0,19,44,5.5,46.238304571370811,87.43267322409189,83.23453117216528,65.60469706347637,0.0,17.166274992873976,42.107507992495783,1.0,17.166274992873976,28.419864219207209,1.398613593562759,13.9,0.0,37.280682296706267,37.840854369249612,38.167456768564939,38.172151189422614,38.180525864894129,38.179555390726513,10.047354874271775,10.065920422335051,10.054966741325071,10.021281704447222,9.9394856463818222,9.8201002918505367 +1985,6,15,7,0,194,121,6.5,180.44165461730077,75.17670071831786,72.15757195576398,73.87567867734307,0.0,68.660491673666129,166.80392384787717,1.0,68.660491673666129,112.71808194231413,1.472174069135272,17.800000000000001,1.5,140.69677439890881,141.96028921406867,142.68322337745042,143.30551616586854,143.82867855093787,144.02730680025829,41.201889447910425,41.468073477913947,41.061150954713057,40.422991335723523,39.624568048677574,38.90646522928072 +1985,6,15,8,0,366,194,7.5,373.92638867817186,62.42199466573461,60.55405893589658,81.94927872374814,0.0,132.89273860728591,362.37747181846368,1.0,132.89273860728591,232.78770421598864,1.5,21.100000000000001,3.1000000000000001,333.36094863288389,335.22138553404227,336.27719519296107,337.26199783534821,338.09301054041742,338.4045572791685,74.676448520286044,74.903906412499808,76.02586085420559,77.733649463038901,78.836844922231379,78.008679293851557 +1985,6,15,9,0,467,267,8.5,575.1989009073194,49.36730848700216,48.70357280590286,90.56158900483877,0.0,195.49729244637356,575.29421175767698,1.0,195.49729244637356,359.2094113500857,0.9979034669348757,24.399999999999999,3.6000000000000001,549.43232808838104,551.4735555064965,552.61855801343393,554.49536707303378,556.07484974139982,556.67249370743968,114.81246452514843,111.52247778216706,109.82790255846263,110.56719651206835,112.21402728266121,112.88005884280115 +1985,6,15,10,0,440,338,9.5,689.93642660907585,36.13440516571919,36.88369273088726,101.02546589555475,0.0,229.75460041565333,701.99456356346877,1.0,229.75460041565333,430.65860029358674,1.153233209345448,26.100000000000001,3.6000000000000001,679.10031752494297,681.36198847282731,682.62053918948914,684.794272635722,686.62605255107303,687.31614829706939,138.88932591098148,134.40628765563417,130.63405402662059,129.41139120468824,129.74833323072323,130.40847245812023 +1985,6,15,11,0,387,431,10.5,779.97103188508117,22.847130771506,25.613070713525662,116.51274928483899,0.0,253.40715289860836,798.13841836107088,1.0,253.40715289860836,485.24762745473777,1.235971753162157,25.600000000000001,4.0999999999999996,773.61528374433374,776.60553280656711,778.28588284900366,780.19333570638753,781.81635015347365,782.41409428478005,154.33830224881589,149.99287692934055,145.54038226987686,143.22387973885071,142.51392178944789,142.74111711965759 +1985,6,15,12,0,217,405,11.5,613.02447742892946,9.883725098755884,16.53659358175788,146.2258022895974,0.0,194.70607213693413,630.38714555274328,1.0,194.70607213693413,382.67300483758117,1.2744648029101255,26.100000000000001,4.0999999999999996,608.79514267141326,611.38445900062106,612.84795499826646,614.81282980160336,616.46389388576779,617.09146413234475,118.96430330538271,116.13767884596669,112.74341438571007,110.75405464371408,109.86855863913604,109.78928308055337 +1985,6,15,13,0,10,374,12.5,383.66700747199314,6.19270490895781,14.827483182573523,198.46541739998315,0.0,121.5639895574908,381.90181994640932,1.0,121.5639895574908,235.58851251229677,1.2795052614247122,25.600000000000001,3.6000000000000001,357.44818458331156,361.9141350127494,364.52521594073505,364.4827539563762,364.4824907272332,364.44953367524306,71.823048205931599,71.277071323347087,70.676851760930887,70.234749163029207,69.790119857433794,69.3445288756417 +1985,6,15,14,0,146,334,13.5,469.10532477870697,18.564893786989863,22.274435042803503,236.17084042153886,0.0,151.25452840577225,477.70093773341262,1.0,151.25452840577225,291.87659922547306,1.2524426637445132,27.800000000000001,5.2000000000000002,457.19254969423787,460.11129292371533,461.78922571761905,462.99002152059103,464.00788927659119,464.38635460358944,91.466164732220037,89.545686388471935,87.444576112774612,86.306213531273571,85.84640458894475,85.744551375419206 +1985,6,15,15,0,251,401,14.5,611.20722289805167,31.82355722879299,33.1251446119673,254.77488800756777,0.0,197.90329230237802,621.53322132062704,1.0,197.90329230237802,381.02140607903902,1.185922874396561,27.199999999999999,4.0999999999999996,597.50408891940833,600.50004695495204,602.2071529059881,603.99820553405061,605.50888952895639,606.07669905493947,119.49113376468689,116.24621088742738,113.29979297094008,112.20589055841101,112.18880980991641,112.46082344586024 +1985,6,15,16,0,110,350,15.5,427.98979909188392,45.089044196648636,44.84653767064805,266.35740226439367,0.0,138.67445510716004,426.24343436454626,1.0,138.67445510716004,264.23308107353461,1.058974196490354,26.699999999999999,4.5999999999999996,402.80876057815692,406.42367871666306,408.52346407810285,408.9272958786305,409.29484719295812,409.40792118885594,81.74590247883458,80.244777385954478,79.295337175697256,79.225313399931281,79.458261956413153,79.444481972073689 +1985,6,15,17,0,121,231,16.5,297.3952488340874,58.21201974020253,56.72068316151395,275.3783938977775,0.0,100.34124102486281,292.83844776742694,1.0,100.34124102486281,184.68279625774107,1.5,27.199999999999999,5.7000000000000002,272.15350871996327,274.53008442523679,275.90663958006525,276.56181062689416,277.11964258754381,277.324386779355,57.620369410677831,57.206608699754334,57.37240731812436,58.108056638200608,58.741305744683594,58.455826535828102 +1985,6,15,18,0,20,142,17.5,149.35313136035495,71.07760757108282,68.42883582949959,283.53127824008544,0.0,49.126854068295692,145.19901987478733,1.0,49.126854068295692,91.266046498107798,1.5,26.699999999999999,6.7000000000000002,133.15545975598977,134.96827491456196,136.02797659275583,135.85759651352072,135.73249883424251,135.66804400427117,28.574258243739653,28.690884153705159,28.760958740878031,28.703589222020206,28.457563206182236,28.094041884866623 +1985,6,15,19,0,26,61,18.5,65.642378125401024,83.5268226187324,79.71451223364477,291.6741049716025,0.0,23.306244159029429,61.450358600451537,1.0,23.306244159029429,40.356558055986127,1.5,25.0,5.7000000000000002,53.954695591344468,54.731399213512489,55.184415892399358,55.194380101086715,55.208602302687453,55.208521255337672,13.608003627446488,13.678428000755378,13.694168967448896,13.655181115679303,13.533289207436257,13.348368987547911 +1985,6,15,20,0,0,6,19.5,6.0,92.05612161542491,87.36163796231091,297.91565349829796,1.0,1.8870242402395072,5.8910690581179201,0.0,1.8870242402395072,3.6457074109400072,1.5,24.399999999999999,5.7000000000000002,5.4759671565735619,5.5594503888087878,5.6084167056285912,5.5946641995547521,5.5840409272059972,5.5791392094934009,1.1015304977078362,1.097905049933952,1.0960595708626664,1.0921442252772482,1.0845708225019364,1.0758856262588383 +1985,6,16,5,0,0,1,4.5,1.0,93.80662960943903,88.90247687090067,60.59103707592136,1.0,0.31450404003991794,0.99240387608929914,0.5672297424867165,0.31450404003991794,0.0075961164082149479,1.5,20.0,3.1000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,6,16,6,0,3,43,5.5,43.352635265532982,87.457032829154,83.24955625910309,65.5440987883002,0.0,14.715109345665304,41.164293898433357,1.0,14.715109345665304,26.436327399623455,1.37988520328451,20.600000000000001,3.6000000000000001,37.537321428155003,38.1062723276765,38.439178129088319,38.371547136106649,38.320745756091199,38.295835587526739,8.6001391715427022,8.5906284389779497,8.5775570870386435,8.5447964868640334,8.4771570760318511,8.3931840917593821 +1985,6,16,7,0,11,41,6.5,44.366788547760834,75.20630220256785,72.17734927261361,73.81405443753508,0.0,14.43027026822849,43.322643212464072,1.0,14.43027026822849,27.259988061131448,1.4672030784834122,21.699999999999999,5.7000000000000002,39.527831380777293,40.095228536166871,40.427302873595714,40.430175111691753,40.436444266230644,40.435238250056003,8.4790846161035454,8.4756466970895659,8.4479476570697383,8.4088251112477206,8.3431096707345969,8.2606511051794396 +1985,6,16,8,0,27,164,7.5,177.26392920951565,62.45542937517783,60.57678978564959,81.88334885017574,0.0,58.01512086673003,173.98464909070921,1.0,58.01512086673003,109.19365347050106,1.5,22.199999999999999,4.5999999999999996,160.59047801517332,162.56185328684262,163.71290005527604,163.81172012147883,163.90712029382007,163.93170303104756,33.475662231200111,33.466456430560584,33.595196413515971,33.807854683301514,33.865741369679604,33.56684255358293 +1985,6,16,9,0,7,241,8.5,245.61749349966473,49.40352338096887,48.72743005793242,90.48601552335487,0.0,78.463997986378089,242.27184659237838,1.0,78.463997986378089,150.30871367480344,0.9961507339560152,22.800000000000001,5.7000000000000002,225.73834910629887,228.77056814770424,230.54561528574874,230.34429461271071,230.20301447950584,230.12342592199548,45.862257579020131,45.543938176521969,45.374155348058991,45.31751694669255,45.198795843175937,44.939124184482232 +1985,6,16,10,0,4,405,9.5,408.19848811118209,36.17228153562744,36.90597618952845,100.93010102664375,0.0,129.4083944417871,404.93695009000493,1.0,129.4083944417871,250.40443139217143,1.1519295264399987,23.300000000000001,5.2000000000000002,379.25220512157068,383.93380232416064,386.67083157496063,386.5356250632301,386.46248943092542,386.39693134551095,76.205518901497186,75.452826351480226,74.860440507432742,74.561465950399651,74.281797428005092,73.920625452736303 +1985,6,16,11,0,7,208,10.5,214.31134578473834,22.884636847465412,25.628057676825073,116.37535858626178,0.0,67.680211281568361,212.19470628716005,1.0,67.680211281568361,131.27488610297704,1.2349314826038318,22.800000000000001,3.6000000000000001,197.71290251132189,200.42465491643748,202.01268086419208,201.88373336461902,201.79803184174625,201.74439423807726,39.76775175706068,39.53628302829032,39.325667090679595,39.163454725509723,38.951325296036444,38.687896075070924 +1985,6,16,12,0,2,241,11.5,242.91735556677921,9.911244704246208,16.52861243610337,146.01292997842495,0.0,76.49508648446033,240.77062828808033,1.0,76.49508648446033,148.94022378950109,1.2735955739025482,23.300000000000001,3.1000000000000001,224.19575100343204,227.27483967997682,229.07805292087437,228.98264131916125,228.92651877031159,228.8828276134829,44.97103895820689,44.738345683880979,44.501341919152935,44.311440262161781,44.059637757365429,43.749169705414317 +1985,6,16,13,0,6,382,12.5,387.8014880677751,6.132253463975894,14.77951018147318,198.318205286318,0.0,122.84470518517982,385.93586451293913,1.0,122.84470518517982,238.14169462667417,1.278759090047722,25.600000000000001,5.7000000000000002,361.05592415561318,365.59841190908821,368.25456773888425,368.21783838867975,368.22254036487834,368.19132466885856,72.557529615894197,72.020327830970771,71.42935219160789,70.994379932958992,70.55062585918094,70.096685086880925 +1985,6,16,14,0,200,379,13.5,564.15530812156624,18.507280862907805,22.214256517350197,236.14764150702212,0.0,182.20070989544595,574.86943039884795,1.0,182.20070989544595,350.59895331853266,1.2518027902009843,27.199999999999999,4.0999999999999996,552.13467716737784,555.35468143761454,557.1996849932035,558.48515256756139,559.58125620470582,559.98293385153636,110.37100259862021,107.8845505313261,105.20030137544603,103.70665847977436,103.09325335884951,103.01689298592724 +1985,6,16,15,0,114,340,14.5,435.53845706724491,31.766790131485305,33.064528901195345,254.7789300379259,0.0,140.03691395395876,440.25682763887022,1.0,140.03691395395876,270.93498064396448,1.185406276179213,27.199999999999999,3.6000000000000001,418.86550669857928,421.95766118878095,423.74431738733369,424.85408775624421,425.79432104144087,426.14383770482766,83.948141610570588,82.186978876899104,80.566858602116582,79.97372428159116,79.91120397210878,79.904325796440148 +1985,6,16,16,0,22,189,15.5,204.61427003161018,45.03189040855667,44.78627190135249,266.3648082224412,0.0,65.390493933982327,203.22554314192848,1.0,65.390493933982327,126.18453546902482,1.0586680627128893,26.699999999999999,4.0999999999999996,189.85730148166127,192.10718706793887,193.42160296173688,193.58524927070596,193.73625258363427,193.78094160227516,38.42131931938588,38.017610577925019,37.746064615753951,37.713113398594345,37.710222248441553,37.568827376014369 +1985,6,16,17,0,35,137,16.5,156.23593443151358,58.15410808065574,56.660552855671554,275.3840457266697,0.0,50.941428138723708,153.85533081941455,1.0,50.941428138723708,96.218153892137423,1.5,23.300000000000001,6.7000000000000002,142.79368437239472,144.50073664220747,145.49738008475751,145.57533342940633,145.65230722818347,145.6707782786344,29.497824577827647,29.352211900583733,29.372356360627766,29.530610891362308,29.617724113520392,29.430065314196003 +1985,6,16,18,0,331,132,17.5,254.01690843386825,71.0189021997943,68.36877890789248,283.53360998198883,0.0,97.632653371271161,237.21338138197021,1.0,97.632653371271161,158.23858782418432,1.5,25.0,5.7000000000000002,206.02374871645162,207.37371870709381,208.13598267840666,208.84290817616932,209.43789969203144,209.66178790839697,56.122236942570666,57.655495224586645,58.532671543090899,58.675638350162089,57.855072199063983,56.274065259211902 +1985,6,16,19,0,101,66,18.5,84.137127221961549,83.46774235242452,79.65496414253197,291.67208456780077,0.0,34.047831631428785,73.874327963335659,1.0,34.047831631428785,52.223811903095687,1.5,23.899999999999999,5.7000000000000002,59.897786366555678,60.678961885786315,61.129886273871371,61.308824332147168,61.462413855358513,61.517618839785932,19.844635148171452,20.102078191840647,20.189875435128066,20.145556796968268,19.919345858438728,19.539285157502555 +1985,6,16,20,0,3,10,19.5,10.139495738862449,92.03277909339279,87.33486665663101,297.9359415838827,1.0,3.2143181691904359,9.8251024136654337,0.0,3.2143181691904359,6.274420074958841,1.5,21.100000000000001,3.6000000000000001,9.126716381279202,9.2658544239556875,9.3474354159688016,9.3266108702281176,9.3106179004659761,9.3031429282063094,1.894914152237787,1.8900947546809377,1.8881177403544955,1.882755891128215,1.8705682617120065,1.8550925381016148 +1985,6,17,5,0,3,1,4.5,1.0571159003405488,93.82049293330097,88.9091007460667,60.542760614013204,1.0,0.31524654674434505,0.99240387608929914,0.5713999263501353,0.31524654674434505,0.20748828773676387,1.5,18.899999999999999,3.1000000000000001,0.9126623054050611,0.92657617744426557,0.93473692456939239,0.93783585145071202,0.94043068189447077,0.94142384357520748,0.18493214660418428,0.18504099038448629,0.18473333777165901,0.22225782021271126,0.25004456218027638,0.24859506323617003 +1985,6,17,6,0,234,33,5.5,60.426751414731797,87.4849139951793,83.2689848641785,65.48873596545366,0.0,34.972461780574477,38.551655035223476,1.0,34.972461780574477,38.154024606756501,1.359181611440154,20.600000000000001,2.6000000000000001,25.109634318063627,25.444217865210963,25.628545640801196,25.973633666196065,26.262053997316574,26.37282858986233,20.594096879254558,20.794395061487023,20.766847661039797,20.651873007371155,20.384221120524661,19.987486660610152 +1985,6,17,7,0,531,67,6.5,229.31353358904954,75.23896959897813,72.20120957073344,73.75823443994926,0.0,99.26217878331255,201.06848060783574,1.0,99.26217878331255,144.03858065129941,1.4623269130629044,22.800000000000001,2.6000000000000001,157.98084597887205,158.52614180586659,158.80685157856479,159.83296067026959,160.69217476925783,161.02171939044922,60.281257164892402,60.800792948002673,59.930768888957871,58.538589953660136,56.902657380447124,55.610449368080332 +1985,6,17,8,0,675,95,7.5,426.32561398854796,62.49151160179797,60.60335346709084,81.82399531354758,0.0,158.34340632696964,409.309314712331,1.0,158.34340632696964,266.46575686229932,1.5,25.600000000000001,4.0999999999999996,376.11429805720735,376.74298851037702,377.05555353278208,378.49370092082756,379.69725071076095,380.15769595026165,87.74705289644389,88.14172152117402,89.973137583701032,92.706123670022436,94.561788896211183,93.489047424199697 +1985,6,17,9,0,752,125,8.5,620.7783404685639,49.44205955091228,48.75503765266285,90.41817176784339,0.0,219.95407606445204,620.29582638263878,1.0,219.95407606445204,387.17090999080932,0.9945768684455734,27.199999999999999,4.0999999999999996,598.35230257387695,599.16054964765965,599.56404668155108,601.35555514939972,602.87460510229732,603.43929676798507,128.91133528485133,124.53622585582424,122.42944281087544,123.43202676357319,125.67587657923954,126.72204149578415 +1985,6,17,10,0,756,151,9.5,755.30636515379229,36.212284605465385,36.93220520524287,100.8442537684992,0.0,247.52631324537535,769.99715509374926,1.0,247.52631324537535,470.24596750087892,1.1507908380731915,28.300000000000001,4.0999999999999996,754.2799939189465,755.10383422856012,755.50050248670175,757.38917812065949,758.99740091387469,759.58762842806777,150.24139584423804,144.32508804791851,139.56150596930294,138.05162075869839,138.52155124603783,139.65404713186425 +1985,6,17,11,0,476,287,10.5,716.10081703283652,22.92436208087862,25.647724927673913,116.24996329752459,0.0,233.91881543475753,737.71829028673517,1.0,233.91881543475753,447.34942068308408,1.2340461642850926,29.399999999999999,5.2000000000000002,719.71269689667088,721.23297501174056,722.04568908072019,724.39862289969051,726.37777735600207,727.12769599746264,143.44082039002279,138.85097957439268,134.1066777713003,131.70258628807218,131.09892969810628,131.51887315735522 +1985,6,17,12,0,727,216,11.5,912.96465960057196,9.94237569195498,16.526974856577034,145.81067937075767,0.0,291.02516027978947,947.18352099102913,1.0,291.02516027978947,568.36384728205326,1.2728763239210923,30.600000000000001,5.2000000000000002,933.69503524629204,934.27051398288052,934.49527216146441,936.75101829636912,938.67127162072995,939.37898165818626,180.28932144221562,174.38805098834217,167.56203231204699,163.29391008310998,161.38680965183471,161.71297785646729 +1985,6,17,13,0,691,242,12.5,910.26510348814872,6.076334145343542,14.738153946223566,198.16173841243108,0.0,298.63920163461847,944.87280639845778,1.0,298.63920163461847,566.81450033047497,1.2781629553398424,30.600000000000001,2.6000000000000001,930.78107995357448,931.45786157322595,931.73964306902974,934.03573366465491,935.99130874307525,936.71168324142138,184.9627172429972,179.15305417303006,172.24461467019523,167.81301640105335,165.72793758248463,165.91315813501819 +1985,6,17,14,0,586,313,13.5,855.71979553119434,18.451432800986456,22.158655040061383,236.11077884498997,0.0,279.76304170555886,882.95046037699899,1.0,279.76304170555886,533.46299282061057,1.2513181456028852,30.0,3.6000000000000001,863.96457382400672,865.55176691320651,866.38540332395951,868.79742756481789,870.83930626024869,871.60144533419009,172.02210563776612,166.54077181667546,160.68095839806239,157.38174526435512,156.2357596279931,156.64599569854914 +1985,6,17,15,0,555,267,14.5,732.42277276615073,31.711533827837496,33.00746603871887,254.7722188924111,0.0,239.21735282876071,749.44331202180615,1.0,239.21735282876071,457.02480166787893,1.1850557830038626,31.100000000000001,4.0999999999999996,730.38330623984677,731.96893139108863,732.82062654455206,735.04455693727732,736.92073964498013,737.62553339757199,145.6551932206342,140.57682169684398,136.04203836637143,134.29517212139504,134.32375986744682,135.06978071294796 +1985,6,17,16,0,612,190,15.5,624.78953393915072,44.976395516533685,44.72923999756941,266.3636371964601,0.0,209.64263744193272,630.41512578809227,1.0,209.64263744193272,390.67800749156464,1.0585448772700279,31.100000000000001,5.7000000000000002,609.65889976940434,610.79488960193441,611.39495259653484,613.56980228242344,615.39713454597097,616.09049503499682,124.80171383797094,120.29696396691848,117.46353908887902,117.58547681218053,119.11378593850623,120.16493401140785 +1985,6,17,17,0,311,143,16.5,314.18282104216712,58.098162713525326,56.60368280945015,275.3824796237947,0.0,111.42171057608407,309.16437004121951,1.0,111.42171057608407,197.37789306422911,1.5,30.600000000000001,4.0999999999999996,288.23054356702573,289.34017235392241,289.95898364207562,291.39800011650743,292.59390996498382,293.05992340990218,63.391889881137402,62.591053568840245,62.855071086662903,64.269605155347321,65.66836757666961,65.548531276002763 +1985,6,17,18,0,541,96,17.5,295.92587386998935,70.96257549053996,68.3122097618851,283.5295924318813,0.0,117.73802161958903,272.14904916108668,1.0,117.73802161958903,185.83042883650418,1.5,30.0,4.0999999999999996,231.0040802413842,231.7940846082717,232.21346603837361,233.53156510560558,234.62462844233116,235.0512887227377,67.32692785957957,69.70538877725626,71.097868199772762,71.452252906612003,70.377053699745304,68.148892912336521 +1985,6,17,19,0,178,49,18.5,81.13468280486498,83.4115311589243,79.599255492407,291.6643088517892,0.0,38.14157615745178,65.449847429160911,1.0,38.14157615745178,51.359651969180625,1.5,27.800000000000001,3.1000000000000001,46.071687107891506,46.552389238695739,46.822260955859107,47.335984344129599,47.761326403366724,47.92852157287119,22.184593659851942,22.665548077869499,22.852945095808714,22.85187342771281,22.585334155969345,22.038738248755195 +1985,6,17,20,0,8,11,19.5,11.375460794138897,92.010171782558,87.30997198322537,297.94893514271837,1.0,3.6497153326704499,10.866411264580176,0.0,3.6497153326704499,7.2597791704468726,1.5,23.899999999999999,3.1000000000000001,10.039559265176356,10.192609271478355,10.28230267567832,10.279750829731148,10.27866842181446,10.277264882420617,2.1815785901929532,2.179182151064067,2.1783251011640004,2.1776167356850942,2.1694553432093477,2.1516141736449246 +1985,6,18,5,0,0,0,4.5,0.0,93.83522614723346,88.91769485378472,60.50157804591035,1.0,0.0,0.0,0.5764071290593236,0.0,0.0,1.5,24.399999999999999,4.5999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,6,18,6,0,1,30,5.5,30.116796297856581,87.51624873669593,83.29275637584803,65.43866797828689,0.0,9.5889173626701378,29.453003165109312,1.0,9.5889173626701378,18.346248064538578,1.3364911551072405,24.399999999999999,3.6000000000000001,27.265756337070975,27.681086513858716,27.924607800590493,27.871905874261905,27.831832853126276,27.812694873203569,5.6012340394459921,5.586280450572823,5.5767723425622586,5.5585690925393019,5.5217554694813646,5.4759825470789227 +1985,6,18,7,0,46,98,6.5,112.03974908364357,75.27462764334132,72.22908502961404,73.70827638367939,0.0,38.606786122752645,107.2656701514248,1.0,38.606786122752645,68.927924796400973,1.457550022007323,25.0,5.7000000000000002,95.856152745311348,97.086626948547192,97.803492207330081,97.833474117566936,97.868407549063036,97.87265859072015,22.842475478762768,22.868941742809508,22.73523919717611,22.523759799902273,22.234748337294121,21.953422042165585 +1985,6,18,8,0,3,200,7.5,201.47117483155489,62.530159430601536,60.633675753342516,81.77127742472697,0.0,64.739737334175089,197.63621257798548,1.0,64.739737334175089,123.1947398687053,1.5,25.600000000000001,4.0999999999999996,183.12694114438011,185.629372620102,187.09396348155173,186.89495459019219,186.75116816458956,186.67468319948955,37.546672066473427,37.47858133165483,37.52796116324614,37.588539439019137,37.49618333037229,37.178805846249645 +1985,6,18,9,0,5,220,8.5,223.29434573498779,49.48282845530242,48.78631556048344,90.35812484978779,0.0,70.954905844518322,220.19248106241994,1.0,70.954905844518322,136.60324890704885,0.9931833219864326,25.600000000000001,5.2000000000000002,204.99331874593977,207.80283226806725,209.44814395265263,209.25154826021233,209.11195200864339,209.03513036038873,41.462341869117111,41.207152920996059,41.071300288364696,41.015305344350978,40.891793234840364,40.641517290459475 +1985,6,18,10,0,5,407,9.5,410.99515692539097,36.25431769413158,36.96229426349168,100.76801490190377,0.0,130.31108160067456,407.72309130445859,1.0,130.31108160067456,252.12701335801697,1.149818032782114,26.699999999999999,4.5999999999999996,381.92956158469872,386.62762902798329,389.37411820442514,389.23985581691682,389.16775691996031,389.10236448564467,76.745603160628136,75.978432658094491,75.374686903363653,75.071356275010032,74.791240696441932,74.431177118601042 +1985,6,18,11,0,140,364,10.5,490.18045480098584,22.966195470497613,25.671983687516814,116.13673638319628,0.0,157.92613246571568,497.99297364973825,1.0,157.92613246571568,304.9045861876707,1.2333163220309733,28.899999999999999,6.7000000000000002,475.94148563737906,479.11126875433479,480.9363239727021,482.16572656433243,483.20858223521776,483.59549195579382,95.273688933411762,93.263019743280296,91.156411547522268,90.104908679453999,89.746213027373443,89.666900519397146 +1985,6,18,12,0,16,335,11.5,350.33860579327603,9.97695926854342,16.53161725225078,145.6195438630424,0.0,110.4368055495807,348.54887736005185,1.0,110.4368055495807,215.02440479188365,1.2723072968901363,27.199999999999999,6.7000000000000002,326.28624739107647,330.37009467297042,332.75808387095429,332.68479739846003,332.65640002779492,332.61479215598138,65.220181569692144,64.718750321862288,64.18433099358046,63.791642479178002,63.393044021903712,62.993715649604574 +1985,6,18,13,0,3,302,12.5,304.90175724830243,6.025046217924343,14.703462455370602,197.9964488574441,0.0,96.410295082814528,302.75313226234141,1.0,96.410295082814528,187.08639519084002,1.2777168443232447,27.800000000000001,5.2000000000000002,282.45789273004954,286.19823220185577,288.38727053772175,288.31260825764008,288.27896967079204,288.23915964479357,56.798263974606364,56.452107778217297,56.080848023564968,55.795617607901697,55.463230992032834,55.085169489746555 +1985,6,18,14,0,717,220,13.5,884.28474794046338,18.397417432543808,22.10770471847223,236.06031234340492,0.0,290.02819742301818,914.51567540211738,1.0,290.02819742301818,550.8545325368483,1.2509884228096921,30.0,5.2000000000000002,899.99377689314952,900.73519055682607,901.06101837633719,903.37199890194734,905.33639930935135,906.06237782123503,178.96906532950845,172.7979412581569,166.25495996511441,162.51189321480831,161.20491126843945,161.7719953991851 +1985,6,18,15,0,677,197,14.5,765.0756201784443,31.657861684200654,32.95403099117087,254.75477755481572,0.0,250.69375356814496,784.44381706998149,1.0,250.69375356814496,477.33059704641647,1.1848706852610864,30.600000000000001,6.2000000000000002,768.60570638772981,769.47440162426642,769.89492548946293,772.16320646968438,774.07984400936709,774.79698847484553,153.10349385181641,147.31987836043245,142.18839852055544,140.17791872629368,140.20930870901299,141.15357200975177 +1985,6,18,16,0,562,181,15.5,580.63818377782911,44.92263626357003,44.6755173825934,266.35391254953106,0.0,194.83467146910471,586.24480914007711,1.0,194.83467146910471,363.44159165829126,1.0586032808747985,30.600000000000001,6.7000000000000002,566.63401759901035,567.68591869028171,568.24130779740847,570.39339720562714,572.19761964816541,572.88594307618223,116.00937804406291,111.83796680127253,109.20346274553089,109.33885882599232,110.78719467147872,111.76515475736592 +1985,6,18,17,0,533,151,16.5,444.79328490734559,58.04426194132398,56.550148262049994,275.37372339577206,0.0,159.25757152869804,435.44195864857784,1.0,159.25757152869804,277.84782195431268,1.5,30.600000000000001,6.2000000000000002,408.34251556473055,409.52123089436384,410.16339702292532,411.6264116217788,412.85499126107629,413.32163786897632,90.290782306919098,88.973196106479932,89.390161299177251,91.446625648234132,93.469287262433667,93.339224626610772 +1985,6,18,18,0,183,136,17.5,203.78471065550133,70.90870580243354,68.25920237882043,283.5192591218603,0.0,73.836432945083331,193.03562372294425,1.0,73.836432945083331,126.38993659441941,1.5,29.399999999999999,3.1000000000000001,170.64282711078079,172.16372140378559,173.03840998075395,173.42646740636621,173.75828571282153,173.87818361737556,42.558829508039878,43.454759073859712,43.978159775574241,44.072696025960752,43.552097627000677,42.546144269766934 +1985,6,18,19,0,127,77,18.5,100.04047138088582,83.35826627008966,79.5474580088756,291.6508183657252,0.0,41.244285718813828,86.940416862697063,1.0,41.244285718813828,62.038979266348782,1.5,27.800000000000001,4.0999999999999996,69.724191161295309,70.613902938890703,71.12643789819991,71.3177647450823,71.483086294654655,71.541495126060511,23.961729523408891,24.300092581124442,24.449831008728552,24.419303967171992,24.154457565263051,23.677944049360672 +1985,6,18,20,0,13,7,19.5,7.61533285510549,91.98833665893112,87.28698817648163,297.95465120478235,1.0,2.51861392151622,6.7627770687675408,0.0,2.51861392151622,5.2939906769518457,1.5,26.100000000000001,4.5999999999999996,6.1753590588535854,6.2694883228897114,6.3245477043008691,6.3498471110466816,6.3710079378367626,6.3791260823143388,1.5689761428047952,1.569935096582687,1.5712674820931622,1.5789084413747652,1.5819101773186497,1.5698306042503392 +1985,6,19,5,0,0,0,4.5,0.0,93.8507960228555,88.92822992293625,60.467526294500345,1.0,0.0,0.0,0.5822233636578743,0.0,0.0,1.5,17.800000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,6,19,6,0,7,32,5.5,32.81417026229559,87.55096736283033,83.32080823271627,65.39395205816493,0.0,10.861759388538411,31.53137759660088,1.0,10.861759388538411,19.996784150561851,1.3117961097451039,17.800000000000001,2.1000000000000001,28.947561363470538,29.387341819696704,29.644895790777095,29.589466818383688,29.547523654426641,29.527280319058853,6.3493797488214554,6.3363500109370996,6.3244314549870424,6.3001068398043305,6.2528579962954272,6.1958687654640183 +1985,6,19,7,0,327,104,6.5,203.63134103088336,75.31320018550527,72.26090654465642,73.66423501308664,0.0,81.691458807411962,183.77953461048031,1.0,81.691458807411962,127.86946168115355,1.4528770610194432,20.600000000000001,2.6000000000000001,149.67900114979747,150.66436141500725,151.21558877290551,152.13462040699847,152.90205511765862,153.19827272334695,49.403132598579354,49.737703181815561,49.090493062380169,48.1313969931836,47.02284028539335,46.08466520397026 +1985,6,19,8,0,477,158,7.5,391.67002890402932,62.57129079748143,60.66768166589631,81.72525046688557,0.0,142.06796554474118,378.34272933430077,1.0,142.06796554474118,244.95851789224986,1.5,23.899999999999999,4.5999999999999996,347.03709896972646,348.35868621052464,349.09011365660638,350.4943966331474,351.66697742149836,352.11819997571848,79.355630839271782,79.68254883114831,81.089844159531268,83.249479526260089,84.706228089609994,83.784955376584676 +1985,6,19,9,0,703,155,8.5,617.86309458922995,49.52574231249921,48.8211835789982,90.30593610245857,0.0,213.0988220731966,617.69709214857698,1.0,213.0988220731966,385.89198281465559,0.9919715725967538,25.0,6.7000000000000002,594.74628931954317,595.67179561576086,596.14802342757048,598.12820449232083,599.79784973112442,600.42721851390797,124.70807151611568,120.60552343701659,118.68167635356831,119.79308694221278,122.11280184793983,123.09642782005301 +1985,6,19,10,0,753,178,9.5,779.40292299365046,36.29828616078452,36.996158260856966,100.7014658874603,0.0,255.44472764201328,795.04088030237665,1.0,255.44472764201328,485.87921235444867,1.1490119941657466,26.699999999999999,6.2000000000000002,778.26439594807198,779.09357869610676,779.49043225772652,781.66134978917796,783.50065720933162,784.18423723195792,155.09574360319456,149.00722897161583,144.08192166356719,142.5578422747511,143.090392294602,144.26400603646772 +1985,6,19,11,0,788,193,10.5,903.0442447925634,23.010030304803763,25.700745774920644,116.03583267393827,0.0,295.98504082433203,929.64333700827149,1.0,295.98504082433203,561.0603806072462,1.232742460131085,28.300000000000001,5.7000000000000002,915.03300528395027,915.97991332786694,916.42662434073407,918.27138993572578,919.85985111329444,920.42792621923104,181.99589714686044,175.5208278189383,169.01779864797254,165.49642073383635,164.44070809476565,165.13635683196225 +1985,6,19,12,0,635,287,11.5,895.71666919704705,10.014845998402253,16.54247396405182,145.43998642949012,0.0,285.37736641738803,927.96918844444576,1.0,285.37736641738803,557.85471995822741,1.2718887102799497,28.899999999999999,5.7000000000000002,912.07356833971278,913.10427203615984,913.60250359436805,915.91418700123506,917.87735554914605,918.60504001082063,176.44078801011887,170.89177450430256,164.44632466819601,160.4448542856334,158.658056061689,158.91495252591648 +1985,6,19,13,0,518,271,12.5,772.10090061669712,5.978500888709537,14.675481152013285,197.8228022622576,0.0,253.01901762054553,801.53051155694527,1.0,253.01901762054553,481.81580654690504,1.2774207149586694,28.300000000000001,4.0999999999999996,787.06668035702728,787.92340498957299,788.33092841469409,790.65486339478775,792.61791216717836,793.35549814224055,156.5483953954612,151.80805320390255,146.10459487457558,142.51715389352944,140.87041480235337,140.99247989521913 +1985,6,19,14,0,667,234,13.5,852.16315959001554,18.345308914522118,22.061481317309955,235.99632483225136,0.0,279.37250962915829,881.27490872758699,1.0,279.37250962915829,531.17511760555158,1.2508132867808093,28.300000000000001,4.5999999999999996,866.34371453376502,867.17504386294331,867.55867376122751,869.9068531878861,871.89781122647889,872.6381801855415,172.3278800795992,166.45972297998352,160.21782270151411,156.67058547989848,155.44732770331191,155.97528107920064 +1985,6,19,15,0,394,344,14.5,674.79416328505658,31.605850460072592,32.90430029033774,254.72663979502533,0.0,219.6701076112999,689.52437208106619,1.0,219.6701076112999,421.62833874791431,1.1848502519348312,27.800000000000001,5.7000000000000002,667.85183688386917,670.01636537802756,671.22018066617306,673.4951076155246,675.40559280702212,676.13141183244966,133.371682178848,129.14411683012068,125.31864907945304,123.90506822054131,123.96686663395062,124.50693697163365 +1985,6,19,16,0,373,264,15.5,529.47058834672407,44.870691275422246,44.62518034791315,266.3356641366322,0.0,175.43327116725877,531.78335471228434,1.0,175.43327116725877,329.60800327698388,1.058841910843732,28.300000000000001,6.2000000000000002,510.03269463162712,512.27521285705552,513.54562383316716,514.9201093756792,516.08705904789304,516.51854955842134,104.07573010634863,100.97601838297165,99.022196841484998,99.05986633634717,99.992231402306146,100.55195423196157 +1985,6,19,17,0,451,206,16.5,454.92341865566459,57.99248491922934,56.5000246378819,275.35780943094653,0.0,161.01335445297607,446.52592361253312,1.0,161.01335445297607,284.4468486712916,1.5,27.800000000000001,6.2000000000000002,417.52004125938936,419.20965835903263,420.15512208041878,421.7660228871473,423.11477156387889,423.63086094377269,91.573014916886436,90.373664811993223,90.746696036470496,92.6831304163357,94.575918356952243,94.393543218521117 +1985,6,19,18,0,259,144,17.5,240.14300891631007,70.85737152115972,68.20983030707731,283.50264708845316,0.0,89.451080420857409,225.97048226402239,1.0,89.451080420857409,149.79204148492875,1.5,27.199999999999999,3.6000000000000001,197.37672745415449,198.83969362334523,199.67295153278724,200.4183467459859,201.04269766225156,201.28053589279651,51.453551818955972,52.774374969542905,53.537980886845368,53.718856702439815,53.054775016692417,51.691314481053503 +1985,6,19,19,0,16,87,18.5,89.915866608464242,83.30802417119529,79.49964235605657,291.63165640192267,0.0,31.425586146769419,84.409959264142955,1.0,31.425586146769419,54.923554404655214,1.5,26.100000000000001,3.6000000000000001,74.888841573421146,75.97222883029599,76.604624519546505,76.493411141968366,76.411616915663956,76.369672620431572,18.292950541494069,18.367188557486472,18.402691847633136,18.351876471585047,18.184495904820054,17.944206763905946 +1985,6,19,20,0,1,13,19.5,13.047700091097049,91.96731014857833,87.26594863132682,297.95311020420155,1.0,4.1136542164578458,12.777530427761429,0.0,4.1136542164578458,7.976034211741676,1.5,25.600000000000001,4.0999999999999996,11.864633077772563,12.045512861264735,12.151596863121956,12.126495637306492,12.107287469389556,12.09824007591579,2.4079928233921666,2.4005617109659871,2.396646000139997,2.3892256598273014,2.3740272884430715,2.3551531308084153 +1985,6,20,5,0,0,0,4.5,0.0,93.86716765714758,88.94067474493139,60.440639151819035,1.0,0.0,0.0,0.5888192897251836,0.0,0.0,1.5,16.699999999999999,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,6,20,6,0,159,32,5.5,50.404355324514185,87.58899856753183,83.35307601009549,65.35464321853736,0.0,27.755861996759027,33.971568220106974,1.0,27.755861996759027,31.967263926179641,1.2850726242326331,17.800000000000001,3.6000000000000001,23.458816708133895,23.782754063846674,23.964025293204372,24.303855912289706,24.586395112343368,24.696380541559613,16.433634711845059,16.543923209739482,16.471117054741814,16.365351478612752,16.16769977741798,15.887241477285833 +1985,6,20,7,0,458,74,6.5,213.27300418128766,75.35461029402445,72.29660382999116,73.62616206553076,0.0,89.448939047001005,188.27648671133494,1.0,89.448939047001005,134.3055153448411,1.4483128930030018,19.399999999999999,3.6000000000000001,148.57800166463821,149.20275697613309,149.53531920267454,150.61589832170057,151.51654178806456,151.8658129757174,54.359433672408635,54.785896948821822,53.979170768702744,52.760926889933394,51.373239510486592,50.248690566905083 +1985,6,20,8,0,639,107,7.5,419.66388098439489,62.61482360628115,60.705295593977276,81.68596566288771,0.0,158.91292047561458,403.29832063183244,1.0,158.91292047561458,262.63204357623664,1.5,21.699999999999999,2.6000000000000001,369.95354157718776,370.69686288047433,371.0771881091917,372.61319830700762,373.89597150326688,374.38924500536496,88.171760074615364,88.674061245922374,90.514513791459947,93.212861586623589,94.980856001993246,93.855578863550193 +1985,6,20,9,0,723,134,8.5,609.6667147996767,49.57071422945632,48.85956147236394,90.26166107826579,0.0,210.67968081385803,609.14690497784011,1.0,210.67968081385803,380.48873009600788,0.990943121579661,23.300000000000001,2.6000000000000001,587.39615118074732,588.14280090951843,588.51355920976732,590.36064239802545,591.92193075897194,592.5069414458726,123.2680812052521,119.11507739204379,117.17906549102806,118.27811887637149,120.59680277885539,121.60801209895902 +1985,6,20,10,0,758,141,9.5,746.09719928569939,36.34409754682036,37.033712675901285,100.64467890787071,0.0,244.58189321742285,760.42779872435051,1.0,244.58189321742285,464.45308733235072,1.148373598716193,25.0,3.1000000000000001,745.26934506375471,746.01173324446302,746.3610436650988,748.20298590985567,749.77251209085398,750.34752250198289,148.48639466249205,142.5952978518435,137.85637830808881,136.34889232866857,136.81310369975023,137.94816052949031 +1985,6,20,11,0,707,243,10.5,879.87981163010602,23.055764331196198,25.733923844873786,115.94738888348716,0.0,288.30777602447336,907.14438557403992,1.0,288.30777602447336,548.2830309056518,1.2323250619937631,26.100000000000001,2.6000000000000001,890.86400723626139,891.86891055515378,892.35319599688478,894.72394768379252,896.73575215378912,897.48182506907358,177.31413509182778,171.12670831043852,164.83470706080749,161.52594672710663,160.62174636764095,161.28585771816299 +1985,6,20,12,0,735,223,11.5,927.51542498739718,10.055896280206134,16.55947758617117,145.27243789365284,0.0,295.65363935982379,961.9723726084103,1.0,295.65363935982379,577.37334200438431,1.2716207544631715,26.699999999999999,2.6000000000000001,948.15698424122854,948.7723391867371,949.01897439694778,951.29452980410474,953.23227708937804,953.94586267160253,183.12979055126769,177.14733083626211,170.2290897308074,165.90137308561273,163.96472037374392,164.29191111807245 +1985,6,20,13,0,504,295,12.5,782.60490778787835,5.9368209522740205,14.654252710981803,197.64129584891518,0.0,256.05409088277048,811.33178273827184,1.0,256.05409088277048,488.51196078419144,1.2772744961381566,27.800000000000001,6.2000000000000002,794.46735938215681,795.73070601105155,796.37923224550366,798.79991325048513,800.84178973523672,801.61152909823238,158.12550137166158,153.52168126804324,147.95905111862632,144.48462560804964,142.88990728897613,142.9642923419766 +1985,6,20,14,0,449,270,13.5,686.246630668286,18.29518767695123,22.020062068499424,235.91892241024476,0.0,224.31287346560254,709.04959140569349,1.0,224.31287346560254,428.94375457731712,1.2507923752634977,28.300000000000001,5.2000000000000002,692.47513928190256,693.79048697711039,694.4843491272012,696.81993808731329,698.78226862242173,699.52823556403439,137.96291091133546,133.6430782885428,128.96691991109481,126.40321439096407,125.57167661724858,125.89421963839935 +1985,6,20,15,0,619,239,14.5,758.96895959740505,31.555580216385138,32.858351896130756,254.68785034843836,0.0,248.34341458241943,777.76511971230752,1.0,248.34341458241943,473.81230510701971,1.1849937321045014,27.199999999999999,5.2000000000000002,760.06405176412125,761.26484048676764,761.88394747490793,764.25016337016018,766.24495362864911,766.99562714610113,151.48612031926567,145.9670196585528,141.04633946441075,139.14747199425247,139.19718599424471,140.06297184287357 +1985,6,20,16,0,576,220,15.5,630.28010743925324,44.82064095801439,44.578305932775514,266.30892837406054,0.0,210.83677577590072,634.91463509992161,1.0,210.83677577590072,393.30779715668081,1.059259403599946,27.800000000000001,4.0999999999999996,613.22441463839436,614.74306673697174,615.57026125316577,617.49497720512136,619.11971564705857,619.72912365142156,125.38507182044914,121.03217122628277,118.30407868636625,118.38553456528254,119.79400869404269,120.7578829664965 +1985,6,20,17,0,302,187,16.5,353.88979170727265,57.9429115504878,56.453387435562504,275.33477471351347,0.0,123.53852324427754,347.47352754347935,1.0,123.53852324427754,220.57590176439987,1.5,26.100000000000001,4.5999999999999996,324.64902225114031,326.40714613515252,327.40726909738839,328.43111054762176,329.29412343305273,329.61891713396471,70.46949465074384,69.628157711976897,69.869291840665298,71.166221352083909,72.407804709113819,72.220418030670089 +1985,6,20,18,0,373,121,17.5,259.73677136689571,70.80865095744684,68.1641665539843,283.4797968537476,0.0,100.37226042422844,241.7922929140114,1.0,100.37226042422844,162.88686572550071,1.5,26.699999999999999,4.5999999999999996,207.98621639223182,209.0798875616232,209.68805288732756,210.78350226849881,211.69306872152737,212.04714900079372,57.559983969501282,59.363605933251236,60.407377209151399,60.682747460244492,59.860615750314942,58.121591920088065 +1985,6,20,19,0,125,66,18.5,88.874081225128563,83.26088050791414,79.45587804612957,291.6068689612674,0.0,37.490310096520666,76.367762948416797,1.0,37.490310096520666,55.659980388412471,1.5,25.0,5.2000000000000002,59.453267489049892,60.181473655421613,60.599377267609967,60.959494461638158,61.260394952759199,61.376095012581644,21.742783528115424,22.116889638813877,22.29655239751186,22.327871305134796,22.121350472600675,21.659722549132013 +1985,6,20,20,0,6,11,19.5,11.28819450472924,91.94712810457906,87.24688588291332,297.944335952782,1.0,3.61404839636949,10.86581130062193,0.0,3.61404839636949,7.1291443193016022,0.7550677281442617,24.399999999999999,5.7000000000000002,10.039503670521679,10.192553961176777,10.282266021944846,10.279655693162757,10.278523582857954,10.27710240356501,2.149193674404978,2.1436356875353209,2.1400149902533299,2.1378819294873193,2.1300076880672507,2.1140163792050024 +1985,6,21,5,0,3,1,4.5,1.0547132372384789,93.88430450561641,88.95499620473136,60.420947228138736,1.0,0.31521531212401821,0.99240387608929914,0.5961644013182252,0.31521531212401821,0.21082190372620876,1.5,13.300000000000001,1.5,0.91266225860012962,0.92657613063933408,0.93473689062325604,0.93783582795282028,0.94043065839657913,0.94142382827269155,0.1849139182606489,0.18502278284385676,0.18471518029687706,0.21338598933337333,0.25199819338870288,0.25054896290766832 +1985,6,21,6,0,229,33,5.5,59.362321122797169,87.63026951923756,83.38949350624249,65.32079419274903,0.0,34.490103237332605,37.643407960363618,1.0,34.490103237332605,37.491378470566097,1.2562906057852468,15.0,0.0,24.800861167907364,25.136267398540934,25.321577976268738,25.663948939080491,25.950403390141037,26.060216181855417,20.435340237889474,20.543622761725235,20.432244241363197,20.274229247751116,20.007091411002815,19.659410007727136 +1985,6,21,7,0,543,63,6.5,227.76394047470478,75.39878036049731,72.33610552140935,73.59410622443113,0.0,98.970819968186845,198.70045170032449,1.0,98.970819968186845,142.98188243696086,1.4438625888160423,19.399999999999999,1.5,155.22413728744007,155.72874267700905,155.98552430490409,156.97362195567243,157.80220721992717,158.11890092424409,60.23513134068947,60.637965960606664,59.677629029627646,58.217929215326492,56.59476634953721,55.352847677791665 +1985,6,21,8,0,701,89,7.5,431.56147675585572,62.66067584405824,60.74644141276212,81.65347015022624,0.0,163.98427635624532,414.02851883246012,1.0,163.98427635624532,269.81456475825797,1.5,22.199999999999999,1.5,379.96824929381779,380.62550635495569,380.95260304595172,382.43505893160545,383.6756429314878,384.15024021673071,90.880116459043009,91.392746796653384,93.326754296587268,96.138817879369782,97.974120015463086,96.805931868996808 +1985,6,21,9,0,781,111,8.5,624.39600356619349,49.617658326382546,48.90136910758964,90.22534955756743,0.0,215.97473806289577,623.24510220720867,1.0,215.97473806289577,389.12897255146356,0.9900994903821277,25.0,2.1000000000000001,601.80123213164927,602.48212247201957,602.81195940251143,604.50541521020534,605.94404376972591,606.47654872762257,126.32961096736646,122.00438540046181,120.00261227618255,121.10500899044699,123.4646115002282,124.52057281332205 +1985,6,21,10,0,837,127,9.5,794.79909454983169,36.39166170985311,37.07487373389496,100.59771693157782,0.0,260.70962677839861,809.70055677411301,1.0,260.70962677839861,494.18368290042798,1.1479037136904484,26.699999999999999,2.6000000000000001,794.89999527229418,795.53311222722004,795.8112989408578,797.56019477379516,799.05971199424641,799.60050591184483,158.32147138139388,151.9208805757838,146.79877540861796,145.1303415913128,145.59140371044796,146.83657759932049 +1985,6,21,11,0,817,127,10.5,862.73764326919934,23.103299907007806,25.771431617031563,115.8715236893032,0.0,282.84943053028735,886.3304448930769,1.0,282.84943053028735,534.08642604878776,1.2320645888608404,27.800000000000001,2.1000000000000001,874.67570097184466,875.5071605020338,875.89032284562813,876.9679248143691,877.93108605926352,878.24379676469221,173.85495302260455,167.53763586517255,161.28550230779263,157.78298719709787,156.62733777269051,157.30397206062017 +1985,6,21,12,0,726,193,11.5,888.80529191791459,10.099980729277032,16.582559286008035,145.11729545160912,0.0,283.26153184934844,919.87789991179397,1.0,283.26153184934844,551.8474947015909,1.2715035921427917,28.300000000000001,2.6000000000000001,907.20764351460434,907.96210905380497,908.29664100753234,909.9789649776078,911.43217700381274,911.94876102757485,175.24035603244101,169.52214079204936,162.98148283231473,158.81010437815809,156.87317661033632,157.16396235084841 +1985,6,21,13,0,780,168,12.5,922.67633681122288,5.9001402288751255,14.639816811675459,197.45245613759846,0.0,302.847767565178,956.03509668937443,1.0,302.847767565178,572.52383738215519,1.2772780877542187,26.699999999999999,3.1000000000000001,944.46304045510237,945.01643120248013,945.2229943763532,946.83236788585145,948.2334198197982,948.72243048819394,187.55264279240095,181.50413029275836,174.42801225442463,169.76406588548568,167.48075312123615,167.68449612791383 +1985,6,21,14,0,732,198,13.5,876.7773990047956,18.247140348174124,21.98352546553214,235.82823471218032,0.0,287.69942734814748,906.94877163095271,1.0,287.69942734814748,546.01607391542393,1.2509252995553892,28.300000000000001,2.1000000000000001,893.39223350401448,893.9978312904334,894.2437018223028,896.47292391496853,898.37053029228946,899.06938838421831,177.61719351645459,171.42066135280018,164.86295802411061,161.09749946272268,159.77644163001909,160.35931194908346 +1985,6,21,15,0,781,160,14.5,816.36238915582453,31.507134214215643,32.816265050715714,254.63846507540464,0.0,267.60849519767095,835.7912583276966,1.0,267.60849519767095,507.81646535135536,1.1853003565114448,28.300000000000001,2.1000000000000001,820.97594733733706,821.79660331870843,822.18201654989446,824.06440057372254,825.67409283983193,826.25858415892844,163.40599439511999,157.09984194739815,151.57103109675461,149.31110008872938,149.23443319543026,150.26382145322694 +1985,6,21,16,0,452,230,15.5,552.19577009151612,44.77256738949406,44.534971798897296,266.2737482985596,0.0,184.24810862424729,556.83363406927879,1.0,184.24810862424729,345.33376306679281,1.0598543972162218,28.300000000000001,3.1000000000000001,535.90506963743962,537.50492475904275,538.38998299386435,540.35228709063892,541.99878852994311,542.62565032296561,109.55976346834699,105.94678503622374,103.65089138604839,103.77171948452828,105.00728624990529,105.78238178907429 +1985,6,21,17,0,599,141,16.5,472.39173686472037,57.895622378853616,56.41031211436994,275.304660830475,0.0,170.17615889626708,462.91965944681681,1.0,170.17615889626708,295.84325566817296,1.5,27.800000000000001,2.6000000000000001,434.22294112986901,435.20654699283227,435.72858666797606,437.53872113135384,439.05141590425006,439.63290199740112,96.376133062796299,94.936974616810787,95.409486973688331,97.740044931171383,100.05223921729743,99.94171655397821 +1985,6,21,18,0,510,94,17.5,284.03971908547021,70.76262224424264,68.12228348275623,283.4507524010753,0.0,112.9740760963325,261.74589627936143,1.0,112.9740760963325,178.50309501021971,1.5,27.199999999999999,2.1000000000000001,222.67032380097362,223.43330203222638,223.83866056800301,225.15227802767225,226.24067631432754,226.66647468045903,64.612955383775727,66.899054885252653,68.233516900937758,68.581555773007622,67.561203381210078,65.425125857775356 +1985,6,21,19,0,298,51,18.5,105.73451010369186,83.21690999301423,79.41623334879391,291.5765047074602,0.0,51.464263211570461,82.2673619176784,1.0,51.464263211570461,66.535692270019481,1.5,25.0,2.6000000000000001,55.312751038498618,55.813367351320338,56.089480816043263,56.6139613183894,57.050884268262649,57.220084683432944,29.65708346030544,30.374114219484841,30.764149826528126,30.847024720663114,30.492399072741524,29.709159518067001 +1985,6,21,20,0,25,12,19.5,13.208243135696728,91.92782578182589,87.22983158422237,297.9283556073709,1.0,4.4090393390703166,11.249654719488845,0.0,4.4090393390703166,9.3534918553323934,0.8202467979686947,22.800000000000001,2.6000000000000001,10.276901981109352,10.433552679678368,10.525102876283713,10.564645743009706,10.597876421715148,10.610480349964556,2.7879559543452483,2.7756067257417385,2.766371298562373,2.7736136574862549,2.7787991094804947,2.7636737621253489 +1985,6,22,5,0,0,0,4.5,0.0,93.90216840854211,88.97115930496008,60.4084779069415,1.0,0.0,0.0,0.6042272096434728,0.0,0.0,1.5,16.699999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,6,22,6,0,58,42,5.5,48.636193560203935,87.67470594984773,83.42999282812326,65.29245537563709,0.0,20.723553777007531,40.790123641999067,1.0,20.723553777007531,30.213226707009216,1.225413553602066,18.300000000000001,2.6000000000000001,34.28306180487931,34.791487467658385,35.085810081350772,35.199613091164437,35.297383830062017,35.332480172292193,12.222392208484083,12.240521938863441,12.186181997821242,12.118855575564552,12.006465885905454,11.851306933888063 +1985,6,22,7,0,311,99,6.5,193.14392628931881,75.44563220344041,72.37933927922194,73.5681130776044,0.0,78.740923414700433,174.14100646994325,1.0,78.740923414700433,121.37277834749536,1.439531428134249,21.100000000000001,3.1000000000000001,141.44520337008004,142.37859186417666,142.90026392955025,143.80284958627993,144.55614220254949,144.84723658663796,47.644163984120425,47.929716995949647,47.284320807641933,46.354538353007122,45.304539987559842,44.42473977826161 +1985,6,22,8,0,391,167,7.5,357.80648386837072,62.70876569439131,60.791042600231386,81.62780696328889,0.0,131.37669574432971,346.47929676309002,1.0,131.37669574432971,224.1647076691855,1.5,23.899999999999999,4.0999999999999996,317.15537387417925,318.56747610835083,319.35677523649451,320.78285498145203,321.97037035896574,322.43045090793117,73.560109453595231,73.938834291684955,75.207282550536107,77.138042096683719,78.398079581938134,77.518162899537032 +1985,6,22,9,0,411,272,8.5,541.92963569854305,49.66648985722493,48.94652658752606,90.19704556836292,0.0,183.09219968461227,540.20753487199033,1.0,183.09219968461227,337.1482550277284,0.9894422174667561,26.699999999999999,4.0999999999999996,515.1474518048534,517.51871935801591,518.86467533256632,520.19673691235846,521.33070098157032,521.74809416806625,107.13788114792109,104.33544341543463,103.00055376123873,103.71572939193555,105.17967196607245,105.66087007222747 +1985,6,22,10,0,454,307,9.5,669.00959858941496,36.44089094972111,37.11955856508774,100.56063379624835,0.0,217.92183427447327,680.8622566662641,1.0,217.92183427447327,417.87349473115688,1.1476031950266266,27.800000000000001,5.2000000000000002,659.18011791424954,661.19444471957183,662.31074938930988,664.51155210468937,666.36157386453897,667.06272449814082,131.7105831446151,127.32783116288643,123.70971643597348,122.67750181755225,123.11465570856717,123.82336458902465 +1985,6,22,11,0,574,287,10.5,803.72547545848568,23.1525441328945,25.813184092194057,115.80833787252367,0.0,262.89354180768214,827.8927798183264,1.0,262.89354180768214,501.3066669177004,1.2319614785860244,30.600000000000001,6.7000000000000002,810.21858442920245,811.58376038186316,812.29264373566582,814.64421568955868,816.63183388916059,817.37612656058445,161.40038029206059,156.02130751202711,150.51360414308795,147.66096907076221,146.90183162794753,147.43163756475448 +1985,6,22,12,0,671,265,11.5,907.99545922647019,10.146980470300726,16.611649119857617,144.9749214518266,0.0,289.34304205556299,941.14333654812776,1.0,289.34304205556299,565.48912757895084,1.2715373578530764,30.600000000000001,5.7000000000000002,925.91361847822179,926.79144578964201,927.19699853889006,929.52943695319038,931.51088105416875,932.24477904059631,179.0221500554984,173.31402650870515,166.69007188610999,162.57121454741096,160.73479796461638,161.01784862919433 +1985,6,22,13,0,547,348,12.5,877.25931964229039,5.868602785207303,14.632209919143307,197.25683637873686,0.0,286.86951638556076,908.34782603949043,1.0,286.86951638556076,546.9300360575528,1.277431360845336,32.200000000000003,6.7000000000000002,889.33109776333504,890.89643266150938,891.71233561465135,894.19623926824579,896.29897133958593,897.08482227339277,176.99877884702778,171.88042419560927,165.72745610498117,161.85099992296608,160.03864591737545,160.10318227512113 +1985,6,22,14,0,444,334,13.5,745.80896915316885,18.201259656728954,21.951951042823993,235.7244150899068,0.0,243.48633433809371,769.52518222818412,1.0,243.48633433809371,465.88065885675155,1.2512116453395827,31.100000000000001,6.2000000000000002,750.31424440540582,752.03059051982279,752.95562065583579,755.40152566633151,757.45891981789055,758.23880898784569,149.52746807786318,144.97454616105466,140.04809394885871,137.34298332405544,136.44717034758091,136.75189856893948 +1985,6,22,15,0,543,274,14.5,730.53996027152925,31.460598803757236,32.77812012402977,254.5785510985325,0.0,238.55264789087374,747.54277722884945,1.0,238.55264789087374,455.91404125681896,1.1857693391862882,29.399999999999999,6.2000000000000002,728.26880046741098,729.89863573816183,730.77690288959661,733.01960834753652,734.91072718815758,735.62197434050643,145.22580169222181,140.19263805104615,135.69370356426236,133.96628425423134,133.99910089309535,134.73310672697329 +1985,6,22,16,0,440,250,15.5,563.8557310500255,44.72655420698132,44.49525610051726,266.2301736153144,0.0,187.90849545040834,568.50979395989305,1.0,187.90849545040834,352.59969461695505,1.0606255339937583,30.600000000000001,7.2000000000000002,546.59967675084658,548.36562970551552,549.34814494323462,551.34782924442743,553.02558690845683,553.66445266421044,111.70637289410024,108.097187487996,105.79907112237819,105.92315941990131,107.1565432396051,107.91381510638105 +1985,6,22,17,0,421,219,16.5,452.15606829037472,57.85069847818361,56.370873978354005,275.267513971063,0.0,159.51584294668538,444.25398697832225,1.0,159.51584294668538,282.75479753259799,1.5,29.399999999999999,5.7000000000000002,415.26214338664238,417.07548845137865,418.09511676999489,419.71495146383739,421.07050417183274,421.58984003098089,90.79946269274393,89.64672975309486,90.002697461336695,91.878964169051955,93.708830187540897,93.513891690873692 +1985,6,22,18,0,173,156,17.5,220.57100040957042,70.719363232706,68.0842527086092,283.41556114508626,0.0,79.489268137273413,209.50344828887225,1.0,79.489268137273413,136.78195363944175,1.5,28.300000000000001,4.0999999999999996,185.74977245434741,187.45383145097895,188.43527654013468,188.85094437630812,189.20636579679564,189.33468687944401,45.763325192237787,46.69460885428316,47.269617916123444,47.408645532434385,46.907423980563372,45.860473953438948 +1985,6,22,19,0,26,55,18.5,59.791309912751451,83.17618631288809,79.38077520078231,291.54061491704886,0.0,20.990725669506858,56.278669108574654,1.0,20.990725669506858,36.750448155606364,1.5,26.100000000000001,3.6000000000000001,49.642842370157496,50.358257035754825,50.775773831535844,50.782097831901936,50.792709860306381,50.791775616484031,12.21560493474753,12.28001639241093,12.312363670692697,12.300246017959568,12.208899446372154,12.046738993137295 +1985,6,22,20,0,0,8,19.5,8.0,91.90943780963265,87.21481648156126,297.90519963108244,1.0,2.5160323203193435,7.8569307134310611,0.0,2.5160323203193435,4.8631151827961228,0.8798532878950844,25.0,4.0999999999999996,7.301289542098079,7.4126005184117139,7.4778889408381195,7.4603191751069691,7.446775788595235,7.4404976822890552,1.4688368361712061,1.4641044128160321,1.4616439330040198,1.4565530131382451,1.4466146761956744,1.4350350426655125 +1985,6,23,5,0,0,2,4.5,2.0,93.92071961055217,88.98912718334178,60.40325530586743,1.0,0.62900808007983589,1.9848077521785983,0.6129754191440001,0.62900808007983589,0.015192232816429896,1.5,22.199999999999999,4.0999999999999996,1.8253223855245198,1.8531501296029285,1.8694722352095299,1.8756705857217075,1.8808602466092257,1.8828469596102357,0.36899764798304163,0.36921632459341241,0.36860339968980449,0.36911959228922131,0.36883811850404763,0.36595188437787218 +1985,6,23,6,0,5,29,5.5,29.568226614866347,87.72223224289242,83.47450447656229,65.26967476892817,0.0,9.6104534049370081,28.648416713411823,1.0,9.6104534049370081,18.014157411339415,1.1923983393040922,22.199999999999999,3.1000000000000001,26.417326297479072,26.819294825147203,27.054846106396241,27.003553464223543,26.964632803788604,26.945963000310108,5.6181587913626423,5.6027029895657217,5.5909569782375979,5.5702114052727154,5.5310208267533154,5.4839313564592587 +1985,6,23,7,0,68,80,6.5,100.53147508018277,75.49508717156522,72.42623189087699,73.5482250808036,0.0,35.868842997864448,95.168208236169335,1.0,35.868842997864448,62.518366375393178,1.4353249004128412,22.800000000000001,4.5999999999999996,82.866184310020515,83.819819700221103,84.37276458254064,84.630261883245055,84.848801469297058,84.929826266561918,21.397181202186506,21.44668692432607,21.260814957233396,21.014724386349702,20.720671093347899,20.430133832890714 +1985,6,23,8,0,335,161,7.5,324.23378380347629,62.75901164858467,60.83902235244521,81.60901502271264,0.0,117.53193884839048,313.69088769914453,1.0,117.53193884839048,201.96001943497257,1.5,25.600000000000001,4.0999999999999996,288.04982796646709,289.61666930541281,290.50352201248427,291.39334068704261,292.14337967035522,292.42530223453969,65.9866818659644,66.252632634667378,67.290992903494669,68.828860541008794,69.786725696881604,69.018343325522835 +1985,6,23,9,0,396,232,8.5,491.82569332404825,49.71712532587462,48.99495438031263,90.1767874162612,0.0,167.19206762214165,492.16803194932095,1.0,167.19206762214165,307.8873552987622,0.9889728552000806,27.199999999999999,5.7000000000000002,469.12790818548007,470.86014381183367,471.83178614556232,473.69872344767464,475.26140311005253,475.86081802766824,97.9292434568206,95.244328193935829,93.9380748637967,94.7497682186834,96.346202766911475,96.886067838015535 +1985,6,23,10,0,766,161,9.5,771.40302005843319,36.4917001265344,37.16768535621217,100.53347431057432,0.0,259.68854157737218,785.90951177779539,1.0,259.68854157737218,480.24840708625419,1.1474728853088565,29.399999999999999,5.2000000000000002,769.4192782170901,770.3352802260323,770.78238669799418,772.70479730262366,774.34431049947807,774.94374194945919,157.29670991846757,151.17009271005961,146.30664296183656,144.88346313089903,145.46816416500457,146.64635233143929 +1985,6,23,11,0,774,174,10.5,870.49889490106068,23.203408969190278,25.859097756414716,115.75791451265783,0.0,285.4368034559991,896.51628219328813,1.0,285.4368034559991,540.99996235667868,1.2320161444797084,31.100000000000001,1.5,882.85507248262275,883.65244714416747,884.0142881809802,885.84460690819128,887.41813129572563,887.98312077820196,175.60005658690341,169.301186834243,162.9706879633097,159.54931455810492,158.53522102497996,159.22570487182537 +1985,6,23,12,0,763,188,11.5,919.02230283693075,10.196787345524717,16.646676341706577,144.8456424330491,0.0,292.91080902004757,951.19852321606743,1.0,292.91080902004757,570.44621406483304,1.2717221575346425,32.799999999999997,3.6000000000000001,938.57066659742054,939.29117377402292,939.60156194646299,941.28137609616613,942.73572764976757,943.24979406530667,181.24669205970238,175.29704720464298,168.5018367023207,164.15689724463232,162.13354371455361,162.44224778275725 +1985,6,23,13,0,709,224,12.5,910.00755245296205,5.84236193244116,14.631465075940817,197.05501372288415,0.0,298.66283554145326,944.78257132215492,1.0,298.66283554145326,566.55900420615228,1.2777341578174792,33.299999999999997,3.6000000000000001,931.33807108611757,931.90975572063473,932.12891827359886,934.38672664940805,936.31144023903653,937.01890825421196,185.05373682885127,179.18963629208949,172.22513345574845,167.74837394132282,165.63988786581908,165.83814453079958 +1985,6,23,14,0,565,293,13.5,817.13393839375772,18.157644308741414,21.925419140802774,235.60764070009694,0.0,267.40199124211324,843.99031612231215,1.0,267.40199124211324,509.5275989067901,1.2516509735903485,33.299999999999997,5.2000000000000002,827.03389393267139,828.30313556783642,828.95234513191758,831.28825556206266,833.26487474445094,834.00343611365668,164.60949368392599,159.24729525918744,153.51807043151152,150.29006138074195,149.17924750523227,149.61029635603796 +1985,6,23,15,0,440,358,14.5,728.08209642365716,31.416063303412113,32.743998450974445,254.50818691571482,0.0,237.08438949723165,743.67290801959734,1.0,237.08438949723165,454.35324414414873,1.186399879133441,26.699999999999999,4.0999999999999996,721.22126899869636,723.49159679692491,724.75168104085583,727.00222572064638,728.89847100530051,729.61304104124815,143.94919255019366,139.32177698821309,135.16154875277138,133.58728123413911,133.61258590233186,134.20878493342951 +1985,6,23,16,0,679,181,15.5,665.63552021974078,44.682686488081224,44.459237350018775,266.17826073399505,0.0,223.63465438686021,671.55103798380344,1.0,223.63465438686021,415.74748096099404,1.0615714630722017,30.0,4.5999999999999996,650.8454361112199,651.89096096379228,652.43218808541474,654.57641048323967,656.38356249115407,657.06406423666158,133.13834589512211,128.21585193883942,125.13956479565806,125.23854926877694,126.86497332144899,128.02726148531553 +1985,6,23,17,0,543,146,16.5,447.0033410243243,57.80822133931345,56.335148058303666,275.22338491828117,0.0,160.63366460300563,438.72013300437118,1.0,160.63366460300563,280.28226624251562,1.5,29.399999999999999,3.1000000000000001,411.11721721221181,412.15052009491217,412.70566599964934,414.54218144718436,416.07358866996532,416.66542145261354,91.049221849280727,89.731974850130072,90.167792291186544,92.354529454929235,94.525854391951498,94.41089692088903 +1985,6,23,18,0,109,127,17.5,167.74365316258621,70.67895138718468,68.05014499426237,283.37427389609866,0.0,59.413304535097637,160.52924238294776,1.0,59.413304535097637,104.18652292772508,1.5,25.600000000000001,3.6000000000000001,142.91711331293754,144.35307224841114,145.18344216025693,145.56297420945342,145.88461985494061,146.00358668402441,34.289011982050475,34.908941943924354,35.280318396868537,35.383695551973148,35.058227464609111,34.336804182670299 +1985,6,23,19,0,57,69,18.5,79.534537317891065,83.13878203404423,79.34956911558398,291.49925342523085,0.0,29.594543577918088,72.738393290311862,1.0,29.594543577918088,48.911653653587429,1.5,24.399999999999999,4.5999999999999996,62.301204439227789,63.163690296578423,63.665187175204188,63.679004707411316,63.697776682910671,63.698179869692055,17.164666608061392,17.314041499944608,17.400046392524867,17.396802736618501,17.248409476834787,16.976444426706898 +1985,6,23,20,0,4,12,19.5,12.195268657258621,91.89199816213255,87.20187038794322,297.8749017484632,1.0,3.8825885636162218,11.85451333437979,0.0,3.8825885636162218,7.6150795769470241,0.9339957354788115,22.800000000000001,3.1000000000000001,10.952095477246173,11.119062336667616,11.216953052585287,11.214639396615596,11.213824728501438,11.212462369166388,2.2955209948220872,2.2896175800338479,2.2845125628940206,2.2805637108173418,2.2708435402612919,2.253658252673679 +1985,6,24,5,0,0,1,4.5,1.0,93.93991677369443,89.0088611236324,60.40530024374784,1.0,0.31450404003991794,0.99240387608929914,0.6223760958433268,0.31450404003991794,0.0075961164082149479,1.5,19.399999999999999,2.6000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,6,24,6,0,19,44,5.5,46.143296854137411,87.77277152073272,83.52295743059818,65.2524979304547,0.0,17.333783953360978,41.690992785434496,1.0,17.333783953360978,28.363320712134357,1.1571949314302037,20.600000000000001,2.6000000000000001,36.942604088350933,37.499027399798862,37.823408443985016,37.828518592208844,37.837404907700979,37.836497673233829,10.190016549101916,10.173698117351091,10.13199752597094,10.08103114104925,9.999513584957997,9.8968865026898953 +1985,6,24,7,0,88,104,6.5,130.49622437438273,75.5470662463129,72.47670937315547,73.53448152637505,0.0,47.368912305777592,122.98503579744178,1.0,47.368912305777592,81.064189505955639,1.431248705937973,22.800000000000001,4.0999999999999996,106.72664892578989,107.92566685545691,108.61992047538341,108.92113094208781,109.17831549460779,109.27225833487179,28.290933809676655,28.340265754028621,28.073096667380767,27.717955631370788,27.305743293283879,26.919687626477831 +1985,6,24,8,0,350,182,7.5,352.26913541375262,62.811332614634416,60.89030369704258,81.59712913156469,0.0,127.40636952746408,340.90355407263712,1.0,127.40636952746408,219.36988542809371,1.5,25.0,3.6000000000000001,312.99392845247877,314.75077880724541,315.74689411476066,316.69709696145554,317.49854974672348,317.79931843163894,71.574974249861626,71.857178968044565,72.964248991204144,74.605004091282623,75.623221522846848,74.793949079003838 +1985,6,24,9,0,293,307,8.5,499.04548436099628,49.76948259800115,49.0465734450587,90.16460772410169,0.0,167.46781305176955,497.83428425147304,1.0,167.46781305176955,310.90062359385234,0.9886929667614905,27.800000000000001,2.6000000000000001,472.44334516926597,475.09099766025724,476.60664653667959,478.00384775743555,479.18535713450848,479.62737128865206,98.041262621433688,95.735927994596082,94.61162437171771,95.242100212485752,96.480921417791222,96.81075164192039 +1985,6,24,10,0,577,267,9.5,726.4809963545913,36.54400677084199,37.219173494983195,100.516274372818,0.0,237.14323653443884,739.58731814856606,1.0,237.14323653443884,453.17307165510772,1.147513611784751,30.0,2.6000000000000001,719.00544205529047,720.70677883850817,721.62955968135316,723.7895813689961,725.61314872073717,726.29694106423881,143.53661798167516,138.4489110221858,134.29250887205703,133.05107966970951,133.51161168678632,134.39256142069468 +1985,6,24,11,0,507,361,10.5,817.04065071785044,23.255811335830074,25.90909077222749,115.72031923237219,0.0,266.57708914255687,839.81765721861439,1.0,266.57708914255687,509.50802512691541,1.2322289742230175,32.200000000000003,3.6000000000000001,818.56952975986678,820.60911027263558,821.71813541222264,824.09716627925604,826.10741334773729,826.86066086081405,163.2001481934106,158.09215873347162,152.8425027710164,150.14225823607831,149.4091169193745,149.83550771468717 +1985,6,24,12,0,663,252,11.5,887.07763238351538,10.249304043913542,16.68756970267366,144.7297484181595,0.0,282.69771538137411,919.87767924427453,1.0,282.69771538137411,552.62002879843851,1.2720580681847125,33.899999999999999,2.1000000000000001,905.17113113032929,905.96527878952043,906.32367851798608,908.65584256898592,910.63500841424514,911.36991578285176,174.96948207678741,169.36893091599887,162.86333321779887,158.8253344871124,157.03366252350483,157.31883929135407 +1985,6,24,13,0,532,364,12.5,878.73313749445754,5.821579001846196,14.637611707194475,196.8475861558706,0.0,287.25529236809626,909.64543862449523,1.0,287.25529236809626,547.82605332650496,1.278186292741191,33.299999999999997,4.5999999999999996,890.13241204219514,891.79367995578878,892.66657618266697,895.15018689417548,897.25269011365606,898.03842054318568,177.16223646685734,172.0801404448265,165.96842871595408,162.12033375710121,160.31838653857821,160.37135928590331 +1985,6,24,14,0,487,335,13.5,786.84353953698383,18.116398839755167,21.90401065765267,235.47811249247786,0.0,256.97499279257943,811.83606728424093,1.0,256.97499279257943,491.13083703127745,1.2522428215471249,34.399999999999999,3.6000000000000001,792.41811012000403,794.13963978081529,795.06237471295572,797.5042934375507,799.56282787790315,800.33903684598863,157.85377439423326,152.98406774747579,147.73811965294342,144.83067425685991,143.8483117442301,144.18392313947393 +1985,6,24,15,0,526,305,14.5,747.56531164851344,31.37361986885472,32.71398216059054,254.4274624866963,0.0,243.91731358194434,764.63477732030492,1.0,243.91731358194434,466.48449327825341,1.187191162069342,33.899999999999999,4.5999999999999996,744.02258186160714,745.87948116833127,746.89084118871165,749.17378282761183,751.09894990503392,751.82289408784709,148.37686748679525,143.33802470021277,138.82894892351578,137.10160624698386,137.12958186579945,137.84106637354748 +1985,6,24,16,0,531,247,15.5,626.20991262235771,44.64105062723732,44.42699427936933,266.1180727920427,0.0,209.07584714582759,631.08027680334692,1.0,209.07584714582759,390.96100881796878,1.0626908430668487,33.299999999999997,3.6000000000000001,608.42006823484667,610.15855286577971,611.11711140486125,613.10647970116065,614.7827456906216,615.41432515986025,124.30005841967282,120.12538962453645,117.49521195561033,117.59158089839678,118.95938963369559,119.85776967504466 +1985,6,24,17,0,322,200,16.5,378.64490155956918,57.768272754349965,56.303208991784416,275.17232903222987,0.0,132.22403382355554,371.8823675237237,1.0,132.22403382355554,235.91469712607383,1.5,34.399999999999999,4.5999999999999996,347.74187877444513,349.61165354306422,350.67497834062385,351.73793225272567,352.63500652170433,352.97159662527412,75.41202630164878,74.504418464068152,74.76366497753601,76.15018541583261,77.476534197815596,77.277170481066506 +1985,6,24,18,0,363,127,17.5,262.86452372061797,70.64146367929807,68.02003014498854,283.3269448185927,0.0,101.23593271642793,245.38872336967779,1.0,101.23593271642793,164.86276372328695,1.5,33.299999999999997,4.5999999999999996,211.69112074632471,212.8444650672802,213.48782485582976,214.60358929676687,215.5295128890811,215.89023106793778,57.930244749664233,59.728188260480636,60.826721072281565,61.179069934464792,60.444366838183399,58.728906015856879 +1985,6,24,19,0,100,68,18.5,86.527765828453738,83.10476850969623,79.32267909353682,291.4524765674268,0.0,34.726785794704597,76.397165349900234,1.0,34.726785794704597,53.70958329160905,1.5,31.699999999999999,2.6000000000000001,62.151278881549885,62.954723927351431,63.418815962537657,63.603659714099621,63.762014345330485,63.819196508419147,20.077267870296144,20.356462250405052,20.51967300257169,20.566399212673176,20.405053547116477,20.025507172128091 +1985,6,24,20,0,2,10,19.5,10.098012550184624,91.87554012642366,87.19102215431624,297.8374988946861,1.0,3.1995206764193029,9.8244918180722109,0.0,3.1995206764193029,6.2075239409235534,0.9827615108530399,26.699999999999999,1.5,9.1266929158473857,9.265831911198303,9.3474214835332976,9.3264514414430444,9.3103434395894773,9.3028200248431112,1.8805619979117669,1.8737950128547416,1.8698817304098738,1.8633032574980422,1.8510234419519918,1.8365884623940953 +1985,6,25,5,0,4,1,4.5,1.0676931640375551,93.95971698423732,89.03032056026098,60.41463021373676,1.0,0.3153840511724062,0.99240387608929914,0.6323958270007538,0.3153840511724062,0.28381628697159783,1.5,21.699999999999999,4.5999999999999996,0.91266251145479915,0.92657638349400351,0.93473707401074935,0.93783595489567539,0.94043078533943436,0.94142391094159994,0.18501239339207848,0.18512114559157619,0.1848132725734517,0.20413241201841664,0.27763092447464283,0.27618024367333011 +1985,6,25,6,0,160,36,5.5,53.903630679372824,87.82624573066619,83.57527923088891,65.2409679271672,0.0,29.444286155610374,36.732624122265413,1.0,29.444286155610374,34.156152580289415,1.1197460603610967,21.699999999999999,6.2000000000000002,26.232995862310368,26.604013838876682,26.812876314894034,27.166311558542969,27.460763179352249,27.574910707047511,17.516789488369636,17.511769757816779,17.359755120686753,17.225640850002332,17.061423873869305,16.839545175222746 +1985,6,25,7,0,189,116,6.5,172.73681497000638,75.6014901435016,72.53069707376683,73.52691851693876,0.0,66.507205076417151,159.20956427765006,1.0,66.507205076417151,107.92745557719496,1.427308756960238,22.199999999999999,5.2000000000000002,133.70618798029963,134.92243141068417,135.61844471430251,136.22195684011197,136.72951282434289,136.92201655956379,40.028239295995185,40.149951400498018,39.659729322106763,39.000868034877435,38.273877000833103,37.644156193378841 +1985,6,25,8,0,724,86,7.5,437.61195838913346,62.86564802383551,60.94480960478143,81.592179978068,0.0,162.60819815149028,419.30090915660469,1.0,162.60819815149028,273.45885907384832,1.5,23.300000000000001,4.5999999999999996,384.43148340878139,385.06098761114498,385.37186093594124,386.82621069605807,388.04328781727293,388.5087981101708,89.97348463981929,90.602557513567362,92.626135078529487,95.461746752952749,97.247358528446583,96.035608907392316 +1985,6,25,9,0,811,95,8.5,625.98083404572469,49.8234810084407,49.1013053535612,90.16053348058905,0.0,216.85473763930574,624.29071114907197,1.0,216.85473763930574,389.70246294274853,0.988604123077025,24.399999999999999,5.2000000000000002,603.51041181374251,604.05747641959374,604.30746544503154,605.85367825847459,607.17349198586464,607.65635139452854,126.81377430893474,122.38367369900305,120.34613930707411,121.4423628074474,123.8187167052792,124.91036952495308 +1985,6,25,10,0,842,124,9.5,794.02064350059948,36.597731185965685,37.273943707351286,100.50906110457314,0.0,260.17704505084447,807.26534737063969,1.0,260.17704505084447,492.54331070741409,1.1477261844398003,25.600000000000001,4.0999999999999996,792.23077021498705,793.13233374818935,793.57047091307834,794.91971432040089,796.09514461114941,796.50201512002332,157.79460322419854,151.51260123737575,146.52133271274846,144.83255534200904,145.1917649693174,146.37364080644537 +1985,6,25,11,0,802,145,10.5,866.05920159436164,23.309673196477675,25.96308315659619,115.69560048763145,0.0,284.1898368193107,892.30794476390611,1.0,284.1898368193107,538.00086524368442,1.232600328853684,26.100000000000001,3.1000000000000001,879.99722025766982,880.58792718725044,880.82719365052969,882.55566136058485,884.04655628617513,884.57744769948783,174.9599511068439,168.5685249221026,162.16171908725539,158.67950548975986,157.63860527592536,158.36036256882596 +1985,6,25,12,0,886,141,11.5,989.4783499295321,10.304444156883367,16.734257738822702,144.6274924588962,0.0,315.34274810333318,1021.0942580513847,1.0,315.34274810333318,611.2651743760224,1.2725451375834425,27.800000000000001,3.1000000000000001,1010.0242285142134,1010.8741364116477,1011.2525099485925,1012.0350988900913,1012.7700789714742,1012.9790772314336,194.89550330324033,188.39016789360235,181.11382779857354,176.28943102904731,173.90767468269561,174.22915031723466 +1985,6,25,13,0,893,133,12.5,996.96486265411079,5.8064219049734165,14.65067544116118,196.63516923129902,0.0,327.04268774130867,1029.767654027748,1.0,327.04268774130867,615.7374376290702,1.2787875517235194,28.899999999999999,1.5,1019.1910911293991,1019.9720296809329,1020.304314459623,1021.0324636776841,1021.7275753060629,1021.9166606512722,202.22145481111153,195.64129979998066,188.09643461305575,182.95611296059937,180.3068969803023,180.50333156713842 +1985,6,25,14,0,862,103,13.5,902.86325499724262,18.0776334399412,21.887806788770398,235.33605509265902,0.0,287.78183723176176,930.26179716841193,1.0,287.78183723176176,558.37815350320182,1.2529867037544378,29.399999999999999,4.0999999999999996,920.08878533007635,920.73004695111752,920.99629825594297,921.92464012689686,922.76871403438383,923.03080769326539,177.68103085902055,171.41214849722914,164.74110385442137,160.6087083745914,158.84795346925677,159.32356986018115 +1985,6,25,15,0,701,167,14.5,756.97734417087872,31.3333633519998,32.68815399762579,254.33647929110515,0.0,254.87339830783895,775.49154085944542,1.0,254.87339830783895,471.32901104022426,1.188142362210563,30.600000000000001,3.1000000000000001,760.76046158385793,761.6372911787256,762.06047529374405,763.96768717411351,765.59349036269475,766.1889653024723,155.72860718768996,149.92986878487307,144.68066915439837,142.42322951416011,142.25823311189149,143.12990393173081 +1985,6,25,16,0,595,213,15.5,638.12137497799154,44.60173420702142,44.39860569764678,266.04967966441194,0.0,213.7879687962714,644.12464240613258,1.0,213.7879687962714,398.98457387043351,1.06398234472912,30.0,4.0999999999999996,622.35706703903168,623.70591506862877,624.43106789119327,626.64912274894994,628.51253019308251,629.21979441504277,127.22738889710929,122.74101738142457,119.91307241908058,120.03905807051224,121.56021166231992,122.58505258970651 +1985,6,25,17,0,622,141,16.5,486.33781036598606,57.73093469854455,56.27513090148902,275.11440622491835,0.0,175.32628059891212,476.7932392948785,1.0,175.32628059891212,304.43217222715469,1.5,29.399999999999999,2.6000000000000001,447.72864511460216,448.70866102326079,449.22665430205438,451.03774216399779,452.55263552283748,453.13364111263701,99.265996680305292,97.768433684135317,98.25848791151472,100.66153581076836,103.04453890937695,102.93404320302119 +1985,6,25,18,0,488,100,17.5,282.8555810703474,70.60697648129401,67.99397690342286,283.2736313837611,0.0,111.61887143156382,261.08927508432316,1.0,111.61887143156382,176.90521291353329,1.5,28.899999999999999,3.1000000000000001,223.90344937549179,224.78247642654497,225.25763006975751,226.26924197081968,227.11254520283001,227.43701261136675,63.660245322562126,65.819925706546812,67.172420288046396,67.553418656049388,66.613597446424691,64.574316538855541 +1985,6,25,19,0,129,77,18.5,100.95062274794236,83.07421578657885,79.30016753244269,291.4003431166344,0.0,41.003585512023193,88.032868764681396,1.0,41.003585512023193,62.607371545763904,1.5,27.199999999999999,2.1000000000000001,70.667121431099176,71.559071586888678,72.073228388165461,72.267735575491159,72.435378264715411,72.494947382081875,23.658281258497055,24.014502606240846,24.234292525081585,24.301430550327812,24.102738836932041,23.635340680156702 +1985,6,25,20,0,34,14,19.5,15.671383159650791,91.86009626843611,87.1822996386206,297.7930311589099,1.0,5.3581822055479513,12.041434972219275,0.0,5.3581822055479513,11.769522593754798,1.0262174129340753,22.800000000000001,1.5,10.867810158096018,11.033466835499716,11.129999705781538,11.22027972731386,11.294927904617223,11.32441242412372,3.5112448382419981,3.4923369634278529,3.4629145200913811,3.4604790840385284,3.4645522721093363,3.4472362460021508 +1985,6,26,5,0,1,1,4.5,1.0165194343726525,93.9800757533507,89.05346307682768,60.43125936258481,1.0,0.31471879268676251,0.99240387608929914,0.6430008712832427,0.31471879268676251,0.077005634038866427,1.5,17.800000000000001,3.6000000000000001,0.9126615145680903,0.92657538660729466,0.93473635100035402,0.93783545441986715,0.94043028486362601,0.94142358501708323,0.18462415239253355,0.18473334766799696,0.18442654099003503,0.18800557287154732,0.20793310255615183,0.2064881396836829 +1985,6,26,6,0,10,38,5.5,39.109243658051867,87.8825757297473,83.63139606195548,65.23512529194068,0.0,13.502203370460412,36.809764016203239,1.0,13.502203370460412,23.846881646941821,1.0799868191266393,18.899999999999999,5.2000000000000002,33.52310120455104,34.031557217324206,34.328956365629629,34.267005100499127,34.220544306821338,34.197697779553565,7.9098324123189325,7.8844081447499414,7.8585991843018341,7.8215240244076245,7.7606385180146571,7.6919308208145543 +1985,6,26,7,0,41,104,6.5,116.26878451432657,75.65827941398354,72.58811977220364,73.52556894396014,0.0,39.946744274715378,111.32983874890536,1.0,39.946744274715378,71.539357787704091,1.423511178900251,18.899999999999999,4.5999999999999996,99.43457811951734,100.72292199030298,101.47377052507682,101.50874705739056,101.54814302440296,101.55383945208337,23.657016639184913,23.652691868444844,23.495657217618092,23.272331898855072,22.989382515119367,22.715751848590926 +1985,6,26,8,0,152,194,7.5,267.6853471325752,62.9218779348954,61.00246309892583,81.59419414458925,0.0,91.800059188099567,260.83462774477294,1.0,91.800059188099567,166.13364447729481,1.5,20.0,3.6000000000000001,239.69322748782372,241.7540119275375,242.94496168144835,243.49692256324866,243.96735073337376,244.13937707188876,52.149959269943842,52.315651110017242,52.891112161652281,53.73799075916439,54.199280048469426,53.635902285515336 +1985,6,26,9,0,220,244,8.5,387.87145847435352,49.879041464081915,49.159072407884274,90.16458609729145,0.0,129.93324835042273,387.46610012909531,1.0,129.93324835042273,242.17959126500634,0.9887078997824869,21.699999999999999,4.0999999999999996,366.77960031675366,368.93024312587454,370.16349265442528,371.44349547717263,372.51876626264311,372.92755082374083,76.103569237493005,74.388046469934096,73.535233954839754,74.046651804631324,75.020911258236723,75.254734529406775 +1985,6,26,10,0,612,222,9.5,708.62309427638615,36.65279654262366,37.3319181873563,100.511852998173,0.0,231.78869141743959,722.91418226325277,1.0,231.78869141743959,442.68810488736534,1.1481113941325147,23.300000000000001,5.2000000000000002,704.41876046870357,705.61750172267261,706.24321899656911,708.56355287211909,710.51578132243503,711.25403292129579,140.56596021688591,135.3490175821747,131.07922303404951,129.82688510736142,130.35237845505324,131.31759874670547 +1985,6,26,11,0,726,230,10.5,882.40780331883241,23.364921627493953,26.02099694527925,115.68378989848317,0.0,289.22864769215408,910.02018542670635,1.0,289.22864769215408,549.79408006188055,1.2331305418262304,25.0,5.7000000000000002,894.19695375584183,895.11496403331557,895.54714119232756,897.89856599045811,899.89512222264943,900.63449492632139,177.93930246554868,171.68081400687174,165.32261625319791,161.97216618552204,161.05428796828392,161.73573856248191 +1985,6,26,12,0,716,223,11.5,908.48889178731145,10.362132166295932,16.786669045321233,144.53909042334465,0.0,289.58287143242723,942.52521580235452,1.0,289.58287143242723,565.67184186742259,1.2731833840969746,26.100000000000001,6.7000000000000002,928.75301924499831,929.37410800876569,929.62662164872222,931.90648606281763,933.84574564275431,934.56182426338182,179.36369741248831,173.51967602984394,166.75327107161533,162.5296139207303,160.6458069010194,160.96383889475325 +1985,6,26,13,0,686,220,12.5,883.63467874661353,5.797063492814944,14.670677947366338,196.4183926362702,0.0,290.01159283103237,917.80386331512068,1.0,290.01159283103237,550.30329459180075,1.2795376933539466,27.199999999999999,6.7000000000000002,904.60706417691824,905.15802191188857,905.36835358280462,907.61837054653085,909.5339841105756,910.24030178935834,179.70637467248389,174.0178248398596,167.25287199022603,162.91400154987991,160.87797113727842,161.07104946054403 +1985,6,26,14,0,766,176,13.5,886.8377581925248,18.041463751687445,21.87688875513111,235.18171657433152,0.0,282.63986703974331,915.98217010543408,1.0,282.63986703974331,550.89040477736398,1.2538821131652895,28.300000000000001,7.7000000000000002,903.01728212226942,903.75288526846452,904.07739639903627,905.84894648947898,907.37400212742966,907.92017560992167,174.5711534806205,168.58160550710645,162.08585347873702,158.20793304704432,156.66830300051234,157.12039454087196 +1985,6,26,15,0,635,203,14.5,737.55925193252313,31.295391149788284,32.66659713691519,254.23535035587608,0.0,248.24557548109738,756.82040286752192,1.0,248.24557548109738,460.46138441596548,1.1892526441082574,28.300000000000001,7.2000000000000002,740.98949002090615,741.89542068694959,742.33849783313906,744.63061151617615,746.56589389298767,747.29181507533258,151.7208448574039,146.15939377438843,141.07174557479192,138.95820315625031,138.8875089432326,139.72667816558632 +1985,6,26,16,0,703,170,15.5,672.4961524980007,44.56482586448081,44.37415034495284,265.9731579590228,0.0,232.09466125906701,678.72650798960854,1.0,232.09466125906701,419.85066163605649,1.0654446536264663,26.699999999999999,5.7000000000000002,658.56726557639547,659.51435056687808,659.99334390360195,662.08893490099103,663.85971845866993,664.52230183183121,138.41551917003582,133.2353568994393,129.90646382939264,129.84167175847261,131.42590432856338,132.63691124490316 +1985,6,26,17,0,523,102,16.5,392.55573871262936,57.69628920988139,56.25098727211807,275.0496809262619,0.0,142.18535791519068,384.93647658755691,1.0,142.18535791519068,245.99098816889173,1.5,26.100000000000001,6.7000000000000002,361.66001168565219,362.27830430194956,362.59339374414213,364.1415350873516,365.43438409074724,365.93220474235761,80.421956107918589,79.17710246603734,79.591751834643105,81.612442900096767,83.625166267209622,83.553693455080307 +1985,6,26,18,0,662,64,17.5,312.28892639126224,70.57556545883273,67.97205284432322,283.2143943160361,0.0,126.70974235611072,285.30309610614677,1.0,126.70974235611072,195.53368960901557,1.5,25.0,5.7000000000000002,242.18458593792246,242.68619371105626,242.92956604787216,244.10596199910364,245.08521542351167,245.46314957251306,72.051247373176963,74.7673527057879,76.481366942591777,76.955813793459285,75.788205638637422,73.286540195242338 +1985,6,26,19,0,428,41,18.5,120.59673145090569,83.04719251210884,79.28209513884758,291.34291421658116,0.0,62.656474622860429,89.584397718935833,1.0,62.656474622860429,76.078588010448598,1.5,23.300000000000001,5.2000000000000002,55.023033077586661,55.382878678999333,55.570453817107023,56.226909353511296,56.772998370639442,56.985064666641009,35.804649666222112,36.774392816127758,37.384883784136342,37.641711605992576,37.286354881043998,36.289833623092044 +1985,6,26,20,0,52,11,19.5,13.562188553938338,91.8456983964787,87.17572967263817,297.7415417219567,1.0,4.9249948131486967,8.3242233013671587,0.0,4.9249948131486967,11.510989622796867,1.0644100696067529,20.0,4.0999999999999996,7.304223031904451,7.4155404593626955,7.4798795544994121,7.6174284736612972,7.7302750051748692,7.7756812945383258,3.4431962902537432,3.4210077840792428,3.3787839932206971,3.3731934865411635,3.3811282257808086,3.3667161557884286 +1985,6,27,5,0,1,1,4.5,1.0160869762010647,94.00094701187767,89.07824439865732,60.45519847602802,1.0,0.31471317073053179,0.99240387608929914,0.6541572988607196,0.31471317073053179,0.077369023105560791,1.5,11.699999999999999,3.1000000000000001,0.9126615061436153,0.92657537818281965,0.93473634489034874,0.93783545019045378,0.94043028063421275,0.94142358226276524,0.18462087145143552,0.18473007047123829,0.18442327280468765,0.18645310637864065,0.20815014018877415,0.20670522563729091 +1985,6,27,6,0,191,33,5.5,53.98830271799838,87.94168136814626,83.69123283306283,65.23500798414248,0.0,30.899922639082966,34.812649384340638,1.0,30.899922639082966,34.164369771008424,1.0378441944839825,13.300000000000001,3.1000000000000001,24.057336073237988,24.395108308549368,24.583649355433849,24.919697905603961,25.200727368300878,25.30874030623664,18.391234904839692,18.32667059148822,18.131882808013525,17.991545658327571,17.840578486880677,17.639435748361908 +1985,6,27,7,0,514,67,6.5,220.28828844747736,75.71735454315926,72.64890177967239,73.53046247110213,0.0,95.059709749191157,192.42104367282099,1.0,95.059709749191157,138.45746839362215,1.4198623116226403,16.699999999999999,4.5999999999999996,149.8240273764138,150.37663355233542,150.66401427421945,151.68173886787059,152.53336408244724,152.86049921274756,57.940954579448523,58.207896132449584,57.215000954926246,55.815378736739817,54.336973537189046,53.214100836646324 +1985,6,27,8,0,675,96,7.5,422.59522038517389,62.97994313547442,61.06318736233998,81.60319412256807,0.0,156.85529064778737,405.07889496683464,1.0,156.85529064778737,264.17879954003996,1.5,19.399999999999999,4.5999999999999996,371.01121198913177,371.65692234719148,371.97970789389018,373.42224229234307,374.62838334610854,375.09072478158186,86.828622178114401,87.43721474129255,89.376418277567538,92.102418982828837,93.82202983053962,92.65591160284238 +1985,6,27,9,0,717,113,8.5,581.31500009995466,49.93608654218362,49.21979775362516,90.17678147336258,0.0,200.90102912228778,580.53719302820252,1.0,200.90102912228778,362.66399198440996,0.9890058742209107,21.699999999999999,3.6000000000000001,559.58822886403573,560.2925099700276,560.64147515710795,562.35623850714796,563.80734480665922,564.34955562190476,117.53849625888692,113.5683122931938,111.72059341660039,112.76163313792529,114.96521808266922,115.93123366996078 +1985,6,27,10,0,683,205,9.5,747.63571377149958,36.709128965937076,37.39302071942644,100.52466007624218,0.0,244.76709799476569,762.68270239194624,1.0,244.76709799476569,466.60694396646466,1.1486700107945131,23.300000000000001,5.2000000000000002,744.64118145799591,745.69484130791943,746.22931544577614,748.50932560255387,750.43326039297608,751.1555415517355,148.5152695054604,142.85943590173409,138.25576903199919,136.87060651963293,137.40467657397258,138.47134212726178 +1985,6,27,11,0,411,366,10.5,735.14373474723857,23.42148887238821,26.082756343401666,115.6849026158235,0.0,239.60203033903809,755.77657011913232,1.0,239.60203033903809,459.08769371221581,1.2338199181487761,23.300000000000001,3.6000000000000001,734.7182952772223,736.80029909700283,737.94526449878288,740.32511353561972,742.32723748397086,743.08551415709178,146.55168321817752,142.12436969717174,137.53326246015112,135.22045008510196,134.62608712464592,134.96744522492162 +1985,6,27,12,0,518,309,11.5,804.77445889595117,10.422303370251305,16.844732535135517,144.4647210157853,0.0,256.24929302989511,833.49845621538407,1.0,256.24929302989511,502.20626022096241,1.2739727965577572,25.600000000000001,4.5999999999999996,815.72573549617562,817.13039435037808,817.86321129288115,820.30828796510514,822.36956715623978,823.14723069853733,158.11747952444736,153.41441296232648,147.88178617576634,144.52267673485895,143.05934721600775,143.22557662479872 +1985,6,27,13,0,717,259,12.5,952.53848258056223,5.793679736351297,14.697636794165083,196.1978966294756,0.0,312.43397912333245,988.54515565414204,1.0,312.43397912333245,592.85266313270438,1.280436449223259,25.600000000000001,4.5999999999999996,973.70832760030169,974.48857075462126,974.82637971452482,977.1312068314619,979.09822064339278,979.8192233234339,193.43319608845465,187.37585767056163,180.18639645370098,175.55996104750457,173.36878727933396,173.55352129176435 +1985,6,27,14,0,305,384,13.5,667.04693162908143,18.00801063869159,21.871337521925252,235.01536811646423,0.0,211.93149357652038,684.49016653116655,1.0,211.93149357652038,415.68960707143685,1.2549285223053221,24.399999999999999,3.6000000000000001,662.70785818546221,665.31629324146752,666.78474467739125,668.66551259970493,670.25391146095012,670.8500188541467,129.42993739645104,126.05246965680558,122.26900871079053,120.14292143882044,119.3135071359041,119.34712367375063 +1985,6,27,15,0,529,309,14.5,754.41144404376394,31.25980304278104,32.64939499108303,254.1242002501256,0.0,252.24931022354687,771.86471212787762,1.0,252.24931022354687,470.70294273663313,1.1905211645251494,24.399999999999999,4.0999999999999996,751.08959429431081,752.97502618249655,753.99965083518509,756.28269539144742,758.21077145870913,758.93355486415589,153.57425676309595,148.45586559833541,143.75015698602095,141.81414819281173,141.72579906314675,142.38902414783908 +1985,6,27,16,0,566,226,15.5,630.7113683000025,44.53041515267927,44.35370674303347,265.8885909972115,0.0,216.02275843951224,635.96663969732185,1.0,216.02275843951224,393.62865140443222,1.0670764728381719,24.399999999999999,3.1000000000000001,614.20029405963737,615.76280359434224,616.61365666739493,618.55766476315159,620.19978891652477,620.81476942318068,128.6619955676087,124.22220559278894,121.35051696393457,121.30540520648015,122.65234220153853,123.61318531258925 +1985,6,27,17,0,512,167,16.5,451.59422338313584,57.66441826658158,56.23085082606896,274.97822204102835,0.0,161.228364951689,443.1806657113284,1.0,161.228364951689,282.22204496497136,1.5,25.600000000000001,3.1000000000000001,415.78988262693503,417.10671607944585,417.83032118811366,419.36483770483125,420.65184223137965,421.14220749262461,91.482771251756645,90.184559561291337,90.594648318503872,92.644654369683337,94.658899458975839,94.514621192733358 +1985,6,27,18,0,43,156,17.5,172.13986156320854,70.54730546336094,67.95432426948543,283.14929753353744,0.0,58.32328009770788,166.4771534515605,1.0,58.32328009770788,106.01456670229375,1.5,23.300000000000001,3.6000000000000001,150.84915639389209,152.67981459735819,153.74609907706639,153.83083136295576,153.91406473468959,153.93402434824401,33.768629747643196,34.114899083757415,34.34060366649868,34.378649028867308,34.106568736309171,33.563180494228696 +1985,6,27,19,0,0,52,18.5,52.0,83.02376584203581,79.26852084015363,291.28025331072934,0.0,16.64979072093049,50.765847070888555,1.0,16.64979072093049,31.697305173969692,1.5,22.800000000000001,2.1000000000000001,46.776299195305427,47.483445755874747,47.897929256437017,47.813768171874152,47.750110513202642,47.719359102711756,9.7130171902783093,9.6976308195595831,9.6899072544593761,9.6644332208873145,9.6014856387149283,9.5161874901933974 +1985,6,27,20,0,2,13,19.5,13.098698824487734,91.83237752241762,87.17133802659096,297.68307678848976,1.0,4.1453625769058293,12.777294928119076,0.0,4.1453625769058293,8.036559379785718,1.0973661467391143,21.100000000000001,2.1000000000000001,11.864680187895267,12.045560951056185,12.151632186139381,12.12635077462156,12.107008410063317,12.097894910534833,2.4330689318144576,2.4250132814057532,2.4200853431855491,2.4116558591594672,2.3957467046673488,2.3767858662460766 +1985,6,28,5,0,0,1,4.5,1.0,94.02228309940394,89.1046183796046,60.4864549702507,1.0,0.31450404003991794,0.99240387608929914,0.6658311209952925,0.31450404003991794,0.0075961164082149479,1.5,16.100000000000001,2.1000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,6,28,6,0,2,31,5.5,31.217570203116132,88.00348157086007,83.75471325752616,65.24065135391578,0.0,10.142518310587013,30.25253844320093,1.0,10.142518310587013,19.020969095462274,0.9932365214700392,16.699999999999999,2.6000000000000001,27.913473497084009,28.3383933094672,28.587406532550332,28.533960501197722,28.493451240719079,28.473976117311974,5.9295747792715412,5.9105864186922821,5.8968406131327828,5.8756457889280931,5.8363707604392356,5.7886130631747417 +1985,6,28,7,0,103,125,6.5,155.60735510016329,75.77863604925128,72.71296703796702,73.54162552220467,0.0,56.823101238963247,146.06381908608535,1.0,56.823101238963247,96.568449476473234,1.416368710771072,17.199999999999999,2.6000000000000001,126.263357207024,127.66004331407106,128.46808220857216,128.79239339962371,129.07101846012208,129.17125548213383,33.9838792388271,34.005286569455414,33.653856407321804,33.196855165994542,32.682740173797463,32.231569728608257 +1985,6,28,8,0,297,207,7.5,350.41275107844888,63.0397652410285,61.126905842110844,81.61919833308869,0.0,123.45134180493636,339.9469363574143,1.0,123.45134180493636,218.3589114991708,1.5,19.399999999999999,2.1000000000000001,311.60474273799025,313.58533094009692,314.71608115770823,315.72234669156944,316.56816987288619,316.8883495467266,69.5254351483172,69.854523587515089,70.891292843774238,72.403260356386212,73.306074809368951,72.492597441971427 +1985,6,28,9,0,304,315,8.5,513.30465803409356,49.99454058411694,49.28340548875177,90.19713006731874,0.0,172.27737414107071,511.99461664616888,1.0,172.27737414107071,319.68133674233115,0.9894996224789079,21.699999999999999,2.1000000000000001,485.87968797035597,488.59297419928635,490.14596697065281,491.54646550845052,492.73209609967921,493.174433539662,100.85037532406325,98.468866352119662,97.31016558798737,97.953698199972933,99.223422298184587,99.565095415552378 +1985,6,28,10,0,385,391,9.5,696.61612257259299,36.7666576149474,37.45717679301995,100.54748406190379,0.0,225.9515272708903,705.68593086783198,1.0,225.9515272708903,433.3351829491578,1.149402781699508,22.199999999999999,2.1000000000000001,680.20050080392673,683.23238255653871,684.9511850209567,686.6496590127017,688.0943509823519,688.62605937154706,135.98757527730405,131.91845360308477,128.58815815305402,127.57027062314025,127.83740849397522,128.36041750302749 +1985,6,28,11,0,470,399,10.5,820.89854747266781,23.47931238238834,26.148287862114394,115.6989377195908,0.0,267.54545958094945,842.99313041744631,1.0,267.54545958094945,511.62934461706527,1.2346687335985982,24.399999999999999,2.6000000000000001,820.45411543526461,822.78504426539405,824.06718053457053,826.36785524164702,828.31462518474279,829.04155635316056,163.57863980262502,158.59101706827238,153.46752810285457,150.82653347345621,150.08899978728942,150.46884247723742 +1985,6,28,12,0,523,372,11.5,872.3912685135208,10.484903752083993,16.90837768073833,144.40452601617187,0.0,277.6932870096349,902.26761871173528,1.0,277.6932870096349,543.86038148796797,1.2749133342223886,24.399999999999999,2.6000000000000001,882.14491637873095,883.93531026808569,884.88921436727367,887.35894035046636,889.44667470975821,890.22911677812385,171.10821834702853,166.11687349905574,160.26386780173766,156.68927314297414,155.10201714798444,155.24576979907451 +1985,6,28,13,0,362,438,12.5,788.10026575357188,5.7964477590296895,14.731565327295264,195.9743283933054,0.0,256.36081549682484,811.52866458910705,1.0,256.36081549682484,490.57406176663625,1.2814835245140859,25.600000000000001,3.1000000000000001,788.35895155367598,791.07794104873119,792.59351145935796,794.60389365678475,796.31186643829824,796.9444432260392,157.09903190322854,153.11106147597275,148.30931259671038,145.2907685249092,143.81895300611501,143.71257905964393 +1985,6,28,14,0,253,438,13.5,672.7899209385107,17.97739992575895,21.87123350893468,234.83730354195595,0.0,213.66130389603148,689.79329845368022,1.0,213.66130389603148,419.44518416993793,1.2561253844950966,24.399999999999999,2.6000000000000001,666.10950847405013,669.03573974210849,670.69278419299235,672.66342900357643,674.32478763708593,674.95094090534064,130.27380234069608,127.02863181372754,123.37101958779941,121.33940051424145,120.54901087389817,120.53887641399534 +1985,6,28,15,0,521,300,14.5,738.73814899165257,31.22670102356532,32.6366310121082,254.003165045626,0.0,247.05899493821025,756.14762540964671,1.0,247.05899493821025,461.05108702414913,1.191947074351446,25.600000000000001,2.6000000000000001,735.82917675941246,737.64653170981296,738.63264187989171,740.9120634658093,742.83560556934424,743.55805570319853,150.43939059045167,145.41570155885694,140.79274585940729,138.89723740282093,138.81993511402601,139.47529815620697 +1985,6,28,16,0,422,271,15.5,572.83012425346942,44.49859239758855,44.33735304294881,265.79606877851484,0.0,194.91860412798607,577.91724404753563,1.0,194.91860412798607,358.160602148122,1.0688765256637018,26.699999999999999,4.0999999999999996,555.17009892151896,557.11175528958393,558.19576957063737,560.21332261521479,561.90772622062173,562.55144647133363,116.0061294524407,112.33365769296795,109.91959113724943,109.93610680872825,111.10767698170855,111.84500469131967 +1985,6,28,17,0,239,236,16.5,368.90336907789475,57.635403662685555,56.214793398177534,274.900102896498,0.0,125.35390622345288,363.48956231578683,1.0,125.35390622345288,230.14383183407696,1.5,25.0,2.6000000000000001,338.94478699892829,341.12148103186951,342.37004629001626,343.52551253573802,344.4957554350612,344.86444010732134,71.790514436988545,70.985371956063631,71.143050902656427,72.337880942854369,73.488553084870887,73.292885549603852 +1985,6,28,18,0,183,140,17.5,208.72811766635473,70.52227042424632,67.9408561030218,283.07840808240894,0.0,75.616215678120653,198.19509076359753,1.0,75.616215678120653,129.45472488561123,1.5,26.699999999999999,3.6000000000000001,175.66997381371027,177.22925383835531,178.12603408699579,178.52338957749907,178.86278015452908,178.98550022674453,43.435297244052578,44.346803168616326,44.946472476616528,45.123593530552469,44.674187246141194,43.670832357163626 +1985,6,28,19,0,58,62,18.5,72.808944257599748,83.00400134868777,79.25950169769062,291.21242606717334,0.0,27.972784411147785,66.059236401820044,1.0,27.972784411147785,45.249610611180671,1.5,23.899999999999999,2.6000000000000001,55.208924715174206,55.951505857143616,56.382256035187098,56.560272409324099,56.711500888184034,56.767276895360588,16.181807725169172,16.370070318729038,16.485310840516927,16.541848140531823,16.448817881420037,16.178661075456429 +1985,6,28,20,0,0,9,19.5,9.0,91.82016382044118,87.16914937144517,297.6176855139078,1.0,2.8305363603592624,8.8402669090576804,0.0,2.8305363603592624,5.4722244364955746,1.1250923674776523,21.100000000000001,3.1000000000000001,8.2139507348603367,8.3391755832131746,8.4126250584428792,8.3932897958279344,8.3784022489165384,8.3714840103514199,1.6525141758835835,1.6472472096146962,1.6444792590980783,1.6388247291089448,1.6277336997859275,1.6147069648434913 +1985,6,29,5,0,0,0,4.5,0.0,94.0440347478583,89.13253698333598,60.525032889359295,1.0,0.0,0.0,0.677988408859208,0.0,0.0,1.5,18.300000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1985,6,29,6,0,75,38,5.5,46.071634014550995,88.06789441754901,83.82175993019403,65.25208811013785,0.0,20.584955239833008,37.295724871890577,1.0,20.584955239833008,28.613514662749981,0.9460728533077782,18.300000000000001,2.6000000000000001,31.159139952206576,31.62288295630049,31.890770089506255,31.995096799431849,32.085401267286045,32.117275666615072,12.157920585124536,12.09981452940241,12.005491491094796,11.94345244925119,11.870897587393314,11.76180796854757 +1985,6,29,7,0,117,142,6.5,176.63638739425366,75.84204458020855,72.7802392171267,73.55908127375051,0.0,64.90557756830593,165.23437176011757,1.0,64.90557756830593,109.52938847650344,1.4130371491615823,20.600000000000001,3.1000000000000001,142.4158692878942,143.96199703614755,144.85560777885124,145.19052605885832,145.4800457131856,145.58260725736972,38.84209177198224,38.863289227982698,38.44882285241669,37.900382324912179,37.286379472430873,36.762624086717786 +1985,6,29,8,0,256,172,7.5,295.35422390725887,63.10126679087119,61.19354235156225,81.64222115276948,0.0,104.05145125390986,286.75160127930781,1.0,104.05145125390986,184.26634679680649,1.5,21.699999999999999,2.1000000000000001,262.57549684345167,264.24545938687305,265.1988834320108,266.12369452003418,266.8986861312768,267.19429747888665,58.613241891022135,58.900708577008487,59.774364786080788,61.061428291333755,61.838142040980564,61.152605906320666 +1985,6,29,9,0,396,239,8.5,496.96981705685477,50.05432978447766,49.3498207678628,90.22563697524447,0.0,168.80782722900562,497.30880289807232,1.0,168.80782722900562,311.03694922303146,0.9901907164675363,23.300000000000001,3.1000000000000001,473.6428370921974,475.44750042614919,476.461631968929,478.3252621531044,479.88570173297103,480.48376353644113,98.873887569629673,96.187451560604828,94.879810631233312,95.689475521714698,97.280915660152701,97.813132874375185 +1985,6,29,10,0,693,207,9.5,756.61479227377765,36.82531475477935,37.52431370953727,100.58031855820336,0.0,247.69841392284093,771.92447999145656,1.0,247.69841392284093,472.14204709451104,1.1503104298051312,24.399999999999999,3.1000000000000001,753.65272525514979,754.72712242374587,755.27282875583762,757.55622964699342,759.48383203864921,760.20673842758038,150.28573069449834,144.56375156957418,139.90857202269476,138.50408019597819,139.03901415831461,140.11661559806939 +1985,6,29,11,0,739,228,10.5,890.97413342259711,23.538334843740618,26.217520441293836,115.72587864400127,0.0,292.05449394618228,919.1358821764137,1.0,292.05449394618228,555.05531337624495,1.2356772340184716,27.199999999999999,3.6000000000000001,903.31063819978976,904.22005456405122,904.64599557971223,906.99269753846045,908.98635489293383,909.72364132870621,179.68549301083897,173.3528860923355,166.92357641374269,163.53053250064448,162.596912332801,163.28796885362604 +1985,6,29,12,0,374,406,11.5,763.7008254144655,10.549889797676926,16.977534737545575,144.35861072490584,0.0,248.45174053050462,786.01473032840227,1.0,248.45174053050462,475.37898694799674,1.276004926807135,26.100000000000001,2.1000000000000001,763.69896322001659,766.30679377621334,767.75935861291146,769.70399061001376,771.35628550001582,771.96808248944853,152.27318376999659,148.39507378568018,143.72706642275713,140.79108097062488,139.35994432723223,139.2602348474453 +1985,6,29,13,0,118,403,12.5,517.09962852719127,5.8055437594918065,14.772472570675871,195.7483383431259,0.0,163.89725715397748,528.00199737332741,1.0,163.89725715397748,321.98285076273515,1.2826785986616818,27.199999999999999,3.1000000000000001,505.04993626729299,508.29806158580095,510.16622096600952,511.57818300712472,512.7708634922468,513.21855872911499,99.35064862280872,97.539906850168364,95.244038366461453,93.834009799907548,93.07948488599763,92.809739148540899 +1985,6,29,14,0,241,389,13.5,612.64514204286104,17.949762108710352,21.876656294279396,234.64783873534557,0.0,194.56930191123033,628.58309941930872,1.0,194.56930191123033,382.24249623787949,1.257472135127554,27.800000000000001,2.6000000000000001,606.86050589726869,609.4987327287397,610.99190944706481,612.88920827950949,614.48533815860674,615.09002661103045,118.67049867078663,115.71548404152004,112.37070362552997,110.52909951411769,109.82799908305635,109.82279855762414 +1985,6,29,15,0,72,341,14.5,401.63734501728527,31.196189115032418,32.62838848735681,253.8723922411777,0.0,128.38705980760881,402.90206946445414,1.0,128.38705980760881,248.13842822391689,1.1935295205560508,29.399999999999999,4.5999999999999996,381.22151183309199,384.8006900541136,386.88156480538134,387.3299899626644,387.730399005604,387.86033077887873,76.515491496639427,75.273380845469717,74.109827519763087,73.569329340291432,73.330145856860511,73.149291825821877 +1985,6,29,16,0,114,311,15.5,392.55399139465999,44.46944855052757,44.32516687017488,265.6956879291948,0.0,129.55847360307229,393.14697323535563,1.0,129.55847360307229,243.96445859396968,1.070843558340236,27.800000000000001,3.1000000000000001,371.7003241356515,374.67151725904034,376.39158310421931,377.31601283485986,378.10295143472331,378.39204583480864,76.62311542299112,75.070945085753422,74.025708734656078,74.006509717579874,74.387013110481504,74.466358854344449 +1985,6,29,17,0,296,196,16.5,360.65111316645687,57.609326881925305,56.20288580980124,274.8154011806581,0.0,125.73505813834636,354.80136418518077,1.0,125.73505813834636,224.81690569527311,1.5,27.800000000000001,3.6000000000000001,331.70055623064763,333.53456096484706,334.57921378533518,335.63356415748723,336.5221401972866,336.85675317345965,71.917178094141946,70.959904131394481,71.091622282839253,72.325712336783837,73.579263952399501,73.439236576215549 +1985,6,29,18,0,260,121,17.5,218.68496270389286,70.50053324084536,67.93171178721404,283.0017960650344,0.0,82.127601294066139,205.79274767900247,1.0,82.127601294066139,136.42514653420034,1.5,27.199999999999999,3.6000000000000001,179.83214995568034,181.07404037340643,181.77862421756302,182.46051439678331,183.03108705411236,183.2485965694537,46.999069799988405,48.257697030819465,49.079355140858006,49.357964514241523,48.835134880865155,47.579667008639042 +1985,6,29,19,0,38,54,18.5,61.084594930651377,82.98796292996595,79.25509282091932,291.1395002995248,0.0,21.822198545894015,56.975007757491802,1.0,21.822198545894015,37.545273346722389,1.5,26.100000000000001,2.6000000000000001,49.749941057960015,50.455224730431716,50.866377826291746,50.871754289144732,50.881751392879735,50.880383370106919,12.649244555895827,12.731155228285958,12.787867953170682,12.799721912895608,12.71639340265355,12.541350198938012 +1985,6,29,20,0,1,6,19.5,6.0493869047987943,91.80908658335309,87.16918723886528,297.54541992618584,1.0,1.9154508487726463,5.8911321913016419,0.0,1.9154508487726463,3.707494485057822,1.147575339915326,21.100000000000001,3.1000000000000001,5.4760095771055148,5.5594930614855693,5.6084479274967771,5.5946254756799982,5.5839544894829345,5.5790246104218202,1.1242748570386425,1.1203251716800087,1.1180323709243787,1.1136944832592561,1.105802967317713,1.0969853486823617 +1985,6,30,5,0,0,1,4.5,1.0,94.06615105996629,89.16195025939756,60.57093290875286,1.0,0.31450404003991794,0.99240387608929914,0.69059540149118,0.31450404003991794,0.0075961164082149479,1.5,20.0,0.0,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1985,6,30,6,0,4,25,5.5,25.425591187746814,88.13483722029152,83.89229440287437,65.26934829198117,0.0,8.1999799032604823,24.711206789273447,1.0,8.1999799032604823,15.485201126284588,0.8962522369763377,20.600000000000001,1.5,22.840051589437042,23.187899819155025,23.391789731835047,23.345984097428339,23.311128680799179,23.294512072645386,4.792000759777876,4.7760236687880493,4.7655856671205079,4.7490591461560738,4.7180094428539618,4.67998894021048 +1985,6,30,7,0,5,85,6.5,86.474317981221887,75.90750100914252,72.85064181174653,73.58284965165211,0.0,27.835365026565182,84.407419810852929,1.0,27.835365026565182,52.758676235108062,1.409874618230297,21.699999999999999,2.6000000000000001,77.630769266525732,78.771696687425063,79.439991631250365,79.315241759621273,79.221835780259923,79.175750559684985,16.317645500288275,16.277166720055405,16.225974387975452,16.143829020491559,16.01273650838089,15.869270320167372 +1985,6,30,8,0,5,158,7.5,160.40394754788917,63.16437134138017,61.26302116953483,81.67227294463895,0.0,51.265507959798065,157.4469515410012,1.0,51.265507959798065,98.008480076122581,1.5,22.199999999999999,3.1000000000000001,145.8779082135614,147.93099609959179,149.13330506372463,148.95087073208617,148.81691638909047,148.74799983205673,29.781403983322232,29.727602841590304,29.748951132514641,29.764168797534467,29.66004548347971,29.409006750807652 +1985,6,30,9,0,6,281,8.5,284.9031367793396,50.11538227557617,49.41896990178593,90.26230201477634,0.0,90.918806018533473,281.09812343755522,1.0,90.918806018533473,174.44386085607212,0.9910807210527174,22.800000000000001,3.1000000000000001,262.13202262131358,265.55867076635735,267.56387213695047,267.36004751592981,267.22028122037443,267.13792007561165,53.130557348607674,52.72509796954337,52.516040461018555,52.471920434322506,52.373408808954558,52.092748609192569 +1985,6,30,10,0,4,291,9.5,294.16939877143045,36.88503582158862,37.59436068145884,100.62314923536515,0.0,93.016267697237268,291.14963298827934,1.0,93.016267697237268,180.20594152531555,1.1513936521714638,23.899999999999999,3.1000000000000001,271.71391090982831,275.32283873607514,277.43529600164737,277.25909130231662,277.14225595933658,277.06876214493377,54.638246490064766,54.229566445056065,53.912664245617414,53.723434612018025,53.489233519953281,53.174927470458648 +1985,6,30,11,0,5,378,10.5,382.48280383365102,23.59850419234967,26.29038555832461,115.76569362559971,0.0,121.13874035701149,380.01528388437964,1.0,121.13874035701149,234.67839154902674,1.23684563469552,25.600000000000001,5.2000000000000002,355.53166316209058,360.03229276797913,362.66441294431559,362.55937239533546,362.50822400159279,362.45424849573101,71.448578048703524,70.863869533195754,70.306309026584614,69.933071783349888,69.559195722108413,69.14751054698192 +1985,6,30,12,0,2,402,11.5,403.91207664668798,10.617228265937467,17.05213494807559,144.32704459711653,0.0,127.94619776052606,401.95058259303073,1.0,127.94619776052606,248.03654738064461,1.27724747460102,26.699999999999999,5.2000000000000002,376.02456445696373,380.75759904326344,383.52519541215997,383.48758988460088,383.49301039424415,383.46071720572183,75.569304288664455,75.01076588040776,74.396254779413866,73.944023308543038,73.482252388303721,73.00922424031053 +1985,6,30,13,0,0,270,12.5,270.0,5.821140869767504,14.82036315036775,195.52057643752005,0.0,85.031408803916392,267.79659595805384,1.0,85.031408803916392,165.61219053302869,1.2840213260833364,26.100000000000001,4.0999999999999996,249.43670229970041,252.8343245958136,254.82380190991543,254.74036506081998,254.69633644673397,254.65536920167798,50.021307987779288,49.761418266829324,49.483999151159878,49.260732756247641,48.972883627572401,48.625859522152233 +1985,6,30,14,0,0,481,13.5,481.0,17.925232033931024,21.88768431324035,234.44731093821994,0.0,152.5912691581791,479.23701818042332,1.0,152.5912691581791,295.51355254429785,1.2589681929978322,27.800000000000001,4.0999999999999996,449.35462429698919,454.77154680553474,457.93664281866086,457.93229900573067,457.97181500089994,457.94674737639343,90.281631213022521,89.483011296243191,88.633860420967395,88.046269477566838,87.508155646072666,86.990392974022882 +1985,6,30,15,0,1,383,14.5,383.84221958303078,31.168373178647,32.624750330747595,253.73204064936533,0.0,121.56474024917729,380.91783377834491,1.0,121.56474024917729,235.43873852231593,1.1952676481693505,26.699999999999999,3.1000000000000001,356.31622756767445,360.83717576638242,363.4813643079089,363.35008805457551,363.27779850989947,363.21488988382356,71.635173711591932,71.020589790916503,70.478214333795222,70.146220457790392,69.810491239560108,69.418448329706592 +1985,6,30,16,0,0,327,15.5,327.0,44.44307503632989,44.31722516750595,265.58755163394267,0.0,103.9499543597893,323.32089548715203,1.0,103.9499543597893,200.35202870200058,1.072976342766773,26.100000000000001,5.2000000000000002,301.88776967581327,305.80107668996857,308.09075797675911,307.90305400382556,307.78008442551771,307.70096693777009,60.964774704402728,60.447962716626705,60.109845628021226,59.96306656321466,59.787396226215762,59.477601300877815 +1985,6,30,17,0,0,233,16.5,233.0,57.58626897007683,56.19519774251228,274.7241988707711,0.0,74.663245446618731,229.18899637458352,1.0,74.663245446618731,142.54334987684069,1.5,25.600000000000001,4.0999999999999996,212.94919717157623,215.83316672834502,217.52123984768102,217.31515342501768,217.16863386781094,217.08814562556668,43.437242797000572,43.22875358438516,43.184390925552947,43.217222972760219,43.139464336456122,42.845233523654571 +1985,6,30,18,0,0,145,17.5,145.0,70.48216567467784,67.92695317914854,282.91953456214503,0.0,46.724453009533605,141.69048100396964,1.0,46.724453009533605,88.578351422716622,1.5,24.399999999999999,5.2000000000000002,130.51012207761514,132.36036517486258,133.44344564397261,133.27193681673026,133.14539069271413,133.08085498350445,27.192784924965313,27.239243558649139,27.277742817724906,27.234469683731895,27.042191071345798,26.747390731180513 +1985,6,30,19,0,0,58,18.5,58.0,82.97571271918571,79.25534728288378,291.0615458838575,0.0,18.785910991288532,56.384430096635782,1.0,18.785910991288532,35.365331999337521,1.5,24.399999999999999,5.2000000000000002,51.732099685813402,52.510069919495855,52.965867182255863,52.875288232595608,52.806990643613034,52.773771239674325,10.949869448650551,10.940052194878987,10.937463037792323,10.912622067136986,10.841218529553307,10.740006000338358 +1985,6,30,20,0,0,15,19.5,15.0,91.79917417633543,87.17147397875945,297.4663348429241,1.0,4.7175606005987705,14.746852261998409,0.0,4.7175606005987705,9.1334481346545289,1.164781187745918,22.800000000000001,3.6000000000000001,13.6899178914339,13.898625972021966,14.021041764071475,13.993432703952214,13.97235806913956,13.962377786452839,2.7549698485735057,2.7468025887549667,2.7421902946851624,2.7335458442764269,2.7160211003305332,2.6943136564130863 +1999,7,1,5,0,0,0,4.5,0.0,94.09418087195199,89.19944203783407,60.6304644283711,1.0,0.0,0.0,0.7064563890306496,0.0,0.0,1.5,22.800000000000001,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,1,6,0,0,15,5.5,15.0,88.2199472944731,83.9821572741415,65.29245790233581,0.0,4.7175606005987705,14.735575076988576,1.0,4.7175606005987705,9.1221709551711534,0.8312935144369558,22.800000000000001,5.2000000000000002,13.6899178914339,13.898625972021966,14.021041764071475,13.98945079906712,13.965151961999775,13.953834611431821,2.7542974348588523,2.7456031356639219,2.740990016303813,2.7316729703478257,2.7133199053178512,2.6916092000707539 +1999,7,1,7,0,0,31,6.5,31.0,75.99064722597952,72.9402706904126,73.61423620576032,0.0,9.7496252412374567,30.468443066177247,1.0,9.7496252412374567,18.867407873775658,1.405885927751373,22.800000000000001,4.0999999999999996,28.292496975630058,28.723827008845394,28.976819645747717,28.916800249906878,28.87084870878396,28.84922863918359,5.6931043929605778,5.6758335189730866,5.6663008309328458,5.6479355374651945,5.6111018505167074,5.5662373748527498 +1999,7,1,8,0,0,62,7.5,62.0,63.24444866970531,61.35140634990215,81.71168370984255,0.0,19.499250482474913,60.998653536102992,1.0,19.499250482474913,37.796583121030288,1.5,22.800000000000001,4.0999999999999996,56.584993951260117,57.447654017690787,57.953639291495435,57.855410191373423,57.781166711436029,57.745249961147259,11.389891730677565,11.358236683055955,11.33917582725597,11.306129181010682,11.236998687797069,11.147287599425654 +1999,7,1,9,0,0,150,8.5,150.0,50.19280144284237,49.506902632093585,90.31021216048575,0.0,47.365645162656975,147.79955358267006,1.0,47.365645162656975,91.659371732147619,0.9922495709476656,23.300000000000001,4.5999999999999996,137.20433365719242,139.21377949610201,140.39172715110479,140.2273217517567,140.10714513284719,140.04478065886056,27.676864085524961,27.567684614810137,27.504031415381185,27.445974099212442,27.318177818619926,27.120172285055197 +1999,7,1,10,0,6,222,9.5,226.74840092543809,36.96074891982885,37.68344873659625,100.67908995978605,0.0,71.811521739033282,224.16303452176157,1.0,71.811521739033282,138.79607181068553,1.152800008402965,24.399999999999999,4.5999999999999996,208.86305705310841,211.73163406942564,213.41151716170478,213.24072920834891,213.12229935875118,213.05394514518383,42.139646029096468,41.870739259120526,41.662105575712133,41.518180846502531,41.321208581311033,41.057886199799341 +1999,7,1,11,0,48,402,10.5,445.00043979076582,23.67483356955749,26.383148417142436,115.8182327718542,0.0,140.6565651418469,447.68006362480457,1.0,140.6565651418469,275.25107239962017,1.2383546893574628,24.399999999999999,5.2000000000000002,423.35454059472966,427.35940701776263,429.68847825234167,430.30114782717271,430.83801296352345,431.02133847428104,83.99683923569448,82.7755712364918,81.486395782198969,80.784919882511275,80.394066662226749,80.118277516043349 +1999,7,1,12,0,78,405,11.5,479.53285660781717,10.702865614667994,17.147397784384403,144.29020775376222,0.0,153.60291450293869,484.62996207087019,1.0,153.60291450293869,296.71552489803855,1.2788468779476756,26.699999999999999,6.7000000000000002,460.23164603384924,464.1990750188998,466.50014835604867,467.18320973531547,467.78145264294392,467.98642557895045,92.197482985488392,90.82612333818453,89.183347633503402,88.138650464844986,87.487228029273268,87.132798118942176 +1999,7,1,13,0,306,435,12.5,730.7352150161297,5.84322107423461,14.882415218290715,195.2344473210863,0.0,232.21466876635745,752.60734009496809,1.0,232.21466876635745,455.26356061880182,1.2857452058588543,28.300000000000001,7.7000000000000002,729.74688389167159,732.45420361518745,733.97222319127786,735.98579507036072,737.68851549514477,738.32637125235146,142.29758937020367,138.8624435882962,134.59845783292508,131.8880290118052,130.51927371123028,130.36547788205226 +1999,7,1,14,0,156,415,13.5,559.73948387653934,17.895168349601143,21.902926074895973,234.19235805764131,0.0,180.52102316511989,570.28501148745886,1.0,180.52102316511989,348.04864744862141,1.2608846275527341,28.300000000000001,6.2000000000000002,546.26220993572394,549.70316410501937,551.6800197995135,553.03336219545167,554.18366352384714,554.60870164856215,109.30742629277958,107.09171655434324,104.52974022633536,103.04490505677282,102.34352475037001,102.14067603553866 +1999,7,1,15,0,429,316,14.5,677.32670965577768,31.133900860875197,32.62115604208281,253.55311443492974,0.0,220.7372827131023,693.68352598209526,1.0,220.7372827131023,423.27449370218034,1.1974894753934326,28.899999999999999,8.1999999999999993,673.13178112905189,675.06929318905202,676.13693864604465,678.43382808480624,680.36273393316071,681.09582998413828,134.49530015733896,130.19615385441958,126.11213348081812,124.42123286250823,124.30366820128812,124.81468611940114 +1999,7,1,16,0,528,222,15.5,599.83400814862455,44.41035397555352,44.30804077915213,265.44966524932863,0.0,200.50737901265703,605.66557149809569,1.0,200.50737901265703,374.60430135451469,1.0756967000304545,28.300000000000001,7.2000000000000002,584.58153347820962,586.11045636323183,586.94690685494697,588.88620066632359,590.5194237563644,591.13558667398081,119.64087569453132,115.50187664003016,112.77283340906996,112.63823975409593,113.85797219045065,114.73904618477377 +1999,7,1,17,0,194,242,16.5,349.9600037747183,57.55771899294966,56.18626080041842,274.6079653389101,0.0,119.35527968070123,344.44473213649349,1.0,119.35527968070123,217.07629001044663,1.5,28.899999999999999,6.2000000000000002,321.51096929209154,323.97675589979224,325.39958995645418,326.06945625547576,326.64480229364733,326.85139593620818,68.564494476222663,67.801823561295677,67.877358441943031,68.767011346812396,69.626009930286727,69.407851026422293 +1999,7,1,18,0,29,143,17.5,153.90033406421767,70.4595450652802,67.9216837747196,282.8147786118218,0.0,51.580359024509249,149.42968420415821,1.0,51.580359024509249,94.761155149095273,1.5,27.800000000000001,8.1999999999999993,135.80938544886686,137.52202732591772,138.52088397189536,138.59241177478214,138.66337772495999,138.67985272617557,29.886586180208205,30.140017730013181,30.311967762404926,30.352046374703178,30.140392864148382,29.697347714340612 +1999,7,1,19,0,27,63,18.5,68.033187774814635,82.96083221368649,79.2563960374309,290.9623653690184,0.0,24.002126787851111,63.891851455016898,1.0,24.002126787851111,41.827669485885949,1.5,26.699999999999999,8.8000000000000007,56.126882368062027,56.929146788259239,57.3971967584909,57.407954045830323,57.422898950183132,57.423004312770367,13.918602972683681,13.996707667264056,14.053938820705445,14.069331377173359,13.986032437107541,13.803230095398412 +1999,7,1,20,0,0,0,19.5,0.0,91.7866399778189,87.1745317499652,297.3653476223322,1.0,0.0,0.0,0.0,0.0,0.0,1.1863638387905997,26.100000000000001,5.7000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,2,5,0,0,0,4.5,0.0,94.11687886076436,89.2318308124545,60.691851999065356,1.0,0.0,0.0,0.7198820744647594,0.0,0.0,1.5,22.199999999999999,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,2,6,0,0,31,5.5,31.0,88.29196235675872,84.059804160053,65.32213253751061,0.0,10.046105913887905,30.06648207696108,1.0,10.046105913887905,18.888696561612406,0.7753264758121956,22.199999999999999,5.2000000000000002,27.767425094377792,28.190304358086525,28.438144209324349,28.385219466546488,28.345102807920025,28.32581779520758,5.8700969147485571,5.8501324913546782,5.8373203913374603,5.8185525916338827,5.7822548485170122,5.7358513787691257 +1999,7,2,7,0,65,121,6.5,139.98567108052328,76.06017443718088,73.01704212342665,73.65141800561402,0.0,49.177624892204904,132.77167142546361,1.0,49.177624892204904,86.165177968362684,1.4031014879333341,22.800000000000001,6.2000000000000002,117.21331265105327,118.65895498907729,119.49958149282924,119.54895781548906,119.60268118640269,119.61178892588778,29.226182698887513,29.207132130821485,28.965701039396524,28.629464332345428,28.229629991943522,27.879311044984807 +1999,7,2,8,0,316,205,7.5,356.13756686292976,63.310694708107114,61.42664936696258,81.756629219415,0.0,125.68370975525438,345.31350623835993,1.0,125.68370975525438,221.85497236307774,1.5,23.899999999999999,6.2000000000000002,316.21759855884477,318.18344204665783,319.30453483447224,320.30022557144969,321.1380114047148,321.45433241251044,70.736265761912037,71.072057673179842,72.144375289489972,73.69982882313785,74.627534426008253,73.795738125720291 +1999,7,2,9,0,134,290,8.5,376.88084102791083,50.25629560881764,49.5815957261938,90.36411919585369,0.0,124.42955336440438,375.30569634629973,1.0,124.42955336440438,234.04241076990323,0.9935658493959988,26.100000000000001,6.2000000000000002,353.44772755157686,356.28173201710251,357.9230634191785,358.74572060052026,359.44826134105739,359.70468465429076,72.837666564160827,71.520457854347342,70.860011080258417,71.194522066935619,71.821397247524359,71.866309731531487 +1999,7,2,10,0,545,251,9.5,681.87092713167522,37.02251933772832,37.75942479842044,100.74299414761266,0.0,228.18461187059572,695.01291100406434,1.0,228.18461187059572,425.61418057530568,1.1542571700371524,27.199999999999999,6.7000000000000002,675.30443677948631,676.89828471903024,677.7599805225401,679.8799219481233,681.66842374265241,682.34029497018923,138.27399536141473,133.44076148403138,129.40138623252707,128.06526674473392,128.42965826750461,129.22678056179734 +1999,7,2,11,0,398,355,10.5,711.29699334708971,23.737277881228643,26.463480958888987,115.88513335534667,0.0,226.23615161931005,732.0062034362744,1.0,226.23615161931005,444.438359831497,1.2398622024463497,27.800000000000001,7.7000000000000002,711.35371995096034,713.36965172578516,714.48019498839244,716.87067948953552,718.87704573686938,719.64122359616454,138.55985115806635,134.45122868350884,130.07932762780004,127.81898010872993,127.14930236570703,127.44568090671122 +1999,7,2,12,0,295,405,11.5,686.75637743804737,10.775107561920352,17.233294712755097,144.2891855956715,0.0,223.14791921090901,706.87294063796162,1.0,223.14791921090901,428.02579974357252,1.280408522726194,28.300000000000001,6.7000000000000002,684.88572254726455,687.49449236081261,688.9579027603645,690.90823841133908,692.5569124284674,693.17494024477094,136.58909592648976,133.25684326933268,129.20499984287702,126.69956728391293,125.49520477484248,125.3727304537357 +1999,7,2,13,0,384,383,12.5,754.01055696926676,5.873223486252577,14.94511202280502,195.00520328238716,0.0,239.93389990358054,781.21347249057453,1.0,239.93389990358054,471.02786614741711,1.2873991987657958,30.0,7.2000000000000002,761.60927415990363,763.39774771447969,764.36517698454793,766.85042522367792,768.93870646107246,769.73322595466834,147.91205135840741,143.95233223705571,139.00831275757713,135.8955229858507,134.40443007012954,134.36745248287997 +1999,7,2,14,0,78,352,13.5,424.35796905144849,17.87770237250843,21.926096973297916,233.9696110005865,0.0,135.81843183402401,427.92763049440407,1.0,135.81843183402401,262.36413118158015,1.2626946494780538,30.0,6.7000000000000002,405.95908198414509,409.577610684994,411.67825317624306,412.21226546797965,412.68441342186867,412.84211947284319,81.369561991351517,80.141818733155091,78.754656879586733,77.909356649461643,77.401465819112886,77.10668473358308 +1999,7,2,15,0,591,255,14.5,752.73619706346278,31.112161326821166,32.627551190848585,253.39304879010666,0.0,246.15681432537261,772.53464343290818,1.0,246.15681432537261,469.96668883272088,1.1995541348844327,30.600000000000001,6.7000000000000002,754.29080804531179,755.62506576959345,756.32369570608375,758.69199398539763,760.68764238149015,761.43979692013318,150.47682449677765,145.19339835662859,140.23060458387991,138.11257397727107,137.93664703033616,138.66721322294674 +1999,7,2,16,0,493,225,15.5,577.7803554893477,44.39015722098984,44.30934479989295,265.3254762572626,0.0,192.99501439893348,583.71530145435202,1.0,192.99501439893348,361.05636199426357,1.0781760845918724,30.600000000000001,6.2000000000000002,562.82882154979143,564.38228600478851,565.23606365693479,567.18658358443895,568.82644316442838,569.44774216853614,115.14994138163031,111.22397380347201,108.62543488089381,108.51331853940654,109.69012236979607,110.5181797107157 +1999,7,2,17,0,353,219,16.5,415.43513155635515,57.54132360308979,56.1877368369925,274.50329080901656,0.0,145.14725379478202,408.6690913135435,1.0,145.14725379478202,258.68370621185994,1.5,30.600000000000001,6.7000000000000002,382.59087935598177,384.62259825656747,385.77771043127666,386.88893477328622,387.8289600253263,388.17966002731396,82.961041116309588,81.819579682590472,81.977438307802942,83.410798443068558,84.866748009021819,84.715030036301144 +1999,7,2,18,0,81,149,17.5,179.43956752008341,70.44854701375885,67.92641110384936,282.7208140851841,0.0,61.836617134765703,172.70252793733613,1.0,61.836617134765703,110.48888546210672,1.5,29.399999999999999,4.5999999999999996,155.9010943180603,157.66907024129762,158.69640930477465,158.77181853796094,158.8480436098817,158.86442975899885,35.6779780858365,36.127372640519631,36.444878573357784,36.527010699618174,36.222166694418846,35.58781303683373 +1999,7,2,19,0,202,68,18.5,105.62004059098405,82.95680126743176,79.26669116973491,290.8740093772105,0.0,46.232361077601453,88.602492131549752,1.0,46.232361077601453,65.986796951881885,1.5,28.300000000000001,4.5999999999999996,66.635540749722566,67.384111371759872,67.810679006832146,68.177084296967024,68.484903717131459,68.60147314186392,26.45316007458176,26.94707354904018,27.313201894362997,27.530604174147239,27.385638141107787,26.820763376836595 +1999,7,2,20,0,0,0,19.5,0.0,91.77928394709727,87.18164865766619,297.2720233657656,1.0,0.0,0.0,0.0,0.0,0.0,1.1922030494957365,26.699999999999999,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,3,5,0,0,0,4.5,0.0,94.1397704016936,89.26554419445633,60.76054210263522,1.0,0.0,0.0,0.7336536161174068,0.0,0.0,1.5,23.300000000000001,4.5999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,3,6,0,0,32,5.5,32.0,88.36624343950018,84.1406863684248,65.35770734598484,0.0,10.459361148065012,30.915471677033779,1.0,10.459361148065012,19.500182081248653,0.7163049335894973,23.899999999999999,3.6000000000000001,28.516518544894112,28.950718881159304,29.20513727355457,29.151154445275637,29.110294515634273,29.090592380589122,6.110865401934725,6.0895095569981468,6.0761071879482751,6.0572328867848428,6.0202002423145169,5.9718716270744556 +1999,7,3,7,0,98,127,6.5,155.49420989273477,76.13150342791012,73.09670346236727,73.69495394628674,0.0,56.617166140058139,146.00287168995055,1.0,56.617166140058139,96.487946205006352,1.4005093814517249,25.0,4.5999999999999996,126.030098910135,127.44179859697624,128.25895295675446,128.58002590804981,128.85602171509689,128.95518299986227,33.873127957232384,33.86125677542524,33.492689009387128,33.039372238660988,32.544747671816182,32.118149317679993 +1999,7,3,8,0,341,193,7.5,355.68759659798388,63.37831102035492,61.50450068841823,81.80861060458564,0.0,128.18509056092063,344.50839902148499,1.0,128.18509056092063,221.51262344402181,1.5,26.699999999999999,5.2000000000000002,315.44695209075712,317.30745891774598,318.36498568086745,319.33270894063702,320.14860478154253,320.45512399536892,72.089015694733476,72.367829851691937,73.452179704907536,75.066914811406249,76.066519544804564,75.238041748305719 +1999,7,3,9,0,500,209,8.5,532.66901862658688,50.32084039614398,49.65879933989108,90.42615052356963,0.0,186.04165023704573,532.84470621333139,1.0,186.04165023704573,332.86491563193448,0.9950858773030022,28.300000000000001,4.0999999999999996,509.26993743037065,510.81666333660837,511.67101571588864,513.47008192402654,514.98385527047083,515.55713615326499,109.08934743123899,105.85213985229608,104.25328884835233,105.06356467999677,106.7863547752133,107.4726019016944 +1999,7,3,10,0,642,200,9.5,707.01774011623161,37.08517145027367,37.83810129678065,100.81680026446823,0.0,237.69140628036286,722.18527211170112,1.0,237.69140628036286,441.56760224599645,1.155891911443137,30.0,5.2000000000000002,704.55132804348864,705.57656665591503,706.09623693834669,708.3608224153229,710.27018974429438,710.98854250815702,144.37564631509491,138.9828195191906,134.49004633406781,132.99560510317593,133.42373917950087,134.39187880440159 +1999,7,3,11,0,657,222,10.5,809.72993673951373,23.800738449225054,26.54724724153189,115.96471564543441,0.0,265.37238432410732,836.42907144060473,1.0,265.37238432410732,505.03234930273641,1.241530087294117,30.600000000000001,5.7000000000000002,821.17945731331588,822.05559700360334,822.47150057377485,824.81445639269373,826.79659124447278,827.53766319110969,163.64723799020396,158.13237616547298,152.24807420226912,148.92540671058444,147.79444775660437,148.28245823719516 +1999,7,3,12,0,673,251,11.5,893.46864040647085,10.849658140245724,17.324425892296457,144.3025126948746,0.0,292.98193916172971,927.6924784012599,1.0,292.98193916172971,556.56490061063812,1.282120618486554,31.699999999999999,4.5999999999999996,912.89001372029247,913.6966208234843,914.05804282268844,916.39119807589327,918.37478442869065,919.10862855346295,181.36005550434029,175.73742960715603,169.03517901883762,164.75311396597999,162.74496776857382,162.90903808419301 +1999,7,3,13,0,618,295,12.5,891.9008869606422,5.910227638880975,15.014777542627161,194.77619106942927,0.0,284.15833586787687,926.02021889506386,1.0,284.15833586787687,555.41957953530732,1.2891996016818406,32.200000000000003,4.0999999999999996,910.20980960211398,911.24685063864172,911.74850414632033,914.02973901899566,915.96814843851575,916.68631353923115,175.93759482948781,170.66321323033688,164.23085198752315,160.02459589654839,157.94837280691013,158.03434382032705 +1999,7,3,14,0,580,269,13.5,806.93670313335224,17.863791337097332,21.95510873355707,233.73698742938382,0.0,264.24473126398311,835.56696726357586,1.0,264.24473126398311,503.37965219830153,1.264652053614863,32.799999999999997,5.7000000000000002,819.52899605064147,820.60838979681921,821.14484310125545,823.51918047374113,825.52622664582134,826.27851368937218,163.09884213486052,157.9728755700288,152.14542375047705,148.67921577507525,147.2711140356115,147.51938250002797 +1999,7,3,15,0,286,344,14.5,584.836966685368,31.093459520633914,32.63880624538262,253.2239733235083,0.0,189.63522988853202,596.21303627590214,1.0,189.63522988853202,364.58415395263421,1.2017717891955053,32.799999999999997,4.5999999999999996,574.63122184265785,577.23584252766045,578.71272674133752,580.41700319275492,581.85522900410274,582.39530823630935,114.90099157481171,111.69945057842752,108.65545557536703,107.38466135183717,107.23300494150504,107.48880205724797 +1999,7,3,16,0,18,231,15.5,243.87914932404416,44.37301902296046,44.31512865693692,265.1938966289131,0.0,77.47276250747602,240.9941259715566,1.0,77.47276250747602,149.27505677998806,1.0808175442202692,30.600000000000001,3.6000000000000001,225.02152834159142,227.97110590919502,229.6972267486444,229.50580933903169,229.37240371980428,229.29615928787587,45.418578006402257,45.045498776829668,44.8048929405142,44.688115250927773,44.540546138371951,44.301513203142072 +1999,7,3,17,0,0,77,16.5,77.0,57.52819719930621,56.19364237691924,274.3923995885794,0.0,24.216811083073686,75.789384122740273,1.0,24.216811083073686,46.973909558820829,1.5,28.300000000000001,2.6000000000000001,70.27491184269401,71.346279989712755,71.974681055566876,71.864336062731908,71.781562975230216,71.740868330838907,14.147477869330327,14.109706215917274,14.08603627716408,14.04696217808058,13.963529849953845,13.852124007150977 +1999,7,3,18,0,0,51,17.5,51.0,70.4411353093486,67.93570695752148,282.621447719186,0.0,16.039706042035821,50.156727118295514,1.0,16.039706042035821,31.071153076784913,1.5,27.800000000000001,2.1000000000000001,46.54572083087524,47.255328304874652,47.671541997842979,47.58382541742602,47.517154817483956,47.485288358555053,9.3679367326287917,9.3409826137485865,9.3253020894368035,9.296950486556911,9.2386465668980051,9.1648462981192651 +1999,7,3,19,0,0,42,18.5,42.0,82.95674123197168,79.28180220456375,290.78085648649244,0.0,13.211910898419692,41.302742221012203,1.0,13.211910898419692,25.588762358332872,1.5,27.800000000000001,2.1000000000000001,38.325507006315611,38.909737765690757,39.252410274910282,39.180432844639036,39.125738416718747,39.099582362921488,7.7162812242067389,7.6942186060340658,7.6813892202114316,7.6581233765398196,7.6101333031609055,7.5492699427365206 +1999,7,3,20,0,0,0,19.5,0.0,91.77317538168077,87.19107655366209,297.1720688716651,1.0,0.0,0.0,0.0,0.0,0.0,1.1925298398460882,27.800000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,4,5,0,0,0,4.5,0.0,94.16279753053179,89.30052395837197,60.836521653422814,1.0,0.0,0.0,0.7477389090021518,0.0,0.0,1.5,23.300000000000001,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,4,6,0,0,48,5.5,48.0,88.44270544126913,84.22472187275005,65.39920111430608,0.0,17.269737133547189,44.196282976276841,1.0,17.269737133547189,29.292464920666031,0.6540759678505701,23.300000000000001,3.1000000000000001,40.08036067490719,40.688670924931806,41.044059491881427,40.975819846696005,40.925300513063675,40.899781247399261,10.091125972486925,10.044925141294639,10.015435583420896,9.988735849297834,9.9350882809989223,9.8540363475600987 +1999,7,4,7,0,254,121,6.5,194.5024367297396,76.20455696411861,73.17917844994702,73.74485058554562,0.0,75.936120244821808,177.4604278876887,1.0,75.936120244821808,121.31386151006514,1.3981175205372454,25.600000000000001,4.0999999999999996,146.93416004105859,148.20139959209621,148.92389090637118,149.52390451340591,150.03159911749259,150.22139570870345,45.860681332607925,45.867060733899386,45.193266086804641,44.350502493028721,43.481732362838954,42.814265453205785 +1999,7,4,8,0,329,186,7.5,342.55669355722745,63.44722626542444,61.58488748348188,81.86762208542586,0.0,123.41530412513875,331.90383111460483,1.0,123.41530412513875,213.38823939565597,1.5,26.699999999999999,5.2000000000000002,303.75875906991263,305.55769413918119,306.58042969048427,307.53148491895155,308.33268689353542,308.63429324030994,69.415986102571281,69.686436142085881,70.728010802613412,72.282794306510141,73.246979252042621,72.449827515371609 +1999,7,4,9,0,213,291,8.5,428.65718914592674,50.38637270282712,49.73844548155259,90.49628517626678,0.0,144.67236260138597,426.70911869679412,1.0,144.67236260138597,265.89566593109305,0.9968111606360389,28.300000000000001,3.6000000000000001,403.55653548414875,406.3982556068753,408.03689324735024,408.85103721715342,409.55301823011916,409.80312547036141,84.743458684755211,82.957216309285158,82.061368806736283,82.430008991837767,83.203444850092538,83.359012358167121 +1999,7,4,10,0,460,287,9.5,649.8829015146132,37.148654278127786,37.919416179621166,100.90046337605042,0.0,216.85319471401363,662.42828182317157,1.0,216.85319471401363,406.05418776133729,1.157704807138154,29.399999999999999,3.6000000000000001,641.43191030187597,643.31124842225802,644.34716701597392,646.52515457132586,648.35665464898682,649.05024465821282,131.24480662161025,126.88318587632257,123.20815708757276,122.0303847198801,122.38949783126927,123.06806417232127 +1999,7,4,11,0,609,253,10.5,797.37616119880624,23.865184709254986,26.6343900298956,116.0568903383685,0.0,261.06781398809869,823.38352482952337,1.0,261.06781398809869,497.52659144130303,1.2433584276906546,31.100000000000001,2.6000000000000001,806.87659643900042,807.98762788062481,808.54514125367552,810.93230882769149,812.94856630629965,813.70535634023872,160.82280717451511,155.53602332338824,149.87617771926662,146.70141941074661,145.62781962913738,146.06886671056131 +1999,7,4,12,0,661,263,11.5,893.68130476882777,10.926523102454885,17.420728325730263,144.33012076025335,0.0,284.77349808584194,927.88420378253545,1.0,284.77349808584194,556.70117740091871,1.2839829463171886,32.200000000000003,2.1000000000000001,912.62976178401902,913.51962912412876,913.9333473619505,916.27445508032076,918.26172477433704,918.99982466668018,176.44859163040192,171.10134696197653,164.57533370326937,160.31287637364005,158.21973566301207,158.32394773320212 +1999,7,4,13,0,684,250,12.5,910.41002400068407,5.954371507539532,15.09139786451796,194.54802096002666,0.0,290.1590525967257,946.51860444673525,1.0,290.1590525967257,566.93395004024501,1.2911459743063394,33.299999999999997,0.0,932.07865413084653,932.81417309715357,933.13373078575603,935.44570795448067,937.41133285398519,938.13866741351296,179.9115783264597,174.37477003617292,167.63397363289837,163.21392316605412,161.03860427056253,161.16535962820532 +1999,7,4,14,0,586,299,13.5,842.36792217355207,17.85358393078826,21.99003177837174,233.49490268366876,0.0,275.64560442648093,871.42681987103674,1.0,275.64560442648093,525.00342071139016,1.2667562047274135,33.299999999999997,4.0999999999999996,854.14459635402443,855.46703959671902,856.14367085769311,858.46075047982777,860.42484411226008,861.15606103894913,169.95839184457063,164.68618102696524,158.71040573698761,155.13515217776046,153.65607636718809,153.88787369427692 +1999,7,4,15,0,48,261,14.5,301.41287154263108,31.077906612893297,32.65500024521549,253.0460915045356,0.0,96.116927383841059,301.90717055649236,1.0,96.116927383841059,186.11923842752202,1.2041415961960507,33.299999999999997,4.0999999999999996,284.5929034777725,287.5045082915708,289.200502778366,289.51083415351502,289.78977675598941,289.87867447105043,57.131302654040709,56.328233417410694,55.57182530810816,55.218998454579456,55.035961281040493,54.855373303632888 +1999,7,4,16,0,511,240,15.5,605.56033319342578,44.359031042339225,44.325464749577364,265.0550555273565,0.0,206.97430127982275,611.94048402238889,1.0,206.97430127982275,378.23444555388079,1.0836199847468213,33.299999999999997,4.5999999999999996,590.03049763497904,591.7083536173285,592.63052936228314,594.61077608855953,596.27920629710047,596.90805471025942,123.64975936985485,119.46270420540924,116.60342348784833,116.38387983883302,117.49508487837625,118.33893466150072 +1999,7,4,17,0,400,198,16.5,420.49480209395836,57.51841762430536,56.204041040110205,274.2753904006131,0.0,148.65921003503632,414.7387624652909,1.0,148.65921003503632,263.27649633283249,1.5,33.299999999999997,4.0999999999999996,387.9893572307501,389.59454408820068,390.49489787898688,392.11111047783754,393.46144466672899,393.98098131521823,85.053752142837297,83.662201693506688,83.69750452570419,85.323904854646329,87.059886782591562,87.056607411004904 +1999,7,4,18,0,322,130,17.5,250.88576433027811,70.43737587152826,67.94962556405811,282.5167639423039,0.0,93.401199917740954,235.76475915835059,1.0,93.401199917740954,156.31349469172656,1.5,32.799999999999997,4.0999999999999996,205.83362884004157,207.16200855872148,207.91318405028926,208.62177518612827,209.21610005630163,209.44106649209618,53.208222140917208,54.674751525350118,55.710686216871665,56.147077496916566,55.612943282894605,54.166982537790176 +1999,7,4,19,0,202,64,18.5,101.49851436868903,82.96070601873522,79.30177293613059,290.6829841357218,0.0,44.649258224462415,84.95359593194317,1.0,44.649258224462415,63.41790631181027,1.5,31.100000000000001,1.5,63.569559693425163,64.276676614463113,64.679205481767667,65.032931635463541,65.330085989049024,65.442625260351733,25.539350443685411,26.022307360609581,26.380915263409854,26.593224026405611,26.45190450143782,25.902069713159609 +1999,7,4,20,0,0,0,19.5,0.0,91.76833827752169,87.20283240726309,297.06554951440546,1.0,0.0,0.0,0.0,0.0,0.0,1.1872177551146699,28.899999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,5,5,0,0,0,4.5,0.0,94.18590048106665,89.33670977836485,60.919774301858254,1.0,0.0,0.0,0.762106403876176,0.0,0.0,1.5,25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,5,6,0,0,33,5.5,33.0,88.52126284792517,84.31182794608469,65.44662986791246,0.0,10.92188922195308,31.701776239050634,1.0,10.92188922195308,20.112482089464354,0.5884708862265811,26.100000000000001,0.0,29.200546885729128,29.645102841611422,29.905501264425961,29.850698237725904,29.809296036296423,29.789250658483233,6.3774455927167413,6.3556981081912012,6.3430985810945639,6.3257263054633368,6.2884278015841071,6.237474114531774 +1999,7,5,7,0,287,112,6.5,194.64329838480592,76.2792584992849,73.26439112131519,73.80111127623785,0.0,76.89570040475779,176.47658923222178,1.0,76.89570040475779,121.34446833938922,1.3959340444443695,28.300000000000001,2.1000000000000001,144.97488980095787,146.15487928603284,146.82490566453822,147.40148729574105,147.89054605352618,148.07231417276552,46.501057991068315,46.503393533853092,45.791475754999269,44.889388793755344,43.963509209894617,43.271842289432016 +1999,7,5,8,0,422,163,7.5,363.27441159199634,63.51737054951857,61.66773784866638,81.93365409388537,0.0,133.60727707058368,351.48469667783741,1.0,133.60727707058368,227.42977446023048,1.5,30.600000000000001,2.1000000000000001,320.51194672293548,321.90344372765685,322.67960093196251,324.06913220272457,325.22758160380528,325.67508083734583,74.763003466315553,75.143314309171629,76.447434709254125,78.418956963570295,79.700833325044584,78.803118716872248 +1999,7,5,9,0,561,184,8.5,545.94867053869825,50.45283172479139,49.82046775037788,90.57449740858969,0.0,187.27839607777449,547.11510164267838,1.0,187.27839607777449,341.86399092738219,0.9987431845803144,32.799999999999997,4.5999999999999996,523.46461692488947,524.69835951809034,525.36622865579307,527.44541186739502,529.18698021865839,529.85360259328343,110.04792899793587,106.56746036923153,104.77991635966862,105.59977803556001,107.42642959752177,108.23540933611191 +1999,7,5,10,0,666,195,9.5,719.79147559752539,37.21292023784454,38.00330969275374,100.99393165451197,0.0,242.0815995976676,735.53361621236763,1.0,242.0815995976676,449.38062599744597,1.159696398961441,33.299999999999997,5.2000000000000002,717.96865979635709,718.95735405279663,719.45360358837013,721.69877557166137,723.59388705382776,724.30490721616616,147.06088562938251,141.52839748512659,136.92771889339477,135.38553066864137,135.81205218459229,136.81005939443278 +1999,7,5,11,0,748,179,10.5,847.0959391192514,23.930591242759096,26.724854972485367,116.16155545471713,0.0,277.682416266654,873.95814198364019,1.0,277.682416266654,526.65500894549257,1.2453472750249794,33.899999999999999,4.0999999999999996,859.99780898606787,860.8521958245758,861.25023224710685,863.10476195499905,864.69542954388749,865.27034378599308,171.18367670418752,165.30196392564542,159.11226918350764,155.51454120230278,154.20141956797559,154.72137611197419 +1999,7,5,12,0,758,195,11.5,917.8293140778519,11.00571672020173,17.52214073150921,144.37191124977576,0.0,292.50853649441973,951.62522121501161,1.0,292.50853649441973,569.75735066742482,1.285995259653995,34.399999999999999,1.5,938.59811140113504,939.38676269952725,939.73701501757125,941.43521179014363,942.90455045184899,943.42541029909114,181.22340105968675,175.57973898223091,168.80940585124679,164.26452693335159,161.94755069292952,162.06912801148283 +1999,7,5,13,0,708,245,12.5,928.31275603787958,6.005779961740096,15.17495466196534,194.32128540255067,0.0,304.54289462128639,965.39940184375189,1.0,304.54289462128639,577.9400255609545,1.2932378560603055,35.600000000000001,2.6000000000000001,951.05318008632457,951.7606699227224,952.05743520042222,954.35963847177595,956.32236815697809,957.04433084704067,188.9128754949505,183.27362431995519,176.17826691777125,171.43073166290171,168.96324813628897,168.97082428275007 +1999,7,5,14,0,395,365,13.5,731.1576807919547,17.847231073399893,22.030933836186787,233.24378797420195,0.0,232.59980378426522,755.37151100577398,1.0,232.59980378426522,456.82284277429278,1.2690064585020047,36.100000000000001,4.0999999999999996,735.17280723481042,737.10009682505961,738.15384423402043,740.59648356004936,742.64748915956795,743.42865230582674,143.04968928475012,139.12423998129006,134.44921814159457,131.67135596949308,130.47699097352103,130.53992086974839 +1999,7,5,15,0,435,299,14.5,665.15473270156394,31.0656144810784,32.676210737237795,252.85961690561777,0.0,222.14641527642101,682.25551396120977,1.0,222.14641527642101,415.77221916906512,1.2066627223381448,36.100000000000001,4.0999999999999996,662.45125661741406,664.26260485529986,665.2541716448826,667.54105185719482,669.4625997067759,670.19227126783915,135.51945658433419,131.20621333231722,127.05257680797001,125.20515632426871,124.99591393980704,125.45949353653464 +1999,7,5,16,0,374,276,15.5,543.48472584028218,44.348284577926506,44.34042397085442,264.9090880462185,0.0,183.73574210893804,547.36745153015613,1.0,183.73574210893804,338.3211435368865,1.0865823516146025,36.100000000000001,4.0999999999999996,525.14332451156804,527.47484287393593,528.79434998952752,530.20104581557439,531.39677494955345,531.83764369971436,109.45498304994661,106.17019574693465,103.9310951699366,103.71959121818919,104.49604422599019,105.04291684663905 +1999,7,5,17,0,341,215,16.5,404.60285322492985,57.51206161340661,56.21899466444649,274.1523657378251,0.0,141.28843675875436,398.50252966483765,1.0,141.28843675875436,251.99258659769299,1.5,35.0,4.5999999999999996,373.01818243194896,375.01603219410492,376.15264842409215,377.25452670545138,378.18620768325377,378.53426316454437,80.970435218205409,79.729404614633424,79.745756616254184,81.07769996678185,82.469056350873004,82.401111873544949 +1999,7,5,18,0,305,136,17.5,250.41185255184865,70.43733293807871,67.96821905732943,282.4068496687341,0.0,94.311901630572905,235.87582529437969,1.0,94.311901630572905,156.06700280282919,1.5,33.899999999999999,4.0999999999999996,206.17999044843015,207.56568254849435,208.35063924813232,209.07699457494365,209.68594910890337,209.91676057374096,53.729227677384841,55.15724565874865,56.175880074796446,56.642786357516911,56.149295430734782,54.721732551141812 +1999,7,5,19,0,208,63,18.5,101.52360575439255,82.96874733064314,79.32664471391104,290.58047134332435,0.0,44.851155371027197,84.757913621980947,1.0,44.851155371027197,63.424024385079093,1.5,32.200000000000003,2.6000000000000001,63.156415064246687,63.853122914085176,64.249402075109117,64.599394725500815,64.893552032499954,65.004788185477025,25.618812208912928,26.094592818504307,26.465685754454281,26.700990930606249,26.582264407584187,26.036433684817588 +1999,7,5,20,0,0,0,19.5,0.0,91.7647954238448,87.21693174817548,296.95253296818044,1.0,0.0,0.0,0.0,0.0,0.0,1.1761144469543634,30.600000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,6,5,0,0,0,4.5,0.0,94.20901764625428,89.37403918650615,61.01028047037049,1.0,0.0,0.0,0.7767251551249714,0.0,0.0,1.5,26.100000000000001,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,6,6,0,54,45,5.5,50.26767452141479,88.60182979124235,84.40192121702232,65.50000686307176,0.0,22.136164572333467,41.030024162242874,1.0,22.136164572333467,31.196827632915529,0.5193035707733626,26.699999999999999,1.5,35.154873393429703,35.684237487200704,35.990616086061394,36.097555996904823,36.190155964603271,36.222731272954711,12.916748904818744,12.874265131341788,12.844421264992219,12.867548191617306,12.854550339828451,12.739782419350149 +1999,7,6,7,0,228,122,6.5,187.318959248955,76.35553225878559,73.3522658894797,73.86373618572813,0.0,72.547354703072386,171.56150423039526,1.0,72.547354703072386,116.88873802055218,1.3939673212431765,29.399999999999999,2.1000000000000001,142.38187987755248,143.65926228419002,144.389293802259,144.98903581275493,145.49549566538465,145.68573051311202,43.775869988372015,43.785485437962912,43.1608846734241,42.388261213721449,41.589402808016764,40.961910422347877 +1999,7,6,8,0,335,184,7.5,342.54673541143882,63.58867550039214,61.75298088802535,82.0066933281205,0.0,123.49815325995856,331.91844876438961,1.0,123.49815325995856,213.36175164280436,1.5,31.100000000000001,2.6000000000000001,303.58643003895543,305.3689549458536,306.38188752957757,307.32511531391447,308.11998870522427,308.41895872863404,69.447013085302672,69.717787995052291,70.765651398340808,72.327258720776697,73.295500868493178,72.496697185253851 +1999,7,6,9,0,354,260,8.5,487.99707249524045,50.520159012194554,49.9048014060734,90.66075680367537,0.0,164.4924063462303,487.24578170507664,1.0,164.4924063462303,303.85526585745322,1.0008834110973759,32.200000000000003,4.5999999999999996,463.25238979271853,465.54255041317913,466.84637983943634,468.1437461997441,469.24397838289394,469.65249153381717,96.544461529953821,94.02940252715058,92.733870998610286,93.257424413287453,94.433257023657589,94.857959513364463 +1999,7,6,10,0,599,216,9.5,687.44035636468539,37.27792516600782,38.089724432024184,101.09714658737997,0.0,230.8081514449197,702.67649408486875,1.0,230.8081514449197,429.61106634900682,1.1618671950392194,33.299999999999997,5.2000000000000002,684.34261004546784,685.51278755901615,686.12133843647769,688.42545474781673,690.3644329647318,691.09739389852291,140.12135389651948,134.99917153693369,130.71493285240626,129.31236975205402,129.73983845506623,130.64214379494257 +1999,7,6,11,0,633,245,10.5,809.91418848073954,23.9969377256931,26.81859062951811,116.27859684914853,0.0,265.24926698604907,836.870402887517,1.0,265.24926698604907,505.23616872505295,1.2474966481962828,33.899999999999999,2.6000000000000001,820.59005466051792,821.64443463090379,822.16654013842594,824.5482813598162,826.56156865082585,827.31577986700881,163.44622430171182,158.03080841413467,152.2417515972858,148.98482308044498,147.87839697630687,148.33816219491658 +1999,7,6,12,0,661,263,11.5,892.95917407139757,11.087261355203314,17.628603622371724,144.42775678703785,0.0,284.54107039740728,927.63305771738408,1.0,284.54107039740728,556.26100965416367,1.2881572848549543,34.399999999999999,3.1000000000000001,912.34230900829812,913.23867964274768,913.65636748349243,915.99927443998615,917.98791735659427,918.72666379223767,176.29935670653038,170.96029222629605,164.44346428337323,160.18784023704572,158.09833367303526,158.20159231853623 +1999,7,6,13,0,732,222,12.5,928.17245983447606,6.064563374301398,15.265425260896047,194.09655620970236,0.0,304.63089555397079,965.85908746603354,1.0,304.63089555397079,577.73804998774028,1.295474767190575,35.0,3.6000000000000001,952.30860645589905,952.88596550602915,953.1051627556833,955.36152450291843,957.28732674574871,957.99382782494445,189.06554331917255,183.3607947871717,176.19396656512501,171.38738596099509,168.88719807351356,168.90908879221121 +1999,7,6,14,0,670,228,13.5,848.87145391284821,17.844885416193378,22.077879652203677,232.98408897844257,0.0,270.51147993076802,880.38138555027876,1.0,270.51147993076802,529.11846285296633,1.2714021631291144,35.0,3.6000000000000001,865.70661116263466,866.49933685298458,866.86183310258298,869.20060077972903,871.18116107269236,871.92037954493446,167.41938443519845,162.09023268023412,155.88254627978952,152.04845723130228,150.36070579631004,150.62924342565822 +1999,7,6,15,0,608,223,14.5,734.62414518844321,31.05669546243781,32.702513554249045,252.6647728386837,0.0,240.48055881307701,755.58003340654557,1.0,240.48055881307701,458.79296119544614,1.2093343447561713,35.600000000000001,5.7000000000000002,738.86487777960758,739.92817774309879,740.46693755129718,742.81647967160177,744.79545718966529,745.54249149318969,147.49838602779437,142.33511898234022,137.30989902728436,134.90042224335861,134.4953887505938,135.14862873438599 +1999,7,6,16,0,611,174,15.5,610.84058490505538,44.34087039450551,44.36007554681139,264.7561350313409,0.0,205.18743359327084,618.93949840942435,1.0,205.18743359327084,381.96289192763078,1.0897036325884872,35.600000000000001,5.2000000000000002,599.59403867098672,600.57600378987649,601.08481578938586,603.20856896523946,604.99332429453773,605.6702186544079,123.06941081123738,118.4593764019839,115.26378115728008,114.91668805706404,116.1022348431019,117.10552079388984 +1999,7,6,17,0,424,196,16.5,431.63214527323345,57.50920466278955,56.23856318376874,274.0234317314508,0.0,152.83171460362513,425.86290116161285,1.0,152.83171460362513,270.11981594110358,1.5,35.0,4.0999999999999996,398.67691303583842,400.26380474651717,401.15174821687907,402.76252881255368,404.10965069541038,404.62670290368078,87.404645005417095,85.948668859512736,85.987247268155343,87.669560454570671,89.466267474286241,89.471502895893423 +1999,7,6,18,0,161,170,17.5,230.33370911519097,70.44106896203549,67.99153738294189,282.2917941849544,0.0,82.660630176084993,219.95698977919346,1.0,82.660630176084993,142.82006820117425,1.5,34.399999999999999,3.6000000000000001,195.58413596355018,197.41035651360579,198.46324069652067,198.89370886167058,199.26155964999361,199.39439259446124,47.399829991924463,48.311978852887037,48.960945390394869,49.242319495248758,48.856702346553561,47.823665741906076 +1999,7,6,19,0,202,60,18.5,97.309058289858427,82.980914579712,79.3564563686125,290.47339860308324,0.0,43.032913284227831,81.22950379925885,1.0,43.032913284227831,60.803469236943457,1.5,32.200000000000003,2.6000000000000001,60.43303136195567,61.098397779772327,61.476765568487735,61.816492172201279,62.101897174887156,62.20994208869854,24.579273229498227,25.03742141879988,25.394469127264319,25.621412588031735,25.508123835045151,24.983606230269594 +1999,7,6,20,0,0,0,19.5,0.0,91.76256833933581,87.23338860715495,296.8330891013934,1.0,0.0,0.0,0.0,0.0,0.0,1.1590397416708935,30.600000000000001,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,7,5,0,0,0,4.5,0.0,94.23208554116583,89.41244753275461,61.108017393801916,1.0,0.0,0.0,0.7915648612945797,0.0,0.0,1.5,25.0,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,7,6,0,0,0,5.5,0.0,88.68432010311899,84.49491772112646,65.55934258179508,0.0,0.0,0.0,1.0,0.0,0.0,0.44636858489220455,26.100000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,7,7,0,261,114,6.5,188.3781176031182,76.43330332217042,73.44272762858455,73.93272231836555,0.0,73.825041941205569,171.46662731313685,1.0,73.825041941205569,117.49256823999882,1.3922259496848763,27.199999999999999,0.0,141.18668249442931,142.38673618953032,143.07008078115291,143.64955236653012,144.14002514685836,144.32324476929409,44.605520843300916,44.611205798496798,43.94698172177322,43.113554100953465,42.255854091999943,41.60206920886489 +1999,7,7,8,0,285,188,7.5,322.49918650262737,63.66107433843745,61.840546790012,82.08672280951352,0.0,113.63361067782509,313.17438964467266,1.0,113.63361067782509,201.04660355776164,1.5,29.399999999999999,3.6000000000000001,286.19888032609208,288.0180866256585,289.05685737240697,290.0115967813303,290.81353746587047,291.11771425768592,64.056639842750116,64.253301616647875,65.141559981078331,66.526908534270618,67.423748585398201,66.728090310835512 +1999,7,7,9,0,342,262,8.5,481.87275961480054,50.588298521239196,49.9913834335612,90.75502838139714,0.0,162.3151139289948,481.2851576745789,1.0,162.3151139289948,300.09422943472492,1.0032332765751957,29.399999999999999,4.0999999999999996,457.31811873719175,459.62566981404109,460.94059882945669,462.24195643627723,463.34471346864194,463.7549486547656,95.269153378766902,92.81438111046225,91.546860716466327,92.062819382018546,93.214895312513079,93.622708713941464 +1999,7,7,10,0,533,238,9.5,656.9847739735178,37.34362833726207,38.17860538811227,101.21004318644967,0.0,214.49161387862353,670.61935449327393,1.0,214.49161387862353,410.1907972133526,1.1642176688501922,30.0,4.0999999999999996,651.55557565755805,653.0617440499957,653.87630706147183,655.95868114298537,657.71231975778676,658.37397895431559,130.21971766077505,125.67549985542301,121.76158201146609,120.43283461026869,120.67188189425717,121.41192978021591 +1999,7,7,11,0,591,246,10.5,772.9797586394493,24.06420886815445,26.915548488947582,116.4078887202105,0.0,253.09254750553526,799.09631681975657,1.0,253.09254750553526,482.51172581392655,1.249806533614242,30.0,2.6000000000000001,782.93285242585841,783.9979321655951,784.53126086960674,786.91815618314899,788.93166175299177,789.68972220667331,155.93102098222658,150.80919802751401,145.31604841900818,142.24668314869353,141.2199371295016,141.64945635359371 +1999,7,7,12,0,595,278,11.5,844.70696358643579,11.171187009268241,17.740059364227996,144.4975026447187,0.0,269.11488075222604,877.59628628811902,1.0,269.11488075222604,526.53648580953029,1.2904687218460895,31.100000000000001,3.1000000000000001,861.97422451716636,862.9798703146032,863.4689706568563,865.80916886130308,867.79046144011795,868.53096875450888,166.63472944609126,161.67417506040246,155.59492701950583,151.6505796663003,149.72541298280842,149.80414659145993 +1999,7,7,13,0,252,398,12.5,640.99545952295534,6.130816509400907,15.362782725184859,193.87438200811275,0.0,203.65070759264773,661.05968426857453,1.0,203.65070759264773,399.8686157622522,1.2978562099263635,31.699999999999999,2.6000000000000001,639.7395488426273,642.25868594148096,643.67579269942712,645.62922723442148,647.27435056127865,647.89706202178115,124.85205520108087,122.10666397501252,118.40935660547657,115.98312162240677,114.69405853754472,114.4301953344816 +1999,7,7,14,0,622,255,13.5,831.17439503650871,17.846700815488482,22.130930708483007,232.71626434377617,0.0,264.80614615818422,861.91344785057981,1.0,264.80614615818422,518.31208498107799,1.2739426609154154,31.699999999999999,3.1000000000000001,846.25309277471547,847.23414622098574,847.71114575803949,850.08828751055273,852.09784290286814,852.85101875073553,163.74200265845062,158.63557139422682,152.66789534607835,149.00289610069717,147.39648402804175,147.63172180867744 +1999,7,7,15,0,585,232,14.5,724.09627460923411,31.051262099430343,32.73398259459922,252.4617919503999,0.0,236.94125876801053,744.93298808005613,1.0,236.94125876801053,452.34644853534309,1.2121556533740236,32.200000000000003,3.1000000000000001,727.87100673529574,729.00929118772217,729.59408576930514,731.95878116641541,733.94879597213639,734.70158965804228,145.27512234545918,140.24406491862646,135.33815999093073,132.99718668600531,132.61123514725369,133.23827452949925 +1999,7,7,16,0,303,304,15.5,520.54261352538924,44.33687854881927,44.384486876876785,264.59634288430715,0.0,171.88178357469548,524.56157002456132,1.0,171.88178357469548,324.3590747966345,1.092982860456863,32.200000000000003,0.0,501.54699567045827,504.09336624058619,505.54496377627481,507.01856430231953,508.26430649403534,508.7299134613138,102.47030356717013,99.567800187143689,97.528708827624499,97.299785880353625,97.961883037088015,98.387982453218214 +1999,7,7,17,0,171,239,16.5,333.97073268016186,57.509920897992856,56.26280450767809,273.8886980106865,0.0,111.99641383973193,329.41499296551933,1.0,111.99641383973193,207.22736357393009,1.5,23.0,3.1000000000000001,307.25650478132997,309.69812410607665,311.10950989837409,311.77694699668433,312.34860491527706,312.5554117727396,64.569756185265589,63.768937455511029,63.713721654691163,64.462877688963019,65.217050609293224,65.085991323194023 +1999,7,7,18,0,0,46,17.5,46.0,70.44864451010065,68.01962820673313,282.1716890310604,0.0,14.467185841836228,45.233754546892783,1.0,14.467185841836228,28.019315218101255,1.5,23.0,4.5999999999999996,41.982414867063945,42.622452980867337,42.997861409819158,42.916750790812237,42.855002195634242,42.82559044169308,8.449174891369692,8.4245994493713141,8.4104558181492965,8.3845470217437565,8.3315444398529941,8.2649778586248317 +1999,7,7,19,0,0,21,18.5,21.0,82.99725480626897,79.39124414022602,290.36184777711657,0.0,6.6045848408382763,20.63210543896264,1.0,6.6045848408382763,12.773339667290958,1.5,22.199999999999999,7.2000000000000002,19.165885048007464,19.458076360830752,19.629458469700065,19.586043351529522,19.552682655550473,19.537111101163621,3.8561535684066204,3.8440890555388796,3.8376308567782491,3.8247241891344825,3.7991988598337687,3.7688045377370267 +1999,7,7,20,0,0,0,19.5,0.0,91.76167720492107,87.25221545333439,296.7072898685864,1.0,0.0,0.0,0.0,0.0,0.0,1.1357833402427815,22.199999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,8,6,0,0,0,5.5,0.0,88.71647897991544,84.54401993679504,65.66301340878871,0.0,0.0,0.0,1.0,0.0,0.0,0.42099448853046884,22.199999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,8,7,0,307,109,6.5,196.00927577423568,76.51249770327273,73.53570175495837,74.0080635407902,0.0,77.812653177093793,177.15777255231686,1.0,77.812653177093793,122.15233357061679,1.3907187611507776,23.300000000000001,3.6000000000000001,144.60046315594985,145.75195810374345,146.40458482115577,146.96825521959306,147.44714942926595,147.62443569450397,47.079465869850324,47.079202284923312,46.346588987049806,45.412498784547168,44.455106421322633,43.748687352504518 +1999,7,8,8,0,323,185,7.5,336.98580428984792,63.73450194450269,61.93036690090536,82.17372194208221,0.0,119.23142520879097,326.82313593932929,1.0,119.23142520879097,209.93782783933304,1.5,25.0,4.0999999999999996,298.6826318799595,300.47570938419852,301.49674208397965,302.44083875727301,303.23551304321501,303.53533222643324,67.109482375143088,67.314656650811187,68.282705400998509,69.774181837141768,70.738635891132901,70.002378950409053 +1999,7,8,9,0,531,200,8.5,540.75084604530298,50.65719666151891,50.0801526027313,90.85727270790777,0.0,184.86757469273368,541.46002590125943,1.0,184.86757469273368,337.74795961862611,1.005794189575968,26.699999999999999,3.1000000000000001,517.72418582426019,519.20263678551055,520.01681630444068,521.7821157217852,523.26851580838638,523.83027094831209,108.57746302724784,105.23596507100444,103.53068883723535,104.26833896207953,105.94294533432641,106.67963065540768 +1999,7,8,10,0,678,181,9.5,713.29906084736081,37.40999247638605,38.26989998409654,101.33255019586565,0.0,233.65101578491584,729.65692231934622,1.0,233.65101578491584,445.22898602152713,1.1667482583941844,28.899999999999999,3.6000000000000001,712.73313850055297,713.61727533529347,714.05431350114111,716.24323093179248,718.09004900037064,718.78362433794439,142.25483710727084,136.85685307995595,132.24218959042153,130.6392208126324,130.91545831134923,131.88495827940758 +1999,7,8,11,0,736,186,10.5,841.68931742981306,24.1323943452198,27.015682970909605,116.54929411801326,0.0,275.83925891465293,869.04799176988445,1.0,275.83925891465293,523.35640966124765,1.2522768852886288,29.399999999999999,2.6000000000000001,854.73978343697434,855.65744779091187,856.09390524753167,857.96142026029429,859.56192899924201,860.14155734515782,170.00081427248205,164.19684702994937,158.08394552584537,154.53654826217698,153.24346931559339,153.74916882283313 +1999,7,8,12,0,721,219,11.5,905.2677977106182,11.257530855748286,17.85645221608251,144.58096827951968,0.0,297.04854294968118,941.69426904935949,1.0,297.04854294968118,563.68327334826301,1.2929292448371055,30.600000000000001,4.0999999999999996,927.92497203674088,928.55107110971051,928.80241383318867,931.07690689682693,933.01485254213901,933.72874119432322,184.32089734478413,178.79592029268247,171.84110193827314,167.19083028702582,164.77913357371963,164.79359151704526 +1999,7,8,13,0,708,234,12.5,916.35923514169815,6.204617710567419,15.466995960333925,193.65528596303537,0.0,292.08410271344098,954.09751891740893,1.0,292.08410271344098,570.54963274421141,1.3003816696853838,31.100000000000001,3.1000000000000001,940.12302971827251,940.77359560220668,941.04085037823438,943.3327414515669,945.28315091264551,946.00389978859198,181.44315180395932,176.15594515184227,169.25601920033711,164.51052175988866,162.01393713983944,161.94117932969905 +1999,7,8,14,0,706,218,13.5,871.71050596418695,17.85283178301005,22.19014495506574,232.44078410818744,0.0,285.90405125259753,904.70167773270009,1.0,285.90405125259753,543.10327413120831,1.2766272899224183,31.100000000000001,3.6000000000000001,890.32425891512628,891.05598667813956,891.37567803913407,893.68239880041028,895.64236798804302,896.36850873937044,177.02745444454817,171.5188685662462,164.9492959264594,160.75554951257317,158.79411350732818,158.96112099937062 +1999,7,8,15,0,740,165,14.5,787.22427238371188,31.049426878381766,32.77068960387466,252.25091577694525,0.0,257.98483721398151,809.24832343307514,1.0,257.98483721398151,489.92762649112541,1.2151258530168656,31.100000000000001,3.6000000000000001,794.45986018266456,795.32223806920842,795.73450060050232,797.63584543497268,799.25780791291936,799.85112652420128,158.31686343061355,152.54338728957836,147.01301250998557,144.24789078768845,143.67604251972671,144.42738272335342 +1999,7,8,16,0,611,174,15.5,610.44040211460833,44.3363982138694,44.41372337588114,264.42986334806744,0.0,205.04941783134132,619.07025698012285,1.0,205.04941783134132,381.71498162677983,1.096419115724048,31.699999999999999,3.1000000000000001,599.72318363230602,600.70656954858191,601.21627733489561,603.33954076137229,605.12385330887241,605.80060896951795,122.98609925998018,118.38049695081621,115.18782151468878,114.84125739313208,116.02587907189263,117.0279909856531 +1999,7,8,17,0,541,153,16.5,453.23544835581572,57.51428294294646,56.291774403464885,273.74827755295337,0.0,158.68962929964314,446.44158008343391,1.0,158.68962929964314,283.08021431305593,1.5,31.100000000000001,0.0,419.55396895240227,420.74569997384395,421.39663502140081,422.87310137448321,424.11359817022384,424.5844302602294,90.62534123829731,88.855219048303169,88.825828004283466,90.636545277743949,92.623210768299387,92.783736344956296 +1999,7,8,18,0,397,118,17.5,266.38123662740543,70.46011816270581,68.05253682577467,282.04662787710976,0.0,101.51402659198359,249.5509211334986,1.0,101.51402659198359,166.9616982077296,1.5,28.899999999999999,3.1000000000000001,215.2345478382945,216.29527593403185,216.88319044121232,217.9730935077373,218.87715761568649,219.22924032279047,57.551571205558162,59.362081984401151,60.666675924507885,61.332151051490747,60.848401333624864,59.153774349370551 +1999,7,8,19,0,228,59,18.5,100.81948426361829,83.01781259985358,79.43104160823552,290.2459019862621,0.0,45.817131000319904,82.502885813849062,1.0,45.817131000319904,63.600907041135912,1.5,27.199999999999999,2.6000000000000001,58.446703920908149,59.035858244732722,59.367613971250833,59.928808551590649,60.39399693014856,60.576055997476189,26.10954475736424,26.67192344620771,27.10406973064141,27.416808051170626,27.343936792202374,26.756628671053438 +1999,7,8,20,0,0,0,19.5,0.0,91.76214079291094,87.27342312798963,296.5752092002593,1.0,0.0,0.0,0.0,0.0,0.0,1.1061020972018607,25.600000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,9,6,0,0,0,5.5,0.0,88.74316070155609,84.5894009213734,65.77801938523761,0.0,0.0,0.0,1.0,0.0,0.0,0.40093790758894876,22.800000000000001,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,9,7,0,137,134,6.5,172.60940337386458,76.59304242809125,73.6311143058556,74.08975060989107,0.0,63.862564134634425,160.720361122019,1.0,63.862564134634425,107.00506544597938,1.3894548216966105,23.899999999999999,3.6000000000000001,137.10150631140021,138.56980143329827,139.41752775177341,139.73338354432769,140.00727836737434,140.10356546170516,38.279510140716184,38.25996745431398,37.808659436091837,37.237326104145012,36.622099671419889,36.121960583527141 +1999,7,9,8,0,379,173,7.5,350.79903414068337,63.80889492441967,62.0223737947605,82.26766657398971,0.0,124.94626550668178,339.53698214778672,1.0,124.94626550668178,218.35419526142093,1.5,26.699999999999999,3.1000000000000001,310.32934575623983,312.01505530638894,312.96993841406106,313.87895343213279,314.64655134689173,314.93380738532198,70.157240236968022,70.372402174278477,71.447033207978137,73.075967583331604,74.129112805971786,73.347009157552549 +1999,7,9,9,0,500,207,8.5,527.24890846476751,50.72680233894354,50.1710495232593,90.96744600604553,0.0,180.00681188756656,528.25697479148425,1.0,180.00681188756656,329.48286755939949,1.0085675286877143,28.300000000000001,3.6000000000000001,504.50291906535807,506.04446706294715,506.89785538538706,508.68233364142384,510.18266019796408,510.75171935458866,105.73159890865665,102.53836020930736,100.90114555141845,101.62141779081659,103.23871501193447,103.93196211122978 +1999,7,9,10,0,642,198,9.5,701.38473228827229,37.47698376455733,38.36355810592731,101.4645902986863,0.0,229.58933394196131,717.70401011742342,1.0,229.58933394196131,438.07357935905128,1.1694593654663374,30.600000000000001,4.0999999999999996,700.0013713426797,701.02502585193247,701.54665047710159,703.80427797924881,705.70525777927628,706.42272830491163,139.71466500199614,134.51418080144941,130.0516408370793,128.52366362450604,128.81068135279304,129.72996112402222 +1999,7,9,11,0,639,241,10.5,809.74966767878732,24.201488719330232,27.1189514210356,116.70266544798784,0.0,257.95534499034187,837.55951547923405,1.0,257.95534499034187,505.12693379417914,1.2549076250080105,31.699999999999999,4.0999999999999996,821.36956816956615,822.4029425054531,822.91473903249073,825.29558539522452,827.30565647581045,828.06086535778388,159.17900901548208,153.99682714212489,148.25988248854932,144.97085241532091,143.76160246837642,144.12100925600754 +1999,7,9,12,0,709,231,11.5,905.38418355415354,11.346336754879307,17.977728351823583,144.6779489041131,0.0,297.01063353944329,941.98706731795528,1.0,297.01063353944329,563.83921948341117,1.2955385031048885,32.799999999999997,4.0999999999999996,927.74633147598286,928.4463378005662,928.74173002589521,931.04883960343773,933.01309071273477,933.73796849748135,184.24279641397683,178.75564137082654,171.84111977008288,167.22528000653597,164.83340501209807,164.83974175531026 +1999,7,9,13,0,774,189,12.5,934.56758504984009,6.2860283979544755,15.578029833515782,193.439763792241,0.0,297.87372935535745,971.31807212461206,1.0,297.87372935535745,579.94806504925009,1.3030506163265982,34.399999999999999,4.0999999999999996,958.77383274143187,959.48147561385315,959.78035379683649,961.43498069275279,962.87120933641938,963.37702347098798,184.88768525351992,179.42443843180149,172.41141925677073,167.4741337133824,164.79412641482108,164.71480213099375 +1999,7,9,14,0,712,219,13.5,877.95859599218966,17.863432915527127,22.255576553950686,232.15812804933518,0.0,287.95038201861428,911.48305318792927,1.0,287.95038201861428,546.95638977183489,1.279455385628508,33.899999999999999,6.7000000000000002,897.02702544124213,897.76683176958534,898.09050393249231,900.39987015894417,902.36263775665554,903.08932152247201,178.2899307032535,172.74140351954222,166.12630683158923,161.90123743440722,159.92329032150371,160.09112909131599 +1999,7,9,15,0,674,198,14.5,764.46092218302476,31.051301962082356,32.81270395959425,252.03239425945296,0.0,250.48786776286508,787.28665719029084,1.0,250.48786776286508,476.96376826696405,1.2182441655245246,34.399999999999999,5.2000000000000002,771.53910287857332,772.41253217484712,772.83431576380315,775.10679491979818,777.02683247990183,777.74610580141848,153.7639811118712,148.23449346726787,142.88298559028965,140.28005782399018,139.81463066273099,140.53786144994669 +1999,7,9,16,0,641,170,15.5,627.6022940365126,44.33951750196303,44.44784831822458,264.2568532750216,0.0,216.44092827075266,636.62415855587415,1.0,216.44092827075266,392.22575428878241,1.100011529292548,34.399999999999999,6.2000000000000002,617.2323740578081,618.18236408027633,618.66746541062912,620.76800519470021,622.53778747576769,623.20484044179898,130.0221124129481,125.12860657134686,121.65369249415697,121.14181009272849,122.25447698529184,123.28566464459605 +1999,7,9,17,0,447,189,16.5,436.84975315566885,57.522361789823364,56.32552638047792,273.60228652527906,0.0,155.00181809223616,431.41711305819626,1.0,155.00181809223616,273.29480423838368,1.5,33.299999999999997,5.7000000000000002,404.14972677899527,405.67228907275063,406.5214286249697,408.11635036435592,409.4516353754052,409.96287777755134,88.844921297287584,87.198250255681813,87.075172809505176,88.691634808748859,90.493115990569592,90.628050677673613 +1999,7,9,18,0,328,128,17.5,250.3914808145195,70.47554641591917,68.09030608207907,281.91670639473455,0.0,94.864499523859166,235.7647690523695,1.0,94.864499523859166,155.98784589997902,1.5,32.200000000000003,5.2000000000000002,205.69000545921011,206.99997546814356,207.73950892744699,208.43947709752035,209.02692924386,209.24888521195811,53.885712792040195,55.334937931052941,56.424171907180735,56.965630916407065,56.529135319966308,55.086344691161521 +1999,7,9,19,0,181,64,18.5,97.059548632800215,83.04263002187285,79.47587962404693,290.1256454981043,0.0,42.135066194678409,82.139120626442164,1.0,42.135066194678409,60.67986337592081,1.5,30.600000000000001,4.0999999999999996,62.020986580879892,62.728267195656912,63.13204137149468,63.484160815905454,63.779439423417628,63.891727882772841,24.076363341016652,24.495134985467402,24.829220268063825,25.063414676570645,24.980425730372254,24.493514542489979 +1999,7,9,20,0,0,0,19.5,0.0,91.7639763922371,87.29702077445795,296.43692289096225,1.0,0.0,0.0,0.0,0.0,0.0,1.069716814006867,30.0,5.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,10,6,0,0,0,5.5,0.0,88.7698819550771,84.63599522973043,65.900246550177,0.0,0.0,0.0,1.0,0.0,0.0,0.3808438231656375,25.600000000000001,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,10,7,0,282,110,6.5,189.01151606164734,76.67486561038295,73.72889201581887,74.17777120322805,0.0,74.506611447416333,171.44872993686607,1.0,74.506611447416333,117.84336770675871,1.3884434342063754,26.699999999999999,4.0999999999999996,140.17439669255288,141.33624864200669,141.99650691990814,142.56055139813517,143.03875816908669,143.21668663230275,45.04535966274949,45.048337800718997,44.363850002987888,43.498489893319466,42.609612988515657,41.942263523039692 +1999,7,10,8,0,422,160,7.5,357.35896307915402,63.8841916702225,62.11650133984851,82.36852906087401,0.0,128.86539367205378,346.19306093752596,1.0,128.86539367205378,223.73428240245821,1.5,28.300000000000001,5.2000000000000002,315.02693911923484,316.39824491408393,317.16441920313366,318.53494020620258,319.6769893737187,320.11872656294059,72.13592861280928,72.435643006804185,73.658446645926801,75.562733425690652,76.851412888311401,76.025198613626827 +1999,7,10,9,0,555,186,8.5,540.78424690688985,50.797066994289374,50.26401669451885,91.08550026619533,0.0,189.53251695504389,541.7632784855374,1.0,189.53251695504389,337.63543301690567,1.0115546404857565,30.0,6.2000000000000002,518.46582297367877,519.82847927531895,520.57168848373772,522.28393686806555,523.72888972717658,524.27189429287296,111.49225408794311,107.97290944681298,106.1071423201313,106.74590062206741,108.39277938717451,109.15522622297392 +1999,7,10,10,0,515,273,9.5,676.26953574952631,37.54457183994895,38.45953212596111,101.60608032130357,0.0,225.95626334450685,690.51579169685624,1.0,225.95626334450685,422.22933637752578,1.1723513550390416,31.100000000000001,6.2000000000000002,669.69129297012,671.47587224218648,672.45129025400979,674.60104833964772,676.41277599478849,677.09518316782658,137.19809662927514,132.60206634568499,128.53545991171561,127.07354523743118,127.2140355858127,127.88233370298266 +1999,7,10,11,0,12,169,10.5,179.67057200923742,24.271491354534245,27.22531409310218,116.86784496914171,0.0,56.766304762474192,177.98242747856523,1.0,56.766304762474192,110.0148924891994,1.2576986426071226,30.0,5.7000000000000002,166.00932685068767,168.25777873824325,169.57419236791736,169.45063242917632,169.36631252376895,169.31615506305116,33.386997634518195,33.187799962044828,32.994327333084001,32.835252937699664,32.63700583877992,32.412172384926272 +1999,7,10,12,0,637,258,11.5,863.46527052835791,11.437654755364447,18.103835864815164,144.78821708265752,0.0,275.13961567755888,898.39979745254436,1.0,275.13961567755888,538.12518461000025,1.2982961218428613,31.699999999999999,6.7000000000000002,883.32169775876366,884.19893492772542,884.60823755444801,886.9576016538881,888.94872742633936,889.69171372076255,170.72967938550443,165.88884021975409,159.53177194305681,155.19902001996681,152.93523123851142,152.83952946228516 +1999,7,10,13,0,66,338,12.5,401.53895015337775,6.375092872435614,15.695845308037418,193.228282078064,0.0,126.96740045656183,405.89021386527145,1.0,126.96740045656183,248.37181906343298,1.3058625054465665,31.100000000000001,5.7000000000000002,384.80621387201973,388.27005822364322,390.28168270583478,390.82983839062848,391.31084931307066,391.47495503583866,76.153743777021248,75.17288512506731,73.888245260648247,73.01631668165318,72.419520528271264,72.058839554657183 +1999,7,10,14,0,359,375,13.5,707.08540151206807,17.878658306756304,22.32727563765792,231.8687839740387,0.0,229.87698741053913,727.89945844476972,1.0,229.87698741053913,440.26498787529272,1.2824262826111328,23.899999999999999,4.0999999999999996,706.23312943503424,708.79925502307788,710.23452564460445,712.08578043616785,713.65647021249913,714.24006111779158,140.7769185792861,137.26688208450503,133.02878150760588,130.37692461037778,129.08581562488874,128.97457794312211 +1999,7,10,15,0,12,146,14.5,156.07997589925324,31.056998917116523,32.860092459877485,251.8064852216024,0.0,49.504029403530851,155.73833181372214,1.0,49.504029403530851,96.312146119006925,1.2215098318637319,27.199999999999999,4.0999999999999996,145.5169908634843,147.2847755522389,148.31790865018129,148.46546923468432,148.59888649852337,148.64073647806958,29.266770004053878,29.007664982419239,28.748069330563471,28.616404744910856,28.510539286603553,28.360583269705824 +1999,7,10,16,0,481,251,15.5,594.15040608131915,44.346323286953336,44.486922684709384,264.0774743780419,0.0,198.15527229478744,601.80078208922146,1.0,198.15527229478744,371.24312247338537,1.1037592851344356,28.899999999999999,3.1000000000000001,579.57735023091948,581.35252452614179,582.33520184828365,584.33266413468004,586.011990539875,586.64826536129647,118.92354675018774,114.93477442443479,111.99388089082217,111.50001217971835,112.35339500184723,113.08452916121584 +1999,7,10,17,0,265,241,16.5,387.78698699657599,57.534226670001466,56.364111577242916,273.4508441171306,0.0,131.98430249138175,383.31429936637016,1.0,131.98430249138175,241.77741017074686,1.5,30.0,2.6000000000000001,357.85087922426908,360.07112730254966,361.34373174360218,362.50333213445776,363.47954899218917,363.84831504831334,76.049289373592444,74.850700136575384,74.704343095092923,75.75302055053281,76.934957421712056,76.933330210876889 +1999,7,10,18,0,0,87,17.5,87.0,70.49498358538735,68.13297627920191,281.7820221243094,0.0,27.504937982582703,85.490606916182358,1.0,27.504937982582703,53.068362359087608,1.5,29.399999999999999,0.0,79.178005935101282,80.367168454344181,81.064384342188418,80.936751693906388,80.840823695315834,80.79384113104058,16.050822356306064,16.021478395427163,16.00620121589202,15.966689322379089,15.868457475216815,15.732339135455561 +1999,7,10,19,0,0,25,18.5,25.0,83.07174653006435,79.52578624568477,290.00116361288997,0.0,7.8626010009979517,24.567007385521908,1.0,7.8626010009979517,15.211333845378466,1.5,26.100000000000001,2.6000000000000001,22.816529819056488,23.164376620036599,23.368402940119111,23.318475659493252,23.280183522721043,23.262236062858229,4.5909557747587808,4.5768258643168238,4.5691378966946132,4.5540696611676763,4.5240479376804377,4.4878656602619893 +1999,7,10,20,0,0,0,19.5,0.0,91.76719972947002,87.32301576388393,296.29250848601737,1.0,0.0,0.0,0.0,0.0,0.0,1.026308468546219,25.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,11,6,0,0,0,5.5,0.0,88.79661252472124,84.68376947948965,66.02965547100098,0.0,0.0,0.0,1.0,0.0,0.0,0.3607264422984171,19.399999999999999,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,11,7,0,0,47,6.5,47.0,76.75789652491142,73.82896239059659,74.27210995173328,0.0,14.78168988187614,46.218076659872679,1.0,14.78168988187614,28.629410388670827,1.3876941406723677,18.899999999999999,3.1000000000000001,42.895076059826238,43.549028045668834,43.932597527423965,43.850069532905898,43.787258655913234,43.757323663993546,8.6329110174147647,8.6078471093619751,8.5933960795870519,8.5669824752877233,8.5128996176816631,8.4448862201657242 +1999,7,11,8,0,6,162,7.5,164.79714474464529,63.960332418042576,62.21268476155868,82.47627833072791,0.0,52.761395263856969,161.74313014257032,1.0,52.761395263856969,100.70305202475271,1.5,19.399999999999999,4.5999999999999996,149.77286692123138,151.86211455595128,153.0853849838926,152.90079508385577,152.76550374881114,152.69563734855774,30.635911176149449,30.574673640158899,30.599396689951849,30.624482173683415,30.529302255768958,30.273332654603063 +1999,7,11,9,0,0,176,8.5,176.0,50.86794463742307,50.35899855062834,91.21138335722723,0.0,55.685574345729648,173.49189721139732,1.0,55.685574345729648,107.58467083211333,1.0147568376100313,20.0,5.7000000000000002,161.18101891807194,163.49389296932378,164.84928492208701,164.6679375190441,164.53637425819849,164.46702284818866,32.555079600828506,32.399737222892483,32.306697833746341,32.23772019413353,32.098253284307397,31.878283041581323 +1999,7,11,10,0,12,231,9.5,240.3837602023666,37.612729792797644,38.55777691972125,101.75693143516648,0.0,76.258065290368364,237.8878731764691,1.0,76.258065290368364,147.165006269516,1.1754245547535334,21.100000000000001,4.0999999999999996,221.99700224707078,224.96441042647103,226.70138797924523,226.52542582166836,226.40413017780855,226.33330445536944,44.809412458920939,44.482389721694098,44.217579809418886,44.042643392751067,43.828340110571283,43.562033744351332 +1999,7,11,11,0,223,389,10.5,587.09960249877577,24.342406322873032,27.334734121498304,117.04466528547441,0.0,190.20322017342897,601.90159492924829,1.0,190.20322017342897,366.37019597562954,1.2606497963222227,22.800000000000001,5.7000000000000002,579.541649867552,582.31805967231332,583.89517790156924,585.7447349853951,587.30077219044983,587.89043647226526,115.89161656091589,113.19803487097651,110.05302601499085,108.26849000576571,107.51822130233174,107.42174678094263 +1999,7,11,12,0,649,289,11.5,905.4088963364776,11.5315405844709,18.23472475631322,144.91152433751603,0.0,288.44520629706579,941.3488207178973,1.0,288.44520629706579,563.83698152244301,1.3012017030740295,22.800000000000001,3.6000000000000001,924.9973289475771,926.10268868965068,926.64243560750492,928.96186464520883,930.93281452270071,931.66360370381108,178.80753829241141,173.79397094915805,167.22955447999968,162.73696659644568,160.36779743439976,160.24816227915812 +1999,7,11,13,0,30,283,12.5,311.86362969641749,6.471838412979459,15.820399590191471,193.02127688151137,0.0,98.508191970259659,314.18491167844485,1.0,98.508191970259659,192.90624404121348,1.3088167797162855,24.399999999999999,4.5999999999999996,296.12041302758075,299.13360163536936,300.88842973230146,301.3276338067048,301.71168839429492,301.84381323722062,58.815904671550328,58.197729656881073,57.376642283715007,56.832208258899449,56.43164154670805,56.11815843645055 +1999,7,11,14,0,18,278,13.5,294.64119546170684,17.898660944895767,22.40528808397402,231.57324596106378,0.0,92.860100089983561,292.86806522902032,1.0,92.860100089983561,180.67001250394983,1.2855393162459272,25.0,2.6000000000000001,273.9934451381767,277.48810022064805,279.53218677431539,279.41300136309104,279.34245720303522,279.28819832005291,54.796451160345185,54.409684328707165,53.991565393900061,53.661590375541323,53.306957911265528,52.953969653706935 +1999,7,11,15,0,12,256,14.5,266.07396841124114,31.066628436793692,32.91291911704474,251.5734538112033,0.0,84.145080938698399,263.7120722295644,1.0,84.145080938698399,162.99080992430569,1.2249221142364937,25.0,3.1000000000000001,246.27061721573767,249.52278273088825,251.42610085267,251.26480692675182,251.15760661031902,251.09052505347154,49.525946748680035,49.174837477085056,48.851960086613545,48.614934313923222,48.344119430385383,48.036780129364608 +1999,7,11,16,0,6,216,15.5,220.27722633009006,44.35690102613741,44.53100501254944,263.891892965031,0.0,69.765994478542027,217.57585656366908,1.0,69.765994478542027,134.77579236391193,1.1076616229514593,23.899999999999999,3.1000000000000001,202.66220135175692,205.4466217572064,207.07726865881074,206.89037430955287,206.75833694809617,206.6848867144185,40.894883209651184,40.627830635126067,40.440942746835859,40.32181007028916,40.149001453311165,39.899034759961658 +1999,7,11,17,0,0,164,16.5,164.0,57.54994492643093,56.40757865163406,273.29407236509013,0.0,51.994223013385053,161.4420630494181,1.0,51.994223013385053,100.21089801125048,1.5,23.300000000000001,3.6000000000000001,149.84512815923455,151.99535970684906,153.25532841297994,153.07259186983836,152.9388034805649,152.86959136998513,30.328100970693026,30.203355632515635,30.151812232824899,30.117042947100941,30.001846148305813,29.787743593347948 +1999,7,11,18,0,17,147,17.5,153.31860139946986,70.51848171249782,68.1805851019191,281.6426743379829,0.0,49.998001631461996,149.40118089578186,1.0,49.998001631461996,93.693963494543866,1.5,23.300000000000001,2.6000000000000001,137.15716563170838,139.02509334787689,140.11727347009619,139.94451890008349,139.81759516813128,139.7522106403093,29.00445181698014,29.10606498752378,29.201493333519437,29.195470832956364,28.997482097957246,28.648381002698084 +1999,7,11,19,0,5,58,18.5,58.904244809030899,83.10519890480737,79.58078667478645,289.87254254758847,0.0,19.327081046426436,56.943047779386021,1.0,19.327081046426436,35.923622076044765,1.5,24.300000000000001,3.6000000000000001,51.920434301078423,52.695617562456924,53.149529583058928,53.059359639504301,52.991506885103455,52.958349038478261,11.246987674751319,11.245039121848984,11.252046953496395,11.235023057149014,11.164477489859854,11.055301197432069 +1999,7,11,20,0,0,0,19.5,0.0,91.77182488524527,87.35141361640359,296.1420451672401,1.0,0.0,0.0,0.0,0.0,0.0,0.9755137853101363,22.5,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,12,6,0,0,0,5.5,0.0,88.82332268790496,84.73269044617862,66.16620371724385,0.0,0.0,0.0,1.0,0.0,0.0,0.3406003633367831,19.0,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,12,7,0,7,109,6.5,110.93753367479663,76.84206567829703,73.93125377855515,74.3727484745111,0.0,36.495600331239096,107.55045558386328,1.0,36.495600331239096,67.743921969946712,1.387216724620779,18.899999999999999,3.1000000000000001,97.987168635300876,99.384395827748207,100.20177754035058,100.06014421858521,99.955498830899884,99.902423720893708,21.46399256724084,21.406951230955713,21.307328139539187,21.162976432256567,20.96066903274691,20.761903788266995 +1999,7,12,8,0,37,196,7.5,213.19294564352558,64.03725930267015,62.31086070174311,82.59087995007091,0.0,70.83833782430969,208.96534868439502,1.0,70.83833782430969,131.38046376024317,1.5,20.0,3.6000000000000001,192.34727006559879,194.59666546942853,195.90827825413018,196.04154791864579,196.16819699740554,196.20246046213012,40.769440581708032,40.750852336413871,40.946285309609358,41.265928957889194,41.388958912604515,41.026256690807678 +1999,7,12,9,0,0,117,8.5,117.0,50.93939187724865,50.45594150067712,91.34503913716439,0.0,36.860278224511866,115.24900871277387,1.0,36.860278224511866,71.455284720732294,1.0181753969641516,20.600000000000001,3.6000000000000001,106.88709842781478,108.48916251838828,109.4286096014919,109.28794959279224,109.18409268200281,109.13130142338709,21.540559456660937,21.471832692007563,21.428464321968068,21.375244494784436,21.261029182061829,21.098355281912792 +1999,7,12,10,0,0,171,9.5,171.0,37.68143415507563,38.65824987605509,101.91704935533038,0.0,53.887671885049016,168.79616675307693,1.0,53.887671885049016,104.58830368955118,1.1786792545228382,20.600000000000001,3.1000000000000001,156.78931525493053,159.06428467372405,160.3976973879038,160.2438296286295,160.13399820824975,160.07415394798562,31.561477739843138,31.42721302551433,31.322421439404653,31.227677979042085,31.063073275667293,30.837594484261562 +1999,7,12,11,0,0,136,10.5,136.0,24.414242303167033,27.447177484002047,117.23294982944202,0.0,42.826727012848224,134.26880155065913,1.0,42.826727012848224,83.217961826848054,1.263760913233544,21.100000000000001,1.5,124.54978107007528,126.38950435023575,127.46807637361556,127.35980168241694,127.28382360044974,127.24099796845302,25.076144301927755,24.993975166373783,24.92328385642363,24.849979678297196,24.714068737031873,24.524688998272158 +1999,7,12,12,0,6,207,11.5,212.69423548108156,11.62805512885503,18.37034690879462,145.04760275592625,0.0,66.979178484332181,210.8612052707395,1.0,66.979178484332181,130.35532685344594,1.3042548266253875,22.199999999999999,3.6000000000000001,196.42521981409132,199.11686435363538,200.69309350739647,200.59024941632813,200.52549903576636,200.48078284943003,39.389076635297698,39.193857494702463,38.982042486384557,38.800022565480148,38.561700991054288,38.281798284673464 +1999,7,12,13,0,6,216,12.5,221.76896383586944,6.576275644061006,15.951646286411274,192.8191526575389,0.0,70.049582437389546,219.96811910555456,1.0,70.049582437389546,135.95549539658478,1.3119128702553384,21.100000000000001,5.7000000000000002,204.95239930533029,207.74475714033579,209.37972711421733,209.28546017244145,209.22853930205966,209.18623579107867,41.216313915108188,41.009398390928006,40.777549758829821,40.578133358372916,40.323535852323758,40.030486442199866 +1999,7,12,14,0,0,141,13.5,141.0,17.92359209953054,22.489655308320604,231.27201257079932,0.0,44.365779231405035,139.29238997879051,1.0,44.365779231405035,86.317825394833847,1.2887938244195887,20.0,1.5,129.22966428470397,131.12702647530531,132.23930210520632,132.14093392253699,132.07340901198469,132.03367656053197,25.988944665290507,25.903401895303997,25.825153063739531,25.746420642357435,25.60471959846813,25.40859051142154 +1999,7,12,15,0,0,145,14.5,145.0,31.08030006061298,32.971244957091734,251.33357190795783,0.0,45.665874824382797,143.11568255867837,1.0,45.665874824382797,88.694870791645499,1.228480298182044,20.0,6.2000000000000002,132.80327462640574,134.75986407058181,135.90691354826913,135.7806363094964,135.69086134165525,135.64155487651314,26.736641660032557,26.642492894726121,26.565288262714049,26.486633546373763,26.342648705618959,26.14341087786104 +1999,7,12,16,0,0,102,15.5,102.0,44.371334582293684,44.58015124906206,263.70027965773414,0.0,32.091435788752342,100.48559317512219,1.0,32.091435788752342,62.305117953819753,1.111717840823619,17.199999999999999,4.5999999999999996,93.131741775275671,94.544044657041766,95.372355509991195,95.254142249220223,95.167144724931703,95.122618697640647,18.755413822422497,18.704740939743235,18.670454288730451,18.622699076000497,18.518957291729055,18.373094897277372 +1999,7,12,17,0,0,76,16.5,76.0,57.569581887703244,56.45597367439381,273.132095969808,0.0,23.902307043033758,74.803177543653121,1.0,23.902307043033758,46.361929923067493,1.5,16.699999999999999,4.5999999999999996,69.362250649931724,70.419704924911258,71.039944937962105,70.930351927209742,70.84810234346179,70.807707507256652,13.963629380062144,13.926258122157433,13.902895444047587,13.864213759249759,13.781723290823365,13.671763719326075 +1999,7,12,18,0,0,46,17.5,46.0,70.54609047294777,68.23316753915459,281.4987638989082,0.0,14.467185841836228,45.233571820987066,1.0,14.467185841836228,28.019132492285081,1.5,15.6,4.5999999999999996,41.982414867063945,42.622452980867337,42.997861409819158,42.916686271415244,42.854885434008658,42.825452015357783,8.4491639961502791,8.4245800144545111,8.4104363698601929,8.3845166752889799,8.3315006719885147,8.264934037916543 +1999,7,12,19,0,0,17,18.5,17.0,83.14302117730978,79.64090319590785,289.73986931836936,0.0,5.3465686806786055,16.698921978709581,1.0,5.3465686806786055,10.337063974667505,1.5,15.6,4.5999999999999996,15.515240276958423,15.751776101624896,15.890513999281007,15.854217830544236,15.826279898983739,15.813288000640247,3.1214538285618194,3.1115350267463744,3.1063067226100936,3.0956641170656214,3.0747614065756497,3.0501555367819431 +1999,7,12,20,0,0,0,19.5,0.0,91.77786420565968,87.38221791731044,295.985613638031,1.0,0.0,0.0,0.0,0.0,0.0,0.916920029676362,15.0,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,13,6,0,0,0,5.5,0.0,88.84998323541289,84.78272508284688,66.30984592875505,0.0,0.0,0.0,1.0,0.0,0.0,0.3204806035895862,16.100000000000001,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,13,7,0,72,115,6.5,134.80276721154249,76.92730487742186,74.03569543953235,74.47966541555829,0.0,47.880037982513045,127.574866153719,1.0,47.880037982513045,82.968327438467654,1.3870212137049713,16.699999999999999,3.6000000000000001,111.8217966207485,113.19748612902015,113.99704279150862,114.04142622518293,114.0908027887543,114.09841080656918,28.490989784671662,28.439506735140991,28.174273089826585,27.835168263879421,27.445717055462126,27.120130834218667 +1999,7,13,8,0,0,138,7.5,138.0,64.1149164087743,62.41096727448951,82.71229619116886,0.0,43.855466273515397,135.6191263567799,1.0,43.855466273515397,84.276256223684072,1.5,17.800000000000001,3.6000000000000001,125.63856692275341,127.45946539836129,128.52645550300102,128.35635527814682,128.2304674232627,128.16677521671789,25.53223352764903,25.470356445485631,25.461871785383003,25.445006640085065,25.337860143073108,25.13225829423391 +1999,7,13,9,0,6,205,8.5,208.812039987144,51.011367947430514,50.55479396418577,91.48640756326049,0.0,66.328571847426844,205.95982613885158,1.0,66.328571847426844,127.71128174899624,1.021811558041963,18.300000000000001,3.6000000000000001,191.67805783416728,194.315340525567,195.85984237261337,195.6650175702446,195.525584372092,195.45002691305956,38.789625443079871,38.54644995711088,38.405477896152497,38.333643561663088,38.201065692400533,37.967287230586166 +1999,7,13,10,0,6,229,9.5,233.67859164177739,37.75066488489384,38.760910900866456,102.08633453542468,0.0,73.808801034704786,231.13292697533927,1.0,73.808801034704786,143.04074143555553,1.1821157062474716,19.399999999999999,3.1000000000000001,215.40856651054114,218.35334334757459,220.07778378796991,219.90232846897621,219.78067239776055,219.71044224395436,43.336741775426781,43.059638249881544,42.83426485040421,42.673913073604041,42.458908066335205,42.185186250042932 +1999,7,13,11,0,0,229,10.5,229.0,24.48701247244436,27.562612955367577,117.4325133365662,0.0,72.260407426858592,226.65861039618815,1.0,72.260407426858592,140.26455081577612,1.2670317897936902,20.0,3.6000000000000001,210.89465263725091,213.84906768356646,215.57974414210861,215.44140233560751,215.34929525802556,215.29185397201854,42.432401322729049,42.226443805676894,42.028596017786455,41.860988448164555,41.623370908411388,41.324483228833991 +1999,7,13,12,0,6,201,11.5,206.68958775305572,11.72726390829533,18.51065604533525,145.19616658649096,0.0,65.086408473403509,204.88877315764921,1.0,65.086408473403509,126.66667267696678,1.307455051161206,20.0,2.6000000000000001,190.83868389603234,193.46012141302424,194.99529734585079,194.89256088407305,194.82736686647934,194.7829769117748,38.270639202782085,38.083101021692762,37.880428141324202,37.705411058536043,37.474312928137024,37.201712603563443 +1999,7,13,13,0,6,204,12.5,209.76497871926034,6.68839914205325,16.089535568639192,192.6222814661668,0.0,66.05733763637123,208.01507264412746,1.0,66.05733763637123,128.58068791818002,1.315150198040103,20.600000000000001,3.1000000000000001,193.76767403941139,196.42037002774126,197.97375153093427,197.87953056813865,197.82151686766457,197.77984710277264,38.855406547699452,38.669021263052286,38.460103863375871,38.275836782539088,38.034569412717509,37.754602289506131 +1999,7,13,14,0,6,207,13.5,212.54004918151227,17.953600701993935,22.580414075013703,230.96558503592078,0.0,66.928186345419689,210.60519791246327,1.0,66.928186345419689,130.21684773528187,1.2921891492533297,20.600000000000001,3.1000000000000001,196.18109016825593,198.87836502619416,200.45798944634095,200.33998769474732,200.26293342553311,200.21312707728129,39.34430679344181,39.143402541726978,38.937313467208234,38.761422226427541,38.527643352170855,38.251684760203823 +1999,7,13,15,0,6,221,14.5,226.03001896525365,31.098121891260845,33.0351278259576,251.0871174999257,0.0,71.378473165021589,223.72525079783,1.0,71.378473165021589,138.39547982668728,1.232183694669895,21.100000000000001,3.1000000000000001,208.46692077815851,211.32941086659105,213.00573540156941,212.84949488822375,212.74271313549033,212.67934741676507,41.935569714553644,41.690128710909704,41.469308916421163,41.295567590813533,41.067782460051433,40.789509229342023 +1999,7,13,16,0,42,298,15.5,327.88737516410805,44.38970604635613,44.634414609539114,263.502809095639,0.0,105.4380519389468,326.97070294007204,1.0,105.4380519389468,202.41012995504715,1.1159272978461694,21.100000000000001,3.1000000000000001,307.070109632982,310.30080891368613,312.18373997231191,312.50337422256382,312.79248513731346,312.8830034118364,62.27998652297704,61.387969772160901,60.721491709131556,60.550308411354969,60.544789069906969,60.396832590184886 +1999,7,13,17,0,35,221,16.5,240.31303649589566,57.593200744119684,56.509340026287546,272.96504210572164,0.0,78.176871146581874,237.28808327499638,1.0,78.176871146581874,148.15885543040056,1.5,21.0,4.0999999999999996,220.45056844373721,222.97141827434302,224.44237080474852,224.61524972979396,224.7769100136484,224.82298650157227,45.455795922525418,45.062778069115126,44.953586717724555,45.144756828636972,45.308592816865769,45.117769582029723 +1999,7,13,18,0,0,82,17.5,82.0,70.57785708789818,68.29075581032187,281.3503931170276,0.0,25.883932108872848,80.611543388115052,1.0,25.883932108872848,50.011973439561139,1.5,20.600000000000001,4.0999999999999996,74.691555264190839,75.818380878511149,76.479128111019762,76.356771544831702,76.264692344524533,76.219721912420155,15.108679634259623,15.076691772783342,15.059209508050303,15.020561604964961,14.928994597025554,14.803765499014981 +1999,7,13,19,0,0,46,18.5,46.0,83.18524455967702,79.70615511813136,289.6032316217707,0.0,14.614840178872717,45.058730450949362,1.0,14.614840178872717,28.032831538626578,1.5,20.600000000000001,3.1000000000000001,41.642103925287429,42.273961604526924,42.644431021900466,42.567745125016096,42.509603136521562,42.481659882102988,8.5282719669985401,8.5093869517863361,8.4998714665728219,8.4772598096688245,8.4241601402742727,8.3531853391477604 +1999,7,13,20,0,0,0,19.5,0.0,91.78532820813457,87.41543022768346,295.82329600817224,1.0,0.0,0.0,0.0,0.0,0.0,0.8500588835280762,20.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,14,6,0,0,0,5.5,0.0,88.87656549131222,84.83384053938306,66.46053388632856,0.0,0.0,0.0,1.0,0.0,0.0,0.30038262788256276,17.199999999999999,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,14,7,0,0,48,6.5,48.0,77.01354729534225,74.14221761108193,74.59283648223202,0.0,15.096193921916058,47.203398090526406,1.0,15.096193921916058,29.240504876424509,1.387117882491831,16.699999999999999,2.6000000000000001,43.807737252588495,44.475603110470303,44.867333645028729,44.783741127943195,44.720153678937969,44.689813932115406,8.81670672880038,8.7912010578166271,8.7764427026211553,8.7495838918815068,8.6944941594929652,8.6250342346890321 +1999,7,14,8,0,0,90,7.5,90.0,64.19324981877965,62.51294411831646,82.84048610006658,0.0,28.34805692457746,88.560363323789218,1.0,28.34805692457746,54.907824097991025,1.5,18.0,3.6000000000000001,82.110439526339732,83.353356057522888,84.082279322909741,83.954091437238262,83.85798650458068,83.810681095765673,16.552355976707783,16.508514253482744,16.484039709599287,16.443062547095838,16.34915298440913,16.218378231222463 +1999,7,14,9,0,0,98,8.5,98.0,51.08383472794379,50.655506401859384,91.6354248011967,0.0,30.831872496782442,96.509556813080863,1.0,30.831872496782442,59.83345783008788,1.0256665213872045,18.300000000000001,4.5999999999999996,89.458532450844615,90.817812458222804,91.615047699378948,91.491560365436172,91.399946670768401,91.353841487463256,18.015227807449776,17.966931331201572,17.935583509000182,17.888979450312085,17.787467764528408,17.646781827309024 +1999,7,14,10,0,0,215,9.5,215.0,37.82040534575742,38.86572241460577,102.26468235870041,0.0,67.828445124481021,212.46407776736032,1.0,67.828445124481021,131.56965297607528,1.1857341236450423,19.399999999999999,4.5999999999999996,197.6517546944113,200.43937287190454,202.07256859711092,201.90093233404482,201.78061973424482,201.71264297133482,39.775250377285602,39.565783336415677,39.397605471321704,39.265874933235821,39.064649048330175,38.7964077827205 +1999,7,14,11,0,0,248,10.5,248.0,24.56073439023049,27.681012052226706,117.64316231048046,0.0,78.087825316733316,245.60005730080402,1.0,78.087825316733316,151.9322551529628,1.2704621924406292,19.399999999999999,3.6000000000000001,228.66191412058237,231.82970214779519,233.68510838446534,233.54474153589561,233.45262869277502,233.39361148250757,45.880819303742442,45.649431276666775,45.420562559263175,45.228252070524213,44.965565886753552,44.645275639708679 +1999,7,14,12,0,6,268,11.5,273.6847504111783,11.8292365444979,18.655607676206017,145.35691381645663,0.0,86.513797741944828,271.72533749844018,1.0,86.513797741944828,167.82867696243605,1.310801915272576,20.0,3.1000000000000001,253.48021832530472,256.86251616705795,258.8422181320737,258.73973493711799,258.68080737268656,258.63321711893332,50.961260810812512,50.679982443494801,50.358278052804501,50.087429853012516,49.762897897792634,49.407262299720109 +1999,7,14,13,0,6,252,12.5,257.76076733973991,6.808188243927009,16.234014345848024,192.43100247006666,0.0,81.190298017474063,255.89648155676792,1.0,81.190298017474063,158.07008603564739,1.318528175342738,20.0,4.0999999999999996,238.62159765931241,241.82348662270962,243.69786254877997,243.60429352141196,243.55106967238828,243.50729978794024,47.8103154394257,47.560157057391372,47.272061824515276,47.024910324333412,46.720698283134951,46.381764121781316 +1999,7,14,14,0,18,166,13.5,182.60840047127499,17.98883272357481,22.677596328495497,230.65446544743338,0.0,58.049457967453726,183.11280472893063,1.0,58.049457967453726,112.79153556426826,1.295724638833796,20.0,4.0999999999999996,171.7686295463256,173.70950919626847,174.84210587959001,175.04846958820218,175.23210760995715,175.2924112519581,34.501874084135821,34.195902882111838,33.805206246431212,33.551318726532195,33.341870691589847,33.144273341852305 +1999,7,14,15,0,620,256,14.5,775.35828820278482,31.120200310200968,33.10462220347538,250.83437403153275,0.0,253.5685322806728,799.21885950473961,1.0,253.5685322806728,483.86941926591408,1.2360316421816586,21.699999999999999,4.0999999999999996,780.70755521717683,782.06945284810877,782.7800751714376,785.14083598686238,787.13287866409541,787.88189026212206,155.65929303188287,150.50719502692584,145.21796781283521,142.49547566918284,141.78513076517936,142.28858404298367 +1999,7,14,16,0,706,142,15.5,643.87776875130373,44.41209556123332,44.69384543977949,263.2996596259078,0.0,216.81919806287544,654.59236263104594,1.0,216.81919806287544,401.7797922185469,1.1202894167552515,20.600000000000001,3.1000000000000001,636.34317808178173,637.07203853811086,637.42464695821695,639.3542036099094,640.98582757964107,641.59524671714848,131.00285989744515,125.86866159813586,121.97905003867987,121.03517540983003,121.86052790938382,122.88818454306704 +1999,7,14,17,0,635,125,16.5,474.85390043839328,57.62086242605629,56.567718299168654,272.7930402240701,0.0,167.58192739128421,469.49878019516063,1.0,167.58192739128421,297.11494965672205,1.5,20.600000000000001,4.0999999999999996,441.54421771963263,442.37359238330629,442.80648888231849,444.52443556168777,445.96416041321498,446.51430371087639,96.182194022942269,93.854076362290257,93.459853298750033,95.209131621483778,97.416759694274958,97.83019800033486 +1999,7,14,18,0,523,92,17.5,284.92475030605669,70.61382623788849,68.35337929523385,281.19766560178584,0.0,111.19009719694591,265.97134007140068,1.0,111.19009719694591,178.99876814057842,1.5,20.600000000000001,2.1000000000000001,226.64954787631928,227.39478342969372,227.79040047862625,229.08752455352757,230.1605300124665,230.58125006963152,62.527733921915356,64.638911893143927,66.314044170274158,67.320286895960507,66.976506586521324,65.06347966536309 +1999,7,14,19,0,296,56,18.5,108.53626655524188,83.23189737685493,79.77655871894733,289.4627177148494,0.0,51.29646002235183,86.992562867064066,1.0,51.29646002235183,68.290952607283714,1.5,20.600000000000001,0.0,59.397311527536779,59.956686927254921,60.268412468403071,60.806291714488268,61.253859254383471,61.427331371683664,29.165184262678782,29.797033518281786,30.301620208712567,30.66001848108688,30.568397651832296,29.899158413812589 +1999,7,14,20,0,0,0,19.5,0.0,91.79422548114455,87.45104998885076,295.6551756787041,1.0,0.0,0.0,0.0,0.0,0.0,0.7743992267529585,20.600000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,15,6,0,0,0,5.5,0.0,88.9030413326125,84.88600418155521,66.61821658447883,0.0,0.0,0.0,1.0,0.0,0.0,0.28032237812067695,19.399999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,15,7,0,362,101,6.5,199.25687262268917,77.10072753466767,74.25075157206581,74.71223448529717,0.0,80.991991064214474,178.65696956350541,1.0,80.991991064214474,124.94592689591448,1.3875172554697794,20.0,2.1000000000000001,141.33395690972799,142.32030778248605,142.87303117927928,143.71018783317436,144.41157185772329,144.68017502422458,49.181174315926967,49.214009842668936,48.390686276752334,47.371482504904911,46.345536311097746,45.578115246574292 +1999,7,15,8,0,566,126,7.5,386.32631784067223,64.27220765739771,62.616732444788624,82.97540556521474,0.0,141.57692724867263,373.93198466274589,1.0,141.57692724867263,242.28221427989703,1.5,22.199999999999999,1.5,338.90922438058629,339.89634244386377,340.42928390933673,342.03693885446165,343.37437644544735,343.89384680040405,78.968508713392325,79.160438744158157,80.54285170119725,82.856585375112616,84.507561742420847,83.686689205035435 +1999,7,15,9,0,665,146,8.5,566.67685413224717,51.15675676250654,50.75803134169993,91.79202333313702,0.0,195.34016180367195,569.6002268099935,1.0,195.34016180367195,354.19477233373101,1.0297414471917106,22.800000000000001,2.6000000000000001,546.37801008343968,547.27073004514568,547.73190879228866,549.64587608304873,551.25727931887855,551.8658939159327,115.62144873732947,111.53105854598768,109.121478938511,109.54846671957411,111.2330064229491,112.22653302708993 +1999,7,15,10,0,721,160,9.5,720.53877123729808,37.89064228079101,38.9726493437064,102.45198332488171,0.0,242.76211440593133,739.21336276649731,1.0,242.76211440593133,449.35905775457644,1.1895346821946018,24.399999999999999,1.5,723.05157240587926,723.79565364653229,724.14450695157655,726.21005621718166,727.9603019980774,728.61102205572024,148.42590554505972,142.88480357658756,137.84129095738965,135.71246538723901,135.60775456154153,136.45609109252518 +1999,7,15,11,0,693,209,10.5,822.00136475174418,24.6354298759055,27.802348969812748,117.8646954778782,0.0,261.93167303938606,852.76656137390751,1.0,261.93167303938606,512.48526411098965,1.2740518582936766,25.0,1.5,837.7573450702663,838.57812205145854,838.96080932527775,841.26835000838173,843.22080772622678,843.95102878710668,162.07479063221933,156.94595776769469,150.9634637853307,147.27728028043066,145.65912811618091,145.91199560495986 +1999,7,15,12,0,679,245,11.5,887.75514213804468,11.934046227137381,18.80515903387262,145.52952772182192,0.0,282.90843225416518,925.74036987339991,1.0,282.90843225416518,553.06608024996581,1.3142949386204488,26.100000000000001,2.1000000000000001,910.90105037013495,911.71322628083692,912.07969918493984,914.42187155605689,916.41009713318078,917.14983624403067,175.85764598329604,171.09258784146874,164.55127012458229,159.82183310956211,157.14229325654395,156.87436699018514 +1999,7,15,13,0,708,237,12.5,916.2465116442263,6.93560801828179,16.385026439720093,192.24562170574688,0.0,292.03445489374951,956.65299112347759,1.0,292.03445489374951,570.51717289543888,1.3220462071976091,26.699999999999999,2.1000000000000001,942.41840404564675,943.11204148216575,943.40408244989351,945.71035010003129,947.67264699345355,948.39877073105481,181.63490155160011,176.64196581873898,169.81213233837727,164.85087965717523,162.03129306922705,161.76737755219622 +1999,7,15,14,0,592,302,13.5,847.8181143464036,18.029430556206872,22.78122904541343,230.339154950558,0.0,269.98717016425667,880.46619898437655,1.0,269.98717016425667,528.32764443201256,1.2993996489483537,27.199999999999999,2.1000000000000001,862.87809872596131,864.25807261080297,864.96905833216033,867.27949891658102,869.23679583777766,869.96777917742793,167.10199495434085,162.57717701505973,156.61902356175548,152.57498357642612,150.4495755002693,150.30202659540171 +1999,7,15,15,0,304,359,14.5,613.4350826653058,31.146639692967057,33.17977902585213,250.57562972625902,0.0,194.7952912119018,627.59129062987381,1.0,194.7952912119018,382.23739770065413,1.2400235087794118,27.800000000000001,3.6000000000000001,605.18172347809559,607.90063109622065,609.44232982696371,611.1692487836317,612.62733503938694,613.17460103092799,118.5325055760257,115.4686787722204,112.2149253096098,110.51694615024554,109.94544903964714,110.03624173421069 +1999,7,15,16,0,160,322,15.5,435.61296555126506,44.43858114729225,44.75849108375015,263.091012980398,0.0,142.23252935770961,437.96593025832641,1.0,142.23252935770961,270.47204546879163,1.1248036865424926,27.800000000000001,2.1000000000000001,415.49528204449541,418.54966161594655,420.31381695726327,421.24171068072735,422.0354429053811,422.32347292499588,84.762911933732013,82.856440937983308,81.373943725188724,81.013595494441759,81.204118159129294,81.29005335146509 +1999,7,15,17,0,400,206,16.5,426.01073293373258,57.65262548492023,56.631146201216666,272.6162218497812,0.0,147.34887909891037,422.40765647148589,1.0,147.34887909891037,266.64360345400337,1.5,27.800000000000001,2.6000000000000001,394.9754999924341,396.66855379028118,397.62234117792559,399.23221853611415,400.57809494243315,401.0953976124631,84.89938632907689,83.216099226133551,82.903297144963418,84.223882830676402,85.853547796855423,86.044085920077634 +1999,7,15,18,0,282,136,17.5,239.71472161798806,70.65403997968036,68.42106446772395,281.04068611216826,0.0,88.444038852400766,227.40940008845268,1.0,88.444038852400766,149.4653776821865,1.5,26.699999999999999,4.0999999999999996,198.61615110845835,200.00435924065113,200.79361628162309,201.51473883611823,202.11812601772988,202.34819297785913,50.126121936275133,51.333510512840107,52.35325937519135,52.991062544744132,52.770859462353037,51.543938949221584 +1999,7,15,19,0,222,56,18.5,95.114014554182191,83.28300500041429,79.85212719035464,289.3184162946036,0.0,43.687937006132834,78.022593736067748,1.0,43.687937006132834,60.025860591514551,1.5,25.600000000000001,3.1000000000000001,54.878311840111785,55.438589806281335,55.754075898185405,56.292038028156405,56.737979503463578,56.912510312919821,24.898497316428283,25.417292929222011,25.819853668190625,26.123337298729144,26.065617832561589,25.516989716625535 +1999,7,15,20,0,0,0,19.5,0.0,91.80456257712457,87.48907441998232,295.4813372271958,1.0,0.0,0.0,0.0,0.0,0.0,1.5,23.300000000000001,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,16,6,0,0,0,5.5,0.0,88.92938320867978,84.93918360978051,66.78284030605506,0.0,0.0,0.0,1.0,0.0,0.0,0.2603163039746619,19.399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,16,7,0,284,108,6.5,184.55830644381362,77.18878168836653,74.36122970355504,74.83782938038934,0.0,72.652940966728451,167.50934316984245,1.0,72.652940966728451,115.05844938552433,1.3882301103106265,21.100000000000001,2.6000000000000001,135.94594863097683,137.09000351623794,137.74046133129497,138.28862352435252,138.7534289010232,138.9263110467721,43.917241903314036,43.919903276847066,43.255629216761768,42.416158943929737,41.553280627880639,40.904226110671758 +1999,7,16,8,0,429,156,7.5,352.6124370022626,64.35174013281564,62.722275083556205,83.11700738648355,0.0,129.72014120160932,342.36805586920616,1.0,129.72014120160932,220.73808532417425,1.5,23.899999999999999,3.1000000000000001,310.71974731542673,312.06373867032124,312.81386871069134,314.1560451902215,315.27597352528244,315.70782072021592,72.77527759754075,72.840289990233913,73.914541957890293,75.80071758979112,77.160149386838484,76.450445988316588 +1999,7,16,9,0,586,172,8.5,541.87498673354935,51.230101271946324,50.86232340054686,91.9561320644084,0.0,186.07929262083812,545.35400022679937,1.0,186.07929262083812,339.22297244741918,1.0340374540373847,25.600000000000001,2.1000000000000001,521.46213280736606,522.60634600500475,523.22036324987744,525.24915170822123,526.95027877483096,527.59924164648226,110.13561549595585,106.42396261968369,104.21280422696456,104.6440892969926,106.22425712206909,107.09919517174995 +1999,7,16,10,0,630,200,9.5,689.03639894599178,37.961365782044254,39.08165910615791,102.64812323260722,0.0,225.49000105441692,707.2534675601853,1.0,225.49000105441692,430.47390260461475,1.1935175191963172,27.199999999999999,2.1000000000000001,689.29178738202199,690.35395152223305,690.8986306087113,693.15848154515186,695.05995669503181,695.77921204631866,137.96025676019229,133.0425701976352,128.41734666151785,126.45370857590993,126.31045326253535,127.01091574819203 +1999,7,16,11,0,681,221,10.5,822.69638597659048,24.711124879319758,27.926600511012783,118.09690423299014,0.0,269.60331167781789,853.72618950699075,1.0,269.60331167781789,513.00589456695548,1.2778004959306704,28.300000000000001,2.6000000000000001,838.16897946124266,839.07791403592876,839.50979891815621,841.85059048101448,843.83262371981664,844.57306544896619,166.78969361180481,161.7188784550334,155.6394728539039,151.79257127728232,150.00914379445965,150.13958843900275 +1999,7,16,12,0,667,238,11.5,868.8151031544495,12.041769179300886,18.95926899758764,145.7136783833445,0.0,276.88022962303694,906.63592636654244,1.0,276.88022962303694,541.39169593226552,1.3179336231292815,29.399999999999999,2.6000000000000001,892.11014787676618,892.88139344584158,893.22597897309004,895.56146405664174,897.54235025334685,898.28083114397657,172.13789892930959,167.47039713450704,161.05582339672603,156.42459826289326,153.80617851788216,153.5460768552266 +1999,7,16,13,0,774,192,12.5,933.96316093911526,7.070610357654749,16.542512762582078,192.06641211244786,0.0,297.66808759828797,973.5629516954474,1.0,297.66808759828797,579.63146202935968,1.3257036928917982,29.399999999999999,3.6000000000000001,960.75584458415233,961.50393502915176,961.82608586379024,963.50153630158559,964.95482991926656,965.4682172019435,184.98979622096815,179.82801910209324,172.88827892289751,167.73439800708846,164.72857410739394,164.45539772478568 +1999,7,16,14,0,706,222,13.5,872.39844006378132,18.075532400470774,22.891334108214654,230.0201519647839,0.0,278.02128572438232,908.52662721995216,1.0,278.02128572438232,543.56524031830918,1.303213544821714,29.399999999999999,3.6000000000000001,893.85599152330053,894.63283563989546,894.98113057283842,897.30567642267283,899.27777364956307,900.01190181897914,172.6005121374738,167.655003651973,161.17227253065485,156.74216110426846,154.42434375483862,154.33892176871626 +1999,7,16,15,0,710,176,14.5,769.69083091790367,31.177542125317462,33.26064551747887,250.3111768874133,0.0,252.35652901370253,795.46771408235145,1.0,252.35652901370253,479.89745287818926,1.244158694158484,30.0,4.0999999999999996,780.67475353344867,781.40458847075092,781.73855241541492,783.90437209546531,785.73903111046604,786.42280806716826,155.68649036906996,150.38089474101545,144.73168270818641,141.52823676228903,140.43071629891952,140.91096558301356 +1999,7,16,16,0,671,163,15.5,638.88758159790962,44.469238530034254,44.82839575682336,262.87705394092626,0.0,214.83036174286039,650.44322614231248,1.0,214.83036174286039,399.06559168760612,1.129469665059138,30.600000000000001,3.1000000000000001,631.09562990661823,631.99614575989881,632.45163111820591,634.51423147506512,636.2527389809826,636.90730395015726,129.74930320615277,124.78642325534447,121.00653297721693,120.11864721703159,120.94836095484847,121.92601531123813 +1999,7,16,17,0,453,182,16.5,430.70959346239181,57.68854597699012,56.69965846659888,272.4347203728469,0.0,149.75199926658831,426.98074404188759,1.0,149.75199926658831,269.44978723434031,1.5,30.0,3.6000000000000001,399.8949287456179,401.36023282464095,402.17803504901457,403.74815645477645,405.06309703971351,405.56649008509544,86.459334708163766,84.520053653975651,84.028383506653554,85.298991001104369,86.987496017906679,87.293067686361809 +1999,7,16,18,0,414,113,17.5,264.77295468656303,70.69853766619289,68.49383483310913,280.8795604044724,0.0,101.15305718900105,249.03640454096967,1.0,101.15305718900105,165.89303934401599,1.5,29.399999999999999,3.1000000000000001,214.06624398950353,215.08287626339023,215.64494773569106,216.7053009140748,217.58514342990213,217.9276614746816,56.976866454859881,58.659589759383088,60.076083956110033,60.978931411937445,60.742318918005182,59.153589654155326 +1999,7,16,19,0,221,56,18.5,94.631217207533098,83.33858978412074,79.9328705870979,289.17041637696883,0.0,43.398343913594609,77.70058452954963,1.0,43.398343913594609,59.721741983457306,1.5,27.800000000000001,3.1000000000000001,54.649773435310067,55.210965605753557,55.527119322310028,56.062712444481335,56.506672228057411,56.680446498277504,24.736179325114829,25.250044228957929,25.648435858843069,25.949268726409159,25.892384940486668,25.34856879082762 +1999,7,16,20,0,0,0,19.5,0.0,91.8163438977437,87.52949840797163,295.3018662937591,1.0,0.0,0.0,0.0,0.0,0.0,1.5,25.0,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,17,6,0,0,0,5.5,0.0,88.95556416040311,84.99334667762162,66.95434869838327,0.0,0.0,0.0,1.0,0.0,0.0,0.2403813948322151,20.600000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,17,7,0,257,108,6.5,176.79442814338381,77.27764739796226,74.4735855470047,74.96958831073735,0.0,69.100501306188363,161.0986454467164,1.0,69.100501306188363,110.27540860271677,1.3892674814214496,22.199999999999999,1.5,131.15429190277513,132.29857536466648,132.95073168366855,133.4980208171558,133.96106157618891,134.13420430297219,41.738295344748629,41.744269229095096,41.128582428396022,40.358164395884309,39.564454244655053,38.955718638389335 +1999,7,17,8,0,367,171,7.5,338.58676043831679,64.43179957454839,62.829516523829376,83.26524134436868,0.0,120.38004728278463,328.84437561960277,1.0,120.38004728278463,210.7911970626306,1.5,25.0,3.1000000000000001,299.56007820141724,301.23433881045855,302.1846835496666,303.07712548137573,303.83086095210797,304.11293598569102,67.817370528082989,67.764071253937928,68.616157532712251,70.13532912011803,71.22584761073314,70.612001939308144 +1999,7,17,9,0,550,189,8.5,535.36235311419171,51.30383816355545,50.96833930112185,92.12767642859899,0.0,183.17398835858995,538.08888927406997,1.0,183.17398835858995,334.28791421867533,1.0385556177869275,27.199999999999999,3.6000000000000001,514.25733493515258,515.66100124422724,516.43032441445246,518.14242157271701,519.58589984668004,520.12919393468758,108.33104698661296,104.788379561562,102.69110376033923,103.05790248727807,104.49061623747654,105.28402884479632 +1999,7,17,10,0,672,181,9.5,701.81664578969344,38.03256925498241,39.192721591409516,102.85298335730438,0.0,229.85092133260889,720.83878146454913,1.0,229.85092133260889,438.14861287642861,1.197682733946734,28.300000000000001,2.1000000000000001,703.66771034273961,704.5763328006343,705.02790902408844,707.21364177524538,709.05669156812917,709.75018331747776,140.71928482889402,135.59322544032477,130.79248738158353,128.72888258297397,128.55736619677461,129.30516547254143 +1999,7,17,11,0,549,271,10.5,755.49624368498678,24.7878493448519,28.05374600825456,118.33957307135773,0.0,247.09077490454703,783.48856618358764,1.0,247.09077490454703,471.7002628880204,1.2817077862443018,28.899999999999999,4.0999999999999996,766.13663097193285,767.44727097863085,768.1276148497484,770.50675398736712,772.51201751255894,773.26935777807648,152.52539251088493,148.13099737278156,142.81141095248904,139.49925195335203,137.98260811161876,138.04306404197453 +1999,7,17,12,0,631,279,11.5,875.19823614688107,12.152484124513338,19.11789800875458,145.90902416249403,0.0,278.82335523076955,912.68519549622374,1.0,278.82335523076955,545.31539468757683,1.3217174542282795,30.0,4.5999999999999996,896.62491707246863,897.68550274205961,898.20170774895314,900.54621405525427,902.53467299626061,903.2759634402471,173.10286198883449,168.5181804478799,162.21058576712849,157.6641529787681,155.08550793063057,154.79857380534199 +1999,7,17,13,0,708,232,12.5,910.11555556175733,7.2131351519741775,16.706411495813857,191.89361380043928,0.0,290.0856314884245,951.28988902819299,1.0,290.0856314884245,566.72785908455114,1.3295000274763198,30.0,3.1000000000000001,937.20795954942741,937.88091049125796,938.16053931086685,940.46041385643662,942.41723638092344,943.14204900043819,180.61247225770066,175.96217391950694,169.21612395384582,164.05494724165325,161.0416445817784,160.46561408322194 +1999,7,17,14,0,706,228,13.5,877.83824921233008,18.127271665855,23.00792820070338,229.6979504420461,0.0,279.74268424624745,914.53957224309124,1.0,279.74268424624745,546.95201633000772,1.3071657028508987,31.100000000000001,4.0999999999999996,899.58032830299146,900.39998715857178,900.77308405292649,903.11266054210728,905.09743729660829,905.83634030966891,173.63771831824118,168.67812231924614,162.175740153042,157.73343947023702,155.40835323077565,155.31847596122759 +1999,7,17,15,0,447,303,14.5,676.40331461360165,31.213007121447085,33.34726503281449,250.04131118063282,0.0,220.51131436062039,696.95832483050106,1.0,220.51131436062039,422.66276575156252,1.2484366316826878,29.399999999999999,4.5999999999999996,676.81821436853829,678.68139486069492,679.70304131976707,681.98165172770962,683.8959594066182,684.6237442448562,135.2011396373623,131.24457468371858,126.94288438308647,124.60307207716072,123.8321565233406,124.05969672080808 +1999,7,17,16,0,142,323,15.5,423.57795814170015,44.50414097049284,44.903600425013735,262.6579699940275,0.0,136.13403296737644,426.077853458905,1.0,136.13403296737644,263.06337500219831,1.1342869816104293,30.0,3.6000000000000001,403.72948566605481,406.79182468264946,408.56294875522178,409.4920927878747,410.28481269727695,410.57436380982733,81.158330223042057,79.406923210454863,78.004954715390767,77.649776163715387,77.774697788209878,77.83719109509741 +1999,7,17,17,0,276,230,16.5,381.23510853365354,57.72867735042623,56.773286769787745,272.24867083484077,0.0,129.91355422832777,377.97095126330612,1.0,129.91355422832777,237.6725542476143,1.5,30.0,3.1000000000000001,352.84874452560973,354.98104190468166,356.20253381955848,357.3331477273419,358.28594844341478,358.64513646643252,75.201198925661544,73.822599175975256,73.453719323830825,74.328021621778433,75.45498826196507,75.554230730174822 +1999,7,17,18,0,327,135,17.5,254.46501519867738,70.74735586968471,68.571710869615,280.71439507824044,0.0,92.984765764702232,240.98184019944347,1.0,92.984765764702232,158.5273443696976,1.5,28.899999999999999,3.1000000000000001,209.91520071630566,211.29466526041114,212.07671439302001,212.79140431739231,213.39034728483827,213.61770211869575,52.572797313644109,53.870399443756213,55.00530850650712,55.729920869978088,55.514317268724888,54.207670829750718 +1999,7,17,19,0,47,58,18.5,66.146279884492387,83.39867100120746,80.01879577692992,289.01880717569037,0.0,24.021833066810107,61.299175300305706,1.0,24.021833066810107,40.665058649276219,1.5,27.199999999999999,2.1000000000000001,52.855148292362486,53.597182520920413,54.02934551137119,54.037304015377224,54.049915976744799,54.04908316788039,13.878503469256938,13.970929429498604,14.05148131203144,14.090849958625778,14.018372201568734,13.826584871179316 +1999,7,17,20,0,0,0,19.5,0.0,91.82957157061709,87.57231438865277,295.1168494681045,1.0,0.0,0.0,0.0,0.0,0.0,1.5,25.600000000000001,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,18,6,0,0,0,5.5,0.0,88.98155783910951,85.04846151000588,67.1326828506409,0.0,0.0,0.0,1.0,0.0,0.0,0.22053521316967206,22.199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,18,7,0,0,97,6.5,97.0,77.36726390908628,74.58775385967338,75.1074756509929,0.0,31.41565632693824,94.47341441330839,1.0,31.41565632693824,59.204755473730955,1.390640663826618,23.300000000000001,2.1000000000000001,86.483079867350796,87.744150377339892,88.482539565588056,88.350397928141916,88.252006527426929,88.202894226600748,18.437323716831031,18.38975615693149,18.32213557375692,18.219137602048747,18.063708989798222,17.899565653628169 +1999,7,18,8,0,25,176,7.5,187.37370331834788,64.5123404679589,62.93840295229898,83.42005426921062,0.0,60.652809895579864,183.63375546063492,1.0,60.652809895579864,114.5672314954863,1.5,25.0,1.5,169.83791713626545,172.06838885851511,173.37272278237305,173.18128148674174,173.04254118136629,172.96919877809012,35.106444365461712,35.016105479967969,35.077070737055593,35.17586194389655,35.134072147344241,34.847523073268505 +1999,7,18,9,0,385,261,8.5,502.89106397864623,51.377940036488695,51.07603788465561,92.30657849089567,0.0,166.3032263223472,504.07658318136578,1.0,166.3032263223472,312.97038805704625,1.043296970628071,26.699999999999999,0.0,479.0050368237342,481.320581696418,482.63809988167168,483.9185852940019,485.00637414997806,485.40799219518482,98.324244468094136,95.563279823099919,93.891920772981436,94.061073510014637,95.020982610303392,95.511112970529027 +1999,7,18,10,0,606,202,9.5,670.90824884573033,38.10424937826442,39.30580913480023,103.06644062439145,0.0,219.50423730171298,689.45784813636396,1.0,219.50423730171298,419.32802825892833,1.202030388029601,28.300000000000001,1.5,671.48195164174513,672.56784515784466,673.12897789265355,675.39479590471785,677.29914014148892,678.02148253493942,134.27610765350016,129.52682684801982,125.05005982028509,123.16224255738092,123.03680288055135,123.70861763319185 +1999,7,18,11,0,627,258,10.5,810.66118551682189,24.865637069084787,28.183767238729164,118.59248001279472,0.0,258.19112043387111,841.30973507260751,1.0,258.19112043387111,505.68358925760521,1.2857733833753657,29.399999999999999,0.0,824.17269244505303,825.37799904837379,825.990521055165,828.37591901374969,830.39000895754884,831.14763883190676,159.69997361786574,155.06992526046696,149.36580613368815,145.69597731002253,143.9165047212916,143.96317119980318 +1999,7,18,12,0,517,303,11.5,791.00170597516581,12.266271757530273,19.28100797822362,146.11521313231688,0.0,251.8448426836608,824.36374913100167,1.0,251.8448426836608,493.66538690076544,1.3256459021371239,30.600000000000001,0.0,806.51885385166747,807.95983178171525,808.71393189494324,811.13771352237097,813.18103062029547,813.95356025896035,155.99397301209447,152.09169252784099,146.6530501248113,142.79988780132408,140.63596175514914,140.33451027870481 +1999,7,18,13,0,588,324,12.5,886.67597710278017,7.363111505598294,16.876658267087546,191.72743453852172,0.0,282.34477979305524,924.6839740765796,1.0,282.34477979305524,552.65375780680836,1.333434603294653,31.100000000000001,2.6000000000000001,906.05529305543178,907.55115406208711,908.32448185200633,910.78159573751316,912.86211883642329,913.64126081177835,175.10149774977984,170.92763931551011,164.8085644813344,160.18885242715788,157.49278255389279,156.88006205478939 +1999,7,18,14,0,407,357,13.5,731.28083535521796,18.184776388269807,23.1310227257933,229.3730381764224,0.0,238.50804226472255,759.23940468654246,1.0,238.50804226472255,456.87853795422598,1.3112555123356127,31.699999999999999,2.1000000000000001,739.14097824295959,741.05332784720019,742.09438458855254,744.52665583664725,746.57184544313463,747.34947947405863,147.12324204963102,143.62733500642639,138.79111256915124,135.49678980088399,133.71551569666971,133.43865788706921 +1999,7,18,15,0,573,234,14.5,712.1492811365647,31.253131345482362,33.439676909025664,249.76633090195253,0.0,226.77680057272869,736.38295200373557,1.0,226.77680057272869,444.98600540970267,1.2528567904000905,31.100000000000001,1.5,719.14888832793508,720.32799542558325,720.93912984232861,723.30563493166392,725.29383116224471,726.04971443083559,139.78003657043396,135.39731730557961,130.49688274273515,127.74215121923777,126.76358793422241,127.03953817255136 +1999,7,18,16,0,582,193,15.5,604.65002856155638,44.543359098885816,44.984142690613915,262.43395097654394,0.0,202.75848067455928,616.45923445905282,1.0,202.75848067455928,378.29400680774978,1.1392553395411382,31.699999999999999,3.1000000000000001,596.04354803811054,597.21770058376444,597.83990352235151,600.0212467032311,601.85170633710243,602.54849224046325,122.70858726811737,118.28134224571978,114.68435010867483,113.75445253994658,114.31632994907775,115.13389394801533 +1999,7,18,17,0,370,206,16.5,408.31700022059294,57.773070335731816,56.852059644751925,272.0582097112627,0.0,140.26746776704809,404.41994125597205,1.0,140.26746776704809,254.19171643222589,1.5,31.699999999999999,3.1000000000000001,378.6372140926382,380.56453244940832,381.66044267863521,382.72878363854704,383.63434930733388,383.97090155562648,81.066707905442854,79.412464972804756,78.989030495482268,79.989509552064675,81.300725970793266,81.479879566619545 +1999,7,18,18,0,304,128,17.5,238.65222481512046,70.80052830832881,68.65470997386747,280.5452974207887,0.0,88.514564635827114,226.32251686857029,1.0,88.514564635827114,148.74257870171508,1.5,31.100000000000001,4.0999999999999996,197.08786799582563,198.40089546789855,199.14540089933411,199.83930206524082,200.42052515358733,200.64156708885776,50.030387422583757,51.241094905373792,52.313935698150672,53.016407546919829,52.84270355326619,51.625309327903658 +1999,7,18,19,0,236,54,18.5,94.535070457506862,83.46326478323728,80.10990639275389,288.8636779813786,0.0,43.165181895447631,77.082135991478964,1.0,43.165181895447631,59.628273354368794,1.5,26.699999999999999,4.0999999999999996,53.499239090314084,54.039906090506953,54.343883057420946,54.866712041504641,55.300194644626472,55.469745584264857,24.589427130024035,25.123798318486529,25.535700634514974,25.831911110189875,25.761281615592221,25.20418898922253 +1999,7,18,20,0,0,0,19.5,0.0,91.84424531637109,87.6175122182363,294.92637417795066,1.0,0.0,0.0,0.0,0.0,0.0,1.5,26.100000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,19,6,0,0,0,5.5,0.0,89.0073385252159,85.1044965211576,67.31778137217648,0.0,0.0,0.0,1.0,0.0,0.0,1.5,21.100000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,19,7,0,179,115,6.5,162.22221461485105,77.45757212435662,74.70367066726101,75.25145305202294,0.0,60.946814666370713,150.00315964027919,1.0,60.946814666370713,100.54395629861405,1.3923612174247748,23.300000000000001,3.6000000000000001,125.58441781721655,126.87396962503054,127.61636121677675,127.90176149182516,128.15023392366197,128.23672688328145,36.600579196565256,36.579785369601133,36.117056978830142,35.522114458602424,34.888718244297571,34.39437384346936 +1999,7,19,8,0,286,182,7.5,311.62382755492564,64.59331948545756,63.04888228752435,83.58139011025867,0.0,109.71925845233639,303.85622419984395,1.0,109.71925845233639,194.25968465434576,1.5,25.0,3.1000000000000001,276.46648134823351,278.24227517460133,279.25714574103523,280.17754232099651,280.95126505338357,281.24425003892685,62.017846120450884,61.98727695558771,62.697602410883199,63.999741385565116,64.933468209554519,64.378261271319019 +1999,7,19,9,0,482,214,8.5,516.11887767566077,51.45238218325657,51.185380119178895,92.49275704950583,0.0,175.9145731055842,519.48854329428616,1.0,175.9145731055842,322.59782914138339,1.0482625002757753,26.699999999999999,4.0999999999999996,495.02782542040626,496.65716669979361,497.56279829768795,499.33915036912788,500.83244973513894,501.39838934623083,104.38443355138274,101.05623013534638,98.984570095925832,99.159469736807353,100.3656882245796,101.0551812497478 +1999,7,19,10,0,642,187,9.5,682.94630195068339,38.176406058903346,39.42089648671165,103.28836777775255,0.0,229.6483166254479,702.31888009380327,1.0,229.6483166254479,426.60162853282327,1.2065605057219244,28.899999999999999,3.6000000000000001,684.94279370896993,685.90613995667229,686.38988932930818,688.60017459632672,690.46314013733195,691.16525463142989,140.65793833402159,135.67927761357706,130.93881728018187,128.77095842693416,128.50788733372181,129.15516617145474 +1999,7,19,11,0,675,222,10.5,816.22920392361254,24.944525552271543,28.316648333446523,118.85539701353873,0.0,260.0563123673349,848.34799299293388,1.0,260.0563123673349,509.03258973313945,1.2899969157204993,30.0,5.2000000000000002,832.68696539785549,833.61463992888775,834.06099050270677,836.40793328020334,838.39183266576947,839.1361099682714,161.07582746073177,156.27327670530318,150.37513227481134,146.56135262853147,144.7117349924911,144.79320643114968 +1999,7,19,12,0,752,198,11.5,907.09147359926067,12.383214221086508,19.44856218664944,146.33188445902883,0.0,289.06327290331768,945.89542143117035,1.0,289.06327290331768,563.25164448278929,1.329718423192965,31.699999999999999,5.2000000000000002,932.47144856541513,933.32425592022548,933.71150799717032,935.44821063229347,936.94845474368799,937.4843866464272,179.72436818607352,175.08707949658162,168.46154239602402,163.30429132118138,160.22761076677074,159.64183455488353 +1999,7,19,13,0,756,199,12.5,921.76090430349723,7.5204589642035815,17.05318632494759,191.56805043921503,0.0,293.75623837915958,962.17618896418651,1.0,293.75623837915958,572.14011445330073,1.3375068115252016,32.200000000000003,5.7000000000000002,949.08318051662752,949.89294833278586,950.25258380598655,951.93736711412203,953.39717177594036,953.91488525609225,182.67794860068295,177.9328902853191,171.16953663039433,165.89020966335241,162.73396861492449,162.14215073076636 +1999,7,19,14,0,748,191,13.5,878.20106490575677,18.24816866976205,23.260623745465402,229.04589517797075,0.0,279.83942718644562,914.21330088762352,1.0,279.83942718644562,545.67203359314419,1.3154823772011264,32.799999999999997,5.7000000000000002,900.44329800355899,901.32248549282212,901.73016761501367,903.54090876475357,905.09773541224217,905.65956135837257,173.79989869511874,169.05068047090498,162.62080898179312,157.88885867601039,155.14906131402063,154.87695060837413 +1999,7,19,15,0,740,165,14.5,781.80508640438018,31.29800833750304,33.53791632999526,249.48653623544698,0.0,249.09134007606815,808.17957123744054,1.0,249.09134007606815,486.61151121835809,1.2574186770375522,33.299999999999997,5.7000000000000002,793.25617145431352,794.13531051858831,794.55880388523678,796.47040033007897,798.09782642813104,798.69692584349286,153.73393673818666,148.61848447935253,143.01584457133382,139.7346560394177,138.47423444573533,138.83862670902428 +1999,7,19,16,0,588,190,15.5,605.27009570111511,44.58696075205143,45.07005668459846,262.2051887134583,0.0,203.01336268276867,617.50276419439729,1.0,203.01336268276867,378.65304092492369,1.1443745188133054,32.799999999999997,6.7000000000000002,597.18434441622287,598.33271182861176,598.93947467310159,601.1118018929842,602.93507387182137,603.62876936874909,122.87390730124766,118.42372810122218,114.81032462948626,113.87333023011752,114.43561672238634,115.26031046933372 +1999,7,19,17,0,423,189,16.5,419.77842119593322,57.82177283993832,56.936002409219846,271.8634746904296,0.0,145.60760919673865,417.14904670743192,1.0,145.60760919673865,262.73812863771684,1.5,32.799999999999997,5.7000000000000002,390.17115183580404,391.70816374629055,392.57038605708561,394.14941166149822,395.47071122977104,395.97766889301374,84.37360734372254,82.420605540213728,81.796704130333097,82.899691834139603,84.454392096584996,84.785131485768559 +1999,7,19,18,0,356,130,17.5,259.06936642828612,70.85808577631848,68.74284641054389,280.37237525078217,0.0,97.608229552171366,245.52326316984113,1.0,97.608229552171366,162.46706334991291,1.5,33.0,5.7000000000000002,211.61742772412006,212.81587672902208,213.48808588253056,214.58545855769461,215.49491963045546,215.85034253340501,55.047657274168877,56.542067789893395,57.836292842740043,58.730296938880748,58.598551702144789,57.178620262809758 +1999,7,19,19,0,89,58,18.5,73.139150877585095,83.53238406040467,80.20620278646074,288.7051180410558,0.0,28.812538062122034,65.326466081832351,1.0,28.812538062122034,45.416976687248784,1.5,30.600000000000001,4.0999999999999996,53.070654587693603,53.76641990714765,54.16895336799174,54.332357116903367,54.471854317532895,54.522595998068489,16.57772113807146,16.784176184654847,16.942590973932358,17.042115743934424,16.968395638850566,16.68323441388522 +1999,7,19,20,0,0,0,19.5,0.0,91.86036230481169,87.66507903368203,294.7305285790712,1.0,0.0,0.0,0.0,0.0,0.0,1.5,29.399999999999999,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,20,6,0,0,0,5.5,0.0,89.03288114659247,85.1614204322197,67.50958047149068,0.0,0.0,0.0,1.0,0.0,0.0,1.5,22.199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,20,7,0,278,105,6.5,177.78897913920386,77.54851465355333,74.82127331374328,75.40147948652601,0.0,69.848476813561135,161.62702871365099,1.0,69.848476813561135,110.85134851924255,1.3944409716702886,25.0,1.5,130.5433458400621,131.65905090560051,132.29383184986773,132.82706836001299,133.27897011702035,133.44727405473856,42.212933169955534,42.216319897176419,41.582221321019787,40.782858996242581,39.96066096019802,39.339075696321913 +1999,7,20,8,0,324,173,7.5,319.28162335273032,64.67469551439117,63.16090421080867,83.74919000442628,0.0,112.98355045765918,311.02092151496629,1.0,112.98355045765918,198.91119746832203,1.5,28.300000000000001,0.0,282.90071233557677,284.59596215305572,285.56178426454926,286.45669950962275,287.21085580889689,287.49469365835859,63.850799568218783,63.702228367962967,64.384529118719612,65.740067818412555,66.767979186340838,66.237125695008444 +1999,7,20,9,0,366,248,8.5,476.85711232553683,51.5271425873671,51.29632910356247,92.6861277350344,0.0,160.79950606045591,478.54932972856739,1.0,160.79950606045591,296.86981194308362,1.0534531493365513,31.100000000000001,2.6000000000000001,454.49644100610192,456.70966715708789,457.96795812632627,459.21746047095974,460.2785925148429,460.67072649155,95.213458524061167,92.521092476256044,90.850908073689453,90.944828465231083,91.819444999791699,92.273318671678524 +1999,7,20,10,0,351,324,9.5,594.69224824588173,38.24904238290066,39.537960776640574,103.51863354347631,0.0,192.87425397158253,606.49166745641105,1.0,192.87425397158253,370.2895404555801,1.2112730745146236,32.200000000000003,4.0999999999999996,583.92709941577891,586.53379831228131,588.01018527442102,589.58677154577765,590.92267052778334,591.41950476700777,117.06985231727458,113.8485072744927,110.69553244101834,109.18788898343028,108.85270781044765,109.0546178880258 +1999,7,20,11,0,139,404,10.5,526.2106659296411,25.024555843764567,28.452375680614225,119.12809036768556,0.0,169.46800207318913,536.75210228989272,1.0,169.46800207318913,327.13754657594194,1.2943779870117584,31.699999999999999,4.5999999999999996,512.85836450597378,516.32601389429362,518.32261749462327,519.58155100881072,520.65196252145165,521.0475391124512,102.62156896540175,100.84172228547352,98.530442392141367,97.059807229712519,96.208468760422434,95.874210712158202 +1999,7,20,12,0,84,365,11.5,444.12272672121929,12.503394590782023,19.620525179004204,146.5586697309423,0.0,140.47425458862247,450.0500177931259,1.0,140.47425458862247,274.64201016835977,1.3339344612153683,31.100000000000001,3.1000000000000001,427.47226497032159,431.17352393092204,433.32067692895652,433.89713858504854,434.40531648623261,434.57696606978988,84.44753167960539,83.422743205404686,81.94983501234266,80.832232642321259,80.029379804303858,79.540295372097489 +1999,7,20,13,0,546,293,12.5,814.48064354648159,7.685088722436886,17.235926709405746,191.41560681929818,0.0,259.44337061362017,851.50020027192113,1.0,259.44337061362017,507.84603734447063,1.3417160437342919,32.200000000000003,4.5999999999999996,835.62439382220987,836.72507485569338,837.27246198687317,839.58635082103251,841.54388076448322,842.27856853137405,161.14540928568587,157.21219370109773,151.44390989976588,147.08891980744704,144.56088004168413,144.0149174280474 +1999,7,20,14,0,562,267,13.5,782.79082959262496,18.317564145260125,23.396731942733936,228.7169921223954,0.0,249.33078509271505,816.32855549923556,1.0,249.33078509271505,488.53508690731041,1.3198457177108613,31.699999999999999,4.5999999999999996,800.18542232571542,801.29948249378992,801.85980661834219,804.2443820760451,806.25554597807036,807.01521185405272,154.70042782723129,150.70682099318299,145.15515580064346,141.20744104579123,138.99629742753564,138.72536281099633 +1999,7,20,15,0,406,316,14.5,654.00118031347677,31.347728245343543,33.642014202237874,249.20222850456912,0.0,213.0320486327121,674.63073985070469,1.0,213.0320486327121,408.86113811552991,1.2621218379723544,32.200000000000003,3.6000000000000001,654.07169489007015,656.04422753011306,657.13331682541411,659.41247337768937,661.32474423313192,662.05433297765796,130.70682510454867,127.16152364026105,123.0421904300874,120.68800166616066,119.75776244694254,119.80644026672617 +1999,7,20,16,0,504,215,15.5,570.37665984929811,44.63501081519353,45.16137296613481,261.97187664945113,0.0,186.02368392970064,581.122081784839,1.0,186.02368392970064,356.37922869681586,1.1496443785773618,31.100000000000001,3.6000000000000001,560.54706265663788,562.04085735675926,562.85946063638926,564.76721234723641,566.3702545078163,566.97839263304854,112.55071308125588,108.68118955887776,105.49189709101003,104.57958200347846,104.97429246503583,105.62984909310472 +1999,7,20,17,0,411,195,16.5,418.69539613187573,57.874829844778006,57.02513709419539,271.6646044496507,0.0,145.03119762850915,416.40906869260209,1.0,145.03119762850915,262.08381731892956,1.5,31.100000000000001,4.0999999999999996,389.25535672961541,390.85199644029655,391.74987494961232,393.33562754098284,394.66216184501366,395.17148858127683,84.056116125117569,82.139662823501823,81.52469220847486,82.612655451247562,84.14260040534819,84.45866025887041 +1999,7,20,18,0,224,142,17.5,222.87219076527947,70.92005607763276,68.8361312662618,280.1957367613098,0.0,81.178769051941813,213.09373544616153,1.0,81.178769051941813,139.12193877742916,1.5,30.0,3.1000000000000001,186.34803079397909,187.79545796595932,188.62344542531082,189.35560299741093,189.96666467832341,190.20149527809116,46.013636773768773,46.993789357242512,47.870901336664467,48.518362442862774,48.446464517318049,47.427152094269907 +1999,7,20,19,0,0,49,18.5,49.0,83.6060385030897,80.30768198423665,288.54321643850136,0.0,15.72744095790803,47.797927827801303,1.0,15.72744095790803,29.868477572720721,1.5,27.800000000000001,4.5999999999999996,43.97095802078158,44.635189611084257,45.024485316955598,44.945041660538877,44.884950335648057,44.855920035853806,9.1700759019743199,9.1560943821592087,9.1508887725221939,9.1294446515968986,9.0716921967098099,8.9910008744030812 +1999,7,20,20,0,0,0,19.5,0.0,91.87791699875307,87.71499910052799,294.52940144725756,1.0,0.0,0.0,0.0,0.0,0.0,1.5,25.600000000000001,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,21,6,0,0,0,5.5,0.0,89.05816129660808,85.219202288538,67.70801403560769,0.0,0.0,0.0,1.0,0.0,0.0,1.5,23.300000000000001,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,21,7,0,7,96,6.5,97.818753878639967,77.64003586106456,74.94050050838506,75.55751129534042,0.0,31.94273617875951,94.990611369017316,1.0,31.94273617875951,59.713856121363548,1.396892030733889,23.899999999999999,2.6000000000000001,86.577671960295874,87.823859345916532,88.553139260117788,88.422132539908333,88.324825822615139,88.276010617998551,18.770289765878371,18.722360993791337,18.643274908125456,18.523955497396685,18.352767595930462,18.18037951618809 +1999,7,21,8,0,162,198,7.5,270.85428378262122,64.75642968163379,63.274420193588696,83.92339234459676,0.0,92.871392614097303,264.96021919044335,1.0,92.871392614097303,168.00561962696005,1.5,25.0,3.1000000000000001,242.02208951760599,244.1105548612891,245.31808773869332,245.84286970819565,246.29230774627183,246.45475636818506,52.952478847589688,52.835889516046642,53.229963599569651,54.035135322299887,54.599744355412788,54.165791321291884 +1999,7,21,9,0,18,217,8.5,228.22765972147329,51.60220191716919,51.40885006739387,92.88660310770939,0.0,72.49807207909366,225.36852748689205,1.0,72.49807207909366,139.63385145485231,1.0588698148387308,26.100000000000001,2.6000000000000001,210.11687008993218,212.87868255869964,214.49497173990363,214.29431008898109,214.1520296593709,214.07345098790225,42.473850090482152,42.126546913177854,41.911780555349864,41.81295773724883,41.677722681960226,41.454513741388482 +1999,7,21,10,0,85,346,9.5,411.43970943778731,38.32216456144432,39.65698147239089,103.75710278888754,0.0,131.57414198813862,413.25548306836993,1.0,131.57414198813862,254.09097493471202,1.2161680457468347,26.699999999999999,2.6000000000000001,390.93691217178775,394.55148584091557,396.65201656960357,397.07282297699453,397.45186537729398,397.57205436993195,78.519015645127169,77.240522192226251,76.008256540118666,75.368450688084152,75.059837363758731,74.860152484869005 +1999,7,21,11,0,42,403,10.5,439.8784644194414,25.10577238158219,28.590937823823765,119.41032109807695,0.0,139.01827468246412,443.69773207736171,1.0,139.01827468246412,272.0620034339716,1.2989161774652231,27.800000000000001,2.1000000000000001,419.33458484728612,423.35385922103126,425.69147371847157,426.29185832177382,426.81840360375043,426.9982434579382,83.193444715333683,82.217618512816614,80.933238669098728,80.068838825948063,79.456888045223224,79.038553296106485 +1999,7,21,12,0,24,385,11.5,407.58158357968364,12.626896370263976,19.79686265429535,146.79519423205403,0.0,128.53800540869918,406.87709096643056,1.0,128.53800540869918,250.22743007846117,1.3382934489058356,28.300000000000001,2.6000000000000001,381.82486887220375,386.39998042620124,389.07295089366659,389.00536787312046,388.98698895852806,388.94461331734948,76.142181845178115,75.582771238183753,74.866492828126226,74.261738851569731,73.673741386898286,73.151899281509799 +1999,7,21,13,0,18,384,12.5,401.17399364087748,7.85690478833045,17.42480841739474,191.27021921302696,0.0,126.49746099712942,400.3636547040519,1.0,126.49746099712942,246.32448157623145,1.3460616934363419,27.800000000000001,3.1000000000000001,375.35549171200245,379.92036420035339,382.58801063771455,382.53473444722778,382.52730851909098,382.49011301047904,74.889986104702416,74.3974827063807,73.729479628665175,73.15272268293765,72.562561353158159,72.024676304238156 +1999,7,21,14,0,42,374,13.5,412.50501426686554,18.393071480960955,23.53934260521683,228.38678888713096,0.0,130.35959432946967,416.56015865049687,1.0,130.35959432946967,255.15805399121658,1.3243449721658749,28.899999999999999,3.6000000000000001,393.6438205084479,397.43681413790614,399.64302134371451,400.21621248229366,400.71824325184531,400.89040116744627,78.034852356271386,77.175605903973036,75.991563292084763,75.154156208144002,74.532845778248131,74.10793894502909 +1999,7,21,15,0,30,346,14.5,370.94350742226396,31.402377563422114,33.751997043179614,248.91370942138454,0.0,118.25268227716209,372.70486869070584,1.0,118.25268227716209,229.25926060628919,1.2669658611793326,28.300000000000001,3.1000000000000001,350.99741901846363,354.61658749703423,356.72468984596725,357.18054707518701,357.58370664889907,357.71819526750625,70.485555625537515,69.644499946997186,68.682736717620145,68.106175589776939,67.716937994782953,67.395751149298732 +1999,7,21,16,0,142,318,15.5,417.95580061838388,44.68757106844844,45.25811842950422,261.734209475711,0.0,136.29831918305771,421.0325639483234,1.0,136.29831918305771,259.57545060521727,1.1550648597380284,28.300000000000001,4.5999999999999996,398.9028109435435,401.93081467905381,403.68102776925593,404.59862981797636,405.38216207522851,405.66778302341919,81.451416668915414,79.713778484949287,78.233025374963134,77.742744367702258,77.76741715109587,77.792900311147761 +1999,7,21,17,0,47,230,16.5,255.51577929736348,57.93228330909603,57.11948237888484,271.4617384294504,0.0,82.718940692761251,252.68655598992569,1.0,82.718940692761251,157.53987331207671,1.5,28.300000000000001,5.2000000000000002,234.8668712794377,237.45867047407859,238.97037290099934,239.15367206035171,239.32534466120154,239.3741505799839,48.211000076573121,47.698783377105741,47.495619226066005,47.656501629033421,47.835564416474391,47.677206102192166 +1999,7,21,18,0,206,149,17.5,223.04336203085191,70.98646396357933,68.93457240776861,280.0154903629199,0.0,79.978633875046185,213.46209373982649,1.0,79.978633875046185,138.2548687020969,1.5,26.699999999999999,3.6000000000000001,188.42986005374269,190.06673517563627,191.00821584454422,191.4043096082035,191.74336172373046,191.86539245454941,45.435525739776402,46.26364086862425,47.033679271915517,47.558382930234252,47.422002512241754,46.481098227678402 +1999,7,21,19,0,0,49,18.5,49.0,83.68423446443175,80.4143376430671,288.3780619757042,0.0,15.741400373920616,47.779368917524323,1.0,15.741400373920616,29.869011439031709,1.5,25.600000000000001,4.0999999999999996,43.933846790368868,44.59730500356671,44.986133730468879,44.906845692217985,44.846882636509683,44.817902987823913,9.177536779431815,9.1640728046193853,9.1593017301323165,9.1381033410422692,9.0802624863772365,8.9991398670547849 +1999,7,21,20,0,0,0,19.5,0.0,91.89690098385073,87.76725364648325,294.3230820724423,1.0,0.0,0.0,0.0,0.0,0.0,1.4358244970080172,24.399999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,22,6,0,0,0,5.5,0.0,89.08315525181814,85.27781147657235,67.91301370957567,0.0,0.0,0.0,1.0,0.0,0.0,1.5,23.300000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,22,7,0,0,90,6.5,90.0,77.73208191057805,75.06129236991711,75.71950223431952,0.0,29.053966058735558,87.759186743468931,1.0,29.053966058735558,54.921293892379353,1.3997267792029464,23.899999999999999,3.6000000000000001,80.415967798732808,81.59525180700939,82.285895476503441,82.15980404501596,82.065656947988913,82.018934235470155,17.042301797006921,16.99779858138093,16.93899162397171,16.848555065684327,16.709004156462978,16.559181062014069 +1999,7,22,8,0,6,164,7.5,166.68754856138946,64.83848537489409,63.38938352136738,84.1039328473506,0.0,53.272090990498391,163.68194290335455,1.0,53.272090990498391,101.86413477011085,1.5,25.0,4.0999999999999996,151.45617662738997,153.55605034031552,154.7854975630338,154.60036786807493,154.46485168213403,154.39469720451396,30.946903721547912,30.854827032362078,30.861550508926808,30.886806348432053,30.805087959615349,30.560981941334347 +1999,7,22,9,0,214,272,8.5,405.15115355761384,51.67754351594858,51.522910366779676,93.09409275237275,0.0,134.61192415670095,405.41399572985745,1.0,134.61192415670095,251.30713945681111,1.0645133479321958,26.699999999999999,3.1000000000000001,382.83950878325766,385.54016001499747,387.09748613532895,387.86562557463782,388.52796587424564,388.76349259470749,79.674404737814115,77.819175848760679,76.604496473914352,76.542816941637923,76.969787169935486,77.146436064324178 +1999,7,22,10,0,533,249,9.5,658.62644613813859,38.395781872753005,39.777940334579945,104.00363667694285,0.0,214.90205029513166,676.61357064003278,1.0,214.90205029513166,411.19866067276712,1.2212453353526331,28.300000000000001,4.0999999999999996,656.55768376785488,658.19071507754416,659.07873150811213,661.16491402628435,662.92170562287697,663.58517434784414,131.34922831465929,127.10732192214002,122.95823209307964,120.98840998124521,120.64456816332023,121.10304761893666 +1999,7,22,11,0,519,307,10.5,762.0981715863993,25.188222826293643,28.732325355519606,119.70184533687613,0.0,242.52620508900864,790.84770180595535,1.0,242.52620508900864,475.6200220350961,1.3036110449956189,28.899999999999999,2.6000000000000001,771.29519355090372,773.04479847157961,773.98735029476063,776.33432244392429,778.31176386999391,779.05977762343718,149.72782802732144,145.91990524698934,140.84274647128859,137.45896414217873,135.69947509217363,135.5144604845739 +1999,7,22,12,0,102,354,11.5,449.8623145000825,12.753802998828702,19.977541351488746,147.0410781582675,0.0,140.22577574466152,460.8886605818177,1.0,140.22577574466152,280.21065135828792,1.342794809278433,30.600000000000001,2.1000000000000001,439.7861934479472,442.80903766161265,444.55174876415356,445.82158470300971,446.89201146274172,447.29636972345503,85.042013256311549,83.896535077316258,82.048327476495984,80.730533526103386,79.867484879463348,79.399438418970689 +1999,7,22,13,0,636,298,12.5,904.1629111373303,8.035805085648322,17.619758562094667,191.13197451547282,0.0,288.03256594439881,945.82187877121578,1.0,288.03256594439881,562.99535807070345,1.3505431576578442,32.799999999999997,2.6000000000000001,929.32354793140553,930.47749124521431,931.04380117792618,933.33786284178689,935.2889771281117,936.01282111486,179.00924737971908,174.94273335697881,168.54464097756801,163.50944622004963,160.31055146280698,159.47853165770937 +1999,7,22,14,0,682,241,13.5,865.53715718365174,18.47479190867609,23.688445629716977,228.05573318320708,0.0,275.78378897671996,904.04598083366659,1.0,275.78378897671996,539.44544677025476,1.328979598588557,33.299999999999997,3.6000000000000001,888.49493302556334,889.42497588303047,889.86382050881866,892.23043259203689,894.23625249518011,894.98590542434135,171.48689745643298,167.20135311634843,160.94221094832861,156.19254216049603,153.43132572652709,152.86580881092067 +1999,7,22,15,0,507,279,14.5,699.97465306011145,31.4620388798344,33.86788688218009,248.62128033793473,0.0,222.72642831463253,723.58886806118585,1.0,222.72642831463253,437.08112372644661,1.2719503781520147,32.799999999999997,2.6000000000000001,704.16615206556548,705.86569270784719,706.78777304718687,709.02929840886952,710.91452831832839,711.62974662809438,137.07578282670715,133.23380536138842,128.67958166059273,125.9509271942116,124.76742077123035,124.84732041169296 +1999,7,22,16,0,0,119,15.5,119.0,44.74470003877852,45.360316218702934,261.49238275357874,0.0,37.469903519722074,117.2823990411696,1.0,37.469903519722074,72.702187804016617,1.1606359875163985,31.699999999999999,2.6000000000000001,108.76609020801658,110.39659536594316,111.35271908233425,111.2186862834491,111.12036300884797,111.06970290644513,21.910324784397787,21.841082467299678,21.792258683567592,21.733197134596885,21.613316983860869,21.446870699467429 +1999,7,22,17,0,0,71,16.5,71.0,57.994172075743094,57.21905353117384,271.2550166066139,0.0,22.329786842834178,69.874135374435355,1.0,22.329786842834178,43.304022469543234,1.5,32.200000000000003,4.0999999999999996,64.798944686120478,65.786829600903999,66.366264349938319,66.261134162820966,66.182071256187257,66.143411489326439,13.044505632812353,13.009229389062934,12.987403159855743,12.950802277675768,12.873167328682728,12.770439689425704 +1999,7,22,18,0,304,139,17.5,247.75473951108086,71.05733107422138,69.03817444448136,279.83174452707897,0.0,90.071347748939033,235.8462697260664,1.0,90.071347748939033,154.40331914652788,1.5,31.699999999999999,3.1000000000000001,205.18155572156087,206.60155912067239,207.40939971875031,208.12784117958935,208.72942130339618,208.95859307592804,50.847244037165204,51.992669551965946,53.069132543627369,53.857493739642571,53.788576652798696,52.617774113040987 +1999,7,22,19,0,162,54,18.5,80.664758079496465,83.76697492363546,80.5261600081075,288.2097430557229,0.0,34.738658711628851,68.527093907169814,1.0,34.738658711628851,50.468100388583125,1.5,31.100000000000001,2.1000000000000001,51.210889904427788,51.814181879005574,52.159038617385285,52.465735551870765,52.722484359872944,52.820596235509178,19.902575120952793,20.262438322220465,20.524606881953058,20.687138842322362,20.588068880099918,20.174753297800187 +1999,7,22,20,0,0,0,19.5,0.0,91.91730278252479,87.8218206788237,294.1116601552389,1.0,0.0,0.0,0.0,0.0,0.0,1.2593882982434739,29.399999999999999,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,23,6,0,0,0,5.5,0.0,89.10783998925768,85.33721774040447,68.12450897586106,0.0,0.0,0.0,1.0,0.0,0.0,1.5,23.899999999999999,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,23,7,0,193,106,6.5,155.35447068308909,77.82460080699676,75.18359046786608,75.8874035216552,0.0,59.482482765879688,143.25098559248158,1.0,59.482482765879688,97.033314317782839,1.4029578883876535,26.699999999999999,3.6000000000000001,117.19174091742698,118.31795849798904,118.96347455476621,119.49571728938442,119.94363733570738,120.11325470279887,35.814114625753732,35.87190840328752,35.415089230874585,34.829829595315516,34.19958426435182,33.670269267928255 +1999,7,23,8,0,380,164,7.5,333.52104347917475,64.92082826075485,63.50574931422202,84.29074461999922,0.0,119.52586672752157,325.79145134015465,1.0,119.52586672752157,208.94132391354782,1.5,28.300000000000001,4.5999999999999996,294.63560012643484,296.0778137130672,296.89070689937466,298.22184004105668,299.33111836397961,299.76034948798844,67.478552491734092,67.221390435147228,67.929466769772887,69.546075102553871,70.854509330178971,70.352575958229693 +1999,7,23,9,0,507,202,8.5,516.65500759904398,51.75315338832896,51.63847947616556,93.30850337117349,0.0,176.33716524600237,521.32319105690874,1.0,176.33716524600237,322.83181850948546,1.070384553760671,30.0,5.2000000000000002,496.98135269968594,498.51473871240643,499.36268233685712,501.10134254475724,502.56439230138619,503.11753327367529,104.98764460900554,101.52845457615113,99.270212554149936,99.265195284881557,100.34844632815481,101.06991252611557 +1999,7,23,10,0,673,174,9.5,690.29595852364912,38.469906599650905,39.90082136665902,104.2580928160903,0.0,226.10108558265594,711.73531720311553,1.0,226.10108558265594,430.95727362955904,1.2265048247186134,31.100000000000001,4.5999999999999996,694.76874226891175,695.64083351615602,696.07065457886392,698.21995981554073,700.03246863740219,700.71501691490562,139.04588373903715,134.27639135994914,129.38502050590733,126.86395322524267,126.22003304234347,126.72688041812179 +1999,7,23,11,0,748,175,10.5,829.9954850140773,25.271957889411183,28.876530806218188,120.00241469611457,0.0,264.46666562614661,863.57469705953281,1.0,264.46666562614661,516.19247602882331,1.308462126493792,32.200000000000003,4.5999999999999996,849.43111674315423,850.29908287817022,850.70726041208093,852.58735054125236,854.19502271088504,854.78222367783019,164.02247326855095,159.3300805647861,153.23287746090259,149.01418267155088,146.76407461081919,146.6692173467346 +1999,7,23,12,0,722,217,11.5,894.75486156086731,12.884197373506515,20.162528932583594,147.29593777481983,0.0,285.18548643247232,937.51434086762856,1.0,285.18548643247232,557.2430578340136,1.347437957118002,32.200000000000003,4.0999999999999996,923.48502080768822,924.1599751731344,924.44197163446552,926.73158123036626,928.67878623627769,929.40146759612128,177.65167391432124,173.4625592758488,166.8808932328709,161.68956076721733,158.40677694396894,157.60276975470586 +1999,7,23,13,0,792,174,12.5,927.99894864594444,8.22168248030339,17.820702525313962,191.00093223388154,0.0,295.7977136911104,971.60742497797469,1.0,295.7977136911104,576.00369796098323,1.3551598385018297,32.799999999999997,3.6000000000000001,959.30168972247111,959.95087601097703,960.21303504940613,961.89955856500569,963.36197515051447,963.88041797788082,184.19064475654704,179.73656691395757,172.88298351133056,167.35946962238677,163.79836704782147,162.96602951450743 +1999,7,23,14,0,766,177,13.5,877.6213770516739,18.56281880007454,23.844025547043145,227.7242592909324,0.0,279.68548257165315,916.16885947672802,1.0,279.68548257165315,545.31275100520133,1.33374907638787,33.299999999999997,2.1000000000000001,902.8934220464439,903.67661217659429,904.02629836889162,905.83220330097174,907.38548609062673,907.94617415601783,173.95128526547697,169.46492146351463,163.03205976942144,158.04502615263277,155.08472892511827,154.52066552954369 +1999,7,23,15,0,716,176,14.5,769.66286041002559,31.526790632915766,33.98970117458235,248.32524150394,0.0,252.33004194982857,798.87899407380746,1.0,252.33004194982857,479.87834759819566,1.2770750657963745,33.899999999999999,2.6000000000000001,783.92286257042656,784.67018753857894,785.01281846574238,787.17839796481405,789.01313356200239,789.69761370207095,156.18082615713334,151.38349231306501,145.63901288687055,141.9966494841166,140.30725088687757,140.44214991018626 +1999,7,23,16,0,635,170,15.5,615.33038169028168,44.80645285767699,45.467985649953015,261.24659253662605,0.0,201.33831645209651,629.55843582374268,1.0,201.33831645209651,384.64326077235302,1.1663578740098226,33.299999999999997,3.6000000000000001,609.88231977010184,610.86017789718676,611.36532779976881,613.46126287725281,615.22224865812245,615.89047544242817,122.49819952531669,117.99934344373825,114.12314795169773,112.81785856820858,113.09028227193231,113.87922470901709 +1999,7,23,17,0,417,188,16.5,413.1340482893566,58.06053178317588,57.32386235377102,271.0445792668446,0.0,143.22724990397762,411.72411463821487,1.0,143.22724990397762,258.61136034515016,1.5,32.799999999999997,2.6000000000000001,384.73791195281274,386.27449441335892,387.13769415644072,388.70366364002138,390.01408699659964,390.51693677721295,83.241438917627178,81.232029664901333,80.474419037354139,81.446524897578783,82.938388541166248,83.27924518365792 +1999,7,23,18,0,350,123,17.5,247.59039141334517,71.13267588378574,69.14693869541011,279.64460763051795,0.0,93.373682127089339,235.29439467113355,1.0,93.373682127089339,155.33236733025083,1.5,32.200000000000003,2.6000000000000001,202.05751504121392,203.18932281979886,203.82401732975615,204.89455863759062,205.78160671457505,206.12867240192395,52.502257826057757,53.842425339581261,55.092936117078473,56.073444903507195,56.112536527312855,54.827459566661872 +1999,7,23,19,0,203,55,18.5,88.004381963288751,83.85425942966734,80.64313587053272,288.0383475672568,0.0,38.69894069561412,73.605978428679464,1.0,38.69894069561412,54.988815428451218,1.5,29.399999999999999,2.6000000000000001,53.801184530937483,54.415079856839618,54.764569309136355,55.072099572894892,55.330418631579008,55.42827678209386,22.136442723143741,22.554778900609435,22.865274362035432,23.049296520356545,22.927089549991482,22.450806806275544 +1999,7,23,20,0,0,0,19.5,0.0,91.93910764979364,87.8786747833653,293.8952257061095,1.0,0.0,0.0,0.0,0.0,0.0,1.0644149031295864,27.800000000000001,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,24,6,0,0,0,5.5,0.0,89.13219320327356,85.3973911977775,68.34242723338014,0.0,0.0,0.0,1.0,0.0,0.0,1.5,24.399999999999999,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,24,7,0,107,121,6.5,148.13884492103855,77.91754243555691,75.30733786102772,76.0611638855386,0.0,54.025168913200716,138.98334630476938,1.0,54.025168913200716,91.860592168975629,1.4065983233061745,25.600000000000001,2.6000000000000001,117.89193065766544,119.22846834667867,120.00186421712289,120.28512922015017,120.52972490070037,120.6166065980083,32.300979984908686,32.31776054328958,31.985914225396947,31.550759762088287,31.060136568347609,30.632629360372153 +1999,7,24,8,0,287,179,7.5,306.50496235900027,65.00342629946154,63.62347454392305,84.48375822682078,0.0,107.88566011023924,299.69370908136801,1.0,107.88566011023924,191.06362274762904,1.5,27.199999999999999,4.5999999999999996,272.1222984192558,273.87574155264792,274.87827831819914,275.78180404658929,276.5418993483139,276.82924667073178,61.169776715551784,60.93568726913275,61.477904453935594,62.711434645290652,63.674246494675614,63.21550188740369 +1999,7,24,9,0,513,199,8.5,516.55631826255103,51.82902018302859,51.75552897626679,93.52973887392034,0.0,172.33458994196752,521.58707471549042,1.0,172.33458994196752,322.74392283910015,1.0764841915093393,29.399999999999999,4.0999999999999996,497.27314536031849,498.78265439979617,499.61779966291147,501.34746008242723,502.80186852831599,503.35269028687395,102.78721582294733,99.349989581216391,97.071848116881711,96.974580225470675,98.000949819351078,98.7103372149829 +1999,7,24,10,0,497,253,9.5,633.58125167228832,38.544553962951156,40.02561076064274,104.5203254057261,0.0,206.62687944630238,651.6796086486795,1.0,206.62687944630238,395.79616559915246,1.2319463616504904,31.100000000000001,6.2000000000000002,631.61328016956111,633.28477012724773,634.19833216402253,636.29159578234771,638.05147484586291,638.71907124797974,126.47664839516342,122.59837471769497,118.5757017144139,116.55153458194526,116.04034008889754,116.35572230921217 +1999,7,24,11,0,645,247,10.5,811.00114304916019,25.35703115649063,29.023548529935493,120.31177662852987,0.0,258.31954018038169,844.84780001703371,1.0,258.31954018038169,505.89214269214818,1.3134689391636973,32.799999999999997,3.6000000000000001,827.98139077482676,829.12519521004629,829.69951069042031,832.08176124877627,834.09395235025841,834.85135424127213,160.27157944464093,156.11803361706819,150.36062626502149,146.25132660435153,143.9399109604372,143.66005388751813 +1999,7,24,12,0,752,196,11.5,901.05634798326628,13.018161387617145,20.35179386372949,147.5593865140044,0.0,287.13699728836514,942.44946723511271,1.0,287.13699728836514,559.58983392196626,1.352222300462382,34.399999999999999,3.1000000000000001,928.97162835394749,929.82870735993367,930.21844089663693,931.97390831445693,933.4890138561484,934.0320702579379,178.61930822232679,174.3914728154065,167.85835371240756,162.61796368105092,159.24363287223005,158.42616706458648 +1999,7,24,13,0,714,231,12.5,909.94812850687686,8.414425721559946,18.02756410227063,190.877125825774,0.0,281.53535499548968,954.89965640835271,1.0,281.53535499548968,566.6484049286762,1.3599111447095131,35.600000000000001,3.6000000000000001,940.62404136460316,941.32744558122636,941.62714529463904,943.9391677088812,945.90342714809049,946.63436583739917,175.5023672430504,171.52975699428941,165.06375948170231,159.79798104325243,156.45591576917207,155.55656868054132 +1999,7,24,14,0,592,289,13.5,829.7934338933502,18.657237284307705,24.006061566139895,227.3927869060369,0.0,264.25853625767036,866.38716782908602,1.0,264.25853625767036,517.34501290283833,1.3386529080035259,35.600000000000001,2.6000000000000001,849.08452546830483,850.40066059651599,851.07444330874239,853.42205561799847,855.40819604969965,856.15348422292186,163.96572936082492,160.03330484819384,154.26161656293755,149.90931864901489,147.37682135191289,146.80860203749214 +1999,7,24,15,0,66,339,14.5,393.64070840706466,31.59670687844352,34.11745272899452,248.0258913350005,0.0,125.77099647741835,396.54368420559302,1.0,125.77099647741835,243.18525303330117,1.2823396482958438,30.600000000000001,5.7000000000000002,374.99268967031787,378.55910081989396,380.63258984318725,381.0697669864835,381.46034310872574,381.58731541966813,75.220708813850422,74.229445873038983,73.052101180522001,72.291886155287685,71.779165772878613,71.449399021957191 +1999,7,24,16,0,24,277,15.5,293.79756299739893,44.872881125150386,45.58114214231405,260.9970349927918,0.0,93.559360736026562,291.20663339950738,1.0,93.559360736026562,179.93210206301094,1.1722307207512885,28.0,0.0,272.41714184581753,275.8389708757914,277.83978410255037,277.64032744910656,277.50507232074426,277.42354824179381,55.102571501697035,54.579237534004342,54.15185723633612,53.896455981565623,53.643813143183962,53.362538330662851 +1999,7,24,17,0,0,76,16.5,76.0,58.13139478197674,57.433917136111866,270.83056677782446,0.0,23.902307043033758,74.8007375876022,1.0,23.902307043033758,46.35948996821228,1.5,23.899999999999999,5.7000000000000002,69.362250649931724,70.419704924911258,71.039944937962105,70.929490393687828,70.846543214591932,70.805859087498646,13.963483895181795,13.925998605901848,13.902635749230413,13.863808540210547,13.781138854449377,13.671178577323776 +1999,7,24,18,0,0,40,17.5,40.0,71.21251365013556,69.26086316048489,279.4541878009244,0.0,12.580161601596718,39.326732712261439,1.0,12.580161601596718,24.357655038465587,1.5,24.0,5.7000000000000002,36.506447710490384,37.063002592058574,37.389444704190602,37.316453763679135,37.260767464155968,37.234366003332177,7.3466931930115926,7.3249976455858334,7.3126983259742762,7.2897534172823688,7.2431524899758282,7.1852664914934365 +1999,7,24,19,0,0,32,18.5,32.0,83.94608404492689,80.7652485254015,287.8639627712184,0.0,10.064129281277374,31.460319933684691,1.0,10.064129281277374,19.485057795170523,1.5,22.199999999999999,5.2000000000000002,29.205158168392316,29.650402073646855,29.911555763352478,29.852786529505003,29.807932647772628,29.786685061920416,5.8772909789875287,5.859884710488882,5.8500451767700241,5.8316256572028307,5.794266599194323,5.7479574920559688 +1999,7,24,20,0,0,0,19.5,0.0,91.96229734851704,87.93778690246174,293.67386894736586,1.0,0.0,0.0,0.0,0.0,0.0,1.5,22.199999999999999,5.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,25,6,0,0,0,5.5,0.0,89.15619332185472,85.45830235563788,68.5666938759746,0.0,0.0,0.0,1.0,0.0,0.0,1.5,22.199999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,25,7,0,240,105,6.5,165.36498110256454,78.01085859813043,75.43247913307938,76.24072961205293,0.0,64.153979460436133,151.52496230243133,1.0,64.153979460436133,103.17319957685629,1.4106613504286254,23.899999999999999,2.1000000000000001,122.491327599024,123.60837536318488,124.24635409621129,124.76974921027417,125.21188917499256,125.37781067773412,38.678475962861398,38.736974477143853,38.218403662221789,37.538097058763213,36.80940212665562,36.221852786668883 +1999,7,25,8,0,380,159,7.5,327.11420563681855,65.08624975647774,63.74251804770017,84.68290175440748,0.0,115.07605273087131,319.98307649235801,1.0,115.07605273087131,204.96135699899207,1.5,26.699999999999999,2.6000000000000001,289.04333832626901,290.43972931834895,291.22709429336805,292.54449708307396,293.64166486660923,294.06688616848282,65.010554592497897,64.703903107718702,65.347609608789213,66.901215785876317,68.199065620657535,67.754611839015297 +1999,7,25,9,0,489,209,8.5,510.90491521043623,51.905135172023,51.874032538203416,93.7577004660703,0.0,174.16541075758727,516.24612675693982,1.0,174.16541075758727,319.31396441266975,1.0828129746301172,28.899999999999999,2.6000000000000001,491.63330080649928,493.2353766285338,494.12450068127492,495.8736490584206,497.34442867656634,497.90152463065237,104.00618242053483,100.6019132335157,98.263476477684478,98.10236847315781,99.023726650403759,99.688268076169393 +1999,7,25,10,0,667,181,9.5,690.81021586492534,38.61974205072806,40.152296838744945,104.79018537740534,0.0,220.04867539390673,713.20802399723482,1.0,220.04867539390673,431.35786786835826,1.2375697614465748,30.600000000000001,4.0999999999999996,695.77557092464042,696.71006905253034,697.17904355292637,699.3627271475815,701.20090751075236,701.89612181684663,135.49303280017153,130.93767228066133,126.15225665921155,123.61227630493613,122.85420347156091,123.31369139412462 +1999,7,25,11,0,736,187,10.5,829.63743727233464,25.44349890515432,29.173374586270974,120.62967477904151,0.0,264.40340485450656,865.88717257385338,1.0,264.40340485450656,516.93774807265277,1.3186309819154212,31.699999999999999,2.6000000000000001,851.57976460076509,852.28946810849129,852.60256203031406,854.81727960455191,856.69636574546143,857.39634628092472,164.40118697650982,159.93096156843046,153.79109853968203,149.35476010462486,146.84547138080967,146.59943655314339 +1999,7,25,12,0,800,164,11.5,913.11598253552597,13.155775487683599,20.54530529521735,147.83103601274675,0.0,291.05638100359926,956.47114690886951,1.0,291.05638100359926,566.92500541182926,1.3571472421050232,32.799999999999997,0.0,944.20628724736434,944.8370240343188,945.0901862529073,946.80552327301632,948.28972936391517,948.8186124544419,181.25472125875285,176.87658745132211,170.12862552309943,164.69948596529565,161.20502922472994,160.38641910465668 +1999,7,25,13,0,756,198,12.5,916.01275239344636,8.613920292767508,18.240265638273616,190.76056410356577,0.0,291.91713962214095,959.65412496030194,1.0,291.91713962214095,568.67431141758914,1.3647964932158496,33.299999999999997,4.0999999999999996,946.42023565204374,947.24828762436425,947.61781318969065,949.32840895060178,950.8092021612913,951.33683217256487,181.68232896026521,177.7528681619867,171.20717940580548,165.68094877741848,161.94537763591626,160.87935346707715 +1999,7,25,14,0,652,265,13.5,859.82107887968368,18.758123911981976,24.174527636453657,227.0617201014645,0.0,266.20567664354354,899.08695378994275,1.0,266.20567664354354,535.93725518770623,1.3436906205265684,33.299999999999997,4.5999999999999996,882.51032141604924,883.63643834622235,884.19545852300007,886.57607337607737,888.58986859746028,889.3460455052749,165.49910025463913,161.61030204865398,155.61976751828723,151.06263112408101,148.29123940612254,147.65712914315708 +1999,7,25,15,0,346,315,14.5,600.99614584533026,31.671857068594537,34.25114964791363,247.72352569534266,0.0,190.91754382674986,618.297230005958,1.0,190.91754382674986,374.30118031103274,1.287743898946325,31.699999999999999,6.2000000000000002,597.59762736001142,600.0371406570456,601.41249281750879,603.03004660322415,604.3989857789561,604.91076529597888,116.81214214072662,114.08114559766859,110.68948366693689,108.535286106987,107.43616699828618,107.28393754265875 +1999,7,25,16,0,89,288,15.5,350.1591859073468,44.94403278042362,45.69979715654772,260.74390602820085,0.0,111.90432679465961,350.65074866297368,1.0,111.90432679465961,216.06228399827185,1.1782548212700297,31.100000000000001,4.0999999999999996,330.75894963012968,333.90574458815894,335.73576177839368,336.03167305038647,336.303761016637,336.38509164052471,66.582216006223732,65.483024026821141,64.511366843824064,64.08184409595998,63.896689531724867,63.752215330584548 +1999,7,25,17,0,341,214,16.5,396.97202569009175,58.20679005648848,57.5492226120939,270.61311936346806,0.0,135.95877616073531,395.04890326877114,1.0,135.95877616073531,247.23001430489467,1.5,33.299999999999997,6.2000000000000002,369.05340789688796,371.05746963200579,372.20132587651824,373.2800410725049,374.19372884959745,374.53416048823533,79.256463115608796,77.449652864407156,76.673118096421746,77.3385721986714,78.45524576595956,78.701294428315819 +1999,7,25,18,0,275,130,17.5,226.84656099624206,71.29685636837947,69.37994249628836,279.26059276443834,0.0,82.25499092006163,216.64197519853005,1.0,82.25499092006163,141.46269240960228,1.5,32.200000000000003,5.7000000000000002,188.15784945667571,189.49389047598532,190.25519962200792,190.9458957467707,191.52351839730073,191.74437440369707,46.419445677380601,47.409456517171755,48.378199841249327,49.1323085615495,49.138870336213209,48.113446002357733 +1999,7,25,19,0,155,55,18.5,79.534593789261251,84.04244128840219,80.89247772899444,287.68667518959757,0.0,34.25463481850489,67.884510719328603,1.0,34.25463481850489,49.76815886380782,1.5,29.399999999999999,2.6000000000000001,50.915524293435205,51.529577788353876,51.881025382758864,52.186628928621545,52.44244930606871,52.540275004179975,19.681834358877616,20.03124668948071,20.265466742510636,20.395258976483323,20.277499343178956,19.869431862905916 +1999,7,25,20,0,0,0,19.5,0.0,91.9868499011867,87.99912408910318,293.44768021821324,1.0,0.0,0.0,0.0,0.0,0.0,1.5,26.699999999999999,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,26,6,0,0,0,5.5,0.0,89.17981952238104,85.5199221251028,68.79723237010131,0.0,0.0,0.0,1.0,0.0,0.0,1.5,22.199999999999999,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,26,7,0,214,104,6.5,157.36808952122931,78.1045030466944,75.5589604253277,76.42604459320081,0.0,60.596426885480277,144.8127039998742,1.0,60.596426885480277,98.240297278019014,1.4151605462675176,24.399999999999999,3.1000000000000001,117.49274731765321,118.60013502057926,119.23392532887321,119.75377857630261,120.19200561835572,120.35728817663109,36.505670055168089,36.562760506402128,36.086804437210631,35.470234145791871,34.807824688183423,34.261780894489924 +1999,7,26,8,0,374,163,7.5,327.75504007188556,65.16927121082753,63.862840538697064,84.88810087604287,0.0,116.58067261318473,319.99667149562941,1.0,116.58067261318473,204.02597408885501,1.5,27.800000000000001,3.1000000000000001,290.31629191737835,291.92564984698691,292.83929046086917,293.694641147244,294.41824751696231,294.68800139792063,65.99578388231545,65.59708465001907,66.148281066889183,67.528238091404532,68.666308778512075,68.237567197939725 +1999,7,26,9,0,471,214,8.5,504.01564119724293,51.98149222616373,51.99396590393551,93.9922867343472,0.0,167.84240770784928,509.66387700350015,1.0,167.84240770784928,315.08616454876375,1.0893715712465453,28.899999999999999,3.1000000000000001,484.97066036032072,486.6210963864645,487.54124265632237,489.2984981959205,490.77365724604647,491.33464330765071,100.39292183596241,97.115890547326259,94.815402578963699,94.590609331093262,95.433091730086943,96.050281601637664 +1999,7,26,10,0,667,182,9.5,690.84378702257527,38.69549174355512,40.280869991115225,105.06752053198737,0.0,226.20521387278305,713.75555620753482,1.0,226.20521387278305,431.38739096517799,1.2433748080756906,30.600000000000001,3.6000000000000001,696.23369136383326,697.17977578014006,697.65296433945309,699.83784978063022,701.67920795748887,702.37404655554724,139.37868137275231,134.80480293531403,129.89220240508442,127.15574076868546,126.24828312963363,126.63313254257173 +1999,7,26,11,0,682,217,10.5,811.59968902265655,25.53141991826748,29.326006619586384,120.95584932722609,0.0,258.58215621781005,847.29496812625075,1.0,258.58215621781005,506.1492254573098,1.3239477368106176,31.699999999999999,4.5999999999999996,831.67025891419837,832.59080227646291,833.03196048681673,835.36631120113975,837.34008804571477,838.0812824834095,160.61717897396056,156.36062435459044,150.47721045136666,146.261537021024,143.89012810118214,143.62970679874726 +1999,7,26,12,0,559,280,11.5,802.76466069752553,13.297118250470124,20.743032941115217,148.11049709000147,0.0,248.56908383268052,841.51359280276165,1.0,248.56908383268052,500.76159027134298,1.3622121811143204,32.200000000000003,7.2000000000000002,825.3936519222151,826.51851024991447,827.08346619651343,829.44575820367891,831.43925226657143,832.1925188384414,154.55938138663686,151.26631249840497,145.82295498550027,141.4602988883872,138.71009998788682,137.89948166768974 +1999,7,26,13,0,558,285,12.5,814.29200097647731,8.820049169790511,18.4587281569488,190.65123268675848,0.0,259.38888695397145,854.50518604538502,1.0,259.38888695397145,507.80088959564364,1.3698153106957665,33.299999999999997,5.2000000000000002,838.64875881188891,839.73246388546215,840.2682279527354,842.60599102550088,844.58347276010352,845.32698995329599,161.26959622041085,157.99782621618746,152.36191984182702,147.74991323031566,144.69750062032585,143.74303399344271 +1999,7,26,14,0,676,220,13.5,835.86857443857457,18.865546367873883,24.349392527342406,226.73144640855534,0.0,266.36084886216247,875.82712331245602,1.0,266.36084886216247,521.08882836192186,1.348861767293863,33.0,6.2000000000000002,861.15019883218167,861.95445982041974,862.32147582840867,864.65049853197434,866.62322902230312,867.3622374410063,165.80535358837037,161.9794049336432,155.92399760154549,151.18522911048123,148.20313304395944,147.44500084109501 +1999,7,26,15,0,316,340,14.5,600.76454333849063,31.752305843712772,34.39079528171535,247.41843719901144,0.0,194.86238706207891,617.97136489905074,1.0,194.86238706207891,374.30312223553568,1.2932876419599937,32.200000000000003,5.2000000000000002,596.22891585101399,598.84515329545002,600.32408236339734,601.99786865000726,603.41354977878837,603.94379183952753,119.15170690857528,116.52800370902295,113.14027893399809,110.96343358121075,109.79682135545413,109.56361726569106 +1999,7,26,16,0,504,218,15.5,569.22009448889787,45.0199519797824,45.82395814234293,260.4874009142786,0.0,185.6017478406724,582.22697490853216,1.0,185.6017478406724,355.65371630176804,1.1844305636552703,33.299999999999997,6.2000000000000002,561.26149293085541,562.79639019777323,563.63854190716518,565.54305841595578,567.1433447385167,567.75049356076886,112.85886745557728,109.1165768963255,105.74386290062627,104.48379522737393,104.53768657165273,105.05421794914218 +1999,7,26,17,0,446,179,16.5,417.51995251160241,58.28674315174459,57.669779923691976,270.3923768801609,0.0,141.96084668909472,416.89841615801123,1.0,141.96084668909472,261.23837030863427,1.5,32.200000000000003,4.5999999999999996,389.60121353658531,391.05991168070909,391.87779550328082,393.4154801405553,394.70351318847486,395.19674036467171,82.862314655388928,80.674028030275778,79.704581811376386,80.500895314457026,81.935197206667752,82.375107578971267 +1999,7,26,18,0,286,126,17.5,226.13982317600193,71.38571272867597,69.5041679961835,279.06392969539826,0.0,82.200291463661131,215.90287421405566,1.0,82.200291463661131,140.9934529123916,1.5,30.600000000000001,3.6000000000000001,187.1809631015733,188.47918827211458,189.21813472094485,189.89520024151682,190.46187274475776,190.67815547719496,46.314121248117793,47.273373921098162,48.247299932326619,49.054042386518766,49.108072053207586,48.110475112741206 +1999,7,26,19,0,217,49,18.5,82.853506781138492,84.14332007772188,81.02479965498507,287.5065704968933,0.0,37.947004685234198,67.667350873885965,1.0,37.947004685234198,52.31379284162594,1.5,28.300000000000001,2.6000000000000001,46.430533534172142,46.924688715871198,47.203034772420374,47.680884868802288,48.076829772225992,48.232073222877112,21.745773910173636,22.237547371427709,22.555880551848606,22.738275510398054,22.606529901028068,22.092146576585819 +1999,7,26,20,0,0,0,19.5,0.0,92.0127393150438,88.06264923383726,293.21674988297343,1.0,0.0,0.0,0.0,0.0,0.0,1.5,27.199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,27,6,0,0,0,5.5,0.0,89.20305174673145,85.58222183580446,69.0339643315595,0.0,0.0,0.0,1.0,0.0,0.0,1.5,22.800000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,27,7,0,221,103,6.5,157.63638116623864,78.19843151395176,75.6867294665913,76.6170503749751,0.0,60.817466845560851,144.97169403217924,1.0,60.817466845560851,98.392804699313814,1.42010980691049,24.399999999999999,1.5,117.27505969984566,118.37287191389791,119.00076124373895,119.51578673868214,119.950085252598,120.1137433144833,36.606082870823997,36.713382835481816,36.261547729337686,35.646956074857528,34.96877380863981,34.390192264863472 +1999,7,27,8,0,424,149,7.5,334.9730882019536,65.25246556024445,63.984404613155334,85.0992789150408,0.0,118.34357904405111,327.7494291427796,1.0,118.34357904405111,209.7318714685959,1.5,26.100000000000001,1.5,295.76429486574546,297.06415158280527,297.79300629984476,299.08260778593166,300.1584381987019,300.57368270583248,66.878233891530883,66.424883710856577,67.002845307123479,68.604553350432994,69.990636779764898,69.605125146053552 +1999,7,27,9,0,410,246,8.5,497.77049182129099,52.058087787303016,52.11530686309503,94.2333937299995,0.0,164.75652074023142,501.55346655163589,1.0,164.75652074023142,309.68930008949451,1.0961606047397914,29.399999999999999,3.1000000000000001,476.53676523681304,478.74521067495061,479.99841307656595,481.22925569796087,482.2765254574241,482.66167434069223,98.268764158211184,95.327782500233553,93.28719916484819,93.021790396218606,93.654705225998526,94.118810538839668 +1999,7,27,10,0,133,342,9.5,443.26755836522875,38.77182663578592,40.41132260987007,105.35217567291556,0.0,142.4963989362044,449.73407712739544,1.0,142.4963989362044,275.42291700518996,1.249361255456828,31.100000000000001,2.6000000000000001,427.44760173209124,430.62007895060879,432.45262031686991,433.46997249518864,434.33616051168394,434.65468445828003,85.838799491113662,84.231225704648708,82.470655612824018,81.514942127972176,81.095245426581471,80.932817173559116 +1999,7,27,11,0,633,260,10.5,811.03607759369197,25.620855292517184,29.481443735707455,121.29003732115879,0.0,258.29062544093705,846.12590292083769,1.0,258.29062544093705,505.89200925571612,1.3294186705566016,32.200000000000003,3.1000000000000001,828.60885100699829,829.87775443334942,830.52588548467475,832.90503237518078,834.9148043857283,835.67164718260528,160.29223463892018,156.45307552074817,150.80244462387654,146.55508141511481,144.09338142131338,143.53915155132535 +1999,7,27,12,0,680,241,11.5,876.06854832497004,13.442265981765669,20.94494695925847,148.397380664308,0.0,279.16918362095583,919.91194075521526,1.0,279.16918362095583,545.897451796788,1.3674165143659995,32.799999999999997,2.6000000000000001,904.89451985074004,905.74388285839655,906.1315332703839,908.48338021708037,910.47914575680534,911.22415470104806,173.81865440761823,170.17398815808122,163.94406772414095,158.80657999892276,155.3990620280556,154.37887247669374 +1999,7,27,13,0,636,260,12.5,862.48666839037287,9.032693488093061,18.68287147978801,190.54909548418973,0.0,266.94563750808703,906.33759335061825,1.0,266.94563750808703,537.53311357912924,1.374967035097874,32.799999999999997,2.1000000000000001,891.09178704594251,892.00263831173618,892.43137917818785,894.78727011319268,896.7824465071119,897.53080369492125,166.25648390426761,162.96275945870113,157.04052201152791,152.13033171880966,148.71803082135892,147.64984345044761 +1999,7,27,14,0,592,297,13.5,835.56579655749522,18.97956323416617,24.530619923234752,226.40233601990863,0.0,266.0709918827668,873.68084919922489,1.0,266.0709918827668,520.82655900437896,1.3541659294540522,32.799999999999997,4.5999999999999996,855.94406945653407,857.35015365377888,858.07602550087938,860.40138290360915,862.37025102144867,863.10823924842998,165.09782828881788,161.48884154642028,155.75816606478702,151.29374018295582,148.46842735380577,147.68563181964601 +1999,7,27,15,0,233,352,14.5,543.93754821168,31.838112837866504,34.53638819594549,247.11091453322112,0.0,172.63332718221105,559.21456115049796,1.0,172.63332718221105,339.39295574498226,1.298970754236731,33.299999999999997,4.0999999999999996,537.3325242049375,540.03419767657306,541.57285466397025,543.27735425492574,544.71054762791982,545.25495685797046,105.37400845634609,103.29825187200619,100.46931189027873,98.646268435651962,97.667181780751648,97.385041184453783 +1999,7,27,16,0,522,218,15.5,580.91545230919633,45.100678981943325,45.953628493971316,260.2277139197542,0.0,194.08766528318046,594.57150155839804,1.0,194.08766528318046,362.84226396621358,1.1907584331249828,33.299999999999997,4.5999999999999996,573.37377993679024,574.91212355534753,575.75267048416447,577.65151047365805,579.25006497147638,579.85399973543281,118.13512996635902,114.26466137426159,110.68613198404014,109.24046001786498,109.20143253855676,109.69464627817213 +1999,7,27,17,0,452,177,16.5,417.8895378874729,58.37127610585455,57.795586590478365,270.1684785957559,0.0,145.2289697621361,417.57521867718992,1.0,145.2289697621361,261.44428197526202,1.5,33.299999999999997,4.5999999999999996,390.19027253152638,391.63295240710084,392.43981527466826,393.96814936045899,395.24959872163663,395.73906293411892,84.911726515866562,82.600694346675795,81.538446995650716,82.294364208372215,83.700977298057921,84.157469688154819 +1999,7,27,18,0,349,115,17.5,236.46020903372084,71.47908807828054,69.63352757481019,278.86430506877673,0.0,87.758018433836909,225.31104319252765,1.0,87.758018433836909,148.3904852106993,1.5,32.799999999999997,3.6000000000000001,192.53118579170265,193.58729975990747,194.1795394216125,195.21576040480883,196.07394647180774,196.41026333052207,49.232514066615984,50.431879956089048,51.620420887444396,52.642105507736439,52.781690642657018,51.629390600305548 +1999,7,27,19,0,170,52,18.5,78.118459671302148,84.24870566941044,81.16218684869503,287.3237334143844,0.0,33.674092983818298,66.041595174741744,1.0,33.674092983818298,48.861345700891462,1.5,31.699999999999999,4.5999999999999996,48.775310170570876,49.357806279111323,49.690629982638583,49.982739240719106,50.22743212885193,50.320851651741734,19.365638873970919,19.731920934801906,19.962547194947295,20.069475863718427,19.927244861389283,19.504797808007769 +1999,7,27,20,0,0,0,19.5,0.0,92.03993527682792,88.12832076073897,292.9811682426902,1.0,0.0,0.0,0.0,0.0,0.0,1.5,30.0,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,28,6,0,0,0,5.5,0.0,89.22587071566444,85.64517324952938,69.27680960106005,0.0,0.0,0.0,1.0,0.0,0.0,1.5,22.199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,28,7,0,195,103,6.5,150.78302036292246,78.29260174108931,75.8157356002202,76.81368620538849,0.0,57.681812506719936,139.32285019862249,1.0,57.681812506719936,94.168547914402382,1.425523358600052,26.100000000000001,2.6000000000000001,113.21190518621896,114.30989975165588,114.93929332190483,115.45277876410778,115.88491235514864,116.04853650762981,34.689345960054148,34.790955294774996,34.37641606928004,33.820919237338835,33.205488675150328,32.66743387052712 +1999,7,28,8,0,387,159,7.5,327.9986970025351,65.33581002314887,64.10717475437258,85.31635690698721,0.0,117.61081946157455,321.58351409717102,1.0,117.61081946157455,205.466938376668,1.5,28.300000000000001,3.1000000000000001,290.09067585837033,291.49498514132097,292.28638254622331,293.58941907219776,294.6760757358594,295.0958553906853,66.635041876187074,66.149676370422981,66.649733676977789,68.159096252346814,69.475758355732154,69.131551194471982 +1999,7,28,9,0,526,189,8.5,511.11313303388823,52.13492083697439,52.23803522631202,94.48091504972341,0.0,170.62590719805976,517.70974465002439,1.0,170.62590719805976,319.2897701167114,1.1031806545168588,30.0,2.1000000000000001,493.58572111481408,495.01828068871288,495.80732894975637,497.49754696443227,498.91959832550032,499.45742648523412,102.43336228695394,98.939012655638265,96.368958015863257,95.929560495428632,96.671004371154879,97.323061270645212 +1999,7,28,10,0,661,176,9.5,678.30115980105211,38.848772952957326,40.54364901961272,105.64399273584606,0.0,216.06840926637557,702.00465037581921,1.0,216.06840926637557,423.59169056527111,1.2555288288375364,32.200000000000003,2.6000000000000001,684.80651456887119,685.71093538222135,686.1627641153608,688.32214711127392,690.13949186240154,690.82754152622965,133.32982083492553,129.03063441490755,124.2458240836519,121.531763778637,120.55719373376735,120.85259916431951 +1999,7,28,11,0,712,199,10.5,817.83664279568507,25.711868242664814,29.63968637656604,121.63197300298502,0.0,260.60994140537019,855.29831181721977,1.0,260.60994140537019,509.82559898005371,1.3350432360452251,32.799999999999997,3.1000000000000001,840.3993528300565,841.20079270452061,841.56934236359371,843.84120997940829,845.76548809861299,846.48577998418421,162.12460422556987,158.04976708304707,152.09386132870893,147.57773619677923,144.95820204921262,144.42863992572029 +1999,7,28,12,0,722,227,11.5,900.36074684836217,13.591292338374684,21.151017832244708,148.6912986121374,0.0,278.5952638762451,946.28038942351782,1.0,278.5952638762451,560.78081883633581,1.3727596380848348,33.899999999999999,2.6000000000000001,931.65624593768223,932.42012311783401,932.75624554155763,935.0824628323013,937.05769287449607,937.79417784258874,173.65585936375356,170.14346372415238,163.86574613202239,158.63181360986349,154.98760355737315,153.87538007143255 +1999,7,28,13,0,552,292,12.5,814.19973997055172,9.251733121609268,18.912614336919592,190.4540961903647,0.0,252.11474423871138,855.21477073502194,1.0,252.11474423871138,507.70639057368351,1.380251117162501,33.899999999999999,3.6000000000000001,839.01950055441273,840.17332444230078,840.75328262360506,843.08294295997473,845.05160748179219,845.79359928557403,156.77595147914928,153.7693121619609,148.32863669139815,143.84583641628748,140.73204395506588,139.71906125737547 +1999,7,28,14,0,395,354,13.5,712.80837223079061,19.100223805344434,24.718168533168107,226.07474111481497,0.0,221.08404476609047,743.98617027277055,1.0,221.08404476609047,445.45374763378055,1.3596027175025918,33.899999999999999,5.2000000000000002,723.80035322360402,725.74902374364706,726.81677080862505,729.23540133105234,731.26431800741921,732.04116756114399,136.68200179122002,134.11857370809719,129.77673083217525,126.3873094765987,124.25899193683914,123.50656789023456 +1999,7,28,15,0,66,333,14.5,387.26942570760065,31.929332499090606,34.68792215176402,246.80124180735262,0.0,122.39753040175789,390.51242256942925,1.0,122.39753040175789,239.22800212009292,1.3047931671020474,33.299999999999997,5.2000000000000002,369.25391584161787,372.7747172459425,374.82216359414411,375.245669430399,375.62418516662348,375.7472261266895,73.24415933856271,72.363327249774088,71.222814340761303,70.436866095216402,69.872936467724074,69.506384228102576 +1999,7,28,16,0,6,199,15.5,203.16125542974586,45.186250041305264,46.08880751439796,259.9650379491053,0.0,64.139895075716524,200.83246190357792,1.0,64.139895075716524,124.26721107312254,1.1972390146016456,32.799999999999997,3.6000000000000001,186.99974870967503,189.58890308882667,191.1053646151405,190.92107278788575,190.78955339960498,190.71786615099546,37.646938657898666,37.421799608388639,37.236342023447023,37.091022778004465,36.89110566068112,36.644488119260174 +1999,7,28,17,0,41,222,16.5,243.771192695884,58.46040738798549,57.92663648504824,269.9415629720897,0.0,78.808434461540301,241.52798296854002,1.0,78.808434461540301,150.28447209109805,0.986717947040502,31.699999999999999,3.1000000000000001,224.28132597346163,226.79831661772735,228.26703717793524,228.43848533606422,228.59966443913868,228.644982318443,46.097288044228797,45.570111287140527,45.297487274380131,45.369048998773494,45.486145789571296,45.347719588008836 +1999,7,28,18,0,0,95,17.5,95.0,71.57698438786718,69.76800575690895,278.6618245157315,0.0,30.141654209595458,93.289038098393902,1.0,30.141654209595458,57.961822826265589,1.5,30.0,3.1000000000000001,86.242908461052608,87.520719789689323,88.269675940464268,88.134311810809294,88.032800600248365,87.982844047897515,17.56330306117248,17.538018786134998,17.533256748920802,17.504080907117931,17.404775763930353,17.252328094310059 +1999,7,28,19,0,0,19,18.5,19.0,84.35857959652313,81.3046081785521,287.13824760749736,0.0,5.9755767607584396,18.666416981642126,1.0,5.9755767607584396,11.556105093342595,1.5,30.600000000000001,4.0999999999999996,17.340562662482931,17.604926231227815,17.759986234490526,17.720449531126594,17.690058467462254,17.675883836711446,3.4888575570510794,3.4779081141748862,3.4720649288300094,3.4603441653670628,3.4371964918080846,3.4096966570867706 +1999,7,28,20,0,0,0,19.5,0.0,92.06840281305755,88.19609228825954,292.74102545020395,1.0,0.0,0.0,0.0,0.0,0.0,1.2259183071956024,22.199999999999999,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,29,6,0,0,0,5.5,0.0,89.24825794240961,85.70874857310525,69.52568631850231,0.0,0.0,0.0,1.0,0.0,0.0,1.5,21.100000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,29,7,0,101,110,6.5,134.52658331896535,78.38697350266074,75.9459298082558,77.01588908238406,0.0,48.872796152500207,126.61786411186547,1.0,48.872796152500207,83.445857070865998,1.4314157694747385,22.199999999999999,2.6000000000000001,107.08563068843307,108.31769371859033,109.03099277575139,109.29826760758787,109.5283983722283,109.61071711294743,29.184750365446195,29.230197909195688,28.953299997543617,28.577486215082704,28.141141118598355,27.74184910892993 +1999,7,29,8,0,362,171,7.5,328.37663011938616,65.41928413747624,64.2311173334798,85.53925366083645,0.0,114.4233161216585,321.53584264425115,1.0,114.4233161216585,204.4435906139646,1.5,24.399999999999999,5.7000000000000002,291.33186563528346,293.01733656913791,293.97729002350241,294.84839712862612,295.58466499667333,295.85983468785889,65.000246226787695,64.458790595234788,64.861824533840178,66.141921903408132,67.244710455360291,66.935436347131471 +1999,7,29,9,0,190,291,8.5,407.02704553278602,52.211992861677174,52.362132795131444,94.73474191429054,0.0,132.91202584592111,408.5500938040509,1.0,132.91202584592111,252.46678723141596,1.1104322569616534,26.699999999999999,1.5,385.10051662967192,387.94676028228832,389.59079717809334,390.36702810542556,391.03517701718692,391.27381967218378,79.039859228272235,77.252069015273648,75.930039347032462,75.660833316286002,75.895133154536268,75.996644505001143 +1999,7,29,10,0,382,300,9.5,589.70361504463847,38.92635946539388,40.67784540463366,105.94281091485291,0.0,191.39290928204946,604.68054804060125,1.0,191.39290928204946,367.04417805599638,1.2618772262678,27.800000000000001,2.1000000000000001,582.88901405883269,585.3419848234056,586.72596725029291,588.23498882503509,589.51606547594531,589.99101811274761,116.81792373068255,113.89427885228626,110.5506300086203,108.57840940920967,107.71030878234157,107.65986568476158 +1999,7,29,11,0,434,336,10.5,712.60743537369524,25.80452390176253,29.80073619318796,121.98138812657874,0.0,226.66115864860819,741.7909487621215,1.0,226.66115864860819,445.11751591132133,1.3408208739325618,27.800000000000001,3.1000000000000001,721.21645717322906,723.21228026646281,724.30690126089848,726.65054013884571,728.62020645734424,729.37055176339925,139.94235870906243,136.94654387209746,132.4568620591381,129.15772215436368,127.251471014553,126.71050528302906 +1999,7,29,12,0,30,246,11.5,273.9390776742797,13.744267974591354,21.361216250021158,148.99186456795147,0.0,85.731026575277767,276.39428893467976,1.0,85.731026575277767,169.31255972116824,1.3782409493919838,28.899999999999999,3.6000000000000001,260.27032893490048,262.99110688871724,264.57657604101797,264.91766413651663,265.21860907668429,265.31999468650127,51.162113721216727,50.795724809670098,50.155163937245113,49.640485427976088,49.179073928106128,48.800715999762268 +1999,7,29,13,0,642,292,12.5,898.48145901505393,9.477047178146202,19.147874469107663,190.36615978149194,0.0,286.21765865309874,944.16488618513381,1.0,286.21765865309874,559.56707121410068,1.3856670219209364,30.0,5.2000000000000002,927.57416844763952,928.73727096023038,929.30811514683319,931.62681402471594,933.59744757168335,934.33041132888707,177.95029457624079,174.6911053223628,168.59545991661372,163.31072242955665,159.58188478151948,158.31239503115719 +1999,7,29,14,0,766,177,13.5,871.72819650434712,19.227567955236193,24.91199221327562,225.7489953068005,0.0,277.79893294874279,913.78586416630094,1.0,277.79893294874279,541.73193159878076,1.3651717727835182,31.100000000000001,2.1000000000000001,900.35250529108964,901.15764473967567,901.51951382221364,903.34231676536194,904.90931388954721,905.4768872390714,172.9133383129932,169.20521858095822,162.98502050245938,157.76688162603025,154.25729483411956,153.24259822218258 +1999,7,29,15,0,739,162,14.5,768.49498567037267,32.0260139251153,34.84538609931102,246.48969793082483,0.0,251.80870780575384,800.04175910485014,1.0,251.80870780575384,478.42722031605109,1.310754868010409,32.200000000000003,2.1000000000000001,785.03390924441658,785.91512723822041,786.33627116758203,788.24798129351552,789.87733733601942,790.47757092612073,156.16413632696253,151.91367649261548,146.20131453678962,142.15098983832667,139.91110093479358,139.72592538158719 +1999,7,29,16,0,510,233,15.5,585.80351042323946,45.27669730940314,46.229490387832385,259.69956418895225,0.0,190.91480294364004,600.23976918461869,1.0,190.91480294364004,365.91983012274227,1.203872995296996,31.100000000000001,2.6000000000000001,578.18857005974735,579.85995052957151,580.78075363369373,582.71059656091234,584.33297154901288,584.94797229871165,116.31765288827063,112.58938024834319,109.0549575352815,107.58186664700024,107.46836027357716,107.91114106808206 +1999,7,29,17,0,0,76,16.5,76.0,58.55415184206404,58.06291981433163,269.71176745176086,0.0,23.902307043033758,74.79925505075208,1.0,23.902307043033758,46.358007432088698,0.9942794780979338,30.0,3.6000000000000001,69.362250649931724,70.419704924911258,71.039944937962105,70.928966919015679,70.845595875395915,70.804735972840646,13.963395497402598,13.925840921745216,13.902477956578329,13.863562325874936,13.780783746224929,13.670823040353909 +1999,7,29,18,0,154,138,17.5,190.90445052868512,71.67940022214489,69.9075836704163,278.4565926826838,0.0,66.777671853419577,184.22141274567241,1.0,66.777671853419577,118.41773074608321,1.5,31.100000000000001,3.1000000000000001,162.44335887038443,163.97552665389398,164.86061025047886,165.23448903253043,165.55309670023425,165.66937009313079,37.956057820999739,38.489984878294102,39.055727086766105,39.551011396728974,39.567463835949312,38.908656888612455 +1999,7,29,19,0,184,50,18.5,77.349284979256282,84.47291960268795,81.45202878371732,286.95019558652,0.0,33.985107616576343,64.846589041350569,1.0,33.985107616576343,48.360259006309086,1.5,29.399999999999999,2.1000000000000001,47.237187945937258,47.798589869154803,48.118669320013467,48.400048314513626,48.636155071565867,48.725960269840911,19.583176885395101,19.958063778674042,20.178283119597967,20.254733327703168,20.083040841079189,19.644155130795145 +1999,7,29,20,0,0,0,19.5,0.0,92.09810191119807,88.26591225021726,292.49641142887003,1.0,0.0,0.0,0.0,0.0,0.0,1.5,27.800000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,30,6,0,0,0,5.5,0.0,89.2701957453615,85.77292047042864,69.78051099576889,0.0,0.0,0.0,1.0,0.0,0.0,1.4966473628598571,21.699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,30,7,0,249,100,6.5,159.91268903360626,78.48150862858233,76.07726473273642,77.22359380155555,0.0,62.154269579698685,146.71798053586761,1.0,62.154269579698685,99.755249512265351,1.4378019625966822,24.399999999999999,2.6000000000000001,117.44560728790829,118.51458843420697,119.12458623217965,119.62464360209412,120.04713256462766,120.20560541664824,37.385755486868462,37.551595251818988,37.116190565878703,36.478715758086686,35.741339555967727,35.114251562437715 +1999,7,30,8,0,418,148,7.5,328.89995944812455,65.5028697563793,64.35620060708547,85.76788581882334,0.0,116.11675902831655,322.75053372955665,1.0,116.11675902831655,205.95511855304406,1.5,27.800000000000001,2.1000000000000001,290.77417787298373,292.07144867386421,292.79995200573751,294.0757750203399,295.14051688978316,295.55115570142868,65.930696583330999,65.235466456553397,65.613156986733074,67.05180320528271,68.418887020288949,68.21237539118323 +1999,7,30,9,0,483,211,8.5,505.11480502691131,52.289307814816944,52.48758332862158,94.99476324493176,0.0,168.240614437028,512.36995996608596,1.0,168.240614437028,315.71078921410412,1.1179159065690873,30.600000000000001,3.1000000000000001,487.41835760387733,489.05450207174368,489.96509724310107,491.70337270682938,493.16334871454671,493.71787525996234,101.22788648495222,97.901857732203339,95.328060615271866,94.767653391090619,95.341612479341762,95.894900189708792 +1999,7,30,10,0,576,211,9.5,646.93776755676276,39.00461739809451,40.813909732982495,106.2484667854484,0.0,205.9648946713184,670.17025041512147,1.0,205.9648946713184,404.57657298087861,1.2684061201658967,32.200000000000003,4.5999999999999996,651.43473735837267,652.64927038753058,653.28922632663887,655.56370487065305,657.47075945195729,658.19968844103607,127.07471863113631,123.37664063445791,118.97524373628362,116.35814480470873,115.257757596009,115.38006522167457 +1999,7,30,11,0,700,205,10.5,811.43393813494572,25.898889117650842,29.964595917422624,122.3380122676235,0.0,258.55148598177709,849.80445521528668,1.0,258.55148598177709,505.9471372974549,1.3467510142553132,32.799999999999997,4.5999999999999996,834.59541929432976,835.44758315414526,835.84644802903756,838.14230013168356,840.08552957277709,840.81468120511147,160.88758692838277,157.20371442774149,151.36358440655144,146.80163104167434,143.93250880995507,143.19360991901371 +1999,7,30,12,0,674,250,11.5,876.77533376730457,13.901260214240533,21.575512994595005,149.29869466711077,0.0,279.36858526905604,922.32124686915154,1.0,279.36858526905604,546.36074087922304,1.3838598478542115,34.399999999999999,4.0999999999999996,906.84239039250326,907.77324863389947,908.20855738490616,910.57358217343062,912.57977190339568,913.32933723115104,173.8892775429519,170.66303161860418,164.60987750240554,159.37218911784623,155.69160852465671,154.45336703280577 +1999,7,30,13,0,552,294,12.5,814.69547820373577,9.70851441717451,19.38856872107985,190.2851939984501,0.0,252.28078739593562,856.77062112162628,1.0,252.28078739593562,508.00252678225485,1.3912142301728092,35.0,3.1000000000000001,840.40819036488085,841.59534541674213,842.19434834293816,844.52217395476043,846.4891806237116,847.23066742148626,156.83535593974003,154.18698736902351,148.94032992698604,144.26557774908358,140.98653626955598,139.76178494349253 +1999,7,30,14,0,640,256,13.5,835.50696832326025,19.36162605602674,25.11204010075844,225.42541321157157,0.0,266.1547045940971,876.94657288602798,1.0,266.1547045940971,520.99029442137203,1.3708727689556401,34.399999999999999,3.6000000000000001,860.65478694527769,861.74216078475501,862.27723526699049,864.66067128479608,866.67737421619597,867.43514021392377,165.4951521271926,162.12812703532055,156.33247007785465,151.58624665730841,148.44418917030714,147.46537246862096 +1999,7,30,15,0,716,159,14.5,745.45003753948424,32.128200715278034,35.00876418368445,246.17655602278037,0.0,237.50203607794651,776.80023522000283,1.0,237.50203607794651,464.22587289998523,1.316855902212873,35.600000000000001,2.1000000000000001,762.04364014943576,762.90258114160565,763.31578584837064,765.22398514256906,766.84586728472232,767.44744757851038,147.47207705400567,143.53682615175131,138.1401868000961,134.23395705925793,132.00963367506299,131.7690656165571 +1999,7,30,16,0,617,166,15.5,591.68496894592283,45.37204874484797,46.375668160664574,259.4314817638469,0.0,193.57482645729831,608.89301345417459,1.0,193.57482645729831,370.01555770405298,1.2106611673078003,35.600000000000001,3.6000000000000001,589.295047457598,590.26239424103358,590.76242326934175,592.83281439709287,594.57070334449054,595.23224380705585,118.68426883934347,114.61283868258927,110.62358190667521,108.74462935068757,108.45927245153662,108.96479983937613 +1999,7,30,17,0,475,167,16.5,417.27283744792828,58.65252063629773,58.20442310674642,269.47922824988535,0.0,142.12432400249921,417.93558121764499,1.0,142.12432400249921,260.96716627848087,1.0020154007581492,34.399999999999999,2.6000000000000001,390.40412664207059,391.76131184155747,392.51836085432262,394.00991440006158,395.26125211133899,395.73836193698719,83.491432658764239,81.052182983718566,79.791417848992921,80.361616800671754,81.618760586526449,82.133049492696173 +1999,7,30,18,0,343,113,17.5,230.01899228922917,71.78633071477508,70.05223904376196,278.2487130943194,0.0,85.278353249634776,219.81013471085029,1.0,85.278353249634776,144.37504570231511,1.5,32.799999999999997,2.6000000000000001,187.20824003155286,188.25039311973347,188.83574224176397,189.8534727575647,190.69657277424432,191.02692272218894,47.773334264890053,48.814362753558733,49.929819612460314,51.004456421861818,51.271148388286591,50.24997120695096 +1999,7,30,19,0,173,47,18.5,72.259191021973521,84.59169957139852,81.60441001666256,286.7596586108938,0.0,31.653754721312936,60.635715136769051,1.0,31.653754721312936,45.195960475729287,1.5,32.200000000000003,1.5,44.171680470065681,44.701224090950447,45.003273942810402,45.272750524373372,45.498664085062231,45.584807987150967,18.270443014453559,18.618588005596717,18.811683988532703,18.868294834543629,18.694521897460628,18.28428231249957 +1999,7,30,20,0,0,0,19.5,0.0,92.12898709662521,88.33772347175139,292.24741579498414,1.0,0.0,0.0,0.0,0.0,0.0,1.5,28.899999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,31,6,0,0,0,5.5,0.0,89.29166725980876,85.83766207358211,70.04119858793747,0.0,0.0,0.0,1.0,0.0,0.0,1.4798875755710208,25.600000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1999,7,31,7,0,304,97,6.5,169.46421674714179,78.57617102323277,76.20969469415681,77.43673300361134,0.0,66.823385727984302,154.433989546866,1.0,66.823385727984302,105.60837134227907,1.4446972304018124,28.300000000000001,2.1000000000000001,121.99896288029696,123.03855400737955,123.62892636253289,124.11784896219868,124.53268942990491,124.68670833725767,40.247540876430925,40.429777167281209,39.937192188003806,39.199909668787896,38.352227536307147,37.655684841238852 +1999,7,31,8,0,487,140,7.5,349.7939576576145,65.58655104082877,64.48239471183533,86.00216791516213,0.0,124.11455690945304,343.00800954959141,1.0,124.11455690945304,218.75197773536649,1.5,30.600000000000001,2.6000000000000001,308.91972301511987,310.13870443927328,310.81764182470368,312.06698230670042,313.11247090816778,313.51298057310112,70.356039515130362,69.564911886476764,69.990021218421319,71.566119794907195,73.064334438627228,72.857746188505757 +1999,7,31,9,0,544,188,8.5,518.30403974171895,52.3668720753497,52.61437250677119,95.26086573754135,0.0,173.06263942401594,526.29950802189296,1.0,173.06263942401594,323.68205118565078,1.125632057261989,31.699999999999999,3.6000000000000001,501.73567428272008,503.16791601173918,503.95538818962547,505.63331548334025,507.04622409602212,507.5794841343228,104.21940035952268,100.63682640971344,97.885156967845063,97.259325456379884,97.854135423431742,98.480425410794751 +1999,7,31,10,0,606,202,9.5,659.6880115583815,39.08358033698638,40.9518416776023,106.56079442466138,0.0,210.05677127418909,684.08145589590322,1.0,210.05677127418909,412.37310308885571,1.2751151589724663,33.899999999999999,2.1000000000000001,665.60816135183552,666.74512059185713,667.33720506384793,669.59008617929703,671.48107372235336,672.20200971852,129.66795407898837,125.83860462395172,121.29565530525315,118.57887018482818,117.4290895231899,117.5675153950107 +1999,7,31,11,0,633,220,10.5,767.46751556082188,25.99503224607732,30.131269232797266,122.7015731264336,0.0,244.49071151481058,804.24769316650179,1.0,244.49071151481058,479.01111158611081,1.3528330780797686,35.600000000000001,2.6000000000000001,788.54664908350696,789.51306252845882,789.98596175464934,792.33236584489759,794.3117331650883,795.06017428263408,152.0272805367689,148.62370561036715,143.1859860716593,138.97353052077742,136.33790167201025,135.63253861732068 +1999,7,31,12,0,649,231,11.5,833.61304724318802,14.062332749154981,21.793878827337533,149.61140823297364,0.0,257.98056805869174,878.18758876981997,1.0,257.98056805869174,519.74329405289529,1.3896157370312738,36.100000000000001,1.5,863.58416747261742,864.39162651468996,864.76175745285423,867.10856750346693,869.09335781282937,869.84022140047966,160.73440413412152,157.91108896919798,152.34206420409203,147.35813553663519,143.87031465040408,142.61513341911095 +1999,7,31,13,0,636,245,12.5,844.01954482996905,9.946013596553684,19.634613126366222,190.21109080553873,0.0,261.20909053214973,889.84502295646644,1.0,261.20909053214973,526.17025725547194,1.396892239938566,36.100000000000001,2.1000000000000001,875.05492383981573,875.89303247330201,876.28004612247025,878.63529107877707,880.62794121044658,881.3771265639283,162.72413356272548,159.86830761083877,154.2398851968438,149.20004917705285,145.6706787491016,144.39991033414844 +1999,7,31,14,0,646,222,13.5,805.94932932735935,19.502418948448977,25.318256757862276,225.10429013248614,0.0,249.4445169432671,847.54715506158141,1.0,249.4445169432671,502.70073098013017,1.3767054134208752,36.700000000000003,1.5,832.73617860130605,833.58109553082852,833.97802035848304,836.32180171703192,838.30143966657772,839.04852978067538,155.38617982465126,152.32532302345271,146.78815015990949,142.2210187361687,139.06019487349434,138.06224464616434 +1999,7,31,15,0,668,182,14.5,728.00036282191854,32.23593083920815,35.17803576314925,245.8620828562156,0.0,231.94897601466843,760.26954756597138,1.0,231.94897601466843,454.32295046930574,1.323096374387946,36.700000000000003,4.0999999999999996,744.97113448609605,745.78989954255189,746.18146905917831,748.38453882213344,750.24341182786509,750.94491407213434,144.09845985242308,140.29190527314501,135.01075912978899,131.24481627761838,129.13889673991014,128.90600075150016 +1999,7,31,16,0,593,183,15.5,590.98905453286761,45.47232803199669,46.52732773068999,259.1609774028309,0.0,193.18111134512839,608.48434108288325,1.0,193.18111134512839,369.75085828145598,1.2176044302246505,36.700000000000003,3.1000000000000001,587.96019563226935,589.08751726338312,589.6829510201859,591.81731565905511,593.60668985272696,594.28987726570267,118.3456856873326,114.38024991907197,110.4801433839387,108.66055805035504,108.39492425251906,108.86977016876511 +1999,7,31,17,0,270,216,16.5,357.67229429949072,58.755521218598034,58.35112920512811,269.24408015151647,0.0,119.70107942325718,357.6578409325424,1.0,119.70107942325718,223.02062994715232,1.0099283267296961,36.100000000000001,4.0999999999999996,332.91238174915088,334.94301267420008,336.10823725438945,337.18343389562665,338.08985809548324,338.43132974509007,70.270054139170796,68.64185861939194,67.782001244406473,68.152778946456067,68.939575298358292,69.162611280475005 +1999,7,31,18,0,228,132,17.5,209.22495898730023,71.89776754758316,70.20194620728496,278.03828802089123,0.0,75.103361078569222,201.37198762528791,1.0,75.103361078569222,130.59480945732042,1.5,35.0,4.0999999999999996,174.54450171377172,175.90381907695809,176.68248048186416,177.366843099167,177.93840667989809,178.15794303434222,42.406732921668613,43.135767064515854,43.924303001563359,44.677324440115001,44.824783643059533,44.02714125962747 +1999,7,31,19,0,0,38,18.5,38.0,84.71488944918993,81.76170937926388,286.56671659730847,0.0,12.071614813661878,37.216656774784362,1.0,12.071614813661878,23.153815034217661,1.5,31.100000000000001,3.1000000000000001,34.384653894788677,34.906960780108413,35.213199163028285,35.148541129786672,35.099452597311938,35.075931173602896,7.0470664375789598,7.0315699314072102,7.0226807130307671,7.0018219403394335,6.9560070907986526,6.896846399075871 +1999,7,31,20,0,0,0,19.5,0.0,92.16100695976772,88.4114626945159,291.99412778404394,1.0,0.0,0.0,0.0,0.0,0.0,1.495480122999691,30.0,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,1,6,0,0,0,5.5,0.0,89.31226296280784,85.90218267156115,70.30545175522717,0.0,0.0,0.0,1.0,0.0,0.0,1.463985064342248,18.300000000000001,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,1,7,0,264,100,6.5,162.33899854677657,78.66965929689582,76.34160668877912,77.6535837155429,0.0,62.414374106288726,148.91387190146901,1.0,62.414374106288726,101.23281200814023,1.4521043385119254,19.399999999999999,5.2000000000000002,118.54919611002977,119.61868058511637,120.22877636414053,120.72335711701957,121.14148124142017,121.29810689215128,37.534239068511575,37.727322375575355,37.301168360924002,36.65925445419132,35.90109240840026,35.251999835478927 +1998,8,1,8,0,494,132,7.5,343.83049763520057,65.66913298480593,64.60814742263793,86.24017910696578,0.0,122.21706497469012,337.40325170083713,1.0,122.21706497469012,215.00947205202766,1.5,21.699999999999999,5.7000000000000002,303.63722220465348,304.77884436958652,305.4126844081627,306.63373094924111,307.65613310937977,308.0472814968075,69.433287675316052,68.490065876843957,68.786953922597249,70.30318869872427,71.790364682724316,71.666357971820744 +1998,8,1,9,0,642,143,8.5,531.67939971252576,52.44355970003557,52.740956127350046,95.53085811370268,0.0,173.89506869083527,541.75722772377583,1.0,173.89506869083527,332.53657867633621,1.133517230323885,23.300000000000001,7.2000000000000002,517.87170127481545,518.78610591064557,519.26505092100615,521.14360347636602,522.71973529245679,523.31986762600002,105.1711274410968,101.25947831008251,98.18365968580116,97.444577722862334,98.023050119237141,98.799536663252184 +1998,8,1,10,0,715,159,9.5,697.87967668069291,39.162132355325895,41.09002135500526,106.87724156867866,0.0,228.6853199218952,724.75171042373063,1.0,228.6853199218952,435.37516086945453,1.2819462428658062,25.600000000000001,4.5999999999999996,708.06101299169904,708.84629929578841,709.22115649156956,711.27825606868078,713.01740970447804,713.66951333652685,141.47665196035672,137.19156242009066,132.04239958001639,128.796647118062,127.30085395020518,127.40978412951253 +1998,8,1,11,0,748,179,10.5,824.82696739981543,26.091721452359195,30.298922719276614,123.06920328707996,0.0,255.31391338514695,863.72466134960803,1.0,255.31391338514695,513.07218444181649,1.3590129058494678,27.199999999999999,6.2000000000000002,849.11300924522004,850.0460195134408,850.49374003086439,852.39983173156838,854.0264223737986,854.62536109645521,158.86264003389252,155.33548439701448,149.62715824030781,144.95570384418352,141.96361041493745,141.138004046471 +1998,8,1,12,0,782,176,11.5,900.98559740499593,14.225732685740262,22.014112570582466,149.9279824008443,0.0,278.77975585530282,948.31145565605357,1.0,278.77975585530282,559.60186422274546,1.3954564012015642,27.800000000000001,6.2000000000000002,935.35353386057193,936.09558494573912,936.41773552653422,938.19111400107386,939.71858390315128,940.26954951593132,173.68052665764483,170.49311803264371,164.40950834684529,158.8314123453217,154.86274933482701,153.5048699590121 +1998,8,1,13,0,804,166,12.5,922.06916741330656,10.187414037875879,19.883765110217617,190.14569429728965,0.0,285.25455179685122,971.70395165218588,1.0,285.25455179685122,572.41621042935469,1.4026487985140195,28.300000000000001,6.7000000000000002,959.42691886286764,960.06104499685694,960.31522382958758,962.02641453544777,963.50545252436712,964.03460180312663,177.81253061835912,174.85303823203796,168.75717480129583,162.86090593070145,158.46641878611396,156.80645338832301 +1998,8,1,14,0,796,159,13.5,877.28449047625054,19.649039774489452,25.528975690866982,224.78959062198913,0.0,279.61027699254845,922.1298276784994,1.0,279.61027699254845,545.05309836678816,1.3826153394957583,28.899999999999999,3.6000000000000001,909.38146773153653,910.06547135794915,910.35349566565355,912.13663300802762,913.67207213523557,914.22615380595255,174.15927533460763,170.78204423062579,164.5982601789421,159.14035655610041,155.25982001739163,154.02098190895782 +1998,8,1,15,0,727,175,14.5,767.95066509321282,32.348660441815035,35.35197897718897,245.54985528231774,0.0,244.70672137725771,802.53246530338492,1.0,244.70672137725771,478.8033792221575,1.3294173221958683,28.899999999999999,5.7000000000000002,787.27639295927167,788.0497141290582,788.40816326854451,790.56903551326741,792.39824248380683,793.08386793080456,152.21792524584072,148.4034010157024,142.82199710475481,138.59519697660375,136.14599520480047,135.64747976492598 +1998,8,1,16,0,676,156,15.5,619.75534905867676,45.57705886129525,46.68344370448848,258.89101977396496,0.0,202.88716524204719,638.80014787946129,1.0,202.88716524204719,387.13987627270978,1.224635975635604,28.899999999999999,5.7000000000000002,619.08696361233251,619.97558993082748,620.42444632776824,622.43645724931434,624.13026001093635,624.77078703090433,124.7094591793886,120.49688847248042,116.1619984751911,113.94514236911702,113.39079263739127,113.82772869623446 +1998,8,1,17,0,587,132,16.5,438.68863082458859,58.862640042276034,58.502063618003326,269.00886489770306,0.0,150.59829919961425,440.85253563122632,1.0,150.59829919961425,274.86667502116569,1.0179393439068745,27.800000000000001,5.2000000000000002,411.95679661628657,412.90200130416838,413.41076371667589,415.13876191135591,416.58481999628111,417.13929278367044,88.816214249430018,85.938898468338039,84.326704701293124,84.819484793862003,86.218948250576958,86.899424776560565 +1998,8,1,18,0,274,122,17.5,214.11330602434316,72.01310220795368,70.35569398971091,277.82758564760724,0.0,77.621028813412451,205.48944134953126,1.0,77.621028813412451,133.52765147012502,1.5,26.100000000000001,4.5999999999999996,177.1898617605552,178.4536249816255,179.17442546135544,179.82795334043715,180.37511389296279,180.58396159647043,43.681447759153009,44.426604416351644,45.286885089152797,46.140112109874671,46.331057145391085,45.523567089153886 +1998,8,1,19,0,222,44,18.5,75.1925441843985,84.84174090901129,81.92281735363328,286.373463821124,0.0,35.322119299762043,60.752363416190455,1.0,35.322119299762043,47.474188432122446,1.5,24.399999999999999,3.6000000000000001,40.682891340913287,41.129657762583285,41.380634348223523,41.813014368409263,42.171716063799856,42.312069056476481,20.46300263312537,20.909301712313361,21.118346112491288,21.153329479834522,20.927034909329926,20.422205680482879 +1998,8,1,20,0,0,0,19.5,0.0,92.19400114630625,88.48655821472876,291.7390702654408,1.0,0.0,0.0,0.0,0.0,0.0,1.5,22.199999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,2,6,0,27,6,5.5,7.8984753797095077,89.33276076139938,85.96798304162546,70.57755886250763,0.0,4.2969497241813821,4.9231228612525051,1.0,4.2969497241813821,5.1023716083741855,1.4480947442102163,16.100000000000001,3.1000000000000001,3.824556472601047,3.8822286346169697,3.9147919407547263,4.0011555403668382,4.0722345655512431,4.1006003927121064,2.5149537330330825,2.5358585709597041,2.5380519168215989,2.5478542628721845,2.5439429935799414,2.5049439938488285 +1998,8,2,7,0,81,101,6.5,119.94193671062702,78.76448053615621,76.47609300426586,77.87733798583233,0.0,43.099814771551635,113.60731682614276,1.0,43.099814771551635,74.437619055844351,1.460060498614757,17.800000000000001,4.0999999999999996,96.354128420810895,97.498871325113385,98.162557275181598,98.416412627372296,98.63394358550255,98.712686583233847,25.65966096749915,25.746869454871252,25.551622712646726,25.264559770278083,24.892432519118447,24.528738705265969 +1998,8,2,8,0,0,120,7.5,120.0,65.75297132208601,64.73647726428099,86.48545224737377,0.0,38.010654159469702,118.04936353747772,1.0,38.010654159469702,73.255371176595375,1.5,19.399999999999999,3.6000000000000001,109.32728444650184,110.92706317252792,111.86471229865283,111.7074237278714,111.59039478447312,111.53185326818327,22.165055064325514,22.088919341515968,22.059751624913009,22.028221417942742,21.930092435741667,21.763623489018066 +1998,8,2,9,0,135,274,8.5,355.48872881434795,52.52165355633463,52.870381284507424,95.80872776265161,0.0,115.67844435113322,357.4476549674564,1.0,115.67844435113322,220.69741958896847,1.1416976001468184,21.100000000000001,4.5999999999999996,335.81267134871348,338.53106385579804,340.10505029713909,340.86201682135834,341.50916456319555,341.7443496523079,68.944998330041983,67.542838869201816,66.383823505537805,66.067145435928325,66.124829436550598,66.131616067069558 +1998,8,2,10,0,327,319,9.5,564.92052905448918,39.24261320325151,41.23168378613624,107.20235542937222,0.0,179.35772883574359,580.29584543994758,1.0,179.35772883574359,351.8759233451961,1.2890129360494489,23.300000000000001,4.0999999999999996,557.84431385264838,560.44796464733702,561.92583435516951,563.47326469037228,564.78145882231524,565.27172938226067,109.49181055845398,107.07326876884969,104.05339251941049,102.15198478351249,101.17497993186088,100.9944025900501 +1998,8,2,11,0,489,298,10.5,719.46127211426165,26.191619653789985,30.47121990060642,123.44576299236125,0.0,228.92979770523311,752.0243257033992,1.0,228.92979770523311,449.28959992846529,1.365395823348732,24.399999999999999,4.0999999999999996,732.74779287342142,734.48745875480597,735.42722557367597,737.74389562187855,739.69330233443998,740.43479177078302,141.68621878708655,139.08339039038702,134.5150565903825,130.84829134783405,128.42491430911821,127.56495304776625 +1998,8,2,12,0,625,285,11.5,863.50204197374262,14.395113770642386,22.24050097717546,150.2512837346843,0.0,275.04226534753201,909.12470446270049,1.0,275.04226534753201,538.11402214798761,1.4014834193648837,26.100000000000001,3.6000000000000001,892.2714795562872,893.49072611090082,894.09902758739622,896.44869831375513,898.44030496602909,899.18558517143583,170.93346532475178,168.17979953802197,162.56359201243268,157.39009834387744,153.63608524404606,152.19304934355117 +1998,8,2,13,0,594,281,12.5,838.67857390834808,10.436565406468334,20.140213913894105,190.084852259825,0.0,259.66490405540094,884.30843164199337,1.0,259.66490405540094,522.84837483916556,1.4085859598334318,27.199999999999999,6.2000000000000002,868.14094253993403,869.25380852312821,869.80461461092102,872.15855271476914,874.14893166732236,874.89809680913413,161.51946614017996,159.06103796779115,153.77217203998222,148.80500030142193,145.15082810479106,143.65607542716617 +1998,8,2,14,0,389,356,13.5,706.37959702401065,19.803265418097446,25.747293755599514,224.4741506331067,0.0,219.11671695362335,739.43635902909193,1.0,219.11671695362335,441.44488711677894,1.3887095292937772,27.199999999999999,4.5999999999999996,719.04443355786566,721.04457799157694,722.14267929606149,724.54505131711846,726.56029661990465,727.33231064596339,135.42115669457405,133.43510258036517,129.36410258119102,125.8398699185512,123.37546546314962,122.31853940201296 +1998,8,2,15,0,638,214,14.5,733.19284124147759,32.467517144851506,35.532905319861555,245.23348920708065,0.0,233.52203434260045,766.28082159646181,1.0,233.52203434260045,457.81714451936648,1.3359361645471592,27.800000000000001,5.2000000000000002,749.2866869618116,750.36485668536261,750.90967970915949,753.22754211971142,755.17978885688683,755.92006300730679,145.00911413465855,141.53363491583252,136.38820062133442,132.54619714958571,130.33955720653699,129.84290150971603 +1998,8,2,16,0,646,166,15.5,607.83951814463046,45.687202485192074,46.84596304392343,258.61623104523824,0.0,198.87455273981794,627.06106423129177,1.0,198.87455273981794,379.9389571030556,1.2318913829618094,27.800000000000001,4.5999999999999996,606.92564555575871,607.90563129594807,608.41047947291406,610.47360714843433,612.20739234009079,612.86583886772166,122.18176226928576,118.12225423616269,113.92884417879375,111.80332035005175,111.28512516546067,111.69506890877526 +1998,8,2,17,0,586,128,16.5,432.79586614804401,58.974869737930526,58.65906388526351,268.7689107148751,0.0,148.63538530267851,435.39196133564064,1.0,148.63538530267851,271.17732346745225,1.0262136602333214,26.100000000000001,3.6000000000000001,406.71611543056537,407.62410453615894,408.1114346235226,409.81626907444678,411.24298626821906,411.79000325648121,87.660333870474261,84.807538932214669,83.209977178207012,83.697654239439245,85.084909907384429,85.762487710959562 +1998,8,2,18,0,490,85,17.5,248.44144278201117,72.13347294500824,70.51537073457054,277.6123853064426,0.0,94.587494543829692,236.4227619396388,1.0,94.587494543829692,156.27021561644861,1.5,25.600000000000001,4.5999999999999996,197.43165835876587,198.14362775037833,198.52850738017298,199.72884579092346,200.72152205231129,201.11207544516154,52.59750827113136,53.838642428514035,55.244143385473016,56.660514790922072,57.072173124961878,55.916350818071223 +1998,8,2,19,0,231,42,18.5,73.790550120478613,84.973605997587,82.08976811573564,286.1759596069543,0.0,34.484949374248437,59.151453207962838,1.0,34.484949374248437,46.576241994038725,1.5,23.899999999999999,4.0999999999999996,39.05695974072578,39.482712676239508,39.721434819720656,40.140854156744155,40.488882181522349,40.624942631254875,20.025558453659276,20.469937423262714,20.657314459360268,20.656718893239042,20.406619572106631,19.904691355840711 +1998,8,2,20,0,0,0,19.5,0.0,92.22809968106355,88.5639208332444,291.4774930342242,1.0,0.0,0.0,0.033061436671524544,0.0,0.0,1.5,21.100000000000001,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,3,6,0,87,5,5.5,11.016893438297432,89.35274685321403,86.03427570169086,70.85526592825028,0.0,7.8171393674296574,4.4177154760233073,1.0,7.8171393674296574,7.1553328107197132,1.432688856371648,15.6,3.1000000000000001,2.6107796092866216,2.6491782776960955,2.6687726513540264,2.8006366763530797,2.9094931954456102,2.9526210187304121,4.567438646003998,4.6064470939452855,4.6116192131819957,4.6231783548173171,4.6054297392174517,4.5262534885409673 +1998,8,3,7,0,265,94,6.5,155.36123632448647,78.85933372251543,76.61154800107761,78.10631285259234,0.0,59.857843095285581,142.58019209853001,1.0,59.857843095285581,96.892018904112476,1.4685738375251782,17.800000000000001,4.0999999999999996,112.84932129376342,113.85964990741104,114.43547541113607,114.91200209982478,115.31469648118767,115.46570263927363,35.956374130051387,36.192523941647579,35.820279288880919,35.217559721104003,34.468889260101612,33.822080416141844 +1998,8,3,8,0,519,124,7.5,344.43967262665478,65.83687173485261,64.86583986536682,86.73610765309381,0.0,122.72892809481105,338.54702776902189,1.0,122.72892809481105,215.28760428181522,1.5,21.100000000000001,4.5999999999999996,304.28639208971151,305.35356194549013,305.94315387324571,307.12691858475409,308.11958904265219,308.49802266529821,69.872484613689352,68.769208287568446,68.947114298080209,70.403151235536583,71.920323069401675,71.868518447793321 +1998,8,3,9,0,630,147,8.5,526.13368675484048,52.6000299692047,53.00111345536191,96.09232705490173,0.0,172.02578514637847,537.24430821202236,1.0,172.02578514637847,329.16849677557326,1.1501116037060726,22.800000000000001,4.0999999999999996,513.11010589998978,514.06916019731045,514.57483891809159,516.47133000122676,518.06135596294178,518.66787450130028,104.31766038908913,100.50953485334804,97.371659130920889,96.482777644489389,96.904300128637672,97.605251870625139 +1998,8,3,10,0,685,171,9.5,685.02193445063608,39.32391280576219,41.37522237062841,107.53363091304567,0.0,224.35391427337967,712.64309239785746,1.0,224.35391427337967,427.64383112472899,1.2962585988804711,25.0,4.5999999999999996,695.34067137167517,696.22638191249507,696.66218096545731,698.78799107725285,700.58147468596405,701.2578089228515,138.94667172602905,135.01057968424561,129.97770696467182,126.69216654235605,125.02621561104557,124.99201484502196 +1998,8,3,11,0,724,196,10.5,818.87890881018257,26.29350736204479,30.64634625291989,123.82843641126978,0.0,260.94081590690985,860.48662352234965,1.0,260.94081590690985,510.43320854920194,1.3719288978639566,26.699999999999999,4.0999999999999996,845.51998638564885,846.32710540331732,846.69732242997418,848.9568352221205,850.8718477731519,851.58877455876052,162.46787185082667,159.07352720395977,153.2572481215646,148.47164432531059,145.30303391391914,144.34920781563349 +1998,8,3,12,0,788,173,11.5,901.17029246688185,14.568741619443912,22.47086994879769,150.57935462052035,0.0,278.83178679986202,950.10103517251252,1.0,278.83178679986202,559.72245410921869,1.4076456854460426,28.300000000000001,5.7000000000000002,937.19706188363432,937.92638109012159,938.24012162843019,940.01563633126625,941.54450760605346,942.09630241377602,173.72894290015364,170.87630628930307,164.97085348401222,159.27901233462379,155.04174813211591,153.42244077140916 +1998,8,3,13,0,792,174,12.5,916.31886617290206,10.691388823456101,20.40175770097535,190.03046947573196,0.0,283.50192391972757,966.985985619232,1.0,283.50192391972757,568.94985160798421,1.414652540383861,28.899999999999999,5.2000000000000002,954.32519999129727,955.02305328728448,955.31599864741668,957.05561222556616,958.55699997358863,959.09598680487386,176.66647742325881,173.74675765897763,167.7211790197245,161.90125354215365,157.56464883726645,155.91688989519662 +1998,8,3,14,0,790,167,13.5,877.21893360901231,19.964231771591066,25.971589072048392,224.16193603509225,0.0,271.43695040036783,923.36545718589298,1.0,271.43695040036783,545.09660259511111,1.3949347100650473,30.0,5.7000000000000002,910.15963460791431,910.91039117364232,911.24090225923044,913.05904645759927,914.62031401624222,915.18748997397722,169.09627551711904,166.01261826621766,160.1034286945553,154.70145760855036,150.86522899447579,149.54337967595745 +1998,8,3,15,0,698,184,14.5,750.6946831099541,32.59199609671108,35.719635212428095,244.91654683048932,0.0,232.36681867200832,785.77336911037821,1.0,232.36681867200832,468.30796279007785,1.3425951320285934,29.399999999999999,4.0999999999999996,770.06508626242726,770.9127143068979,771.32000109955538,773.53120580237248,775.39704932668587,776.10179192210489,144.60322332137025,141.17619924636978,135.87435714893084,131.85884031822209,129.43438339339218,128.88845388990771 +1998,8,3,16,0,706,138,15.5,619.36556249084015,45.8023185904592,47.01390023362241,258.33956137040366,0.0,197.31983335119043,639.66459016911494,1.0,197.31983335119043,386.57625297995509,1.2393052449279056,29.399999999999999,4.0999999999999996,620.7023212972158,621.45006874575358,621.81686999989824,623.71126723167129,625.308081308331,625.91003541138627,121.55282504880694,117.41204442660465,113.07403832753553,110.75772883138984,110.05790440799623,110.48494203936148 +1998,8,3,17,0,627,113,16.5,437.60453103470013,59.09173090170146,58.82119363435951,268.52674024251513,0.0,150.66489957482202,440.46023725715713,1.0,150.66489957482202,273.87419301898774,1.034674159975513,28.899999999999999,4.0999999999999996,411.83569398376432,412.59962904326829,413.00015744461007,414.60628619304316,415.95424777381277,416.46733181599024,89.190165403151525,86.092898182487659,84.256016902946513,84.604679192828812,85.913717657785767,86.661741664790299 +1998,8,3,18,0,478,90,17.5,248.14332883068406,72.25830434991495,70.68000225177052,277.39493655099017,0.0,93.860298503285506,236.02406580596784,1.0,93.860298503285506,155.2496331284261,1.5,27.800000000000001,4.0999999999999996,198.1279967379418,198.94146461802595,199.38736669940786,200.29590153563379,201.05259957557175,201.34510311930049,52.223646214283526,53.276826073534458,54.598905712823694,55.944573781747302,56.371705059489116,55.305119047673948 +1998,8,3,19,0,205,42,18.5,69.60371915159439,85.10976664873998,82.26148609269795,285.97628042784595,0.0,32.42866483586657,56.355242938822983,1.0,32.42866483586657,43.986635913492442,1.5,25.0,3.6000000000000001,37.795906752277048,38.223323308658408,38.463926307474495,38.879221257009164,39.223541343323575,39.358448987115388,18.897485727605929,19.291383455348413,19.427891279973824,19.407038414848184,19.164626243127127,18.705165316732074 +1998,8,3,20,0,0,0,19.5,0.0,92.26313800081286,88.64298021396486,291.2118873022115,1.0,0.0,0.0,0.10042246927637363,0.0,0.0,1.5,21.699999999999999,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,4,6,0,80,5,5.5,10.439780432596967,89.37220772825599,86.10103574200657,71.13848236712943,0.0,7.2734101551793113,4.3055040326298428,1.0,7.2734101551793113,6.7998424935887405,1.4178026929131908,16.100000000000001,3.6000000000000001,2.6064004659655295,2.6448941989480907,2.6647722418044735,2.7966809634424954,2.9054264625532737,2.9486493135069707,4.2538178082749543,4.2910738582840464,4.2947815648789316,4.3056299680067269,4.2900493510119633,4.2170278020317786 +1998,8,4,7,0,252,98,6.5,155.76734834585704,78.95419117258241,76.74793282642692,78.3404328207316,0.0,59.657965411984883,143.47443910608973,1.0,59.657965411984883,97.155272379920632,1.4776612995034082,18.899999999999999,3.1000000000000001,113.95170875223984,115.00199233766214,115.60167387972685,116.08454994569095,116.49222197621029,116.64544498050191,35.759624659761279,36.039776525817871,35.716546299569288,35.150938930372192,34.418929775104054,33.76448957428736 +1998,8,4,8,0,488,132,7.5,338.26694583985903,65.92082746121166,64.99621275260913,86.99205200285702,0.0,117.61880448500034,333.15100091064505,1.0,117.61880448500034,211.55616376015226,1.5,22.800000000000001,4.0999999999999996,299.27032094643232,300.41874988596527,301.05868738338535,302.27062407636288,303.28490804258593,303.67352301846614,67.110098110492785,66.012752644312428,66.121126404683153,67.469413566051713,68.910846580566769,68.902709846365752 +1998,8,4,9,0,612,152,8.5,519.17399486947363,52.67870452383074,53.13314556197667,96.38153449957512,0.0,174.09079333929799,530.72252259523577,1.0,174.09079333929799,324.94142856832786,1.1587595498843517,25.600000000000001,4.5999999999999996,506.46021298711003,507.47151395219151,508.00710417770711,509.9242296248467,511.53169137269657,512.14480029568801,105.65194099841662,101.88627134077934,98.712626708159476,97.707720611532679,98.059958916545,98.712769032559251 +1998,8,4,10,0,691,162,9.5,679.36340611451214,39.40607317030421,41.520642748508465,107.87089326477546,0.0,216.43513297427918,707.55178801161162,1.0,216.43513297427918,424.02533779163235,1.303682802300146,27.199999999999999,3.1000000000000001,690.71770023417105,691.53616729452563,691.93464782739363,694.01235094201957,695.76439913406307,696.42600955268858,134.23445710846855,130.51243379203933,125.58098979771506,122.26259324820654,120.55305355973336,120.46469194459522 +1998,8,4,11,0,664,230,10.5,800.20507536762102,26.397456837459245,30.824307965419063,124.21694663204025,0.0,247.75484317947877,840.84325385411933,1.0,247.75484317947877,499.19677539548695,1.378611531663386,28.300000000000001,3.1000000000000001,824.36456269323696,825.43039104278341,825.95975166406288,828.32337476603459,830.31821033795359,831.07228682857101,154.13789128178971,151.17215936860845,145.79023859318866,141.36577050277663,138.30107104716387,137.30664670965552 +1998,8,4,12,0,752,195,11.5,888.72235778072718,14.74666295979465,22.70518910293586,150.91183289742094,0.0,275.05107201648264,937.05245862912034,1.0,275.05107201648264,552.11778601044034,1.4139426342535595,28.899999999999999,2.6000000000000001,923.24613121648963,924.14756480672554,924.56559187213884,926.36831688593816,927.91774070820225,928.47931293840054,171.22014660964433,168.45721265674428,162.72018464849006,157.20445128164363,153.0966270360089,151.50463525348124 +1998,8,4,13,0,798,169,12.5,915.64023573446832,10.951765310480624,20.668309951044733,189.98238870542747,0.0,283.28062697027372,967.1889010805736,1.0,283.28062697027372,568.51829064547496,1.4208481208451478,30.600000000000001,4.0999999999999996,954.69829778855853,955.36665418965401,955.64135484910992,957.37517262664926,958.87146242376809,959.40865802517612,176.49212372824741,173.97765374389786,168.11354022688482,162.24481153364727,157.63675807169989,155.75156489005622 +1998,8,4,14,0,790,163,13.5,871.82321790197523,20.13192230039431,26.201789527080134,223.85316411723952,0.0,277.85511456557657,918.55897664151939,1.0,277.85511456557657,541.75469507298021,1.4012907373460066,31.100000000000001,2.6000000000000001,905.53489970602629,906.26030123048065,906.57290935262574,908.3803041951071,909.93439810451855,910.49703454292569,173.03199524286484,170.0456580583174,164.12457900169454,158.55565713753978,154.4810093055552,153.01439564176252 +1998,8,4,15,0,727,173,14.5,761.81001472062849,32.722111840286374,35.9121293179981,244.59926482200277,0.0,242.74841828919739,798.20235669145018,1.0,242.74841828919739,474.99119153248904,1.3493945820606228,30.600000000000001,2.6000000000000001,782.93216158330745,783.70460599442163,784.06261968801357,786.21194861294964,788.03142363062432,788.71391996593809,151.07700030876219,147.60770783702026,142.10994741936094,137.81342994492996,135.11133323059801,134.41876051405191 +1998,8,4,16,0,676,154,15.5,613.41289584043261,45.92241317354696,47.18722566722803,258.06118485492306,0.0,200.80682597598931,634.07752254936463,1.0,200.80682597598931,383.19235800663552,1.2468789166013465,30.600000000000001,3.1000000000000001,614.25622650825119,615.13987572917563,615.58601497571362,617.58262449289498,619.26337119420361,619.89937073319811,123.70652102338941,119.67620543399794,115.33788105291785,112.93239125080704,112.1425414314469,112.47735033081433 +1998,8,4,17,0,633,111,16.5,437.12874667430953,59.21321580901409,58.98842104021208,268.28248067541807,0.0,146.75496741820973,440.4376591281623,1.0,146.75496741820973,273.53441879661904,1.0433243902917861,30.0,4.5999999999999996,411.66312005620563,412.41146049483376,412.80408742566772,414.39448442162461,415.72871528949082,416.23687243824014,87.056443397864726,83.96912097974365,82.106663188536302,82.357643171139316,83.585314985601286,84.340182125232317 +1998,8,4,18,0,444,92,17.5,237.65412318105425,72.38757420519072,70.84954940193892,277.1753354208304,0.0,87.799403727916811,226.66070223487088,1.0,87.799403727916811,148.81049303965915,1.5,28.300000000000001,3.6000000000000001,190.19892331436191,191.03495571547305,191.49691614459522,192.4133171011905,193.17518016296069,193.47108653248077,48.889443614921653,49.828565515035585,51.027728666586874,52.302712417951312,52.755838351968677,51.787992852628001 +1998,8,4,19,0,209,41,18.5,68.50449919021932,85.25017614354908,82.43791258456831,285.77450000836404,0.0,31.973964611281506,55.234897248199708,1.0,31.973964611281506,43.285293661900056,1.5,26.100000000000001,2.6000000000000001,36.791123258877391,37.208901397666885,37.443937685494433,37.850106935099866,38.187063444677669,38.318931189625125,18.703615409863477,19.07595169340313,19.175545211561879,19.118867254789482,18.85315083840149,18.404082486107271 +1998,8,4,20,0,0,0,19.5,0.0,92.29903508363452,88.72364285137375,290.94234012928024,1.0,0.0,0.0,0.1670894380071608,0.0,0.0,1.5,23.899999999999999,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,5,6,0,79,4,5.5,9.2793337644245923,89.39113073409969,86.16823875971915,71.42711636470646,0.0,6.6440964962381752,3.5400909900131898,1.0,6.6440964962381752,6.0170831493873633,1.4034733937995503,15.6,0.0,2.0438341871596784,2.0738822758815352,2.0889885329644544,2.1965173063652501,2.2853505505816289,2.3204811395875824,3.8850642817402368,3.917889796782029,3.9205363203348922,3.9270132840682344,3.9085183115821569,3.8407915462351281 +1998,8,5,7,0,260,98,6.5,156.99470468764434,79.04902732917135,76.88521035588217,78.57962047140785,0.0,60.205152701091606,144.61651563166328,1.0,60.205152701091606,97.902124358941151,1.4873402972981689,19.399999999999999,3.1000000000000001,114.51526894647142,115.56575362587947,116.1653060646936,116.64506219572894,117.05036384213543,117.20245771478406,36.090969502504556,36.374314099214629,36.046544171064326,35.470931224284399,34.726580730540391,34.063872531898568 +1998,8,5,8,0,501,128,7.5,338.72021087057823,66.00483396469114,65.12757526124497,87.25319014168271,0.0,117.89951614435269,333.90341267853097,1.0,117.89951614435269,211.78962362380776,1.5,22.800000000000001,4.0999999999999996,299.7493618833837,300.86025385326712,301.47798731729881,302.67221073498661,303.67253583427714,304.05504820853287,67.442008625423526,66.209923959192892,66.183262196367735,67.479397166132003,68.895334633410613,68.98029645357947 +1998,8,5,9,0,643,142,8.5,526.57458333309228,52.75769497701119,53.266472220071975,96.67622672103063,0.0,172.21308706404079,538.87636695601941,1.0,172.21308706404079,329.3579111828314,1.1676417162637283,24.399999999999999,5.2000000000000002,514.73161803127266,515.64996186097551,516.13080622345717,517.99674527776961,519.56216433905024,520.15836008424196,104.74506580734247,100.95406051745627,97.6766317620162,96.587918451196373,96.832655005447236,97.489831909549878 +1998,8,5,10,0,697,158,9.5,678.66608111540029,39.4891381461431,41.66795183360729,108.21396579511574,0.0,222.36167676088962,707.55316828155787,1.0,222.36167676088962,423.52779143908992,1.311285102702313,26.100000000000001,3.1000000000000001,690.89414559044747,691.68522849183069,692.06481947419627,694.11500693707012,695.84695227101815,696.49856495454333,137.95236239169796,134.25224553947973,129.21485700397025,125.70457686820282,123.80446557406242,123.64001917853172 +1998,8,5,11,0,712,202,10.5,812.27040059607907,26.503540778520737,31.005111533663307,124.61101627972214,0.0,258.81630550322268,854.92075760540206,1.0,258.81630550322268,506.43011431107493,1.3854431266127532,27.800000000000001,5.2000000000000002,839.63254385346863,840.49165132450139,840.89298585640915,843.17763140008083,845.1120322683621,845.83788602130176,161.1154714226615,158.13802393468032,152.52854672823727,147.69044480296373,144.29911124766207,143.15205259127447 +1998,8,5,12,0,758,191,11.5,889.03477402815611,14.928919792235611,22.943427525320562,151.2483622443196,0.0,275.13726510223313,938.3034774238871,1.0,275.13726510223313,552.32349779164076,1.4203737121561089,28.300000000000001,2.6000000000000001,924.61824326729368,925.49315911313295,925.89462031404378,927.70124761397972,929.25354157647064,929.81652454727225,171.23968643660348,168.86079275697932,163.27161376113469,157.70501323892699,153.33603074305509,151.51625347758755 +1998,8,5,13,0,786,176,12.5,910.08984527191762,11.217576793181204,20.9397836392761,189.94044356588768,0.0,281.58592985261407,961.94153849928591,1.0,281.58592985261407,565.15238414566193,1.4271723058930086,29.399999999999999,5.2000000000000002,949.14213175783891,949.86427957367243,950.1718043779814,951.92567813470896,953.43757936582188,953.98179030620759,175.39032657803554,172.90697227624213,167.10516469414029,161.30553324117184,156.75213316415943,154.88108985124518 +1998,8,5,14,0,796,159,13.5,871.75278737946371,20.306311487282187,26.43781925005695,223.54803287791972,0.0,269.72781993242279,919.35760218724749,1.0,269.72781993242279,541.68467487241128,1.4077775069028584,30.600000000000001,4.0999999999999996,906.46850542646723,907.16919480861111,907.46981874173946,909.26967826575662,910.81529016960121,911.37670822329733,168.07480917817125,165.32503668423217,159.61007806118758,154.11559277156371,150.03217743198223,148.4656677743919 +1998,8,5,15,0,751,155,14.5,761.72050958906618,32.85787289620983,36.11034376879384,244.28187131355307,0.0,242.69578811592072,797.82236859934437,1.0,242.69578811592072,474.22033257021604,1.356334939043605,30.600000000000001,4.5999999999999996,782.85537969512552,783.70280477298707,784.10553499437492,786.00501529935548,787.62206760651975,788.2206971920599,150.93643528644515,147.4614387367196,142.00448656225763,137.70036420217033,134.96614982932491,134.27034508817457 +1998,8,5,16,0,682,151,15.5,612.92805982850928,46.04748768674095,47.365905653932806,257.78127174738586,0.0,195.2297180133958,634.21711682384898,1.0,195.2297180133958,382.84174846709311,1.2546138738323993,30.600000000000001,3.1000000000000001,614.43736279274003,615.29982889615439,615.73504638283441,617.71447161201354,619.37940726463808,620.01062580054054,120.44124621202305,116.58334336442097,112.28393729962033,109.8515665015204,108.98150156963639,109.24170849922345 +1998,8,5,17,0,615,116,16.5,431.26853110412111,59.33931288197583,59.16071063944057,268.0362568733864,0.0,148.3683583704736,435.13318162956085,1.0,148.3683583704736,270.01687987588434,1.0521681528915545,30.0,4.0999999999999996,406.24170229790457,407.04187794558084,407.46433785038124,409.08719299799174,410.4482692110434,410.9670678174283,88.170125613248885,85.062861404414903,83.138352918028204,83.309095191521152,84.471404292025341,85.192653678721044 +1998,8,5,18,0,472,89,17.5,242.48145205022561,72.52125680068767,71.02396971236094,276.9536761148116,0.0,91.642070547731919,231.20251551580475,1.0,91.642070547731919,151.73108335092257,1.5,28.899999999999999,2.6000000000000001,193.39152268488459,194.19917735952598,194.6427569103939,195.53928617425052,196.28608170389151,196.57473847245728,50.997248007655685,51.932921921419201,53.171075403902272,54.515239203039847,55.006882232647264,54.017989742846822 +1998,8,5,19,0,188,40,18.5,64.15179717671711,85.39478328190904,82.61898455295032,285.5706903352063,0.0,29.614251026213296,52.055226677723255,1.0,29.614251026213296,40.581731634136396,1.5,26.699999999999999,2.6000000000000001,35.009752124411818,35.417856826608343,35.648161937438779,36.045715529302328,36.375178287809533,36.504470942344327,17.360805285123682,17.69158856979567,17.763568927079373,17.700768046043905,17.457611721555693,17.049247592133391 +1998,8,5,20,0,0,0,19.5,0.0,92.33570065234298,88.80580580848967,290.6689378858416,1.0,0.0,0.0,0.23292513897689535,0.0,0.0,1.5,23.899999999999999,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,6,6,0,24,4,5.5,5.575584960958853,89.4095040797626,86.23586086264491,71.72107493697202,0.0,3.110778850978976,3.291358399307569,1.0,3.110778850978976,3.5972845159853337,1.389740105363157,17.800000000000001,2.6000000000000001,2.5317717289768855,2.569966702430599,2.5914206154503394,2.6506728896791008,2.6994792623362702,2.7189166595898242,1.8230736658331621,1.8373169446865416,1.8373657063155551,1.8420218086368636,1.8369295962312697,1.808790125266778 +1998,8,6,7,0,82,104,6.5,122.41343030380048,79.14381876290406,77.02334519500498,78.82379650691647,0.0,43.061542989950986,116.13369735379111,1.0,43.061542989950986,75.341708636664748,1.4976287387611409,18.300000000000001,2.6000000000000001,99.549581765255965,100.77514035883055,101.48698845791766,101.52623475392849,101.56987176798451,101.57661942902182,25.504321152308883,25.606276010335797,25.468849802000268,25.191287397423356,24.799351797610594,24.428495300355234 +1998,8,6,8,0,144,187,7.5,247.26438598951296,66.0888889088298,65.25990851221053,87.51942513215317,0.0,83.385491719513468,244.21472059920544,1.0,83.385491719513468,153.38493756092444,1.5,20.600000000000001,3.1000000000000001,221.95876121356213,223.94537856114005,225.09659981478541,225.58268330094455,225.9994762382907,226.14983651913246,48.191294768725925,47.630340879722453,47.557936221800261,48.041281134793827,48.526682397367175,48.413795025713114 +1998,8,6,9,0,404,240,8.5,480.86868098415835,52.837021197144445,53.4010896852926,96.9762785218594,0.0,159.08846231814101,488.36444176084672,1.0,159.08846231814101,299.19633440785304,1.1767583515076863,23.899999999999999,3.6000000000000001,463.28558955627841,465.4627123601083,466.69747104860483,467.89608168517032,468.91554274196716,469.2908557559067,96.021378641464011,93.266716215433831,90.83471831627098,89.935463545870803,89.939979768129902,90.219076772586135 +1998,8,6,10,0,230,336,9.5,507.4135644783596,39.57315331084614,41.817157721032835,108.56266998773859,0.0,160.84233747298049,518.64154090746149,1.0,160.84233747298049,314.81483175313281,1.319065044025006,25.0,4.0999999999999996,495.79218660426886,498.9326466644244,500.73732559649801,501.71944573908047,502.56342024944615,502.8675915777294,97.639909236265112,95.984174572244441,93.699177700725727,92.069664953025082,91.036646874355682,90.648163880584633 +1998,8,6,11,0,579,267,10.5,762.31471836149012,26.61183210327937,31.188763632533846,125.01036778048731,0.0,236.17064224831682,801.08768964279648,1.0,236.17064224831682,475.85153125522265,1.3924230859283033,27.199999999999999,4.0999999999999996,783.12197317250855,784.51639739781263,785.24594817336617,787.61536017501805,789.61040776491643,790.36848651830121,146.6006689312878,144.22366000365153,139.45401494474996,135.24771236144926,132.30656445276554,131.16208122945702 +1998,8,6,12,0,571,278,11.5,802.88297768023904,15.115549252987206,23.185553679704185,151.58859256803348,0.0,248.63300768429841,848.24682180015338,1.0,248.63300768429841,500.85615940670965,1.4269383785414007,29.399999999999999,2.6000000000000001,831.7102305798478,832.90657518413366,833.51134065950464,835.88418272361343,837.88580274415176,838.643199941631,154.51032225425385,152.543134212338,147.68360386377688,142.98080637785478,139.33239955461769,137.70851663948099 +1998,8,6,13,0,648,276,12.5,880.07998800940334,11.488706162135836,21.216091277248854,189.90445969245704,0.0,264.55853347442917,930.87607405303561,1.0,264.55853347442917,548.35473952298787,1.4336247254409626,30.600000000000001,3.6000000000000001,914.48636697744041,915.59869121594761,916.14565302178391,918.50925041558901,920.50899371753451,921.26090539948518,164.54191382279956,162.57596581199618,157.38005646993358,152.21680084066514,148.10153787252347,146.24344394490936 +1998,8,6,14,0,634,240,13.5,806.49885685490472,20.48736506228129,26.679598787041733,223.24672130460388,0.0,249.68042977258179,851.59371637550839,1.0,249.68042977258179,503.12528778940248,1.414394955886673,30.600000000000001,3.6000000000000001,835.76327619635356,836.77876883250269,837.27584475332844,839.65685177709906,841.66597785717283,842.42580707757611,155.37721164465512,153.01561026166854,147.90363964965209,143.12025224454462,139.61265833707589,138.17388266441515 +1998,8,6,15,0,715,180,14.5,756.13357390593262,32.99928173763887,36.314230246339136,243.964585585864,0.0,240.91841715325631,793.58804012843257,1.0,240.91841715325631,471.59614728288847,1.3634166957438592,28.899999999999999,3.1000000000000001,777.88244505101034,778.71555781454879,779.10978427769646,781.29632483887383,783.14557408818177,783.84122491498397,149.94107764193291,146.84867663844028,141.52425701333701,137.16333084743593,134.28319913599034,133.4006476391254 +1998,8,6,16,0,652,156,15.5,596.06597265760854,46.177539011883574,47.549902453365554,257.49998819426065,0.0,195.07571443366714,617.41414686557141,1.0,195.07571443366714,372.53775683225047,1.2625117159812873,29.399999999999999,3.1000000000000001,597.54741157821229,598.45720008067394,598.92050230612585,600.92677076209418,602.61352836976539,603.25405337217251,120.36223875294321,116.66680906561159,112.42409407318566,109.94680223451388,108.97322822206441,109.1411674883926 +1998,8,6,17,0,609,121,16.5,431.57305725868201,59.47000668064906,59.3380233554217,267.7881912048684,0.0,144.6906999242569,435.97091614813775,1.0,144.6906999242569,270.28071264904793,1.061209512965232,30.0,5.2000000000000002,406.63005023233183,407.48364255131497,407.93915705770166,409.59243000894963,410.97680452051384,411.5065126728731,86.145702372204042,83.096019947088436,81.162954494161241,81.273414074018959,82.346218695871713,83.054618361212448 +1998,8,6,18,0,364,100,17.5,217.28536323435304,72.65932293763592,71.2032174006256,276.73005089080226,0.0,79.431618546726824,208.63341334905283,1.0,79.431618546726824,136.33739305453088,1.5,28.300000000000001,4.0999999999999996,175.30837145947871,176.23219484949459,176.75008820908013,177.6932043416748,178.47527152871169,178.78111012744915,44.393959233722846,45.136043019981116,46.117031127195744,47.246535868130174,47.705948588831021,46.905928680586072 +1998,8,6,19,0,172,42,18.5,63.54351328712707,85.54353222144155,82.80463446899421,285.36492159190254,0.0,29.096382686577577,52.166117496348484,1.0,29.096382686577577,40.211388909048395,1.5,26.100000000000001,3.6000000000000001,35.821903777428105,36.254817022317049,36.500131127718547,36.900071178038282,37.231488991275143,37.361610191460485,17.137682114727728,17.417917525564043,17.438738939219899,17.350805047429535,17.106168547313537,16.728286362851208 +1998,8,6,20,0,0,0,19.5,0.0,92.37303427831715,88.8893558108265,290.3917662031475,1.0,0.0,0.0,0.2978028881303827,0.0,0.0,1.5,24.399999999999999,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,7,6,0,6,3,5.5,3.3867885217208071,89.42731683792056,86.30387867151023,72.02026398773309,0.0,1.299343549808057,3.0325057139335461,1.0,1.299343549808057,2.1138683263350631,1.3766441583072995,20.0,3.1000000000000001,2.7130377741998988,2.7543358070147841,2.7784043895380894,2.7901170857456399,2.7999510516112038,2.8036901496190829,0.76109989062857963,0.76292486446466201,0.76206702161845308,0.76247139208544534,0.7600260706080938,0.75179973730973249 +1998,8,7,7,0,21,92,6.5,96.665990518579903,79.23854417087972,77.16230367823071,79.07287979502499,0.0,32.031274856734868,93.437404196083008,1.0,32.031274856734868,59.035005724398872,1.5,21.100000000000001,3.6000000000000001,83.856731894568924,85.031106365964717,85.717427747750236,85.594472969159412,85.503657086275766,85.457577696974028,18.81764401591478,18.826822562825484,18.767419669765452,18.634860415561207,18.424924692615171,18.212332496977119 +1998,8,7,8,0,31,178,7.5,190.90805195831177,66.17299212886593,65.39319538660934,87.79065830449048,0.0,61.934404743776845,188.43047102438439,1.0,61.934404743776845,117.61718705589585,1.5,22.800000000000001,3.1000000000000001,172.73699233719009,174.79357165587419,175.99423742815111,176.10466038899352,176.21115812883102,176.23877774052522,35.992824478895329,35.716688380340536,35.652887763188353,35.801368514391172,35.909576390833365,35.73906732191449 +1998,8,7,9,0,318,259,8.5,447.98854913957325,52.916705101295975,53.53699579697394,97.28156294438041,0.0,144.9107144261487,455.04757247182732,1.0,144.9107144261487,279.05366171327569,1.1861096779118352,24.0,4.5999999999999996,430.25977816900001,432.59530039829667,433.92969584495142,435.17064966872186,436.2195606951982,436.61174646967038,87.398852011486483,85.094552585054174,83.004872489306791,82.222242223057776,82.192493266919058,82.362555693277542 +1998,8,7,10,0,224,348,9.5,514.54742184172483,39.65816585385498,41.96826959301613,108.91682560582184,0.0,163.09044939548559,526.1090762962649,1.0,163.09044939548559,319.23001725443771,1.3270221598981298,27.199999999999999,2.1000000000000001,502.73281212066729,505.95856570343472,507.8131397547088,508.80680586167949,509.66075771424312,509.9684628301676,98.969002358131632,97.306830795477225,95.012058295166042,93.376685124219449,92.337477027670175,91.939917018688249 +1998,8,7,11,0,145,397,10.5,520.79746010014867,26.722403730462194,31.375270990659942,125.41472362001394,0.0,165.00900605469801,535.27355026519024,1.0,165.00900605469801,323.66750381110961,1.3995508159315748,29.399999999999999,3.1000000000000001,511.51341994761395,514.97350152031038,516.96551009269547,518.17622609689749,519.20639964097927,519.58730270223361,100.11260112281063,99.132421226818508,97.095821163576076,95.288808776677854,93.881425515379973,93.060558889733073 +1998,8,7,12,0,565,309,11.5,827.40778259138824,15.30658350310696,23.43153532210292,151.93218034800336,0.0,249.33794529971439,872.95887524078694,1.0,249.33794529971439,515.99534234294288,1.4336361072475243,29.399999999999999,3.1000000000000001,854.1291902662598,855.73300905420479,856.57985075166266,858.98531340794477,861.01327477537029,861.78174905732862,154.61338066271219,152.89031454872253,148.25234788665983,143.6962002194764,140.06165173648287,138.34437530909389 +1998,8,7,13,0,252,406,12.5,640.46982906051448,11.76503730649471,21.497144947836073,189.87425583746636,0.0,199.02836417786995,669.08217169768534,1.0,199.02836417786995,399.45264897834193,1.4402050358371672,30.600000000000001,4.0999999999999996,646.73699775729483,649.4684973885702,651.010190620412,652.94038266257121,654.56505758687979,655.1821792268413,122.03368470508185,121.07537331568557,118.13892772828237,115.24168076368082,112.84038636669604,111.48099996452544 +1998,8,7,14,0,275,379,13.5,624.18556367533415,20.675040264362398,26.927045275596093,222.94938972935498,0.0,193.98492299570614,650.50580598776924,1.0,193.98492299570614,389.15599605180233,1.4211430639351341,31.100000000000001,3.1000000000000001,628.50622307346464,631.21180411343016,632.74062902781452,634.57374354110527,636.11837688901653,636.70355129152631,118.98006570377125,117.81223982845606,114.85547672238283,112.06792216621147,109.8541481406984,108.67447581025714 +1998,8,7,15,0,244,358,14.5,554.08093098304539,33.14633478254899,36.52373606970441,243.64761779788603,0.0,175.8416014217313,573.14014047986802,1.0,175.8416014217313,345.58010692802213,1.3706404146341482,31.100000000000001,3.1000000000000001,550.65291804064998,553.43994485046687,555.02666973808834,556.71368516214989,558.13421774033282,558.67306579613432,107.5379351628839,105.99178371696564,103.23434009862569,101.07071958070614,99.593687788743409,98.900135660199211 +1998,8,7,16,0,367,270,15.5,516.80994240888924,46.31255944334023,47.73917431714612,257.2174960123279,0.0,164.0959563338441,529.88159647556654,1.0,164.0959563338441,321.73537252815265,1.2705741686709577,29.399999999999999,5.2000000000000002,507.17581321615251,509.5172182652434,510.84544857762921,512.19837940321872,513.34430848215175,513.77153707004243,100.08542499830685,97.739693852889587,94.963644145101242,93.292830673376329,92.504851417536884,92.416283438918597 +1998,8,7,17,0,123,229,16.5,291.38963510230013,59.60527790019532,59.520316528136576,267.5384033999496,0.0,95.800028772857786,291.45793364928261,1.0,95.800028772857786,180.866300369058,1.0704528085726241,28.899999999999999,4.5999999999999996,270.2210341045182,272.57770874311768,273.9445495200481,274.55665906217104,275.08051062345709,275.27039236838232,56.606440815152958,55.538941997023279,54.819193541866305,54.796747544340676,55.033642561672615,55.053263836810409 +1998,8,7,18,0,79,137,17.5,162.21445503925764,72.80173993656237,71.38724340147277,276.5045499717476,0.0,54.876875863116787,157.87429598058,1.0,54.876875863116787,99.871610970883893,1.5,27.800000000000001,5.2000000000000002,140.93916162255849,142.55219862086565,143.49079889692072,143.55553578521489,143.62191972652411,143.63572790172555,31.419057276817647,31.577609828524913,31.849766522458811,32.136517303567452,32.16595565032506,31.78514474794919 +1998,8,7,19,0,49,39,18.5,44.976020128189035,85.69636228943882,82.99479013344175,285.1572620984508,0.0,17.101632391528689,40.900377490017156,1.0,17.101632391528689,27.959233500898897,1.4874055344324009,27.199999999999999,2.6000000000000001,33.770402541792507,34.249798983328525,34.52818480176105,34.641459812573217,34.737746086085302,34.773262628983289,10.058207313264997,10.13070342166564,10.119973152373287,10.07357807718339,9.9673675175186744,9.8126914234690776 +1998,8,7,20,0,0,0,19.5,0.0,92.41092440239998,88.97416825582081,290.1109099276978,1.0,0.0,0.0,0.36160623435306816,0.0,0.0,1.5,26.100000000000001,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,8,6,0,0,3,5.5,3.0,89.44455894534548,86.37226932054294,72.32458836378336,0.0,0.94351212011975361,2.9440936919295533,1.0,0.94351212011975361,1.8214128690466886,1.3642292681453378,23.899999999999999,2.6000000000000001,2.737983578286781,2.7797251944043939,2.8042083528142956,2.7968233490209418,2.7910997704764404,2.788478080242796,0.550679337463305,0.5487992760358773,0.54787643105646355,0.54583282364117713,0.54194029125296805,0.5375972764454422 +1998,8,8,7,0,0,80,6.5,80.0,79.33318437240926,77.30205386500685,79.32678741273189,0.0,25.811794992106748,78.052244579431445,1.0,25.811794992106748,48.814415985022421,1.5,24.399999999999999,2.6000000000000001,71.259655920747633,72.30454763236321,72.916420814538142,72.802645868210448,72.717546894830051,72.675470534314783,15.120325007714431,15.103001128528629,15.066538308677476,14.991650158796336,14.861794417675215,14.716963895939045 +1998,8,8,8,0,19,183,7.5,190.87089644763159,66.25714560056004,65.52742049753189,88.06678930546227,0.0,61.256992511931607,187.79066202105312,1.0,61.256992511931607,116.72107540050187,1.5,25.600000000000001,4.0999999999999996,173.2525289086783,175.51948334965425,176.84553988839338,176.65578332016429,176.51897999544781,176.4459471350757,35.657572726563032,35.41267654439384,35.337280714279821,35.361239953381336,35.321458421906108,35.119291486846706 +1998,8,8,9,0,12,230,8.5,237.10851399135751,52.99677058940459,53.67418991950934,97.59195133075607,0.0,75.003442911433993,234.74701152042928,1.0,75.003442911433993,145.07468246248371,1.1956958941196294,26.699999999999999,4.5999999999999996,218.7355787887401,221.61561305124457,223.30102033456711,223.09566504619576,222.95026156416276,222.86974717288027,44.119000283953859,43.77423083612895,43.484388000488018,43.280472008821803,43.047974011184451,42.788335968009861 +1998,8,8,10,0,0,153,9.5,153.0,39.744224457275905,42.12129762331337,109.2762507974014,0.0,48.142774131616648,151.06782001419205,1.0,48.142774131616648,93.536524192888692,1.3351559758419094,27.800000000000001,4.5999999999999996,140.26349813133959,142.31865898641615,143.52338754171942,143.37148164444434,143.26164913958937,143.20337684561429,28.20114049626822,28.106245482085072,28.019497181455577,27.92062281666588,27.751792477662192,27.535015409781469 +1998,8,8,11,0,0,180,10.5,180.0,26.83532836082325,31.564640266588974,125.82380659599681,0.0,56.563808597936365,178.06249637114431,1.0,56.563808597936365,110.15953365170313,1.4068257278013914,28.300000000000001,4.0999999999999996,165.44231251756173,167.82609190940491,169.22310996005322,169.08427392260256,168.98737186345559,168.93222000940133,33.170195441300599,33.068873029102797,32.956024406688499,32.825998564488714,32.61588604877474,32.352303936503816 +1998,8,8,12,0,30,374,11.5,401.47380363708828,15.50204964319122,23.6813394195993,152.27878893975307,0.0,125.56865588943427,407.29895567427337,1.0,125.56865588943427,248.36783006710198,1.4404663879631594,28.300000000000001,3.6000000000000001,384.44226329150615,388.23639555979685,390.44428283041611,391.01821350615785,391.51926765441863,391.69278765710379,75.082422461829964,74.741522379138345,73.823814092477463,72.928876037142402,72.066096338384426,71.360021519729969 +1998,8,8,13,0,78,353,12.5,425.43055847702067,12.046455124863675,21.782856334603142,189.8496449044885,0.0,132.90827691760373,433.51705600613207,1.0,132.90827691760373,263.03220559496066,1.4469129210133622,27.199999999999999,3.6000000000000001,411.5207547834251,415.14683619830544,417.25125103620366,417.78921643078502,418.26376939229834,418.42402163455154,79.798348717813425,79.36263828424525,78.215254143941038,77.060165790758603,75.984505735152979,75.208470740663387 +1998,8,8,14,0,467,326,13.5,741.43166389787257,20.869286130975382,27.18007261910155,222.65618025217938,0.0,229.88741970358919,780.4492283087053,1.0,229.88741970358919,462.9917190803551,1.4280218542186718,30.600000000000001,5.7000000000000002,760.72940713806202,762.5658203153364,763.56054195447405,765.94573369860166,767.95034628540725,768.71500567074531,142.24777414145615,140.60643126412151,136.45726815149939,132.50588681133308,129.43462484838389,127.96930665182967 +1998,8,8,15,0,495,267,14.5,663.67850204740375,33.29902240316076,36.738804291080854,243.33116875920575,0.0,205.79850163913414,694.47658347423271,1.0,205.79850163913414,414.55636689277486,1.3780067291869789,31.100000000000001,4.5999999999999996,675.15946317308249,676.85196134087801,677.77292515335398,679.951233934073,681.78118601359472,682.47993199456766,127.35290326173637,125.16596724414188,121.11482248766387,117.85235971618431,115.59100316666887,114.75353482848037 +1998,8,8,16,0,219,297,15.5,443.72789927113371,46.45253668011032,47.933675536768874,256.93395247933347,0.0,142.94490830182329,451.60460103576918,1.0,142.94490830182329,275.26158346053705,1.2788030865668034,29.399999999999999,4.5999999999999996,429.29659224131603,432.18101978008968,433.84125009308752,434.6903860769753,435.42095558953076,435.68301884608184,86.472869432324174,84.849395377997155,82.89426088871852,81.66380454703723,80.984915225212063,80.755519256331709 +1998,8,8,17,0,70,212,16.5,247.30897572741605,59.745103373805954,59.70754394860405,267.28701041303793,0.0,79.564838895364787,246.0118238145771,1.0,79.564838895364787,152.42450110635741,1.0799026605185258,29.399999999999999,5.2000000000000002,228.34265028622013,230.75732164394441,232.16454246660135,232.31887376662826,232.46672118952574,232.50584367767232,46.873625806679598,46.18502079556815,45.725902807695043,45.640722489221858,45.672415274559974,45.577985132515728 +1998,8,8,18,0,306,114,17.5,210.71024421527295,72.94847164897809,71.57599539667078,276.2772614582165,0.0,75.466664687155344,203.04887396026351,1.0,75.466664687155344,131.32223521917581,1.5,26.100000000000001,4.0999999999999996,172.94077811765192,174.13208698827594,174.81110802012094,175.42287884342858,175.93631589742711,176.1312294835401,42.400904002924491,42.916517475752386,43.703339256706784,44.612130524836822,44.975557625790856,44.308583372492023 +1998,8,8,19,0,49,35,18.5,40.810817504152212,85.85320776191755,83.18937446267687,284.94777825598544,0.0,15.522612123536755,37.05939358148224,1.0,15.522612123536755,25.375874801815272,1.4500434438924006,25.600000000000001,3.6000000000000001,30.552367494415844,30.987130937686253,31.23960731825435,31.344463187351121,31.433532499916673,31.466441694492914,9.1460399132140981,9.2036925872982849,9.183883152789063,9.1349415367913487,9.0364569376681452,8.9013136874581438 +1998,8,8,20,0,0,0,19.5,0.0,92.44924727851655,89.06010614342462,289.8264530797311,1.0,0.0,0.0,0.424228576723522,0.0,0.0,1.5,25.0,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,9,6,0,0,2,5.5,2.0,89.46122120145166,86.44101045630937,72.6339519078189,0.0,0.62900808007983589,1.9624833399144628,1.0,0.62900808007983589,1.2140294581130031,1.3525417614522421,23.300000000000001,2.1000000000000001,1.8253223855245198,1.8531501296029285,1.8694722352095299,1.8644621130978321,1.8605761220678869,1.8587991869719369,0.36710490294515202,0.36584004175327606,0.3652247937796671,0.36384772950935451,0.3612346545276155,0.35833924024140063 +1998,8,9,7,0,0,63,6.5,63.0,79.42772230181681,77.44256553320872,79.58543468943031,0.0,20.063559073995773,61.724942518105159,1.0,20.063559073995773,38.41377870191279,1.5,23.899999999999999,3.6000000000000001,56.822597165265066,57.673012012203799,58.1714321793445,58.073225427374261,57.999158146902232,57.963169105801498,11.734033085392516,11.711430476797734,11.688496601013961,11.642663912900792,11.556139484569238,11.453432800977618 +1998,8,9,8,0,13,165,7.5,170.35742566812894,66.34135340618731,65.662570159286,88.34771614615043,0.0,54.478844510079476,167.65423070599917,1.0,54.478844510079476,104.12878786883671,1.5,25.0,2.1000000000000001,154.80050374837202,156.88549152003199,158.10579631392582,157.92189620354017,157.78796551887007,157.71793807181615,31.748814931925065,31.546067698173339,31.471040818187742,31.465333893103864,31.400426897561967,31.212417889867602 +1998,8,9,9,0,12,237,8.5,244.08512600235628,53.077243475692974,53.81267288142496,97.90731338184733,0.0,77.54277392572294,241.75034409866396,1.0,77.54277392572294,149.35887441011627,1.2055171779989575,27.0,2.1000000000000001,225.29495862905549,228.24459547808596,229.97042664974416,229.76381787561547,229.61814743932862,229.5368191748548,45.636318425496384,45.270633993886221,44.958683304214048,44.735596891529724,44.491155746974165,44.223505825458666 +1998,8,9,10,0,12,252,9.5,260.87891966233303,39.831379174027084,42.27625288034915,109.64076219988983,0.0,81.874051945267908,259.05110906015011,1.0,81.874051945267908,159.7202486414028,1.3434660115106956,27.800000000000001,1.5,241.92531691515302,245.10889346946487,246.97201152702132,246.7827011201249,246.65221493398553,246.57620266295675,48.247940034197192,47.981938430329215,47.665956721346568,47.369928182183735,47.018941354763562,46.666638062468195 +1998,8,9,11,0,6,231,10.5,236.10173430509417,26.950678259276227,31.756877926966254,126.23734006480453,0.0,74.135033652495821,234.35559566327018,1.0,74.135033652495821,144.59005489168948,1.4142472393185286,27.800000000000001,0.0,218.47797272854328,221.45452932806359,223.19742177244552,223.04361980239781,222.93961681931594,222.87675767737974,43.61045096880467,43.44547544182678,43.225871034575398,42.986940205176168,42.66764462082552,42.317889386425243 +1998,8,9,12,0,60,377,11.5,431.84040672376466,15.701969652627708,23.934932073764926,152.62808883908846,0.0,134.96400848822282,439.45545853230323,1.0,134.96400848822282,267.06349569837431,1.4474287275930917,29.399999999999999,1.5,416.3329670342896,420.15065479767532,422.36845628777758,422.94385226864154,423.44914317561188,423.62167270468831,80.919670411923008,80.503908475201712,79.399976528859114,78.300112353951306,77.265318553497963,76.487258232983223 +1998,8,9,13,0,366,337,12.5,676.17400167646508,12.332845517484738,22.073136746151636,189.83043491783062,0.0,209.68011699792993,714.32665721529747,1.0,209.68011699792993,423.0323867103682,1.4537480935831468,30.0,1.5,695.37572240071995,697.11868324782654,698.06555482940576,700.52304460638163,702.57919535907172,703.37174815122751,129.5365084926666,128.64980624724456,125.17738288220897,121.63090476165269,118.61547478393682,116.93146801673478 +1998,8,9,14,0,30,362,13.5,388.62515646514964,21.070043811406315,27.438591659626507,222.36721722459203,0.0,121.5698182427806,393.82646670579715,1.0,121.5698182427806,240.32640670650392,1.4350313944286672,26.699999999999999,4.0999999999999996,371.49509661172652,375.21880639905169,377.38644775040541,377.91121235788387,378.37123475693841,378.5288657750358,72.642308878637934,72.316669707021319,71.450940010784308,70.604640461140306,69.782046587703732,69.102134238922872 +1998,8,9,15,0,18,291,14.5,305.38311659044911,33.45732895201985,36.95937379794562,243.01542974497573,0.0,96.24886957300825,304.11051090367164,1.0,96.24886957300825,187.11117665253897,1.3855163451189452,28.300000000000001,6.7000000000000002,284.62718881234633,288.23908051910973,290.35134395567161,290.17592173963766,290.06087905095558,289.98735371164202,56.842360133340726,56.542052089195529,56.121156491687799,55.704885054076307,55.231540330830164,54.791463625474094 +1998,8,9,16,0,0,96,15.5,96.0,46.59745382694554,48.13335649745932,256.64951014327966,0.0,30.192935684972003,94.551764678713127,1.0,30.192935684972003,58.620489809916137,1.2872004561844572,24.399999999999999,2.1000000000000001,87.62821242952505,88.962238059074878,89.744682445501638,89.626681612264377,89.539334093351997,89.495169117528334,17.643438909660354,17.598141241869136,17.567710792583206,17.521647724236949,17.421422057127486,17.282748534728395 +1998,8,9,17,0,0,92,16.5,92.0,59.8894560813129,59.899655897684866,267.034126295528,0.0,28.94637666586268,90.572463833533746,1.0,28.94637666586268,56.135898214671045,1.089563982745995,25.0,1.5,83.982847218753491,85.256021755354851,86.002728837992493,85.874584726597391,85.778692151240179,85.731304528378487,16.913589487128522,16.864627086825568,16.833584772758105,16.787024059697718,16.68923101680241,16.55785606584654 +1998,8,9,18,0,40,115,17.5,127.51367721460879,73.0994784727112,71.76941784774338,276.0482712475935,0.0,42.056757145671071,124.71925417323709,1.0,42.056757145671071,78.475254516935991,1.5,25.0,1.5,112.22894248592583,113.63353417609562,114.45322388783619,114.49820505505558,114.54557606590356,114.55451764204039,24.220243111894206,24.278871555849019,24.413391049707748,24.572082061403272,24.577178589229209,24.324039682471714 +1998,8,9,19,0,0,17,18.5,17.0,86.01399760255045,83.38830523340424,284.736534496563,0.0,5.3465686806786055,16.701897415932468,1.0,5.3465686806786055,10.340039410432258,1.4091515308227627,25.0,2.6000000000000001,15.515240276958423,15.751776101624896,15.890513999281007,15.855268439184849,15.828181199653821,15.815542080974748,3.1216312420558796,3.111851497334654,3.1066234109477042,3.0961582668730485,3.0754741053723786,3.0508690960666081 +1998,8,9,20,0,0,0,19.5,0.0,92.48786585450658,89.14701894253076,289.538478815788,1.0,0.0,0.0,0.4855727114830898,0.0,0.0,1.5,24.399999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,10,6,0,34,2,5.5,4.0696797375356075,89.47729526485091,86.51008023471044,72.94825750910869,0.0,2.8007222297375733,1.6035555504812606,1.0,2.8007222297375733,2.6644960782747513,1.3416308318305523,22.800000000000001,2.6000000000000001,0.96355735426322198,0.9778636550826223,0.98521316364666023,1.0414788979385248,1.0877793509003495,1.1062613314804695,1.6438382662774558,1.6573113289377053,1.6559602871046966,1.6586807422587224,1.6521560605561278,1.6246441686739166 +1998,8,10,7,0,138,96,6.5,125.67155840846391,79.52214299830773,77.58381016984907,79.84873524946346,0.0,45.835343317630127,118.33476642996932,1.0,45.835343317630127,77.912653187803713,1.5,23.300000000000001,1.5,97.571897913498447,98.659550469355537,99.287841994623108,99.520999836130471,99.722279602760466,99.793832933821705,27.167529069754146,27.420957346413754,27.32247590648554,27.023595027393306,26.558355551772433,26.071602466173317 +1998,8,10,8,0,25,167,7.5,177.24862014906569,66.42562169773628,65.79863235409837,88.63333524862007,0.0,56.632890712943073,174.45721024096687,1.0,56.632890712943073,108.36599717657295,1.5,24.399999999999999,2.6000000000000001,160.92929524005311,163.03293865660751,164.26358944023599,164.07860084508647,163.94445248852952,163.87371390603553,32.998143041868687,32.756272164392442,32.66650059429562,32.673130956013829,32.627385261312106,32.447715698386489 +1998,8,10,9,0,153,279,8.5,369.03384447854955,53.15815141734621,53.952446912266744,98.22751721493255,0.0,118.51305011027931,372.93029154985692,1.0,118.51305011027931,228.99186482612535,1.2155736896751805,26.0,3.1000000000000001,350.47085575056332,353.2278592191945,354.82290961601336,355.56627989401159,356.20328873068752,356.43358694479787,71.120911093054829,69.744405961814252,68.38500335390728,67.734649967259472,67.517189171361679,67.429124775752371 +1998,8,10,10,0,425,284,9.5,597.67767347656525,39.91968130348816,42.43314722928321,110.01017504395134,0.0,190.00076970913105,621.94275099075446,1.0,190.00076970913105,373.59950936085323,1.3519517829765797,26.699999999999999,3.1000000000000001,600.25337901952082,602.25243881165193,603.3638668083795,605.43746465115964,607.17657291670685,607.84254048268576,117.0959368280627,114.92498929203106,111.35802339168214,108.6844643314363,107.0067003346355,106.40596945236122 +1998,8,10,11,0,640,233,10.5,776.03477364751325,27.068525038376055,31.951990126980075,126.65504818226583,0.0,240.30707171879985,819.70776273670765,1.0,240.30707171879985,484.3193026555744,1.4218147765984905,29.399999999999999,4.5999999999999996,802.97046866438257,804.09667692775577,804.66325338718775,807.03032954222977,809.0246311636605,809.7814045682095,149.37529045648176,147.47746254123118,142.76651314588617,138.21863216711259,134.69692681889231,133.12600138254012 +1998,8,10,12,0,493,342,11.5,791.70244842695001,15.906360352263132,24.192278448732306,152.9797579090457,0.0,245.430652323277,836.13655981770398,1.0,245.430652323277,494.03967542306225,1.454522651585487,30.600000000000001,5.2000000000000002,816.16952409608371,818.01837582436156,819.0125774767688,821.43406655334047,823.47260687232688,824.24747841734541,151.70984782831647,150.58605835845665,146.43850734255582,142.11439993985641,138.41393734391457,136.42409646458012 +1998,8,10,13,0,114,368,12.5,473.42257188126297,12.624095363270438,22.367897135836035,189.81642992754593,0.0,147.55795130340516,489.28047559469167,1.0,147.55795130340516,294.71375467038058,1.4607102958868194,31.100000000000001,5.7000000000000002,467.40367652757664,470.55520463493451,472.36988885647258,473.64439341965056,474.720633893377,475.12590775543083,89.429836333317951,89.004059380261737,87.3954135319687,85.789874342191609,84.340530237586549,83.339611349254298 +1998,8,10,14,0,443,361,13.5,753.220353465372,21.277246899929473,27.70251034845363,222.082607785808,0.0,233.63712621761528,792.76202257500495,1.0,233.63712621761528,470.14341529638733,1.4421717977053607,31.699999999999999,6.2000000000000002,771.65623447286191,773.76515897782951,774.92025385423131,777.27870462251224,779.26228607836435,780.01762451447155,144.22410151848095,142.9264755533442,138.9838455766801,135.04632515255207,131.83007121623805,130.15376370344791 +1998,8,10,15,0,54,251,14.5,294.02094528925505,33.62123280414774,37.18537942107522,242.70058235261857,0.0,91.982151519384104,296.96831935235036,1.0,91.982151519384104,181.47472506360836,1.393170041584191,28.899999999999999,5.7000000000000002,280.10969686978376,282.943449859476,284.59350613943479,284.86811544971522,285.11713301388608,285.19523332968708,54.951474832852874,54.563469260331473,53.854194199961043,53.2214995951582,52.66075552676562,52.22987095556276 +1998,8,10,16,0,361,276,15.5,515.96857120082268,46.74728940429448,48.33816373762909,256.36431665065584,0.0,167.20228795648785,530.12873714132377,1.0,167.20228795648785,321.22365319740203,1.295768398726577,29.399999999999999,6.2000000000000002,506.95804746046133,509.35625880835516,510.71661892817502,512.07249813446231,513.2220016393228,513.65007114215723,102.10030508793534,99.906296402578022,97.081094322104576,95.258289645945112,94.266822484439416,94.049771735537348 +1998,8,10,17,0,252,224,16.5,349.63187684627366,60.038305163359055,60.096599189034606,266.7798620786811,0.0,116.68451941741684,352.19954076742306,1.0,116.68451941741684,218.0111516019611,1.0994419932793116,26.0,10.800000000000001,326.38860974621241,328.50755076027065,329.72495527515974,330.78261128455915,331.67428212459868,332.00985831459582,69.513757042544228,67.790549977356221,66.525220946764406,66.364062088329334,66.721789262556655,66.900539846116516 +1998,8,10,18,0,0,34,17.5,34.0,73.25471737075735,71.96745203136247,275.81766296004963,0.0,10.693137361357211,33.420532181128124,1.0,10.693137361357211,20.696816161925458,1.5,22.800000000000001,3.1000000000000001,31.030480553916846,31.503552203249793,31.781027998562013,31.716446733775676,31.667057544587372,31.643763753888322,6.2442604657163612,6.2254831964920259,6.2150282485957948,6.1950962119230173,6.154957264805307,6.1057520865873007 +1998,8,10,19,0,48,31,18.5,36.357589600393169,86.1786551526009,83.5914947769136,284.523593238132,0.0,13.887634681586512,32.945284154970764,1.0,13.887634681586512,22.610993177437628,1.3643448638477165,22.800000000000001,3.1000000000000001,27.132093472719976,27.520625940436737,27.746285726768406,27.841146422565913,27.921734528410923,27.951507336687236,8.2175028642601688,8.2437156054999914,8.2029949337673376,8.1458641915963348,8.0575153346627371,7.9513726608292687 +1998,8,10,20,0,0,0,19.5,0.0,92.52662861835914,89.23474142178628,289.2470693953419,1.0,0.0,0.0,0.5455503382689438,0.0,0.0,1.5,23.300000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,11,6,0,0,2,5.5,2.0,89.49277364779833,86.57945731602551,73.2674071519007,0.0,0.62900808007983589,1.9624794296802388,1.0,0.62900808007983589,1.2140255478806952,1.3315488301631584,21.699999999999999,2.6000000000000001,1.8253223855245198,1.8531501296029285,1.8694722352095299,1.8644607324181015,1.8605736234331001,1.8587962247242373,0.36710466979342865,0.36583962585670943,0.3652243775969406,0.36384708011185629,0.36123371791930631,0.35833830250226284 +1998,8,11,7,0,0,81,6.5,81.0,79.61643359290562,77.72576095910036,80.11660105406231,0.0,26.15028457379233,78.989821837371181,1.0,26.15028457379233,49.430336470873677,1.5,21.699999999999999,3.1000000000000001,71.937845894163658,72.98844894738977,73.603578812033064,73.49013784193248,73.405383712410483,73.363378338376421,15.311734614841003,15.303999685334407,15.273744638483482,15.199079314053428,15.064547519778186,14.912172112768811 +1998,8,11,8,0,13,166,7.5,171.30092233322426,66.50995865735212,65.9355966963489,88.92354149153148,0.0,54.795769662899815,168.66130017692149,1.0,54.795769662899815,104.70896628648923,1.5,22.800000000000001,3.6000000000000001,155.68485394616215,157.77657270677614,159.00078706690715,158.81688984364996,158.68308011749829,158.6129964444572,31.95036036585655,31.736485892339548,31.650264299533806,31.637980195945335,31.570653993318388,31.38633103158103 +1998,8,11,9,0,80,270,8.5,316.91712232461543,53.23952384052751,54.09351557740593,98.55242942041329,0.0,101.18170353791898,317.83207733589597,1.0,101.18170353791898,195.47650677234432,1.225865574715787,24.399999999999999,3.6000000000000001,297.79277144535916,300.73722667694818,302.4505632958971,302.69591219387866,302.92385712418053,302.99015928874985,60.306898698429535,59.430950634843704,58.548529527903256,58.052725508293939,57.762766212942296,57.556979009254228 +1998,8,11,10,0,418,283,9.5,590.72811788761987,40.00918326480831,42.591993233183935,110.38430325690824,0.0,183.36770883179514,615.26360001014905,1.0,183.36770883179514,369.31133834621886,1.360612805047185,26.100000000000001,0.0,593.63588878862436,595.63157547726746,596.74337766645522,598.81490099259202,600.55022147025454,601.21663698210455,113.03896786489766,111.0509788866199,107.64977380846348,105.02460705199775,103.37373918952495,102.73704501508536 +1998,8,11,11,0,344,360,10.5,651.25036156450335,27.188939443723157,32.14998259330881,127.07665613854236,0.0,202.35037994435459,679.34236276614536,1.0,202.35037994435459,405.54653898832697,1.4295277758078355,27.0,0.0,657.12996404161561,659.8351142772068,661.36002261692875,663.09746661088604,664.56738902354505,665.11910578048514,124.18501804636119,122.91929483620039,119.77983154444323,116.78409355179284,114.39644473424791,113.15998760586038 +1998,8,11,12,0,307,403,11.5,682.46168971225165,16.11523338922436,24.453342703916,153.33348157159227,0.0,212.031495153967,714.61215026975492,1.0,212.031495153967,425.19439404232577,1.4617477052174082,29.399999999999999,2.6000000000000001,691.82448426939482,694.61683597130525,696.18868569730762,698.08283273776988,699.68230095035187,700.2854756222838,130.00558776754104,129.16899087898869,126.10427679841587,122.93559025494483,120.17394393672402,118.56929567968554 +1998,8,11,13,0,474,341,12.5,778.38818250974623,12.920092484786826,22.66704811726743,189.80743085079354,0.0,234.87511268867297,823.66165219933248,1.0,234.87511268867297,485.90388809430544,1.4677993009799966,29.399999999999999,2.1000000000000001,804.03485679414086,805.82546424431337,806.78876980854079,809.23168255317989,811.28438640167451,812.06831224963889,145.21071103852518,144.28927736346523,140.38420758371703,136.23117835297052,132.60124713253336,130.61025050588265 +1998,8,11,14,0,72,372,13.5,435.5888946784346,21.490821784788903,27.97173391347736,221.8024424441186,0.0,134.51078273812669,443.45316160572054,1.0,134.51078273812669,269.26546589980182,1.4494432235030472,30.0,2.1000000000000001,420.46072887669732,424.26062049115012,426.46785462479374,427.00582911724553,427.4807431599819,427.64082677679835,80.651237354238717,80.2643021441462,79.168325152739229,78.058288127262401,76.992158646489301,76.190250145736059 +1998,8,11,15,0,36,295,14.5,323.59253210848686,33.790706414592535,37.416752047670215,242.38679839929372,0.0,102.18386360323403,326.62783321646043,1.0,102.18386360323403,199.84070671264666,1.4009686723148735,30.0,3.1000000000000001,307.45950619506505,310.67700917822498,312.55148958458437,312.89740812758492,313.20695631655627,313.30746357013243,60.980938758124204,60.59551764116825,59.859249974371622,59.19606308128747,58.589588999396888,58.09866469742736 +1998,8,11,16,0,344,272,15.5,499.72519593599122,46.90201736685929,48.548040013546014,256.0785145937914,0.0,158.63736909294815,513.79771829063918,1.0,158.63736909294815,311.19859824406115,1.3045091729492315,30.0,1.5,490.98200600511313,493.35187980688966,494.69860029118718,496.04563936722843,497.18523315645257,497.61183209440873,96.88765030838168,94.90235407125374,92.241931191597828,90.484749827318922,89.518807977929157,89.271013587550073 +1998,8,11,17,0,374,180,16.5,365.31108333202565,60.19161594098824,60.298317215972844,266.52432566690504,0.0,120.71612061517605,368.55515641445601,1.0,120.71612061517605,227.40530667053079,1.1095422257505168,30.0,1.5,342.44230453055911,344.17697608792088,345.16424148079432,346.11644112352434,346.92443046052188,347.22361552783167,72.153895860878563,70.068589332269369,68.533684937601549,68.250162521611045,68.627839507070107,68.91976417321888 +1998,8,11,18,0,401,87,17.5,209.78347215648952,73.4141418935014,72.17003607721018,275.58551787139163,0.0,77.16505063150764,202.02594664250466,1.0,77.16505063150764,131.5113549833431,1.5,28.899999999999999,2.1000000000000001,167.26033067908642,168.0621520176125,168.50879098327738,169.37347237571475,170.09212581865938,170.37171414925515,43.069635749058136,43.561513657358951,44.458216590966451,45.612785393708656,46.232323581140903,45.576409445266052 +1998,8,11,19,0,152,36,18.5,52.418936078946622,86.34709776091903,83.79884961179152,284.30901484473793,0.0,23.931262882072954,42.724034300451088,1.0,23.931262882072954,33.223860916755022,1.3151775996649904,27.800000000000001,2.1000000000000001,29.241369083561601,29.614563082401283,29.826743767343608,30.175543367889759,30.464596667175883,30.578097231232569,14.340523091575118,14.401138506899615,14.26029013491566,14.096542240637042,13.892507030806891,13.676443214940305 +1998,8,11,20,0,0,0,19.5,0.0,92.56536845888655,89.32309249450681,288.9523061514374,1.0,0.0,0.0,0.6040815610106641,0.0,0.0,1.5,25.600000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,12,6,0,6,2,5.5,2.3507032412968525,89.50764970840837,86.64912085788863,73.591301961549,0.0,1.0180141189813812,1.85203848908872,1.0,1.0180141189813812,1.4890271583140928,1.3223515944964053,21.699999999999999,2.1000000000000001,1.6003545051994446,1.6246846282726344,1.6387585301240593,1.6543964970592349,1.6673314442684088,1.6724311786902621,0.59753356814105485,0.60022612783901974,0.59944277640501964,0.6003118282116594,0.59881749218211222,0.59141721493412347 +1998,8,12,7,0,28,85,6.5,90.884421910348763,79.71058329246198,77.86839276764877,80.38894244265866,0.0,30.579390667831756,87.731705499567667,1.0,30.579390667831756,55.910515628572945,1.5,22.800000000000001,4.0999999999999996,77.050901576496486,78.089628105311817,78.69566832358521,78.720988329157905,78.749767967720871,78.753738322461572,17.977543849797105,18.055348514629458,18.020395040107147,17.906840318664162,17.701693130908183,17.46268746901373 +1998,8,12,8,0,6,154,7.5,156.43339074792559,66.59437445506651,66.07345439440154,89.21822825474024,0.0,49.863813599444548,154.04586965455684,1.0,49.863813599444548,95.58507026433206,1.5,23.899999999999999,3.6000000000000001,142.31269008206974,144.27865619709664,145.42987160973408,145.25138828176227,145.12058329336068,145.05307935234256,29.098360842231877,28.923031650729619,28.843393863427618,28.812599193558636,28.727148046374293,28.547703709254044 +1998,8,12,9,0,270,272,8.5,429.80139200812937,53.32139186380151,54.23588371086999,98.88191511763208,0.0,138.81101558046853,438.15689541649959,1.0,138.81101558046853,267.87078859600553,1.2363929674615417,26.100000000000001,4.5999999999999996,413.19345752396407,415.64505538742367,417.05000630470266,418.30018986674327,419.35453169670507,419.75136631758289,84.005784077028679,82.083693374946463,80.060970140378458,79.066710865087217,78.767424429098455,78.754431692649973 +1998,8,12,10,0,509,236,9.5,609.75324762815671,40.09993846803664,42.752804053489626,110.76295956583942,0.0,193.97777381414119,637.20989099157373,1.0,193.97777381414119,380.88827549538735,1.3694485936118892,27.800000000000001,3.1000000000000001,617.31571262260138,618.92509277809393,619.80205065180189,621.80921108460666,623.49658754895518,624.1397398175211,119.94261520470435,117.78642633607677,113.98567239346201,110.94854516211829,108.94199608603844,108.21029401970056 +1998,8,12,11,0,603,247,10.5,756.40666023714789,27.311991141874127,32.350860509794614,127.50189038701649,0.0,234.29141038127597,799.94106673331714,1.0,234.29141038127597,472.24655372682128,1.4373856848595064,28.300000000000001,3.6000000000000001,782.59412598893357,783.85249444571673,784.49995108910662,786.87595734992544,788.87505173830448,789.63603101016292,145.37468154262092,143.93055977301097,139.590163656328,135.2126256663465,131.66450008199274,129.92060002373293 +1998,8,12,12,0,577,291,11.5,815.13307556264022,16.328595242529122,24.71808793135629,153.68895296606303,0.0,252.48390486808228,864.77944696016448,1.0,252.48390486808228,508.30485640178114,1.469103454835063,29.399999999999999,4.0999999999999996,847.38938004867941,848.75210867660542,849.45234214869276,851.79931537857146,853.78011915418278,854.52909435544245,156.37758692015683,155.48700141612483,151.15551867251787,146.41215072822681,142.19070879618624,139.87280633358051 +1998,8,12,13,0,534,292,12.5,783.65695496025705,13.220725603858575,22.970499976005094,189.80323625088647,0.0,242.80090442141881,831.43210862529327,1.0,242.80090442141881,489.01287324362414,1.4750149135632213,30.0,2.6000000000000001,813.53594844545319,815.01737401125126,815.79275404114435,818.1742890267916,820.17978635708425,820.94188635427031,150.2569575877823,149.4337440003429,145.33961969779546,140.88508777684885,136.92256165144596,134.71386279492938 +1998,8,12,14,0,652,255,13.5,829.36141583682399,21.71068800916075,28.24616502277563,221.5267956962408,0.0,256.81322653415793,879.57216864712359,1.0,256.81322653415793,517.19359159446094,1.4568458783900315,31.100000000000001,2.6000000000000001,862.68364427039046,863.86958636846555,864.46328240094499,866.84911721952528,868.86332756713455,869.62434446007285,159.36332503879567,158.06732370573678,153.40260197298633,148.47684995101255,144.27555825793308,142.12154080065656 +1998,8,12,15,0,661,202,14.5,725.32721129995946,33.96571639062236,37.65341873885794,242.07423985886734,0.0,224.60100639838635,765.13139250329652,1.0,224.60100639838635,452.85297031326394,1.4089131667063044,31.100000000000001,3.1000000000000001,748.11381828512549,749.15613363995431,749.68010705845529,751.95552759170528,753.87083122445449,754.59921894795741,139.67817854860067,137.60278135064365,133.06684541214116,128.85038708706855,125.76630594766561,124.4759226645232 +1998,8,12,16,0,598,172,15.5,566.187369826897,47.06160713051468,48.7629243688262,255.7922413774023,0.0,180.24841694699612,589.91279577930175,1.0,180.24841694699612,354.29436885735856,1.3134251780582673,30.600000000000001,3.6000000000000001,568.95446668560589,570.04323140445592,570.61717987410827,572.68476774266651,574.4166409032598,575.08133928169718,111.65406690058771,108.92879263680304,105.06710862374604,102.38955819746622,100.92212566875692,100.70158802537917 +1998,8,12,17,0,474,158,16.5,391.3745650982309,60.34934994050249,60.50475000203274,266.2676217415676,0.0,130.26573190912305,397.17750238717542,1.0,130.26573190912305,244.78970552254788,1.119870541545297,30.0,3.1000000000000001,368.50762165493296,369.82763384474049,370.56432991049542,371.9731427089128,373.15444252455353,373.6049578276606,78.366520118759269,75.830649525869589,73.859884358016018,73.443115381907944,73.894813621247565,74.31113106372581 +1998,8,12,18,0,356,91,17.5,198.77926874778424,73.57770220416103,72.3771050081137,275.3519148528691,0.0,71.298790439670611,192.12779613623474,1.0,71.298790439670611,124.77011045374408,1.5,28.899999999999999,3.6000000000000001,159.25449870979068,160.10084587405811,160.57643980984125,161.45501368019293,162.18367387960546,162.46869055826218,39.890350586345861,40.299918629979466,41.083898312901006,42.135859044751768,42.726277855668911,42.145133125807838 +1998,8,12,19,0,127,35,18.5,48.252475168518025,86.51923634045122,84.01027000129713,284.09285759200236,0.0,21.031390045067212,40.441641404876435,1.0,21.031390045067212,30.235421013211781,1.261130589920021,27.199999999999999,1.5,29.70394847970416,30.104381262403507,30.334146898314057,30.534896335024477,30.703347162871946,30.767530508456915,12.578796306672119,12.57411850616106,12.436535313154145,12.293588455293778,12.13101466685392,11.973049985609611 +1998,8,12,20,0,0,0,19.5,0.0,92.60390162095116,89.41187415892838,288.65426946532017,1.0,0.0,0.0,0.6610944274976556,0.0,0.0,1.5,25.0,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,13,6,0,9,1,5.5,1.5150887295785069,89.52191764053158,86.71905050609942,73.9198422483888,0.0,0.91640697012982308,0.69276126555719308,1.0,0.91640697012982308,0.99920550411596998,1.3140988257896584,21.100000000000001,2.6000000000000001,0.46683274049315643,0.47384328173794937,0.47763672050495554,0.50124824575818494,0.52060960625120167,0.52840317111491275,0.53906198972005703,0.54389591499102441,0.5433419221290493,0.54507790342078721,0.54413039603855173,0.53551070903291631 +1998,8,13,7,0,42,92,6.5,100.72391451810741,79.80458336074126,78.01168212739864,80.66566817357158,0.0,34.334719931603438,96.805343793913536,1.0,34.334719931603438,61.97875245789178,1.5,22.199999999999999,3.1000000000000001,84.050069127465591,85.15091475272996,85.792339721507005,85.8237385640832,85.858415726965305,85.863897412307253,20.183392802072554,20.302653264529191,20.275042625709396,20.136657448710977,19.882372278129953,19.590579957614601 +1998,8,13,8,0,82,188,7.5,221.07474044854624,66.67888120385537,66.21219821009495,89.51728746293544,0.0,72.522501422040577,218.71568931578648,1.0,72.522501422040577,136.20964926026414,1.5,23.899999999999999,3.6000000000000001,199.77348701304879,201.9011528243305,203.14059839096615,203.26075443128386,203.37863196870126,203.40771066368652,42.320503049589099,41.776732944581134,41.532407219023654,41.652637408110039,41.828447479792615,41.729652470422373 +1998,8,13,9,0,25,270,8.5,284.56032601581103,53.403788219041125,54.37955734630775,99.21583800992413,0.0,90.213447152090822,282.67222072793356,1.0,90.213447152090822,174.23782472399859,1.2471559944986454,25.0,3.1000000000000001,263.90585572017551,267.16848711840731,269.07558294952366,268.86747855836131,268.72433543955066,268.64050299233168,53.274573836048205,52.787168295890169,52.321816234414953,51.976221620430984,51.643558804037873,51.343097867104937 +1998,8,13,10,0,55,329,9.5,369.27966854283119,40.1920011832485,42.91559334993767,111.14595560051504,0.0,115.49459410006951,373.18141810175092,1.0,115.49459410006951,228.03160758189514,1.3784586680106616,26.699999999999999,3.6000000000000001,351.86569230800683,355.34326356471979,357.36720192100006,357.74637292623078,358.08701084888838,358.19657562928421,69.077883824155592,68.515937902559031,67.555417269998856,66.760908724976133,66.066844767392141,65.559768987080602 +1998,8,13,11,0,296,378,10.5,627.49211788055504,27.437748511347383,32.554628406052394,127.93047886709738,0.0,195.05690142743552,654.71675882377326,1.0,195.05690142743552,390.99112176465377,1.4453879650826131,28.899999999999999,4.5999999999999996,631.88510680413287,634.71925376046943,636.32392383572494,638.09127012940542,639.58265383472713,640.14574074229745,119.44092701909433,118.5117615608473,115.70484546539038,112.92346493254691,110.60388375164879,109.28306390357669 +1998,8,13,12,0,601,277,11.5,821.75091662123202,16.54644724804123,24.986476097636153,154.04587307628998,0.0,254.48708729117286,873.26536847666421,1.0,254.48708729117286,512.46691085924829,1.4765894890453115,29.399999999999999,4.0999999999999996,856.31917866394008,857.57291500748147,858.2072239904528,860.58112850819055,862.58452213720091,863.34221641750662,157.72089099679735,156.81261626615742,152.39686309386335,147.55708157441228,143.25404638388528,140.90359956557808 +1998,8,13,13,0,582,315,12.5,849.62349482354045,13.525884290084695,23.27816267781974,189.80364305575705,0.0,256.0233994385398,901.5541186613649,1.0,256.0233994385398,529.68664094993846,1.4823569708497542,30.0,4.5999999999999996,882.45565734825618,884.09467416985569,884.95756645787662,887.3702412950189,889.40526444276043,890.17603281064305,158.35363709252147,157.65000815439257,153.44419452821469,148.71215608015169,144.42367958984823,141.99102710092117 +1998,8,13,14,0,269,393,13.5,629.34419678106224,21.936758640412815,28.525703943750994,221.25572667771104,0.0,191.42475030327989,658.08285542624549,1.0,191.42475030327989,392.33915583808641,1.4643800167807504,30.600000000000001,5.7000000000000002,635.33583520335219,638.16987749159239,639.77518628500923,641.61748859950467,643.16832278410641,643.7574670772068,117.13923878497785,116.531633916742,113.93655096636856,111.22478265411605,108.80311026182032,107.32630493193349 +1998,8,13,15,0,530,267,14.5,685.24125411410114,34.14622357773585,37.895302850859274,241.76305883691168,0.0,218.01924701980019,720.11023799552163,1.0,218.01924701980019,427.76207715367127,1.4170045308442292,29.399999999999999,5.2000000000000002,700.35281037645734,702.07858389448836,703.01301695954544,705.16674669456336,706.97999885319462,707.66878974810083,134.85433882760441,133.15281960252136,129.20545782001332,125.48227825286446,122.62671183249812,121.32803578188057 +1998,8,13,16,0,83,271,15.5,325.47175377452078,47.22602360730484,48.982752208346746,255.50562910429164,0.0,102.85516033386183,328.09262474198022,1.0,102.85516033386183,200.77674223498818,1.3225189566356645,29.399999999999999,4.5999999999999996,308.97057988353174,311.96402833706975,313.70518795243134,313.96459724666511,314.20455505207559,314.27563521358809,61.537169865289343,60.833991784633653,59.900122355560846,59.207131589240518,58.676949367839171,58.341470552244402 +1998,8,13,17,0,392,194,16.5,385.74343981568211,60.511464923415275,60.71583425494544,266.0098516754246,0.0,127.4132583919838,389.8319869133303,1.0,127.4132583919838,240.05078209367875,1.1304331426060799,28.300000000000001,4.5999999999999996,361.81425443921705,363.67758084433558,364.73861037473387,365.71928551441869,366.5523586904053,366.85998516480231,76.335226874722551,74.136861812007155,72.446639418235762,72.042055690612301,72.338889665182222,72.615179218901872 +1998,8,13,18,0,299,99,17.5,188.4700100043305,73.74534510728783,72.58859078224582,275.11693031798916,0.0,68.193379010279429,183.01983703907169,1.0,68.193379010279429,118.47742263120071,1.5,27.199999999999999,4.5999999999999996,152.31740839836681,153.25195123902012,153.78136908064164,154.68196016089331,155.4279453394567,155.72069947027111,38.305674031521256,38.645526382949825,39.319731525312903,40.277522505334495,40.834092265464754,40.310379712090452 +1998,8,13,19,0,149,32,18.5,47.020852108914866,86.68209763717105,84.21412156916976,283.866160797623,0.0,21.781918505627761,37.866811350770057,1.0,21.781918505627761,29.82675539643968,1.2089485835190077,25.0,3.6000000000000001,25.584241584867261,25.9148692658414,26.102792640686427,26.423872399285653,26.69011012107482,26.794533470436612,13.10559428575467,13.072248315938692,12.889480035034598,12.732570094884215,12.583265097449482,12.432962980756495 +1998,8,14,6,0,54,1,5.5,4.0244992786288432,89.53557246116918,86.78922638315095,74.25292754936441,0.0,3.1185542301782574,1.2742983352836894,1.0,3.1185542301782574,2.572085986479268,1.3068545168783166,20.0,0.0,0.66998824306952431,0.67980670625520656,0.68434902035172651,0.71752933035769506,0.7452188853056092,0.75590241540559133,1.8269825721489412,1.8381671341365817,1.8356996937504919,1.8327159057269253,1.8177683458692107,1.7866252614973102 +1998,8,14,7,0,266,84,6.5,138.59767494464586,79.89842709658785,78.15560721554763,80.94668546406753,0.0,52.576158067162204,128.77715516959481,1.0,52.576158067162204,86.436630735068135,1.5,21.699999999999999,0.0,99.752450879640207,100.66391862892183,101.18414828683379,101.61017806570175,101.96906028153148,102.10459679363494,31.075762475212599,31.614071414478452,31.624963530306363,31.292603368415381,30.668401103692897,29.963591785132273 +1998,8,14,8,0,340,156,7.5,292.38060326860921,66.76349291206901,66.35182241595808,89.82060962836854,0.0,99.864033307244398,291.29263557412173,1.0,99.864033307244398,182.09939690070465,1.5,23.899999999999999,2.6000000000000001,261.76942890769578,263.33217467766013,264.22625066709918,265.02679050016724,265.7046942777452,265.95740355786944,58.380181451166202,57.029880654602607,56.4048633247683,56.811306518731627,57.560200525717129,57.745280251724516 +1998,8,14,9,0,466,206,8.5,476.44503942900309,53.48674716989553,54.52454364619737,99.55406043902643,0.0,154.98308912834315,490.6755100096334,1.0,154.98308912834315,297.87870270590713,1.2581547782661837,25.600000000000001,4.0999999999999996,465.36543290503113,467.00855410202195,467.92482255887876,469.60025780206627,471.00523270289489,471.54193635886077,94.934250269748134,92.459025202620282,89.571396745726659,87.933090491768027,87.28429313540633,87.291071401969049 +1998,8,14,10,0,419,267,9.5,573.03603594073559,40.28542640785147,43.08037518014184,111.53310199629438,0.0,177.85199841625729,598.9724719494584,1.0,177.85199841625729,358.38629045902593,1.3876425534196226,26.699999999999999,4.0999999999999996,578.04389254453451,579.91870388210145,580.95988089932541,583.01483180956666,584.7352368661368,585.39717663496401,109.7125596612059,108.1828437189439,105.00454714035057,102.28409091826225,100.38458978519336,99.528482079424322 +1998,8,14,11,0,489,290,10.5,701.21594282346996,27.566278437312256,32.761290049207105,128.36215122082837,0.0,217.42371150062581,740.28006374035806,1.0,217.42371150062581,437.93538018695614,1.4535340928621197,27.800000000000001,3.6000000000000001,721.01974716647351,722.77102170149055,723.71942196310442,725.99604828659949,727.90826915800528,728.63887701257829,134.32259472793473,133.35966937300404,129.73463341270954,125.98314114876854,122.77750241215212,121.02570819731756 +1998,8,14,12,0,295,397,11.5,663.79566688723833,16.768785641265247,25.258467990300716,154.40395082834834,0.0,201.67012104007387,696.39882959433044,1.0,201.67012104007387,413.65995454641393,1.4842054198549421,27.800000000000001,3.1000000000000001,673.80730294083537,676.58392093909549,678.15006321184978,680.02998635091603,681.61451131503338,682.21488106809329,123.47759541435514,123.0399367788317,120.33369065854988,117.35778824468494,114.61201019310219,112.88866508590148 +1998,8,14,13,0,456,330,12.5,747.89343329052349,13.835458904203765,23.589945873891857,189.8084472178735,0.0,231.84982427754511,793.52629668155532,1.0,231.84982427754511,467.10796044296995,1.4898253433687056,29.399999999999999,4.5999999999999996,774.28874711413505,776.03593283360158,776.97433162817845,779.40552288584854,781.4470729151119,782.22784029694071,143.06424310095596,142.6473021555081,139.06482943605062,134.98541821211938,131.24714778191574,128.98802738805645 +1998,8,14,14,0,138,397,13.5,517.91842804137968,22.168940644189405,28.810248697328525,220.98927983774678,0.0,161.4192843089001,535.40181355830941,1.0,161.4192843089001,321.99764381620975,1.4720459415973395,29.399999999999999,4.0999999999999996,511.86696233272983,515.29605885320052,517.26986726344649,518.51677986078539,519.57474301040031,519.96873251220882,97.772275289788027,97.419639701693271,95.715889906058109,93.925459365788271,92.237721733673865,91.057967915132991 +1998,8,14,15,0,596,228,14.5,696.74148722388145,34.332183158601396,38.14232415912286,241.45339758207044,0.0,215.85997085516487,735.50896383731663,1.0,215.85997085516487,435.36153119558458,1.4252438484714152,30.0,4.5999999999999996,717.28535524589745,718.57146107599169,719.24409995822691,721.5665098024906,723.51638692884012,724.26208898907896,133.96940492999627,132.34781980877656,128.2454403540284,124.33037316677772,121.30632419302833,119.90889554301228 +1998,8,14,16,0,563,181,15.5,548.82034095446954,47.39522724820912,49.207455376178835,255.21880448006198,0.0,174.6762910823233,572.83247918432676,1.0,174.6762910823233,343.65249699023036,1.3317931975955362,30.600000000000001,5.2000000000000002,551.4640122157773,552.6542927117506,553.29057175911908,555.37941423499296,557.12671009778921,557.79978686897732,108.19547865952478,105.79040591381062,102.14564160375194,99.499194699764629,98.009809546787437,97.614753777247145 +1998,8,14,17,0,555,131,16.5,400.64945470887847,60.677914921322554,60.93150342381712,265.7511134577003,0.0,133.9651091925243,408.82480967549384,1.0,133.9651091925243,251.28074020639124,1.1412365849322694,28.899999999999999,6.2000000000000002,378.59803782144809,379.59761122428415,380.14188257823798,381.81404263725858,383.21016611269636,383.74822951816759,81.006971496811417,78.242208893945559,75.963264491028482,75.420234040744859,75.821870303256901,76.312061831653494 +1998,8,14,18,0,276,102,17.5,183.5950713896371,73.91701408015535,72.80442233718287,274.8806381763654,0.0,65.543717878430897,178.13738665838682,1.0,65.543717878430897,114.49512218361349,1.5,26.699999999999999,6.7000000000000002,150.14370178522182,151.22168433363711,151.83769747931672,152.39734684332458,152.86693805865843,153.04547037347021,36.943345504730708,37.144547220940595,37.695858271235814,38.488075114929572,38.939704435078411,38.49302503721637 +1998,8,14,19,0,60,31,18.5,36.939693244339047,86.73323155552477,84.31870542562635,283.55720237295895,0.0,14.488526057228933,32.998376877990786,1.0,14.488526057228933,22.958482299543192,1.2193060079512565,25.0,4.5999999999999996,26.810355353321917,27.195712120979056,27.419311399525835,27.510025731990542,27.587539384897262,27.615777952475135,8.6108307434491973,8.5903102213371447,8.5138281775104989,8.4409617159156483,8.358553408551737,8.2706668655325117 +1998,8,15,6,0,30,1,5.5,2.6434712201989923,89.54860999530152,86.85962907435703,74.59045666743003,0.0,1.8700004022504668,1.0660016420748439,1.0,1.8700004022504668,1.7223689685953296,1.3006874433016495,19.399999999999999,1.5,0.65847441517686922,0.66829437407747605,0.67336198677065784,0.70696108618775844,0.73466096432993244,0.74566812512867098,1.0979286993174517,1.1061490830574181,1.1046548366640343,1.105363048550297,1.0996819498201325,1.0815352517102934 +1998,8,15,7,0,155,99,6.5,130.43163916527445,79.99210980917711,78.30014783204959,81.23190002979945,0.0,47.286400320419055,123.10917862461093,1.0,47.286400320419055,80.813828141984018,1.5,21.100000000000001,0.0,100.33289584108789,101.43866678713664,102.07725161582903,102.30105801388322,102.49478328817085,102.56312340613812,27.824714101350143,28.200154232653574,28.226351160501022,27.993583803869424,27.527435198516013,26.97847992187388 +1998,8,15,8,0,50,166,7.5,185.94359726191396,66.8482254332816,66.49232275021757,90.12808389272803,0.0,60.069521260155554,184.15796812074112,1.0,60.069521260155554,114.5312365486584,0.9908395739486155,23.899999999999999,1.5,168.43862221447043,170.37647011079446,171.50745781200811,171.60269599001032,171.69683212973069,171.71948097978344,35.131024404665361,34.733973216010895,34.530070135412466,34.576452593258523,34.652782422622231,34.542779411471315 +1998,8,15,9,0,6,188,8.5,191.46963655260279,53.57030442790091,54.67085082940677,99.89644343896416,0.0,60.293819974749944,189.42983681514488,1.0,60.293819974749944,117.06165887083708,1.2693894407928286,24.399999999999999,2.6000000000000001,176.2165048060636,178.64438165333689,180.06623363330584,179.87300365084869,179.73319915961147,179.65913051300203,35.42574735423635,35.227160079125426,35.040819166200087,34.871532143686132,34.648632010865946,34.403698059333649 +1998,8,15,10,0,36,304,9.5,330.22257586247588,40.38026973226315,43.24716389899483,111.92420849709677,0.0,103.34700666913589,333.21294630492866,1.0,103.34700666913589,203.88684447314125,1.39699978324737,25.600000000000001,0.0,313.3349692065047,316.61915636062554,318.53289982271212,318.86915861094405,319.17125170206407,319.26833205903552,61.656523042234831,61.251553140424342,60.504943388190114,59.847586899055088,59.254838143755926,58.771412356616231 +1998,8,15,11,0,103,386,10.5,472.41159946475875,27.69764611054738,32.97084833893739,128.79663900315992,0.0,147.54028542336823,482.21505202313688,1.0,147.54028542336823,291.9077702192464,1.4618235612439126,27.199999999999999,2.1000000000000001,458.34240252955271,462.25244731884732,464.51963671359249,465.05204090589655,465.52644438313268,465.68264494412108,88.642584230077617,88.220538891707207,86.941158589810868,85.591739821277457,84.290740282385002,83.362085678998952 +1998,8,15,12,0,36,394,11.5,426.48386130583816,16.995601616438236,25.534023168690535,154.76290316080699,0.0,133.35846021354885,434.15696161711082,1.0,133.35846021354885,263.82995824454576,1.4919508837542659,27.199999999999999,0.0,410.31659166049343,414.26338034120181,416.55850428920786,417.16152894976517,417.68831552877327,417.87057942216944,79.725610232862536,79.559212253386079,78.658767699844375,77.662504518399246,76.613770745324061,75.726920738597627 +1998,8,15,13,0,36,296,12.5,328.91167624747015,14.149340537944665,23.905758903290785,189.8174443179251,0.0,101.90904535461581,334.03107084259824,1.0,101.90904535461581,203.32131245558548,1.4974199357006333,27.800000000000001,2.6000000000000001,315.09513705214164,318.27429178373939,320.12551537860645,320.5435137486698,320.91123466235769,321.03618799121438,60.773215532640343,60.681978510375778,60.068298870325194,59.3725208792033,58.621511173250326,57.952123878908644 +1998,8,15,14,0,203,393,13.5,570.37628646142116,22.407135260085763,29.09969520678038,220.72748563237306,0.0,174.41068282822806,591.55597485509122,1.0,174.41068282822806,354.2493759888842,1.4798440048578154,29.399999999999999,2.6000000000000001,567.90051301289361,571.30823378362186,573.26321423962554,574.49563599001226,575.54620558474062,575.93341776815498,105.87107934891949,105.52133772783291,103.5918166503677,101.46320045080634,99.437961123118313,98.077902697195185 +1998,8,15,15,0,572,237,14.5,685.30738787199698,34.52354476398495,38.394398984753636,241.14538853196217,0.0,206.57263165092886,723.72639155808145,1.0,206.57263165092886,428.31391234048215,1.4336322818904974,30.0,1.5,705.07362580731331,706.45334381375915,707.18534787821307,709.51030166810756,711.4592461990444,712.20742752712499,128.10570484839357,126.73187262759615,122.91322470949616,119.2203147727203,116.29721746625647,114.87785183332034 +1998,8,15,16,0,533,191,15.5,537.60151393373678,47.56917409333569,49.436962237135965,254.93188873659673,0.0,171.03258988333857,560.03889852873726,1.0,171.03258988333857,335.77066760478476,1.341250739169027,30.600000000000001,1.5,538.88696000737286,540.2802799051351,541.03909687607415,542.79137443667719,544.2646858571045,544.82541137169846,105.69170967659578,103.38566839034372,99.937982110031299,97.396652810351284,95.929240967934817,95.528029296057639 +1998,8,15,17,0,409,188,16.5,385.33939620735623,60.84865027549672,61.151687759248624,265.49150162980527,0.0,127.6776050696985,391.95654064906796,1.0,127.6776050696985,241.1115964503563,1.152287792819968,29.399999999999999,3.1000000000000001,362.38805257958876,364.02117327260544,364.9445085165255,366.37862500514456,367.57923835174643,368.03892001524162,77.024489885780042,74.779826590907234,72.852542857203701,72.277758349420367,72.490211626894535,72.775613733062102 +1998,8,15,18,0,11,98,17.5,101.21158561615765,74.09264930685067,73.02452563560288,274.64310979460134,0.0,32.380955588271163,99.262664697969583,1.0,32.380955588271163,61.783875992545426,1.5,27.800000000000001,3.6000000000000001,90.938771145035886,92.226910285710545,92.981172529883892,92.845489890382737,92.744314201712456,92.693919176231574,18.800333181136399,18.764424699545266,18.780782617223764,18.790536936370753,18.72300658668555,18.563811708961943 +1998,8,15,19,0,18,25,18.5,26.748566041735206,86.78581390390374,84.42535017135675,283.24524955769584,0.0,9.1458448289837655,25.472974482032267,1.0,9.1458448289837655,16.425840573410564,1.2297422926299295,26.699999999999999,4.0999999999999996,22.644914467583156,22.98423756532387,23.182641532958655,23.180901762867006,23.182004840159077,23.180035473262201,5.3798274259103787,5.3674219175552853,5.3432919357350395,5.3159248570842816,5.2754955788623752,5.2271351479406389 +1998,8,16,6,0,11,0,5.5,0.58906976711108916,89.56102685800657,86.9302396114617,74.93232770875095,0.0,0.5367426996986111,0.08427596872034876,1.0,0.5367426996986111,0.0,1.2956717262171438,21.100000000000001,0.0,0.0046046238742026143,0.0046058810759239538,0.0043817257987310764,0.0042041368136441102,0.0042020283428658269,0.0040634788155938873,0.31347943529030803,0.31453720639029514,0.3140347014847204,0.31249407349312303,0.3085920043978489,0.30312370927965099 +1998,8,16,7,0,64,72,6.5,84.819431860717941,80.08562879036012,78.44528537448714,81.52121612362991,0.0,29.596557810123709,81.459867616619078,1.0,29.596557810123709,52.693920369150263,1.5,22.199999999999999,0.0,68.661818846485062,69.511441237085052,70.005135436911729,70.205678892070367,70.375902657176226,70.438945108688245,17.38457140011986,17.573336944094233,17.591531719474368,17.501487120728992,17.290154296866088,16.99651084136099 +1998,8,16,8,0,0,86,7.5,86.0,66.93309641360898,66.63369636966434,90.43959806821732,0.0,27.083042793267342,84.644332410685095,1.0,27.083042793267342,52.457585144085371,1.0056498913753096,24.399999999999999,0.0,78.461647354640576,79.643658814276833,80.336828874978266,80.210622789278361,80.115801384188316,80.069341985471482,15.821790715473851,15.770981184625285,15.740830606298728,15.698094941404912,15.608472081270808,15.48770125704185 +1998,8,16,9,0,0,179,8.5,179.0,53.65449706632139,54.81848809721862,100.24284678953146,0.0,56.464376803590085,176.9086684563915,1.0,56.464376803590085,109.40826226243819,1.2808601075565234,25.600000000000001,2.6000000000000001,164.3980082007829,166.72545374725564,168.08902805442995,167.90007818174337,167.76262119292966,167.69060430660483,33.13251193156097,32.974182558438883,32.828960504961699,32.6872441680881,32.482202343048577,32.243677032826803 +1998,8,16,10,0,176,324,9.5,451.84342257286568,40.47658720416226,43.415974058072194,112.31908405853869,0.0,140.85404725197466,464.07516695860863,1.0,140.85404725197466,280.52113460165913,1.40652990153607,27.0,3.1000000000000001,442.08296069738765,445.14718765649229,446.91336277772552,447.86368558800496,448.67564893094936,448.97289740073671,85.372332728546382,84.593578623031036,82.918903776725216,81.389694223230805,80.168550879659961,79.429346245700458 +1998,8,16,11,0,278,370,10.5,602.66482374681777,27.83191483124633,33.18330520598824,129.2336758857383,0.0,187.36774534000475,630.07030340776964,1.0,187.36774534000475,375.65858836193314,1.4702558815007318,28.300000000000001,3.1000000000000001,607.59700820128694,610.39245529452376,611.97660655228299,613.7255178858328,615.1991591746862,615.75760464722805,114.54132718469849,114.05597171824694,111.58481825082302,108.96227928759505,106.57314141058498,105.0639305529461 +1998,8,16,12,0,156,425,11.5,565.4342011373908,17.22688140035636,25.813099919083434,155.12245506932865,0.0,173.10214022397423,586.63791446656523,1.0,173.10214022397423,351.44392032645629,1.499825542741553,29.399999999999999,3.1000000000000001,562.06866668519081,565.63116371064439,567.67918227023847,569.00119574391806,570.12355580505266,570.541196705419,104.83756086531054,104.695755666323,102.94263187958219,100.9236588972514,98.968789730274693,97.554025431727112 +1998,8,16,13,0,72,431,12.5,496.65950062127212,14.467420951722735,24.225510793056745,189.83043011474984,0.0,155.14377671076733,508.18129968740408,1.0,155.14377671076733,307.25067914557883,1.5,28.300000000000001,2.1000000000000001,482.54374349223377,486.73309332802313,489.16317393127923,489.85317510976085,490.45702445535443,490.66522012965112,93.01273578708205,92.90321943847087,91.761488783287859,90.392268478759803,88.961900279074925,87.829137359837091 +1998,8,16,14,0,78,403,13.5,470.95872846597069,22.65123837594937,29.393937440832463,220.4703612300409,0.0,147.13476066135428,480.9612294096475,1.0,147.13476066135428,291.17015643807349,1.4877746081878949,26.699999999999999,1.5,456.49358741587758,460.51577415654083,462.84970000934925,463.44182690380626,463.96415942369634,464.14064671359796,88.223590175985862,88.01012889379119,86.885576075030855,85.60633559917963,84.290920949912348,83.265717032047405 +1998,8,16,15,0,77,354,14.5,414.13392281432584,34.72025259468937,38.65144032259288,240.83915439166353,0.0,129.43613009656772,420.93186712981492,1.0,129.43613009656772,255.80065409838778,1.4421710727996593,25.600000000000001,0.0,398.50436599571594,402.18087159973368,404.31689274833252,404.75890349274948,405.15455809027708,405.28314844291953,77.57359982699785,77.162889717526042,76.111005930982728,75.045278404651029,74.035787483700631,73.290620358490543 +1998,8,16,16,0,65,294,15.5,336.06625062144889,47.74781582918518,49.67119776154011,254.64499757397962,0.0,106.17761542275306,339.00943929794448,1.0,106.17761542275306,207.38128342528955,1.350894571916868,25.600000000000001,3.1000000000000001,318.76463895966134,321.93536618632533,323.78056698467549,324.07577429504619,324.34566069844607,324.42840276815912,63.495237990470393,62.893338185322023,61.983860853721083,61.261792220397872,60.66852764997487,60.245271269473584 +1998,8,16,17,0,76,204,16.5,240.40816238871767,61.02361768100172,61.376314376151946,265.23110723163626,0.0,76.656479124677048,240.05019923468956,1.0,76.656479124677048,148.15081717562043,1.1635940738859152,23.899999999999999,3.1000000000000001,222.36983277167118,224.698608436916,226.05536407154142,226.19768688130964,226.33497445564177,226.37052785403486,45.451016114865311,44.782306186699749,44.214355208821189,43.974124871054201,43.85775030929009,43.735009906423592 +1998,8,16,18,0,0,34,17.5,34.0,74.27218771488077,73.24882371240604,274.4044139641878,0.0,10.693137361357211,33.420074983213446,1.0,10.693137361357211,20.696358964234829,1.5,24.399999999999999,3.1000000000000001,31.030480553916846,31.503552203249793,31.781027998562013,31.716285299995143,31.666765395690781,31.643417397789619,6.2442332048220983,6.2254345684477483,6.2149795870927225,6.1950202821538536,6.1548477533690873,6.1056424429307521 +1998,8,16,19,0,0,20,18.5,20.0,86.83981647124297,84.53401354763346,282.9303856940377,0.0,6.2900808007983589,19.657558519243125,1.0,6.2900808007983589,12.173019685191367,1.2402789680691684,23.300000000000001,2.6000000000000001,18.253223855245192,18.531501296029287,18.694722352095301,18.656176170243157,18.626672531558889,18.612783200919623,3.6730002982786871,3.6618810952393619,3.6557310104027381,3.6439121641844907,3.6201851088115045,3.5912404299604921 +1998,8,17,6,0,0,0,5.5,0.0,89.5728204337377,87.0010394536055,75.27843811773664,0.0,0.0,0.0,1.0,0.0,0.0,1.2918874795281212,22.800000000000001,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,17,7,0,0,28,6.5,28.0,80.17898328410644,78.59100281037114,81.8145365738498,0.0,8.8061131211177024,27.517951383540172,1.0,8.8061131211177024,17.039597017156829,1.5,22.800000000000001,3.1000000000000001,25.554513397343282,25.944101814441005,26.172611292933418,26.117717809594016,26.075660630234399,26.055903679657565,5.1420435687437767,5.126353746011433,5.1177434347309454,5.1010401587643042,5.0676290650663649,5.0271057539293187 +1998,8,17,8,0,145,172,7.5,229.17753317435276,67.01812523654468,66.77594180044792,90.75503867789607,0.0,75.352763687192535,228.44072958060607,1.0,75.352763687192535,142.16372527374608,1.0208503249594538,23.899999999999999,3.1000000000000001,206.77711913549388,208.62789392334474,209.70161168685053,210.15209660224491,210.53887128090156,210.67799667669857,44.266431592314447,43.485743611644516,43.032159007453423,43.129731979008703,43.402545840855488,43.412214659818247 +1998,8,17,9,0,202,288,8.5,403.95638007675814,53.73936343180918,54.967465557931106,100.59312906948145,0.0,127.94422646824144,410.77201007277495,1.0,127.94422646824144,250.44148198477095,1.2925669114606577,24.399999999999999,4.0999999999999996,386.65260506855293,389.47567739938847,391.10529907546629,391.83426175653244,392.46272102992833,392.68699780020131,77.26125297170195,75.930518416196364,74.291609867552211,73.236298647962258,72.615527007462504,72.369998561025341 +1998,8,17,10,0,206,328,9.5,477.21207781253014,40.57443519152475,43.58682030521281,112.71753695131012,0.0,151.22396416844714,490.99731978036834,1.0,151.22396416844714,296.13433033479691,1.4162324653612637,26.699999999999999,4.5999999999999996,468.55955117020653,471.65382783054349,473.4334194893749,474.3826220387428,475.19687262387976,475.49212554658175,91.780208777696785,90.953845030029342,89.110486810668888,87.371001861124782,85.937982523402638,85.108199105360484 +1998,8,17,11,0,60,272,10.5,322.09164336839132,27.96914581823744,33.398661514299114,129.6729978540471,0.0,99.685575264793783,327.13363357318786,1.0,99.685575264793783,198.87666355240404,1.4788305846544356,27.800000000000001,5.7000000000000002,309.21565667507025,312.22847922795404,313.98142093019436,314.3061527660156,314.59787868452725,314.69180081287135,59.54782214461914,59.383216098956453,58.715288149930089,57.975855167933602,57.195721541510032,56.556348924008311 +1998,8,17,12,0,595,317,11.5,851.34625580547345,17.462606339376137,26.09565521402674,155.48233962741537,0.0,256.65030978293817,905.49818339330227,1.0,256.65030978293817,530.65691759366916,1.5,29.399999999999999,4.0999999999999996,885.87122493748723,887.61089806484279,888.53381716152649,890.9190203807143,892.93108393843943,893.69308111257442,158.19105438510059,158.26715496202067,154.52102921701845,149.7932796076708,145.33256310309994,142.52484649291776 +1998,8,17,13,0,120,364,12.5,473.15265859420731,14.789592511308062,24.549110256189547,189.8472010441451,0.0,145.04310854062595,490.79348349079555,1.0,145.04310854062595,294.46234596138373,1.5,31.100000000000001,7.2000000000000002,468.9666003771199,472.12237650953114,473.94030877454776,475.18597899743617,476.23774235858434,476.63409748090407,87.652764488525605,87.680894176539752,86.353777732914978,84.775084719338736,83.208144112080433,81.989626125588913 +1998,8,17,14,0,347,375,13.5,676.43653510567151,22.90114089812429,29.69286755078248,220.2179112243935,0.0,205.42062910711098,710.58164556060694,1.0,205.42062910711098,421.19829758194777,1.495838203253319,31.699999999999999,8.1999999999999993,688.13657266659857,690.88392789186014,692.43106834671096,694.22407148364664,695.73926466479406,696.31006640733244,125.66125951606548,125.46800582244596,122.81498949605236,119.6993177347356,116.77641630858312,114.87355537205809 +1998,8,17,15,0,542,240,14.5,661.72842425383328,34.92224555349614,38.9133579703358,240.53480824270108,0.0,199.69860385033684,698.73042712409142,1.0,199.69860385033684,413.0918745625284,1.4508615430574774,32.200000000000003,7.2000000000000002,680.0438258035565,681.58864358809581,682.42168119512098,684.50347216521789,686.25279880456594,686.92068247743327,123.52601379051121,122.49390669317958,119.02965039234341,115.52737665859762,112.60762493714934,111.06759817514833 +1998,8,17,16,0,533,188,15.5,531.24613676172089,47.93109985259987,49.91008361280789,254.3582411204311,0.0,164.74209359079396,554.66476253627775,1.0,164.74209359079396,331.80558889101405,1.3607278417679103,31.100000000000001,6.2000000000000002,533.46763003246235,534.84594020569875,535.59761060190874,537.33207835573342,538.78914671419943,539.3452389130457,101.90336884355402,99.959080858326089,96.684859353757815,94.113754162072041,92.494143910996982,91.935880722386315 +1998,8,17,17,0,455,151,16.5,367.37193988151478,61.20276023511646,61.60530731901572,264.970017758356,0.0,122.21579457168052,375.13084959302068,1.0,122.21579457168052,229.88287111023016,1.1751631349230671,31.100000000000001,6.2000000000000002,346.6185519712318,347.89324372891838,348.60501896195245,349.96615226309001,351.10633903596607,351.54225590449551,74.066048219233537,71.782157948355717,69.72758505404056,69.031954540020877,69.139501183442974,69.436879295141509 +1998,8,17,18,0,426,79,17.5,200.1528049422644,74.45556301409144,73.4772367230309,274.16461687636865,0.0,73.781286945233489,194.0394556822867,1.0,73.781286945233489,125.39738611741285,1.5,30.0,5.2000000000000002,157.61189607396145,158.34673483028217,158.75558911563616,159.55183797792182,160.21519176433378,160.47194383555293,41.317355698968591,41.44234723219413,42.127010435179137,43.21981042766479,43.979575619834485,43.534727681479104 +1998,8,17,19,0,53,24,18.5,28.946619039123533,86.89520887686047,84.64465110055114,282.6126930706739,0.0,11.863482782659167,25.459030751705228,1.0,11.863482782659167,18.222198509662306,1.2509403002100146,28.899999999999999,5.2000000000000002,19.733381797579494,20.012508802979184,20.173872576571682,20.325680719276075,20.451916490217776,20.50107623671142,7.0760947522704551,7.0769022388793239,7.0112555786553434,6.9546710024153686,6.8887928131067211,6.807999244271028 +1998,8,18,6,0,29,0,5.5,1.4813437204641691,89.5839888526292,87.07201046552184,75.62868470994302,0.0,1.3351350952543577,0.21056031306301781,1.0,1.3351350952543577,0.0,1.2894215556504731,21.699999999999999,0.0,0.011010959898123871,0.011014301943415822,0.010455846324199086,0.010014765636977816,0.010008874295669544,0.0096649352125182993,0.78004289855352293,0.78297479485509724,0.78178104462087294,0.7776821934970567,0.76763710955430908,0.75380464054306684 +1998,8,18,7,0,185,88,6.5,124.13197588656422,80.27217445305203,78.73728464688571,82.11176282180416,0.0,45.341274638768979,117.30292993621292,1.0,45.341274638768979,77.520554037812275,1.5,23.899999999999999,2.1000000000000001,92.632479742252983,93.584031340417553,94.131589288992103,94.556265059694283,94.911755570810925,95.047953605815053,26.553424056114448,27.052265144535468,27.187060563491006,27.061021542627049,26.647102566875954,26.050909736090368 +1998,8,18,8,0,397,146,7.5,301.63635669606117,67.10333296536956,66.91905888686958,91.07429099534518,0.0,101.88335552754458,303.3584268398202,1.0,101.88335552754458,188.9046388132455,1.0364442035926615,25.600000000000001,1.5,270.43388145544895,271.76447054955929,272.51931893334211,273.70224861539634,274.69127086666924,275.07123619167271,60.220759206794341,58.575769342481451,57.566756912475114,57.790679005529107,58.50965671420402,58.817053615308701 +1998,8,18,9,0,448,201,8.5,457.20722810080241,53.8249430539791,55.11779415014798,100.9471477095357,0.0,145.31890612807376,473.22879423099005,1.0,145.31890612807376,285.97320093114757,1.3045099969200216,27.800000000000001,1.5,448.30185526305024,449.91319425371034,450.81342570187348,452.46665144648296,453.85076441068571,454.38211203558546,89.289127987719894,87.283817751516381,84.545189375925318,82.783548298299081,81.883600226455101,81.714771455967892 +1998,8,18,10,0,570,199,9.5,610.68060305124607,40.6738702446657,43.75971728444867,113.11937486484624,0.0,189.22469259941857,644.90077070531584,1.0,189.22469259941857,382.09248598809489,1.4261070472242994,30.0,2.6000000000000001,626.0432422878348,627.24137714758592,627.87319969597593,630.09026706071677,631.94619245976503,632.66074766185193,117.4068025470891,116.02403519229665,112.46120168941677,109.09513621092435,106.50732919048866,105.28596388268494 +1998,8,18,11,0,597,247,10.5,744.15641364739167,28.10939802416763,33.61691696687834,130.1143433977341,0.0,230.5220867074128,791.58563611650141,1.0,230.5220867074128,464.67762181881972,1.4875472229501119,31.699999999999999,0.0,774.00355282733005,775.3065851993814,775.98055709920595,778.3489997113461,780.33983534034212,781.09969964692687,142.59527534300935,142.14788752410811,138.41468066397323,134.13129879764168,130.21730558767945,127.91009855374462 +1998,8,18,12,0,601,283,11.5,821.40834894251304,17.702752998047227,26.38164467572953,155.84229798504782,0.0,247.27083285050691,876.53518945125143,1.0,247.27083285050691,512.20880347515379,1.5,32.200000000000003,1.5,859.05801003368276,860.41400752303889,861.11220231877155,863.47641553100527,865.46890075628244,866.22526154290938,152.67589081624075,152.75816662792667,149.03256862904797,144.32517496796166,139.8975567814478,137.13823944273094 +1998,8,18,13,0,282,366,12.5,621.83515980752827,15.115748124384595,24.876465687824094,189.8675546692604,0.0,188.89291662910406,655.08195207563699,1.0,188.89291662910406,387.69821142863606,1.5,31.100000000000001,3.6000000000000001,633.89184928734994,636.46605760506611,637.91731456901402,639.7437433491848,641.28055847588803,641.86524526489927,115.40936368294344,115.47396571204504,113.1873033193885,110.38096304921159,107.69344355355759,105.84637755618013 +1998,8,18,14,0,514,301,13.5,746.15331208649422,23.15672911525264,29.99637600143238,219.97012834929748,0.0,225.18341230701358,792.67730839648652,1.0,225.18341230701358,465.74149261917881,1.5,33.299999999999997,5.7000000000000002,773.41562644032604,775.16369624721938,776.10571624218801,778.43485406292086,780.39177506067392,781.13952238264505,138.84709225696304,138.63673127587495,135.23974156611504,131.23902066486241,127.55597043818838,125.27900649892452 +1998,8,18,15,0,465,273,14.5,633.45145276705523,35.12945738608659,39.18005865810986,240.23245368040915,0.0,196.50079665231266,668.2890030389251,1.0,196.50079665231266,395.83950123512926,1.459705095372804,34.399999999999999,5.7000000000000002,648.31168144608068,650.12165703195149,651.11434589202838,653.25929761475504,655.05799618171955,655.74768030677956,121.21635026529557,120.388163439395,117.21056373683039,113.94900057304565,111.16060464903484,109.59924249035242 +1998,8,18,16,0,296,269,15.5,458.65681950007064,48.11896934100251,50.15353823747082,254.07172390976714,0.0,145.53769730815222,473.95262326577631,1.0,145.53769730815222,285.83864019703793,1.3707538530813372,33.899999999999999,5.7000000000000002,451.36273936608438,453.73320889194849,455.08448731308067,456.4037880118006,457.51709217432995,457.93724317636509,88.936167920707319,87.666732214364075,85.417503184350764,83.6431221860134,82.422357520312616,81.846819282294916 +1998,8,18,17,0,146,214,16.5,282.90573900217163,61.38601748984954,61.8385876293779,264.70831712751556,0.0,90.735636240251424,285.05943022942449,1.0,90.735636240251424,175.51441100687407,1.1870030986379072,32.799999999999997,5.7000000000000002,263.31076340853815,265.53850339472581,266.82960944012666,267.39207778232935,267.87423305975108,268.04826532914853,54.233803973238601,53.200126919749422,52.257544239676207,51.894637260596078,51.817481118510742,51.766951248847526 +1998,8,18,18,0,39,108,17.5,118.93967606437782,74.64270573769059,73.70968199273793,273.9237821039109,0.0,38.964222909435193,116.7088623545676,1.0,38.964222909435193,73.192649327312296,1.5,31.100000000000001,3.6000000000000001,104.33661219427806,105.65114604639042,106.41860225060448,106.45859131592033,106.50133708051645,106.50897704053293,22.47998735672855,22.456893498329887,22.536781331770715,22.67832860374341,22.718885372956013,22.526518353967017 +1998,8,18,19,0,57,23,18.5,28.208443440571028,86.95195853689222,84.75721615001426,282.29225291046214,0.0,11.563474031906145,24.701666620254159,1.0,11.563474031906145,17.753519698570951,1.261753652651906,29.399999999999999,2.1000000000000001,18.991756816247428,19.259696378096887,19.414507395770656,19.560884178578963,19.682634837609267,19.73001827794786,6.9003225022131884,6.9035187454971734,6.8384342659987256,6.7802618878671197,6.7120483613677422,6.6307652047646402 +1998,8,19,6,0,24,0,5.5,1.1961850568337817,89.59453096368536,87.14313489282196,75.98296370287245,0.0,1.0781215917242901,0.16984105513199238,1.0,1.0781215917242901,0.0,1.28836840716136,20.600000000000001,4.5999999999999996,0.0087035174030560668,0.008706216104635088,0.0082552631911528632,0.0078990905354597383,0.007894333277343131,0.0076166024671043596,0.62988464192946392,0.63225214819805009,0.63128819488185195,0.62797837259228961,0.61986696729116864,0.6086972485406954 +1998,8,19,7,0,164,84,6.5,115.61821364541306,80.36520534215997,78.8841168980971,82.41279495894024,0.0,42.026255281472309,109.67574443047928,1.0,42.026255281472309,72.255346085721925,1.5,20.600000000000001,6.2000000000000002,86.896270405946836,87.807777171705226,88.332942632623528,88.747776583093881,89.094383775924172,89.227736680472049,24.569714719772893,25.037625158748028,25.178508636808704,25.095454230964126,24.738128456156744,24.19217993813373 +1998,8,19,8,0,404,137,7.5,294.44605630673658,67.18874228318906,67.06304873824436,91.39723908371911,0.0,99.601565953666423,296.6825814602488,1.0,99.601565953666423,184.43836026071429,1.0524349181748136,21.699999999999999,5.2000000000000002,264.14339752936877,265.38243926681912,266.08342770456949,267.24879386572189,268.22315577698294,268.59739064602115,59.067985154078194,57.379345192801388,56.304167567904685,56.428956060156537,57.079472103722793,57.393001648851353 +1998,8,19,9,0,429,206,8.5,450.40872083349768,53.91127655299552,55.269485564871275,101.30475904532013,0.0,143.13399762048607,466.60313797169545,1.0,143.13399762048607,281.79025819508837,1.3166895240496537,22.199999999999999,5.7000000000000002,441.64051865927013,443.30301459417268,444.23428555796386,445.89018419290989,447.27580443679426,447.80863660974808,87.986429845225985,86.151710340174375,83.512332809442157,81.721607426931598,80.726977824159306,80.48160201294003 +1998,8,19,10,0,576,203,9.5,617.79561897388794,40.774948957512095,43.93467953645127,113.52440501133437,0.0,191.44093980177027,652.99618345195802,1.0,191.44093980177027,386.47987966162913,1.4361532374312775,22.800000000000001,7.2000000000000002,633.79271812861566,635.03476223803955,635.69134713286417,637.91278731786383,639.77269963265041,640.48855532543803,118.64786342154748,117.54095058140783,114.09099451159945,110.66893894489237,107.90916286032774,106.50014615658699 +1998,8,19,11,0,622,241,10.5,757.64231655927529,28.252727957180714,33.838070015539444,130.5574536939486,0.0,228.08175542465122,807.05151491451988,1.0,228.08175542465122,472.97391079564017,1.4964053712775265,23.300000000000001,6.7000000000000002,789.59978932271133,790.85687201765336,791.50462909497469,793.87160186681922,795.86068777599496,796.62066775745689,141.05611846846389,140.82513457497578,137.18578615081964,132.87209053387838,128.91790170077311,126.53388546840849 +1998,8,19,12,0,210,402,11.5,589.6556887919503,17.947293267866403,26.671022543374654,156.20207934691283,0.0,180.20742836210761,614.28904282499764,1.0,180.20742836210761,366.23538098814419,1.5,22.199999999999999,5.7000000000000002,590.38978412601159,593.82244433223184,595.78978929525465,597.06517165278888,598.15175347953732,598.55285329424146,109.10890199211597,109.28412441765225,107.5747423814997,105.35365177498338,103.08395668891546,101.39040466654106 +1998,8,19,13,0,642,245,12.5,825.8632520552145,15.445781177743198,25.207485159853725,189.89129008534852,0.0,248.22087625187817,884.82577365750944,1.0,248.22087625187817,515.0503200936954,1.5,23.899999999999999,3.6000000000000001,869.10416029196313,870.11115432592567,870.60062082664979,872.98711570872308,874.99778574141317,875.7616902976564,153.24535272008865,153.71662548181268,150.10509832390829,145.2795864285884,140.57527497198595,137.53301382348681 +1998,8,19,14,0,753,184,13.5,834.10799308161256,23.4178850535422,30.304351695701953,219.72699419170314,0.0,250.65493215364955,890.60619156310747,1.0,250.65493215364955,518.79531787738188,1.5,23.899999999999999,1.5,875.95672203267804,876.93413965053105,877.40492628900233,879.32003474962096,880.95039986844483,881.55543105350966,155.0002918144761,155.02021258583648,151.09912361510166,146.04300386326511,141.27636517307801,138.41156473245303 +1998,8,19,15,0,721,168,14.5,724.72976399277354,35.34181682990858,39.451446177971214,239.9321849774456,0.0,217.75272908957001,770.98405943512284,1.0,217.75272908957001,452.06387861897281,1.4687032139152854,25.0,5.2000000000000002,755.08012793749265,755.89967694465258,756.29125794739844,758.41216446444309,760.199756949174,760.87810700610737,135.32407766867755,134.35107430142205,130.3713749185037,126.06995711305557,122.3276161885332,120.39238160996015 +1998,8,19,16,0,657,151,15.5,569.77451171895439,48.311363328513124,50.40147695725118,253.7855448758152,0.0,181.44185578918197,598.88452387186862,1.0,181.44185578918197,356.18788770960623,1.3809760717296435,25.600000000000001,4.5999999999999996,577.69855776981922,578.63499438931399,579.11558467174223,581.06568123917123,582.70348500275099,583.32942301035177,112.71365589110415,110.76812436857578,107.00472880653264,103.82979471590829,101.62640676910654,100.8212668018656 +1998,8,19,17,0,583,115,16.5,388.01821901410005,61.57332550831884,62.07607341526375,264.446085656339,0.0,126.71415047288966,398.78672149298063,1.0,126.71415047288966,243.22644720761576,1.1991225213226917,25.0,4.5999999999999996,367.90515023391299,368.76180661109504,369.22253919437401,370.7921426194618,372.10302791484975,372.6080066961394,77.412048958752749,74.833967037250204,72.363274574095598,71.373233455625581,71.356534498894405,71.699838464766401 +1998,8,19,18,0,431,70,17.5,189.1895842320364,74.83354328515597,73.94607406662513,273.6819705896928,0.0,68.763135307219599,184.44813397009904,1.0,68.763135307219599,119.28420517056129,1.5,22.800000000000001,5.2000000000000002,147.25872797143001,147.86652640999279,148.2019063994293,149.2181702156015,150.05867532791433,150.38992103691595,38.561253365074272,38.592474824049205,39.171850118671728,40.265506707877229,41.108867362129381,40.752797523675021 +1998,8,19,19,0,117,20,18.5,30.458274126816086,87.01003062731378,84.87165975494358,281.96914536174154,0.0,14.402099067269202,24.362237162745313,1.0,14.402099067269202,19.402581793129499,1.2727499090998737,20.0,4.0999999999999996,15.665324504836432,15.865972016940407,15.979432736183917,16.215802258199595,16.411237548992169,16.488399732674573,8.6579396863478468,8.6761789385101054,8.5716522917854263,8.4697655715500364,8.3535688567708206,8.2326180986785751 +1998,8,20,6,0,0,0,5.5,0.0,89.60444630472254,87.21439533424623,76.34117074474526,0.0,0.0,0.0,1.0,0.0,0.0,1.288831084967402,12.199999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,20,7,0,208,87,6.5,126.57605823256125,80.45808083950102,79.03148704964347,82.71753176329477,0.0,46.467160483821054,119.67877598933802,1.0,46.467160483821054,79.000796585900815,1.5,15.0,2.6000000000000001,93.563536559811823,94.50503116715312,95.046152024186355,95.461887802598042,95.810204301640908,95.943262343782692,27.097875826941841,27.653477419186753,27.851002188162905,27.770916294367815,27.363578329496693,26.731570998859503 +1998,8,20,8,0,486,121,7.5,309.27069208841391,67.27437743065884,67.20791367390673,91.72376583424798,0.0,105.16606976627382,312.06454247443958,1.0,105.16606976627382,193.44548259432366,1.068825931877866,18.899999999999999,3.1000000000000001,277.38207164733842,278.4591169708105,279.06149797328703,280.17829165525427,281.11532433834225,281.4721403773857,62.587285379775281,60.626124788649513,59.333451242344246,59.347837491212758,59.980361458989606,60.371010300818917 +1998,8,20,9,0,589,156,8.5,490.26910726442765,53.998405545276874,55.422552166512936,101.6658183703278,0.0,156.02318835537048,511.41902050559099,1.0,156.02318835537048,307.0553007020979,1.3291056729495343,21.699999999999999,3.1000000000000001,485.94035379658879,487.05862622036011,487.65979781078306,489.5510579792973,491.13232429166067,491.74209798677771,96.598222254791935,94.474543242742669,91.248280629682256,88.912778204703855,87.600277701411954,87.244006442025579 +1998,8,20,10,0,680,168,9.5,656.22906218140531,40.877727828348405,44.11172139966646,113.93243423007296,0.0,203.19977151149851,695.67506138770307,1.0,203.19977151149851,409.8233057664919,1.446370646452365,22.800000000000001,2.1000000000000001,677.74672555474683,678.67798667882153,679.14401488881811,681.24178132827433,683.00580439784949,683.67821652466944,126.22824382619996,124.95369149259544,121.11699659483857,117.24609536786701,114.11574925471841,112.59154330447811 +1998,8,20,11,0,718,187,10.5,781.81333668833292,28.399189509595942,34.06211777459862,131.0020727835153,0.0,241.97807295122371,835.74654296344966,1.0,241.97807295122371,487.50639348214037,1.5,23.899999999999999,4.0999999999999996,820.67529543901344,821.50557117370442,821.89233254576834,824.11843128013334,825.99780034563059,826.70829795704549,149.83430559000192,149.70387079541419,145.81103728519662,140.98002544864588,136.45777971369441,133.79575248421909 +1998,8,20,12,0,728,203,11.5,851.86177248062847,18.19619448469076,26.9637416442037,156.56144093185637,0.0,255.7307344062026,914.23490448459074,1.0,255.7307344062026,530.79579539550457,1.5,25.600000000000001,3.1000000000000001,899.84934646833926,900.61107840030445,900.95083075056368,903.23656207332851,905.16831258944887,905.89724607536698,158.06375368966511,158.53725097125357,154.72327372173689,149.5838041454723,144.57455373601235,141.38749605126969 +1998,8,20,13,0,738,201,12.5,866.87443765741978,15.779585475698715,25.542076414240828,189.91820828163122,0.0,260.16962228264123,931.12276841282835,1.0,260.16962228264123,540.00109261215516,1.5,26.100000000000001,2.1000000000000001,917.0301119074802,917.74341329355616,918.05227591277571,920.32330493094412,922.24462350564556,922.96794975189653,160.84541492941244,161.32236196809373,157.42134388035174,152.15245653713134,147.01663123496843,143.76244517166262 +1998,8,20,14,0,741,184,13.5,821.69999047879719,23.684486821707743,30.61668209285346,219.48847989836855,0.0,246.66621129576313,880.58952796791402,1.0,246.66621129576313,512.01623098810228,1.5,27.800000000000001,1.5,866.42197831620445,867.14814360092214,867.47080233306838,869.67981432791282,871.54716017217868,872.25147749088558,152.77618869130222,152.83887189041567,148.89454480108591,143.85321069921099,139.12409969529989,136.26519596694072 +1998,8,20,15,0,727,160,14.5,719.13116019087158,35.55924776995886,39.7274215128167,239.63408727123604,0.0,216.01878119572405,766.08461363955348,1.0,216.01878119572405,448.48524117453871,1.477857464841601,27.199999999999999,2.6000000000000001,750.55126108661295,751.31740599182956,751.67743936629029,753.74982480387962,755.4973445912392,756.159945707926,134.13727948973167,133.49891790131699,129.6984047878411,125.39850484913384,121.52347847057389,119.39088934520341 +1998,8,20,16,0,651,151,15.5,563.73691894663489,48.50821678752126,50.65381206282652,253.49979736315757,0.0,174.61544370179755,593.28541496279945,1.0,174.61544370179755,352.46294232547956,1.3913981281988599,27.199999999999999,2.1000000000000001,572.01507606456846,572.95787409786249,573.44469105530868,575.39389170426409,577.02886954755127,577.65561107701512,108.50257900725575,106.74722519046938,103.17655991127283,100.0569906783597,97.895769552801539,97.049151977906718 +1998,8,20,17,0,572,117,16.5,382.73336227046258,61.76461692476822,62.31767992235605,264.18340004895924,0.0,124.94857341384119,393.92763977063487,1.0,124.94857341384119,239.98779230933047,1.2115304115188579,26.699999999999999,3.1000000000000001,362.95121788792528,363.83499403402351,364.31218561749643,365.88805841010657,367.20343423891836,367.71101378707738,76.474593264573414,74.020313138973904,71.575148191680029,70.4732914812015,70.346858309226334,70.62577862403738 +1998,8,20,18,0,408,73,17.5,184.18403900098656,75.02799996679836,74.18632476013543,273.4392406420083,0.0,66.5369460479167,179.39964754552645,1.0,66.5369460479167,115.44564783688475,1.5,25.0,3.1000000000000001,144.15049171742294,144.83113413189562,145.21082610074046,145.96256778648905,146.58854448702652,146.83118818888209,37.410116498481052,37.337078517910278,37.815154728339692,38.776407613488807,39.53659735944273,39.222979770132362 +1998,8,20,19,0,107,20,18.5,29.348117991461045,87.06938804283756,84.98793067397195,281.64344949323134,0.0,13.708162919234621,23.744467117763737,1.0,13.708162919234621,18.715240186342093,1.2839639675799535,22.800000000000001,2.1000000000000001,15.487165200689399,15.688323784542879,15.802369225487206,16.037494456130197,16.231703394999819,16.308565002601693,8.2319507327015788,8.2584303306381628,8.1679616233840058,8.0764584461092088,7.9686588264787925,7.8506010787932272 +1998,8,21,6,0,0,0,5.5,0.0,89.61373506889666,87.2857747107091,76.70320094124347,0.0,0.0,0.0,1.0,0.0,0.0,1.2909223978950761,15.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,21,7,0,187,82,6.5,117.10639746803707,80.55080763416032,79.17938402092051,83.02587073544026,0.0,42.825351140888316,111.11736889278542,1.0,42.825351140888316,73.143532267978827,1.5,16.699999999999999,2.1000000000000001,87.054644066473088,87.946041158870941,88.458902376324005,88.863194356044772,89.201160867642074,89.330886019149943,24.882273508869517,25.404254824299024,25.627332330522098,25.61461263045976,25.290221718023286,24.706301540350264 +1998,8,21,8,0,474,121,7.5,303.50987085583074,67.36026414145768,67.35365716643146,92.05375300425474,0.0,103.15196364971746,306.83973630461264,1.0,103.15196364971746,189.88905723441584,1.0856207910338531,20.600000000000001,3.1000000000000001,272.55056394568027,273.63025375867846,274.23467558022958,275.3481023655259,276.28176599970135,276.63781371270352,61.57302093126993,59.641418676418738,58.302954822407614,58.227258715339715,58.767785434738997,59.130054992011736 +1998,8,21,9,0,601,151,8.5,490.7441461744109,54.08637254742444,55.577006912940064,102.03017998900526,0.0,156.19016377540672,512.81121155662947,1.0,156.19016377540672,307.29412203253747,1.3417586480779118,22.800000000000001,3.1000000000000001,487.38484283444728,488.45500259143012,489.0274289106992,490.8979075807751,492.46246439453529,493.06521739382111,96.740458473857927,94.592522892927221,91.336595304343504,88.973230895886772,87.643360862219239,87.289753072782702 +1998,8,21,10,0,674,161,9.5,643.4520143515208,40.98226312027522,44.290856912298885,114.34326909218696,0.0,199.22940498212441,683.2139762172651,1.0,199.22940498212441,401.8584097143509,1.456758907255312,25.0,1.5,665.73136812056771,666.60863994365923,667.04371024139925,669.10452803674286,670.83715198836546,671.49802079265794,123.70230251799657,122.71894485158906,119.08166432063106,115.27437098922246,112.04174277349794,110.36678223486651 +1998,8,21,11,0,682,206,10.5,769.47243640470322,28.54883379406569,34.28905593861902,131.4479477397712,0.0,231.31649556543729,822.896230803555,1.0,231.31649556543729,480.10600134160472,1.5,26.699999999999999,2.1000000000000001,806.9027554510219,807.88178414480274,808.36220525384476,810.66587629289609,812.60463012176876,813.34307222711902,143.07100712995398,143.16032965413152,139.56987567156247,135.0337996553809,130.78105378025924,128.15077361678033 +1998,8,21,12,0,716,210,11.5,846.48045679402742,18.449419553405676,27.259753368220586,156.92014791514322,0.0,254.18043997033425,909.21867818959458,1.0,254.18043997033425,527.55435829446662,1.5,28.899999999999999,2.6000000000000001,894.49396215695219,895.30977966031389,895.68245435800134,897.99614184866982,899.94897080296857,900.68767720117626,156.72869142532747,157.62454528934356,154.14650972357259,149.11486753120204,144.0829319966283,140.68529649230538 +1998,8,21,13,0,708,218,12.5,854.99402720110129,16.11705518019518,25.88014685523525,189.94811246304937,0.0,256.74704213140313,918.83143919061899,1.0,256.74704213140313,532.85227355567872,1.5,30.0,4.5999999999999996,903.99345032387521,904.8267173959398,905.20865177673079,907.54312579043324,909.51357848676332,910.25887897831797,158.30407675635092,159.20790003472948,155.69759747775359,150.61931284216186,145.54034011005109,142.11036536729304 +1998,8,21,14,0,688,215,13.5,805.14349798709452,23.956408944077705,30.933253320308417,219.25454687291403,0.0,241.96175428956764,862.86079622162413,1.0,241.96175428956764,502.15512000547579,1.5,30.600000000000001,3.6000000000000001,847.24827540259469,848.20123177187384,848.66126367584172,850.99622306999538,852.96322120294542,853.71076480019565,149.40452962004011,149.86619089857808,146.33605640370851,141.61926972016556,137.02222403069365,134.05121757170633 +1998,8,21,15,0,625,205,14.5,683.72249923970367,35.78166940046346,40.00788296424748,239.33823677310392,0.0,211.77819709580436,727.85099797323733,1.0,211.77819709580436,427.21020011574387,1.4871694967321127,31.100000000000001,3.1000000000000001,710.18551101727553,711.32383364154066,711.90794315016785,714.17701155782584,716.08151002009515,716.81088135426,131.06503676926411,130.66279354031485,127.20997896824454,123.26097315769233,119.65931192650483,117.53152779131887 +1998,8,21,16,0,663,146,15.5,564.0441857599908,48.7094607152878,50.91045290893148,253.21456915352425,0.0,179.6247287912089,594.48100535156732,1.0,179.6247287912089,352.56920997033438,1.4020238207016313,31.100000000000001,4.0999999999999996,573.25582233210878,574.15921980270366,574.62037189043349,576.53719274888488,578.14728239964199,578.76240313689641,111.60348781211896,109.8831352494532,106.26770914771103,103.00581026129413,100.66845728022233,99.728119910592937 +1998,8,21,17,0,554,121,16.5,376.26550756531424,61.95982100798883,62.56331960666765,263.92033339336,0.0,122.7707479198688,387.8068147732555,1.0,122.7707479198688,236.04215969915884,1.2242362497312747,30.600000000000001,4.5999999999999996,356.78554516874937,357.71896544792014,358.22620904591736,359.8167277175296,361.14324516657018,361.65631592324638,75.248728327476826,72.958644229896095,70.538026523772146,69.37629216067954,69.14125062885806,69.339025748738237 +1998,8,21,18,0,429,68,17.5,183.14776246149381,75.22599704974041,74.43034320980904,273.1956479364657,0.0,66.542644835261015,179.15267830926689,1.0,66.542644835261015,115.49176172907323,1.5,29.399999999999999,2.6000000000000001,141.92534035482961,142.51907040330747,142.84713588762867,143.83695416898703,144.65587288356511,144.97837376839303,37.463804995049685,37.336209198638002,37.775310636349786,38.798517732849376,39.651041568485958,39.374331494174093 +1998,8,21,19,0,100,17,18.5,25.531301479587789,87.12999135091837,85.10597532084799,281.3152432924325,0.0,11.98546912814632,20.468851278635739,1.0,11.98546912814632,16.294608073921758,1.2954353205124676,27.199999999999999,1.5,13.11699940059637,13.2863038646571,13.382097037194637,13.591120747604446,13.76371593894056,13.83207522911591,7.2008426393098981,7.2245881758896147,7.1442380980991729,7.0628752510730592,6.9673528792949728,6.863238099985832 +1998,8,22,6,0,0,0,5.5,0.0,89.622398067682,87.35725623101513,77.06894888032977,0.0,0.0,0.0,1.0,0.0,0.0,1.2947662637224573,18.300000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,22,7,0,181,85,6.5,118.51936474647914,80.64339417127779,79.32779812477882,83.33770813391091,0.0,43.185192166538421,112.77926147196855,1.0,43.185192166538421,74.01591428397353,1.5,20.600000000000001,2.1000000000000001,88.57229641693138,89.493750807070967,90.024390429552895,90.430791528234664,90.770485356345461,90.900862042961762,25.052240914670982,25.573264958188577,25.809875564095293,25.825947396767692,25.522122500115888,24.943998411955711 +1998,8,22,8,0,436,129,7.5,295.84798140391456,67.44642957557377,67.50028378314781,92.38708125475104,0.0,98.179985173085285,299.63636210796471,1.0,98.179985173085285,185.21821714040203,1.1028231366604577,23.300000000000001,1.5,266.1169640072132,267.28162796028613,267.9381357600825,269.07196131530048,270.02039902226016,270.38424456478276,58.838445417738654,57.046926905248824,55.701892633758973,55.508624270661429,55.92339624856826,56.218873527099554 +1998,8,22,9,0,540,174,8.5,478.0481497306809,54.175220878488,55.73286327467039,102.39769727005383,0.0,152.04233513190161,498.25051431230531,1.0,152.04233513190161,298.59272338523419,1.3546486827059714,26.699999999999999,0.0,473.08762493391822,474.46361899039351,475.21966713323877,476.78910061928519,478.10827268276478,478.61094500550536,93.882840686655214,92.054670791636781,89.082216991586094,86.827617649746259,85.409263645578406,84.937933107264996 +1998,8,22,10,0,643,165,9.5,623.83944614149664,41.0886107216344,44.47209971530877,114.75671600568391,0.0,187.66928643911308,663.17392234947761,1.0,187.66928643911308,389.84409510274781,1.4673176776069847,30.600000000000001,2.1000000000000001,645.62243931671537,646.53736577547875,646.99931070770083,649.08446358083972,650.83313452974619,651.50417678621397,116.49237326261931,115.71258666604632,112.37191868745398,108.81414593007524,105.72848201565807,104.08297232374854 +1998,8,22,11,0,652,227,10.5,764.20856414211107,28.701708987654968,34.5188787042685,131.89482882990202,0.0,229.93791684823552,817.31285955861267,1.0,229.93791684823552,476.97784827804668,1.5,31.100000000000001,2.1000000000000001,800.29894623711948,801.45646555691872,802.04395274975514,804.39446250463243,806.36998256163952,807.12456456279051,141.80939826694583,142.25561205361311,138.98603300704653,134.6526296447816,130.42709293344572,127.65190167792257 +1998,8,22,12,0,680,231,11.5,833.84367641236088,18.706927078512734,27.559007646356758,157.27797335503993,0.0,250.57311905491099,895.85354687979384,1.0,250.57311905491099,519.91844460507627,1.5,33.299999999999997,2.6000000000000001,880.21148778084114,881.18558725423077,881.65432651310459,884.02455050202127,886.02186159198277,886.78009371902942,154.39490037707944,155.27630626250928,151.90026092664118,147.03994491732254,142.17746820918219,138.86446352474994 +1998,8,22,13,0,696,225,12.5,849.37591704044212,16.458084752952377,26.22160354070199,189.98080833459608,0.0,247.37415704876497,913.49227843479196,1.0,247.37415704876497,529.44367452358972,1.5,33.299999999999997,3.6000000000000001,898.3067734402357,899.19773325425263,899.61845372901143,901.97567479166935,903.9612605347296,904.71583939029108,152.33474946047113,153.45364463056075,150.21013453115739,145.38022744624686,140.46696034898468,137.08804271346006 +1998,8,22,14,0,628,250,13.5,786.86219181955164,24.233522680636828,31.253950279088876,219.02514746012037,0.0,229.92653297948411,842.59942114754062,1.0,229.92653297948411,491.0055103420442,1.5,33.899999999999999,2.6000000000000001,825.4273411622496,826.67290798062879,827.3130661079299,829.69853383519455,831.70205219590605,832.46857739584709,141.65017103794324,142.2903440293513,139.17128844720486,134.85354145973039,130.61378509620664,127.72434829079545 +1998,8,22,15,0,530,239,14.5,643.25772989209418,36.0089963914571,40.29272627896127,239.04470099685577,0.0,194.20145389946305,682.56608517750624,1.0,194.20145389946305,401.65360178501402,1.4966410409321438,33.899999999999999,4.0999999999999996,663.66983991125971,665.24161297641467,666.09233894297404,668.15164372682852,669.88023353973165,670.54210373387934,119.69970686617958,119.52735918223522,116.62259618582507,113.21373155774035,110.07612856496721,108.12220614484789 +1998,8,22,16,0,509,194,15.5,513.13996066061645,48.91502222514091,51.17130601045605,252.92994250710345,0.0,159.17609289225328,538.55755825445453,1.0,159.17609289225328,320.64434751128886,1.412857118298084,32.799999999999997,2.6000000000000001,516.65032567139838,518.10781306002946,518.90781935976474,520.64006397321236,522.09336498684684,522.64990368471035,98.371796481789389,97.09148590518015,94.225755292561416,91.614236129737776,89.695582447487865,88.802177340538407 +1998,8,22,17,0,297,177,16.5,312.69859650756035,62.1588637279129,62.81290220849626,263.65695516775327,0.0,101.04535400269951,318.95824609536965,1.0,101.04535400269951,194.90253467709945,1.237250009256437,32.200000000000003,3.1000000000000001,293.63770093117063,295.36846234637221,296.35911275775999,297.27202632912969,298.04189908488831,298.33169927579627,61.189068130077182,59.761763903115636,58.261810242728849,57.522656013393934,57.302286473710176,57.301937793164839 +1998,8,22,18,0,373,75,17.5,173.56256039344242,75.42745280505767,74.67803592402478,272.9512455243452,0.0,61.187720981759021,169.8534425865594,1.0,61.187720981759021,108.9045786807547,1.5,30.600000000000001,2.1000000000000001,136.03565937775204,136.7429764633637,137.14070305450031,137.89303444953524,138.51838996784639,138.76189808819927,34.551813835650812,34.392094442656258,34.741567628821812,35.589995366696328,36.303347591926268,36.067861159446217 +1998,8,22,19,0,94,17,18.5,24.823639034524213,87.19179873997989,85.22573771364215,280.98460366747565,0.0,11.470697486254734,20.013565796165707,1.0,11.470697486254734,15.855775207388348,1.3072087379298902,28.300000000000001,2.1000000000000001,12.986464041463378,13.156190228292502,13.25244722389214,13.460463423189051,13.632079756367407,13.700188052746192,6.8832526693813012,6.9147833194928943,6.8441792917665714,6.7713754442159502,6.682352914520802,6.5799085768105705 +1998,8,23,6,0,0,0,5.5,0.0,89.63043669012325,87.42882335406217,77.43830865515146,0.0,0.0,0.0,1.0,0.0,0.0,1.300499288177826,21.100000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,23,7,0,196,84,6.5,119.79646034518541,80.73585060422762,79.47672102474507,83.65293901013145,0.0,43.276954762233714,114.00877303674288,1.0,43.276954762233714,74.787808214862864,1.5,22.199999999999999,3.1000000000000001,88.936974113941602,89.848371443435283,90.372962424768545,90.774170599974724,91.109487303550779,91.238108417074898,25.025195779226213,25.563198816987754,25.84439195695801,25.900169286116931,25.617119979349109,25.030679773403616 +1998,8,23,8,0,379,138,7.5,282.13329800801,67.53290225047104,67.6477991260227,92.72363018767676,0.0,93.365674494805461,286.2267495034165,1.0,93.365674494805461,176.8035387245755,1.1204367166382,24.399999999999999,3.1000000000000001,254.2501186499066,255.51211047908797,256.22807989287156,257.37576260837915,258.333761493515,258.70318889955615,56.054107999599694,54.43952114228739,53.158135228666879,52.921459046756929,53.239491540447929,53.465901953736036 +1998,8,23,9,0,479,190,8.5,458.61436568704988,54.264994560687946,55.890135153337056,102.76822270002803,0.0,145.79495072837966,478.13194430878025,1.0,145.79495072837966,286.72761573403989,1.3677760434463886,26.699999999999999,2.6000000000000001,452.97182479270055,454.49913619152301,455.34765527649211,456.95765624635834,458.30757699541437,458.82510030889853,89.887347500535967,88.382059413921127,85.689977116913838,83.57075633260628,82.172094850321272,81.615013211870362 +1998,8,23,10,0,601,184,9.5,611.51895830466026,41.19682600665786,44.65546295657884,115.17258132081786,0.0,184.17088031851833,650.27693289400145,1.0,184.17088031851833,382.46974663313,1.4780466423367082,30.0,2.6000000000000001,631.8033877068093,632.88959375473291,633.45492863681341,635.62090391689549,637.43342733495558,638.13239939970708,114.06302824707198,113.60638547522096,110.54310725050722,107.16463401189785,104.12947283779751,102.36784086016294 +1998,8,23,11,0,640,226,10.5,751.8439886422143,28.857860184255834,34.75157869634711,132.34246966861713,0.0,226.23688204718823,805.02248322873629,1.0,226.23688204718823,469.36182757624675,1.5,32.200000000000003,2.6000000000000001,788.06822483094004,789.22455351373765,789.81299113994032,792.16189483947812,794.13493197657431,794.88953318771655,139.51962044968218,139.96276014484152,136.75170698580712,132.50294858510162,128.36097103673652,125.63380623015253 +1998,8,23,12,0,716,213,11.5,846.00145235721652,18.968671499376565,27.86145293193547,157.63469810518816,0.0,254.07765235216149,910.53739275850717,1.0,254.07765235216149,527.28691995889096,1.5,32.799999999999997,1.5,895.57424718622281,896.42651166541407,896.8209442610937,899.14643476379183,901.10774988962874,901.85058478840847,156.23817455781634,157.54172081070644,154.38862441169709,149.47106664805534,144.38164512187095,140.82200241081708 +1998,8,23,13,0,558,314,12.5,813.08470175653792,16.802568899916707,26.566353172740993,190.01610435089188,0.0,245.19491461826084,870.28187707925929,1.0,245.19491461826084,507.0919808317621,1.5,35.0,4.0999999999999996,850.89601851277166,852.62834263245941,853.55188910790457,855.93462525773407,857.93873515217342,858.70210599282086,150.16721783944001,151.3350286568924,148.5466706645409,144.27076416242815,139.82064266725305,136.5952079111174 +1998,8,23,14,0,54,342,13.5,388.00379151490273,24.51569633303533,31.578656742957342,218.80022561479709,0.0,120.03702236383202,395.82060282325762,1.0,120.03702236383202,239.77163093766026,1.5,35.0,4.0999999999999996,374.33466023336734,377.92005035615796,380.00552128813513,380.46500870282262,380.87137098942117,381.00761160506693,71.561070118451738,71.644806839951741,70.993356875213863,70.10821808420728,69.097071586384487,68.176623198569004 +1998,8,23,15,0,24,309,14.5,327.22745949726146,36.24113905929257,40.58184477329078,238.7535390046269,0.0,102.61143691202737,327.29725497223541,1.0,102.61143691202737,200.51508865737594,1.5,33.899999999999999,3.6000000000000001,306.81177894014371,310.58542346790711,312.79104543829709,312.60660730259934,312.48599022796367,312.40857859692898,60.606900625406595,60.469311233143294,60.085419425729647,59.579631282153727,58.945192290001678,58.353027894668394 +1998,8,23,16,0,12,188,15.5,195.48061609977211,49.12482464183793,51.436275139222374,252.64599421800992,0.0,61.372626027403967,193.9775454148176,1.0,61.372626027403967,119.53928688492149,1.4239021640183653,34.399999999999999,3.6000000000000001,180.76884512574185,183.21390926259261,184.64536811128519,184.45579659215335,184.31931286696025,184.24637223390897,36.107928173157916,35.967825816699616,35.780643349814405,35.561998803434903,35.272280987511984,34.976712704492428 +1998,8,23,17,0,262,194,16.5,312.6751592173764,62.36166782514532,63.06633482744721,263.3933312560906,0.0,100.87833599801259,318.94832915244416,1.0,100.87833599801259,194.96773081129149,1.2505821781916857,34.399999999999999,3.6000000000000001,293.22007465757895,295.10547568620808,296.18809241111933,297.13506320644632,297.93230209552041,298.23374564253112,61.072691803462135,59.779775585485041,58.346772229665149,57.59252978840928,57.310869710070051,57.252674681744445 +1998,8,23,18,0,89,108,17.5,131.1409464814717,75.63228255582085,74.92930683346984,272.7060838472658,0.0,43.573012712884136,129.15723549568494,1.0,43.573012712884136,81.398195245188589,1.5,31.699999999999999,4.0999999999999996,111.6766279881506,112.89895888775196,113.60989034079373,113.89134061328491,114.13097369070394,114.21892962333052,25.076378811617079,24.98039651326626,25.062152728003181,25.338842230161141,25.54187733181945,25.370030956657715 +1998,8,23,19,0,12,15,18.5,15.973417939139605,87.25476596087748,85.34715941675412,280.6516064523323,0.0,5.3162807724253653,15.395328421699604,1.0,5.3162807724253653,9.8015340659200927,1.3193350751337105,30.600000000000001,3.6000000000000001,13.833387174594424,14.042102705049549,14.164263863032977,14.160870113677344,14.159569504545289,14.157629775975199,3.1196042513035449,3.1157545818195875,3.106366481203942,3.0937828197641419,3.0715345616489818,3.0429424479721683 +1998,8,24,6,0,0,0,5.5,0.0,89.63785285819976,87.5004597473755,77.81117388510722,0.0,0.0,0.0,1.0,0.0,0.0,1.3082726164025313,21.0,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,24,7,0,168,81,6.5,111.25180954371001,80.82818874394117,79.62614568977749,83.97145724287375,0.0,39.931404617258913,106.36946714683864,1.0,39.931404617258913,69.508565924051126,1.5,23.300000000000001,3.6000000000000001,83.492899193569315,84.374174644589431,84.882260140209041,85.27578843757081,85.603940725497978,85.730418628769002,23.03160267608224,23.510619934608968,23.790426591698463,23.88957585932172,23.681632228554637,23.165344730631329 +1998,8,24,8,0,500,115,7.5,303.95101708810466,67.6197119702032,67.79620976999017,93.06327838284831,0.0,101.16536268389213,309.05151647616441,1.0,101.16536268389213,190.07200013077195,1.138465398554149,25.600000000000001,3.6000000000000001,273.83996426377763,274.86654905227743,275.43926904506895,276.52013743662508,277.4268445380589,277.77227634515009,61.012568413537721,59.058273650639023,57.455758111387745,57.054252319551225,57.298298525488434,57.607401394712412 +1998,8,24,9,0,534,173,8.5,471.23155578035005,54.355738218714016,56.048836799538876,103.14160793731149,0.0,149.8688789808258,492.57382076868731,1.0,149.8688789808258,294.36874674457516,1.381141034848283,27.800000000000001,4.0999999999999996,467.43077403785702,468.80449281582082,469.55932872701806,471.11886514336277,472.42939175755498,472.9293444488801,92.562775453808996,91.120856947454257,88.31593669966469,85.968510236499284,84.320383320106558,83.6529955970217 +1998,8,24,10,0,674,153,9.5,630.9110443720997,41.306963696602786,44.84095919640458,115.59067143571454,0.0,195.33261013388625,672.77624089367464,1.0,195.33261013388625,394.00191412140924,1.4889455155551992,31.100000000000001,2.6000000000000001,655.64285754771186,656.46785195906568,656.87238718304445,658.88341309697512,660.57401767440695,661.21925056094517,121.05916454045226,120.66366202235309,117.39023861717567,113.62056039697123,110.18468993244352,108.19047553663961 +1998,8,24,11,0,652,224,10.5,758.17101214604645,29.01732925570607,34.98714689802263,132.79062736401727,0.0,228.11962198260696,812.79696821141135,1.0,228.11962198260696,473.24293911111175,1.5,33.899999999999999,3.1000000000000001,795.84156322112403,796.9880130298161,797.56967227691769,799.91397212370441,801.88303406763532,802.63593470702949,140.4008360419628,141.20720912247788,138.21414388292172,133.95050328055405,129.68398480464444,126.7235512885776 +1998,8,24,12,0,746,195,11.5,852.65508238167604,19.234603228956498,28.167036185274803,157.99011071415526,0.0,255.94355309275474,919.25303514464531,1.0,255.94355309275474,531.19928577695418,1.5,36.100000000000001,6.2000000000000002,905.02173056978904,905.76018674574584,906.08587284732118,908.34226899098883,910.24832085358378,910.96767764118306,157.45442884758646,158.77046048083065,155.56060915959753,150.53348340833892,145.33167989276271,141.71815961978979 +1998,8,24,13,0,666,261,12.5,854.8619207825185,17.150402518204885,26.914302087766295,190.05381193356246,0.0,249.49855534776148,919.62542188882071,1.0,249.49855534776148,532.88557205057532,1.5,36.100000000000001,4.0999999999999996,902.78275907591387,903.97028125483018,904.56696522574009,906.95889312084478,908.97197912340027,909.73803417262911,153.06048400289404,154.51245564316613,151.64556610778166,147.02912176735759,142.12740334671784,138.5897151382116 +1998,8,24,14,0,305,387,13.5,645.9159529820281,24.802795535838502,31.90725545136811,218.5797175529447,0.0,192.09551004061157,681.24115691987504,1.0,192.09551004061157,402.386226357596,1.5,36.700000000000003,2.1000000000000001,658.19054591475071,661.06783364761418,662.69852310490489,664.49070989122197,665.99947307949014,666.57251939878438,116.71553694835103,117.35247954467428,115.48646099285601,112.82053368871208,110.03761872099049,107.90149849043294 +1998,8,24,15,0,71,308,14.5,361.68576982617861,36.47800354014304,40.87512945554484,238.46480166783252,0.0,111.87280472589936,368.3117497925503,1.0,111.87280472589936,223.29033187587905,1.5,36.100000000000001,3.6000000000000001,348.1720983310488,351.49422596159206,353.4262932505344,353.77677182014179,354.0928025874108,354.19360810257098,66.797058530202122,66.737427989830579,66.036592717947798,65.169728586716957,64.232815298763811,63.443012244687552 +1998,8,24,16,0,160,280,15.5,379.15311421710834,49.338787600658954,51.705261421132214,252.36279568311147,0.0,118.26943250872407,389.24388946251486,1.0,118.26943250872407,235.32336005733669,1.4351632779799124,35.0,11.300000000000001,367.82829800076911,370.59333035161592,372.19058099540234,372.97115908170531,373.6384563137542,373.88233849383107,71.461633726699645,71.036079055700725,69.806673349459217,68.597559852213337,67.527906554457573,66.803684011746086 +1998,8,24,17,0,58,180,16.5,206.0392275630133,62.56815288320138,63.32352199831997,263.1295239723894,0.0,65.591323022449302,206.31964780228429,1.0,65.591323022449302,126.93256725340169,1.2642437826963582,33.899999999999999,4.5999999999999996,190.5174463417604,192.61666909452802,193.84063806187982,193.95297699871628,194.06271310951618,194.09017344413547,39.002306262150178,38.562065892303053,38.076749398461843,37.764733161987103,37.530347967750352,37.33944393797546 +1998,8,24,18,0,277,87,17.5,157.83299086859608,75.84039872575595,75.18405734106014,272.4602107579974,0.0,54.51340833128036,154.94178203846741,1.0,54.51340833128036,98.428805910835138,1.5,32.799999999999997,4.0999999999999996,127.01697656476927,127.95221704727852,128.48824905433437,128.96963015716344,129.37414779720075,129.52753462843987,31.060047826143887,30.832307919549912,31.004180511924652,31.577098783535892,32.06900794366063,31.913259602780585 +1998,8,24,19,0,35,15,18.5,17.764228145236348,87.31884626048304,85.47017947458836,280.3163264153164,0.0,6.9201748814077551,15.755677300388346,1.0,6.9201748814077551,11.207559871856661,1.3318722311612659,29.399999999999999,2.6000000000000001,12.321016147366532,12.498254397966743,12.600945970496735,12.703224875693536,12.787937663241685,12.821239712480281,4.1157683721903622,4.1324063239849433,4.1056941874080044,4.0800344554435437,4.0429040603348882,3.9896278082644936 +1998,8,25,6,0,0,0,5.5,0.0,89.64464897812711,87.57214924179715,78.1874377351286,0.0,0.0,0.0,1.0,0.0,0.0,1.318254111432199,22.800000000000001,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,25,7,0,102,84,6.5,102.10457609666648,80.92042200537742,79.77606634656462,84.2931555722675,0.0,35.254323741846946,98.295510511014214,1.0,35.254323741846946,63.30950596205691,1.5,23.899999999999999,2.6000000000000001,80.473959640009568,81.42595102110829,81.978273557411626,82.174259680818949,82.341518983320242,82.402256162597581,20.345749764067541,20.656988173972543,20.858416501814336,20.932172084364392,20.773063678571386,20.387338255070606 +1998,8,25,8,0,475,119,7.5,297.356795216607,67.70688975255187,67.94552319980923,93.4059034346783,0.0,98.856677512530268,302.93078077272941,1.0,98.856677512530268,186.03773171750672,1.1569131832278705,26.100000000000001,5.2000000000000002,268.3001969576377,269.37015332056876,269.96929626554976,271.0607959941695,271.97532530691097,272.32476945514628,59.735877405489063,57.883390930465119,56.303815877103716,55.821228340867371,55.993080737776175,56.256241748996445 +1998,8,25,9,0,436,203,8.5,445.48808318242573,54.44749697772933,56.208982730196645,103.51770386653966,0.0,138.34333799591872,465.18338929919184,1.0,138.34333799591872,278.66620916922443,1.3947440040509682,26.699999999999999,4.0999999999999996,439.83953268877082,441.49807366103869,442.42734275094949,444.05041891649364,445.40830787618427,445.93151338651592,85.166830029808679,84.034690075051259,81.662817521849306,79.648307238833723,78.238782843170171,77.574219316115418 +1998,8,25,10,0,613,185,9.5,618.24003456431569,41.41907772164228,45.028600314458835,116.01079290219154,0.0,186.20393688343972,659.05919201654206,1.0,186.20393688343972,386.59862804971931,1.5,29.399999999999999,1.5,640.29966158813443,641.40559662462135,641.98195367135736,644.14577635819694,645.95695878068545,646.65512100553417,115.13080479131239,114.97580634009492,112.03553950880449,108.59374364346873,105.44868888242361,103.51465123212424 +1998,8,25,11,0,640,229,10.5,751.80802581240175,29.180154721941992,35.225572585298934,133.23906265552392,0.0,219.6962689230707,806.63796441487591,1.0,219.6962689230707,469.33609685515546,1.5,32.200000000000003,3.1000000000000001,789.41512119154754,790.6118892238934,791.22748461011861,793.57978457602064,795.55238689689315,796.30943611667794,135.04258343443462,136.02845437192281,133.26900890025144,129.22567974682872,125.10902157053715,122.19887540494368 +1998,8,25,12,0,686,225,11.5,828.00729467964936,19.50466879492992,28.475702861264846,158.34400731350587,0.0,248.80745567577645,892.66587915085165,1.0,248.80745567577645,516.29640665231739,1.5,35.0,3.1000000000000001,877.13856782547464,878.09420780023004,878.55265600954033,880.91331300715797,882.90039952138568,883.65597460766116,152.52462946270748,154.1641677748799,151.47757423596013,146.83760339610467,141.81888400162146,138.15515177551276 +1998,8,25,13,0,642,284,12.5,854.67019936715485,17.50148064566498,27.265356246194493,190.09374565890184,0.0,257.2706471032115,918.987006881149,1.0,257.2706471032115,532.65519148672536,1.5,36.100000000000001,2.6000000000000001,901.16598654073664,902.56326263972721,903.28143102060483,905.63939082504157,907.62653706357378,908.37993140939204,157.43087908842998,159.0514980134586,156.372984359328,151.75770742054158,146.7499814276218,143.064210139105 +1998,8,25,14,0,60,278,13.5,328.7494642327373,25.09468353251474,32.23962819637444,218.36355238331055,0.0,101.73161454829024,335.38162823345465,1.0,101.73161454829024,203.01392962887215,1.5,36.100000000000001,4.0999999999999996,317.18615137972751,320.24773620570443,322.02887172912443,322.36947942490656,322.67418941377719,322.77328498594238,60.567333209689068,60.686707688638769,60.184944400981877,59.450688227165465,58.583330335943018,57.784395769198817 +1998,8,25,15,0,196,340,14.5,487.53533969549119,36.719491965605776,41.17246914585209,238.17853194114292,0.0,149.35699705946539,505.91044749235527,1.0,149.35699705946539,302.62270258934683,1.5,36.700000000000003,5.7000000000000002,483.54257242991105,486.7075982609424,488.52909436370578,489.53037441188667,490.3854368996391,490.69914952635054,90.175559236661002,90.300799521182952,88.992151986671388,87.302912007720863,85.557145093103188,84.214536046615848 +1998,8,25,16,0,272,256,15.5,423.54159797238015,49.55682714980958,51.97816343340186,252.08041298339893,0.0,131.805799375313,440.27773443861179,1.0,131.805799375313,264.07794249114306,1.4466449604912865,33.299999999999997,3.1000000000000001,418.1276598797732,420.41944905430296,421.72845416448172,422.99536647711159,424.06149589466202,424.46645662237268,80.394507224262156,79.839727850630965,78.113107790459765,76.435402550025401,75.026104947870195,74.161313361841152 +1998,8,25,17,0,0,90,16.5,90.0,62.77823540322241,63.58436576766525,262.86559209353453,0.0,28.317471733283448,88.623097378484687,1.0,28.317471733283448,54.906003468080378,1.2782464115800956,27.199999999999999,3.6000000000000001,82.177780373135832,83.418281917157074,84.145773753425132,84.016852335442437,83.920165986178418,83.872611287893235,16.552785845766973,16.502922184521942,16.468760258787832,16.418612622344256,16.319294865711434,16.190549344446769 +1998,8,25,18,0,11,85,17.5,87.764924517923234,76.05171088823029,75.4421863710269,272.21367154724624,0.0,27.994324933450226,86.21982133977501,1.0,27.994324933450226,53.563907429520022,1.5,30.0,5.2000000000000002,78.708211705600746,79.827988492594727,80.483781559830362,80.362132908666879,80.271237791753322,80.226170100977768,16.286990634438506,16.220829038988878,16.208641961013534,16.205314687972336,16.15312184499173,16.034427332432074 +1998,8,25,19,0,0,8,18.5,8.0,87.38399030611092,85.59473433559344,279.978837270817,0.0,2.5160323203193435,7.8551191648404295,1.0,2.5160323203193435,4.8613036350932521,1.3448862909021386,28.899999999999999,4.0999999999999996,7.301289542098079,7.4126005184117139,7.4778889408381195,7.459679528406455,7.4456182113078491,7.4391253205999126,1.4687288207297604,1.4639117346295241,1.4614511222442244,1.4562521577277121,1.4461807606383805,1.4346006032135477 +1998,8,26,6,0,0,0,5.5,0.0,89.650827887409,87.64387578214355,78.56699293323382,0.0,0.0,0.0,1.0,0.0,0.0,1.3306309269158563,22.199999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,26,7,0,37,76,6.5,82.471734130002432,81.01256535114105,79.92647842937151,84.61792563339223,0.0,27.617744652658509,80.103730749522725,1.0,27.617744652658509,50.733650908903641,1.5,24.399999999999999,3.1000000000000001,69.108595105460424,70.029462435953604,70.566585423556901,70.588544283359255,70.613305397644723,70.616643439335036,15.990455589632935,16.120525584695713,16.213501880384875,16.239675229836234,16.13109433486197,15.896745039914922 +1998,8,26,8,0,0,102,7.5,102.0,67.7944677542616,68.09574774552893,93.75138198873084,0.0,32.165036406261137,100.51319567442367,1.0,32.165036406261137,62.242096720303657,1.1757842189365997,26.100000000000001,2.6000000000000001,93.047335462943977,94.417338625995839,95.220441054185784,95.078334641624579,94.972064369112445,94.919473947612147,18.821648047751214,18.741964637638837,18.685701959816065,18.624007562194723,18.515781060703262,18.378819501058462 +1998,8,26,9,0,31,242,8.5,259.16839055372401,54.54031636020985,56.37058764553255,103.89636065353514,0.0,81.262467209007795,258.49028160667751,1.0,81.262467209007795,158.63622087884406,1.4085853454888624,28.899999999999999,3.6000000000000001,241.26673381762598,244.23716023512765,245.97329874660377,245.76489123816083,245.61903808555863,245.53670302196889,48.05641377060612,47.799264178647604,47.416660888332771,47.003060103884046,46.54630619454835,46.154352970492795 +1998,8,26,10,0,18,281,9.5,293.67931400578959,41.533221083781264,45.218397418374295,116.43275253169767,0.0,91.680645809772983,293.24250638871666,1.0,91.680645809772983,179.85841785851991,1.5,27.800000000000001,4.5999999999999996,274.40386939136778,277.8686297347096,279.89485893958306,279.69736234392104,279.56301722325742,279.48289174074409,54.067862807779761,53.954381839966757,53.649831298175819,53.236917709764796,52.701466788060088,52.179650947338537 +1998,8,26,11,0,24,328,10.5,347.54683435459151,29.346371630471175,35.46684326572874,133.6875400437527,0.0,108.3739611246275,348.32644433394711,1.0,108.3739611246275,213.05705075357864,1.5,29.399999999999999,4.0999999999999996,326.72760960209149,330.71579971679461,333.04685018786518,332.88265646858355,332.77985559334246,332.70843576397249,63.928042807798114,63.898793501808704,63.567409914377677,63.052671943671285,62.364525425925521,61.680440349832566 +1998,8,26,12,0,120,412,11.5,517.16951536920124,19.77881098220754,28.78739689975775,158.6961914956596,0.0,156.00997047339914,538.60782717202187,1.0,156.00997047339914,321.58717654444803,1.5,30.600000000000001,4.0999999999999996,514.57703087036441,518.09923616765968,520.1308829335544,521.40224137008545,522.47663745714965,522.88026647204856,93.633614491067974,94.24574565404501,93.325329949520963,91.77818107282198,90.001065477212208,88.402284285521901 +1998,8,26,13,0,366,387,12.5,711.29301443324107,17.85569841312976,27.619421221879044,190.13572341819815,0.0,210.82350252111624,754.77053091649066,1.0,210.82350252111624,442.76732808009262,1.5,30.0,4.0999999999999996,732.07135829462504,734.84375646095918,736.40341917446199,738.24068086052011,739.79062415111821,740.3762092235595,127.82033591557671,129.0120607800564,127.31649923087531,124.28731166108194,120.93924868153792,118.25980677877352 +1998,8,26,14,0,24,262,13.5,282.22434967325529,25.391221435862732,32.57565590366421,218.1516527177838,0.0,86.941397562914759,286.24653722293061,1.0,86.941397562914759,174.31776227539618,1.5,30.0,5.2000000000000002,269.07797489429208,271.99860306593149,273.70228721934916,274.01820351626156,274.2984149514885,274.39145682669323,51.541808367474751,51.629581764694102,51.298178182515201,50.826151299440149,50.225890526451835,49.601644528869478 +1998,8,26,15,0,18,279,14.5,292.48666585169906,36.96550263955555,41.47375059324138,237.89476514746394,0.0,91.327821298911559,292.13179590360215,1.0,91.327821298911559,179.14824157267515,1.5,28.300000000000001,4.5999999999999996,273.41111096918411,276.87952498198143,278.90808908543579,278.71923904085173,278.59174484808671,278.5145889500252,53.83030955414997,53.740475116998383,53.458023063865845,53.061230443555552,52.531175268132216,52.002079162609562 +1998,8,26,16,0,24,253,15.5,267.69159928932885,49.778855855714184,52.25487730161663,251.798906977065,0.0,83.957057632591187,267.06761824059583,1.0,83.957057632591187,163.8689391265535,1.458351895133358,28.899999999999999,4.0999999999999996,249.62263273437793,252.74771540820768,254.5748026334723,254.36728478420278,254.222780877882,254.14038558725247,49.582988527331992,49.396099344309029,49.058450206003023,48.656531069954156,48.168809552884582,47.726233380919538 +1998,8,26,17,0,6,150,16.5,152.6444520929798,62.9918288809402,63.848765770825906,262.6015909001958,0.0,48.064762168884194,150.9659185169136,1.0,48.064762168884194,93.25626993456288,1.2926022422981267,28.300000000000001,5.7000000000000002,139.90179873657274,141.84671575544829,142.98581118698445,142.80801649528954,142.67732518724779,142.61031472224329,28.233213514083385,28.08023074521255,27.936400964105516,27.797330957171948,27.611339260969775,27.412135108210265 +1998,8,26,18,0,0,69,17.5,69.0,76.2661258152479,75.70359041686471,271.96650897622754,0.0,21.804474051462929,67.852241270666255,1.0,21.804474051462929,42.075638449517477,1.5,27.800000000000001,3.6000000000000001,62.599359035770469,63.532592881074287,64.079709149351459,63.973475734095629,63.893380759748169,63.854426020785809,12.720337959388479,12.678142967488441,12.659892801961737,12.63395534421133,12.568731842413204,12.471634490405922 +1998,8,26,19,0,15,10,18.5,11.119261755490887,87.45014609940158,85.7207577652677,279.63921169414,0.0,3.9051339743207678,10.46698671542894,1.0,3.9051339743207678,6.9334738238383791,1.3584528919457513,26.699999999999999,3.6000000000000001,8.9608779844273911,9.0943768496196,9.1722916278946141,9.2084445689205854,9.2387796564536746,9.2503334651135205,2.3039882614294154,2.3097216026916709,2.301190678485296,2.2933215460971099,2.2783290561768199,2.2530397364527639 +1998,8,27,6,0,0,0,5.5,0.0,89.65639279745189,87.7156233736416,78.94973178640976,0.0,0.0,0.0,1.0,0.0,0.0,1.345612557319928,25.0,6.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,27,7,0,0,31,6.5,31.0,81.1046352322486,80.07737852743611,84.94565798947963,0.0,9.7496252412374567,30.473491021230409,1.0,9.7496252412374567,18.872455826355036,1.5,25.600000000000001,5.7000000000000002,28.292496975630058,28.723827008845394,28.976819645747717,28.918582651886489,28.874074345759695,28.853052781775894,5.6934053824544755,5.6763704247068043,5.6668381060875097,5.6487738835066557,5.6123109741589952,5.5674479583492014 +1998,8,27,8,0,0,58,7.5,58.0,67.88247919445197,68.24689251664398,94.09958977817436,0.0,18.241234322315243,57.05070706560825,1.0,18.241234322315243,35.345544425399872,1.1950828163578016,25.600000000000001,6.2000000000000002,52.934349180211051,53.741353758484905,54.214694821076336,54.118371941985686,54.045330409758982,54.01024295433681,10.654311731215897,10.624112445186258,10.606280403619627,10.574617321818959,10.509025088807357,10.425098183318637 +1998,8,27,9,0,0,93,8.5,93.0,54.634242181758175,56.533666345794984,104.27742780081063,0.0,29.247494684725044,91.576028683096993,1.0,29.247494684725044,56.756367139110402,1.422665505639854,25.0,4.0999999999999996,84.90439291723078,86.194829774850405,86.951689032653135,86.825922401711992,86.732032569092851,86.685402208949199,17.090760645204398,17.04540739866135,17.01517718507241,16.9675097562038,16.86705166741784,16.732337017356446 +1998,8,27,10,0,6,181,9.5,185.21214571818729,41.649445721072965,45.41036075408548,116.85635750127733,0.0,58.038648172181723,183.67841412021457,1.0,58.038648172181723,113.26605480739325,1.5,26.0,6.7000000000000002,171.03070171455215,173.41534548096212,174.81217967274284,174.63738935940376,174.511816534351,174.44439298650869,34.061559606916134,33.990111711050197,33.871571434139369,33.700972526611814,33.435612814260558,33.133764794949421 +1998,8,27,11,0,181,362,10.5,508.96694000421439,29.516011445404388,35.71094462136808,134.13582791223354,0.0,153.18651903366168,530.3750064146609,1.0,153.18651903366168,316.10129987002733,1.5,28.899999999999999,7.7000000000000002,507.74532181599579,511.01876396305863,512.90325764894862,514.01093977079358,514.95248326451178,515.30153140476966,92.182279342795042,92.671075284147562,91.588499074281259,89.935527507793807,88.084577012554021,86.530268928913642 +1998,8,27,12,0,36,322,11.5,353.45517030786806,20.056968975928502,29.10206071861044,159.04647418274752,0.0,109.51746576756273,360.45662584799686,1.0,109.51746576756273,218.45882660062455,1.5,29.399999999999999,7.2000000000000002,340.0978069842447,343.51740843138339,345.50866318572446,345.94636797321249,346.33151108278867,346.46209467734081,65.01611511283555,65.238367804493706,64.8328323646558,64.145465908174927,63.262627358720636,62.378639341951462 +1998,8,27,13,0,0,149,12.5,149.0,18.21295099939427,27.97640219141171,190.17956655298244,0.0,46.734258089871226,147.39938393502604,1.0,46.734258089871226,91.181578665123496,1.5,28.899999999999999,6.7000000000000002,136.80960181293764,138.81260896026231,139.98679952338497,139.87094701579085,139.78987042009149,139.74394493256403,27.357165481040372,27.310659536864119,27.252481130178207,27.163351769050411,26.990505859212185,26.757655988238504 +1998,8,27,14,0,269,361,13.5,586.81892531400626,25.692268472763168,32.915218707921156,217.94393525940754,0.0,174.72558190960524,620.14257413203859,1.0,174.72558190960524,365.87969637753866,1.5,30.600000000000001,8.8000000000000007,598.25469441288578,600.98194339723045,602.53085961772763,604.27320536010939,605.73529786800896,606.29435384918247,105.69735855157667,106.63872744123698,105.33118269970043,103.06496245265261,100.54581734786812,98.43752503288529 +1998,8,27,15,0,101,338,14.5,413.31791097989753,37.21593021545283,41.77885858973573,237.61352927200247,0.0,127.57195055761611,423.01354833955179,1.0,127.57195055761611,255.18245403322447,1.5,30.0,7.2000000000000002,401.12675357059572,404.67611475088148,406.73670481503041,407.1339560680978,407.49233879394342,407.60654924132439,76.229212680378055,76.326998518308528,75.55376844235461,74.467305928473365,73.251613168767634,72.217456588576994 +1998,8,27,16,0,59,242,15.5,277.8880817431392,50.004782910793324,52.53529679635907,251.51833340345212,0.0,86.955359141137748,281.23121252609491,1.0,86.955359141137748,171.36877425501447,1.4702889518072417,27.199999999999999,8.1999999999999993,263.7841950276881,266.51466876243268,268.10492534499724,268.31412834790751,268.50848321362503,268.56552338108696,51.844882438134277,51.680134224287428,51.130173251359949,50.531260519611457,49.893243238812005,49.361741789267249 +1998,8,27,17,0,0,58,16.5,58.0,63.20884388567204,64.11661930929067,262.33757222549445,0.0,18.241234322315243,57.054364839161352,1.0,18.241234322315243,35.349202197160452,1.3073240684379477,26.699999999999999,9.3000000000000007,52.934349180211051,53.741353758484905,54.214694821076336,54.119663479400998,54.047667722492051,54.013013947241873,10.654529829712999,10.624501489774138,10.60666971589178,10.575224791565915,10.509901225863771,10.4259753781927 +1998,8,27,18,0,77,91,17.5,109.66949725056261,76.48354752611976,75.96816358782065,271.7187633148361,0.0,36.31912498043576,108.44404066888265,1.0,36.31912498043576,68.11050208990595,1.5,25.600000000000001,8.8000000000000007,93.382750358188616,94.435907431010946,95.049014302104013,95.299437760840334,95.512176071675214,95.590726162877957,21.018826691103218,20.872230268893787,20.874572716926004,21.058773895293687,21.220351633604324,21.118507370427114 +1998,8,27,19,0,0,7,18.5,7.0,87.51725887800046,85.84818074643525,279.29752133943333,0.0,2.2015282802794256,6.8726228978540966,1.0,2.2015282802794256,4.2530343096224748,1.3726588679332985,25.0,9.3000000000000007,6.3886283493358205,6.4860254536102513,6.5431528232333545,6.5270054813386604,6.5145284643388894,6.5087752911681722,1.2851015626234368,1.28085827351197,1.2787051932991815,1.2741199340550373,1.2652629229870103,1.2551301098794123 +1998,8,28,6,0,0,0,5.5,0.0,89.66134723154576,87.78737602394685,79.33554619489342,0.0,0.0,0.0,1.0,0.0,0.0,1.3634344693290013,23.899999999999999,6.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,28,7,0,156,79,6.5,105.47550430392276,81.19664952603623,80.22876432991173,85.27624216475701,0.0,37.23983394661748,101.75791252002912,1.0,37.23983394661748,65.906294557421589,1.5,23.300000000000001,6.7000000000000002,79.707530879176161,80.568354299368764,81.065477205686321,81.442133743365105,81.755817221824799,81.877074347279461,21.307848688179405,21.694932946923643,22.003274777679316,22.219517407622302,22.158334499348488,21.731645103119199 +1998,8,28,8,0,121,167,7.5,211.54509855380437,67.97095827628867,68.39896733502457,94.45040166019277,0.0,67.711909032637436,213.20434131725202,1.0,67.711909032637436,131.23709711585332,1.2148134642488342,24.399999999999999,6.7000000000000002,192.30222825919441,194.10054506576461,195.14471451665753,195.5685456295993,195.931515287943,196.06292996354938,40.484703544291939,39.820315758604515,39.155254819910517,38.844187663724071,38.726589271605192,38.635341795679686 +1998,8,28,9,0,375,227,8.5,432.89321920958946,54.72932044602938,56.698233647845576,104.66075420369106,0.0,134.62590437917223,450.27328127891769,1.0,134.62590437917223,269.44586876336274,1.4369849878094048,26.100000000000001,7.2000000000000002,425.19864428374672,427.30919197575366,428.5088463325398,429.6314741953646,430.58192999935227,430.93796371724363,82.285943541654433,81.657808160598478,79.790230823882069,77.931839514900219,76.369314752618678,75.468965985225694 +1998,8,28,10,0,595,190,9.5,606.26630099647764,41.76780237341097,45.604499618064715,117.28141545945522,0.0,182.69141141410137,648.60330039511587,1.0,182.69141141410137,379.24165525373695,1.5,28.300000000000001,6.7000000000000002,629.49032079042161,630.65963909812376,631.27536879354352,633.44717847669835,635.26287796989698,635.96458498229947,112.53125901460152,112.91622753150507,110.40286363799329,107.13688113804635,103.95753102976751,101.80045569863911 +1998,8,28,11,0,640,227,10.5,745.0474087520505,29.689101946239717,35.95786045595806,134.5836986408984,0.0,224.25559388076056,802.23563170358375,1.0,224.25559388076056,465.15241445573508,1.5,30.600000000000001,5.7000000000000002,784.96723424178811,786.17010473103312,786.78710431816182,789.13064396146638,791.09613267692089,791.84961007582763,137.28661993814811,138.73976048683949,136.40136451535534,132.41978148562058,128.10729197092445,124.89095718439545 +1998,8,28,12,0,674,229,11.5,816.08468567959642,20.33907850411452,29.419635209221934,159.39467348760985,0.0,237.96461943524102,882.53525828360068,1.0,237.96461943524102,508.97554599602057,1.5,31.100000000000001,6.2000000000000002,866.69223476267041,867.70529034504671,868.20297859448362,870.57585307420209,872.56809083743121,873.32985167983281,145.29024731754143,147.37187035463859,145.29454921587072,141.0542104590555,136.23164710554869,132.49600849446728 +1998,8,28,13,0,636,241,12.5,800.79296123486483,18.57313358891927,28.33620392340159,190.22509996736719,0.0,233.64788480653147,866.00998049417899,1.0,233.64788480653147,499.61032328854998,1.5,32.799999999999997,5.7000000000000002,849.95939137470748,851.0321322794756,851.56737092935543,853.95941350187604,855.96583443419865,856.734660523005,142.61849199041771,144.65421880609594,142.62973450381759,138.51325549582603,133.82985653745547,130.18372471370571 +1998,8,28,14,0,652,217,13.5,762.20743035666089,25.997682213297033,33.25819602272504,217.74031136707055,0.0,229.20551499069762,822.94402562773735,1.0,229.20551499069762,475.72571917940309,1.5,33.299999999999997,6.2000000000000002,806.9277416607307,807.96201810925186,808.47616328501795,810.81747460981876,812.78184473654915,813.53406464693967,140.08064043540074,141.89013089615295,139.75886983183571,135.68825429215687,131.12898546000318,127.64399797291945 +1998,8,28,15,0,589,210,14.5,647.10869640703481,37.470665873359955,42.087676081269656,237.3348452635809,0.0,189.49445103249491,694.00289873616509,1.0,189.49445103249491,404.62549083987136,1.5,32.799999999999997,5.7000000000000002,675.58059115097194,676.82849943406029,677.48814755026297,679.75077680995309,681.64122628087387,682.37267149415777,116.3625341518504,117.2214226973722,114.90577814080697,111.56543997894622,108.16598418361065,105.70422339329329 +1998,8,28,16,0,538,175,15.5,500.12985412788487,50.23451424332864,52.81931342918278,251.23874299702334,0.0,151.10576922383731,529.35714649550437,1.0,151.10576922383731,312.36928730569639,1.4824611897370856,32.799999999999997,4.5999999999999996,507.35937032554801,508.68636220845184,509.41024199875153,511.04539571321652,512.41702926356129,512.94288447280678,93.192771447268257,92.834323711314482,90.498956223716092,87.924543872070686,85.591502629179175,84.202610386113435 +1998,8,28,17,0,523,120,16.5,346.08109542611828,63.42918814112909,64.38782142819701,262.07358451103613,0.0,110.06120451557355,359.41131589698011,1.0,110.06120451557355,216.28270965741513,1.3224253287870327,32.799999999999997,4.0999999999999996,328.58962543508829,329.61430592719825,330.17922229305418,331.35825200885887,332.34771317987338,332.72568844929799,67.85629073759084,66.328895734370775,64.16355501382769,62.664768190250975,61.827028137164881,61.660609384809 +1998,8,28,18,0,368,67,17.5,154.55701053634419,76.7038773354452,76.23579765357849,271.4704723852138,0.0,54.447491178065462,152.86814058363271,1.0,54.447491178065462,97.002356008897863,1.5,31.699999999999999,3.1000000000000001,119.2547746514016,119.89487586556977,120.25568048933674,120.9337799980223,121.49809274296658,121.71731320758803,31.188977381115524,30.706075648837782,30.717132478305754,31.311840597482227,31.946985691429287,31.938730117456679 +1998,8,28,19,0,60,9,18.5,13.209486656580992,87.58527100325938,85.97693136500263,278.95383686056107,0.0,5.7793552909649231,10.450609301456016,1.0,5.7793552909649231,8.4726315539660657,1.3876042339634602,30.600000000000001,2.1000000000000001,6.6164811140485824,6.7043597064361382,6.7542355521475006,6.8774078516324337,6.9787081437249885,7.0192083042492115,3.4541729185266918,3.4908230140454126,3.4694748988886359,3.4408174400787419,3.3959962024532624,3.3348470956800167 +1998,8,29,6,0,0,0,5.5,0.0,89.665694958009,87.85911768053961,79.72432766491181,0.0,0.0,0.0,1.0,0.0,0.0,1.3843624444256006,22.199999999999999,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,29,7,0,67,85,6.5,96.195833632870702,81.28862747120294,80.38063456834945,85.60956667696135,0.0,32.592250570721127,93.234927993267732,1.0,32.592250570721127,59.201618838962993,1.5,23.899999999999999,3.6000000000000001,78.2599058839685,79.249540505614277,79.825574237853189,79.856923343497456,79.890350827608742,79.896226831195648,18.733869533917456,18.909541224932877,19.079437359330697,19.182172927313225,19.102770548511568,18.816548119072781 +1998,8,29,8,0,406,129,7.5,277.45671653311172,68.05994010699875,68.55198266670564,94.80369165241395,0.0,90.01814114475917,284.7471432711539,1.0,90.01814114475917,173.79726452740428,1.2349808458850489,25.600000000000001,4.0999999999999996,251.74825561248537,252.93384528420845,253.60421739387618,254.7046642650819,255.62345924785109,255.9778567078634,54.810452424379768,53.388149276934328,51.869678854390166,51.154598901854023,50.997474896803496,51.057662935323933 +1998,8,29,9,0,504,178,8.5,453.4983750460392,54.82559723891685,56.86430430173034,105.04618820709499,0.0,140.73327544603293,477.34583770145844,1.0,140.73327544603293,283.43434558467209,1.4515443569425965,28.300000000000001,4.0999999999999996,452.01039954560332,453.44796290973648,454.24319568748643,455.80055530935857,457.10572905592585,457.60680182212343,86.697126970838227,86.125746846936948,83.911247861878351,81.649867312749549,79.713537700274102,78.60885462231731 +1998,8,29,10,0,650,160,9.5,613.15062919767547,41.888340450172876,45.80082227158163,117.70773463192565,0.0,184.460131217661,658.16131555462198,1.0,184.460131217661,383.16028260636295,1.5,30.600000000000001,3.1000000000000001,640.43991831074834,641.34382587580637,641.80036385464405,643.84990902277605,645.56676716308652,646.22725464460348,113.57267324911889,114.24693454827177,111.81957715454263,108.38639975533589,104.957645356421,102.55898393266403 +1998,8,29,11,0,682,189,10.5,739.29369187820748,29.865667136540345,36.20757264630484,135.0309287112846,0.0,222.19841384755023,798.73583010791413,1.0,222.19841384755023,461.34786310602374,1.5,32.799999999999997,4.0999999999999996,783.29193628330927,784.18891289172529,784.62428043367947,786.86423856824229,788.7445188112556,789.46374989582273,135.85824248869466,137.62842199769653,135.5401671938408,131.53937846042743,127.06137533746185,123.654663365204 +1998,8,29,12,0,680,225,11.5,815.43372533883189,20.625071979249533,29.74005973441135,159.74061456802082,0.0,237.73816222819391,883.00016241848039,1.0,237.73816222819391,508.55441790541869,1.5,33.899999999999999,4.0999999999999996,867.27530532023127,868.26684920003902,868.75176948877981,871.11733941801879,873.10240374335933,873.86214385445123,144.70681859084078,147.14367908671497,145.40962157419557,141.26791618616167,136.49541744177426,132.53047921666806 +1998,8,29,13,0,696,220,12.5,830.50113386900045,18.936141332232236,28.698730767828838,190.27215221950172,0.0,241.97544209690355,900.10086826282668,1.0,241.97544209690355,517.80076136564287,1.5,34.399999999999999,4.5999999999999996,884.76428011733856,885.68807952514396,886.13067539451788,888.48357703350769,890.45967031632654,891.21455068038199,147.32367691134201,149.81779511394316,148.03934817864899,143.77564137346047,138.86479326124723,134.80337110747706 +1998,8,29,14,0,669,216,13.5,773.19544719549822,26.307318784417,33.6044666052222,217.5406875962231,0.0,225.59646823260621,835.78539954366147,1.0,225.59646823260621,482.47570119699043,1.5,35.600000000000001,4.5999999999999996,819.6652277417536,820.70140179162536,821.21843462975323,823.55747393247987,825.51858041151354,826.27079371991431,137.70864370151415,139.6780311326784,137.72339334653486,133.75392338142996,129.23823191356712,125.71787946941699 +1998,8,29,15,0,649,191,14.5,670.25687237540023,37.72959749597843,42.4000842752771,237.0587273414747,0.0,195.89452890195267,720.68642626157839,1.0,195.89452890195267,418.74995412009537,1.5,35.0,6.2000000000000002,702.87583312524771,703.95872663512841,704.51701884972726,706.7298318938382,708.58136030797493,709.29524021017028,120.12994299507109,121.29327987438484,119.08249129956252,115.58791750578507,111.8819373684442,109.14114517686683 +1998,8,29,16,0,467,203,15.5,483.35181312227695,50.467952629035935,53.106816547727,250.96018161051828,0.0,146.36628844076091,511.03455264314687,1.0,146.36628844076091,302.23620604919324,1.4948738604142164,35.0,4.0999999999999996,488.10254562356613,489.68494953454558,490.56347817102346,492.27743446311104,493.71085336612595,494.26407822075754,89.917120417233761,89.823337131153266,87.787980613909525,85.449715365359268,83.293222782568904,81.880950210090845 +1998,8,29,17,0,372,150,16.5,309.19859022085973,63.65276660782943,64.6622649938333,261.80967286992257,0.0,98.199631209494783,320.69982985692423,1.0,98.199631209494783,193.81232757863117,1.337920138076447,34.399999999999999,5.2000000000000002,292.28521651090523,293.61230202714319,294.36213668270955,295.63576712601798,296.69763048031518,297.10957951204909,60.272323276252301,59.186437223453687,57.487127123122058,56.303134750960439,55.636211969645572,55.37332546550725 +1998,8,29,18,0,258,75,17.5,135.20095932616795,76.92701390001315,76.50638208676534,271.2216716105105,0.0,46.154342401735477,134.47656085759232,1.0,46.154342401735477,85.156230333290807,1.5,32.799999999999997,4.5999999999999996,106.48216841069581,107.2124261074422,107.63000120047438,108.33665337313914,108.92189167253596,109.15195811921734,26.627701691648458,26.232785653613586,26.181441668205125,26.611323846048226,27.103488049267916,27.110870249917344 +1998,8,29,19,0,34,7,18.5,9.3084142737586237,87.65412183187651,86.10693467908004,278.6082279348667,0.0,3.8937071961758285,7.5091171580779479,1.0,3.8937071961758285,6.0045812476901661,1.4034045976860865,31.699999999999999,3.6000000000000001,4.9663730828719546,5.0341689005274421,5.072892659633772,5.1720182659819205,5.2533323103892586,5.2860394162140674,2.3243119306969957,2.3519046906212995,2.3402328830921242,2.3270474682951003,2.3032688595585458,2.2624773625539349 +1998,8,30,6,0,0,0,5.5,0.0,89.66943991828629,87.93083216328057,80.1159673199207,0.0,0.0,0.0,1.0,0.0,0.0,1.4086977966189664,22.199999999999999,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,30,7,0,120,78,6.5,97.737565068804628,81.38058959997466,80.53298895670557,85.9455190695573,0.0,33.905130020087462,94.663103989590354,1.0,33.905130020087462,60.585912392612684,1.5,24.399999999999999,2.6000000000000001,76.270090205212369,77.157642706222632,77.672315593639652,77.853322344828811,78.008084183616077,78.064092174611318,19.382015777203922,19.624362067080682,19.864769529870205,20.05793614907456,20.03443314690147,19.713649416745106 +1998,8,30,8,0,203,161,7.5,234.72035992037894,68.14946061631721,68.70594955262101,95.15933296941479,0.0,74.308876941621421,237.69336013920235,1.0,74.308876941621421,145.47349911751559,1.2555898562796788,26.100000000000001,3.1000000000000001,213.56293284708266,215.30779437672419,216.31720783628478,216.72844206496967,217.08341683773079,217.20951730945751,44.709255599389067,43.912201695415924,43.024397817585658,42.514880249930869,42.257253638104658,42.145386647278009 +1998,8,30,9,0,516,179,8.5,459.7928119746374,54.9231186221462,57.03189290735369,105.43357766301015,0.0,139.17222084611251,484.71640945410786,1.0,139.17222084611251,287.30029783755583,1.466344244456341,28.300000000000001,3.6000000000000001,458.97074442987162,460.42151731264545,461.22486945084006,462.780786062576,464.08436939849832,464.58532110055978,85.725524924749152,85.240119262751236,83.092849635617441,80.848269680691757,78.880906136579171,77.742649292821199 +1998,8,30,10,0,589,184,9.5,593.15869138031951,42.01110789999064,45.999335857110346,118.13512392691777,0.0,178.71978769678529,636.56596247363063,1.0,178.71978769678529,371.11723066838806,1.5,28.899999999999999,4.0999999999999996,617.75032716557371,618.87393229689053,619.46411510661414,621.61559980736479,623.41231480694319,624.10799191705803,109.6218354419037,110.54451693844337,108.47330534736521,105.35848123759399,102.1349992887726,99.752312896770221 +1998,8,30,11,0,640,218,10.5,732.73362920720547,30.045727162602283,36.460061097820365,135.47729880341552,0.0,214.07608690013993,791.30462012356918,1.0,214.07608690013993,457.53319809778696,1.5,30.0,3.1000000000000001,774.39755464424718,775.53727001833363,776.12125404676999,778.45172456369153,780.40236012266337,781.15337899674,130.60157339930288,132.45225888684274,130.62780596023728,126.95278587419581,122.76840365074489,119.47138611946876 +1998,8,30,12,0,668,231,11.5,809.13577853445202,20.914878638138653,30.063272128486165,160.08412947516103,0.0,236.01766566801263,876.8782053282506,1.0,236.01766566801263,504.70289018795137,1.5,31.100000000000001,2.1000000000000001,860.85023672331431,861.89809780450514,862.41739420733927,864.79399665080075,866.78745634543316,867.55114349928601,143.62942875499525,146.03670907562133,144.32522035931163,140.24717452760459,135.54620217503827,131.62913713291331 +1998,8,30,13,0,666,225,12.5,807.13633771199125,19.301869308981797,29.063886645561038,190.32055559407786,0.0,235.30097401434435,875.53903633444907,1.0,235.30097401434435,503.45265796602729,1.5,31.699999999999999,2.1000000000000001,860.0161502490962,860.98759257439804,861.4616125786963,863.82851545256653,865.81395056590259,866.57449403537498,143.23313083366128,145.65084843137495,143.93300587651686,139.8335531528453,135.110429794987,131.1831614048009 +1998,8,30,14,0,628,224,13.5,744.91792704841646,26.62103306847655,33.95390861580783,217.34496621519938,0.0,217.55176460393,805.71934549425544,1.0,217.55176460393,465.10992537498004,1.5,31.100000000000001,0.0,789.28761167478206,790.39937309120091,790.96508745211838,793.3221109968672,795.29423374574276,796.05401558335234,132.33982012644728,134.54476967281815,132.99022938042779,129.32582239026476,125.09878936224696,121.53234373959879 +1998,8,30,15,0,607,201,14.5,646.97845721683393,37.99260984307535,42.71596274482836,236.78518330614656,0.0,194.88963893683371,695.97620738515479,1.0,194.88963893683371,404.4810449214263,1.5,32.200000000000003,3.1000000000000001,677.75007276307872,678.93328933527243,679.55175430758379,681.78821326617265,683.65799598903425,684.37989306490022,119.25261069735973,120.52044470696804,118.52182110329329,115.16159658864308,111.52242955066487,108.76202212093121 +1998,8,30,16,0,461,208,15.5,482.87456629662569,50.704997803980405,53.397693429784766,250.68269034646255,0.0,146.28170421545056,510.92033915834668,1.0,146.28170421545056,301.93952946199295,1.5,31.699999999999999,2.6000000000000001,487.59882556362743,489.23402909614833,490.14411312707205,491.85924627098416,493.29328740511716,493.84704303425121,89.710935813809712,89.800987737845446,87.899938758102124,85.594329849602673,83.414788166081038,81.923894864804339 +1998,8,30,17,0,116,186,16.5,235.13407714915749,63.87948156691522,64.93984077100164,261.54587915634954,0.0,74.364998014260138,238.99236145906025,1.0,74.364998014260138,145.93289040363246,1.3538233195008722,31.100000000000001,3.1000000000000001,219.01538340219236,220.99673004963432,222.14639009002735,222.63876177734994,223.0593684761696,223.21315960252133,44.72848956471973,44.260154859155783,43.496873279210767,42.932402725438997,42.515229052062701,42.229144369272582 +1998,8,30,18,0,22,80,17.5,85.03126861116391,77.15285326419612,76.77980410287597,270.97239406862957,0.0,27.310308754695534,83.9553391740438,1.0,27.310308754695534,52.296377040511658,1.5,29.399999999999999,3.1000000000000001,74.914736063567418,75.918032814613795,76.504840126013349,76.525335894327341,76.549445259201377,76.552172714100891,15.912625464577099,15.81466747921799,15.780816453638616,15.811044878063019,15.8177150787955,15.728994509247432 +1998,8,30,19,0,0,5,18.5,5.0,87.72374756914083,86.23811256909816,278.2607632897517,0.0,1.5725202001995897,4.90800371552998,1.0,1.5725202001995897,3.0368690101465003,1.420194103481803,27.800000000000001,3.1000000000000001,4.563305963811298,4.6328753240073217,4.6736805880238252,4.6617892153811038,4.6525875416381979,4.6483580695974354,0.91786930788549781,0.91479106134533139,0.91325307280029888,0.90991749159549584,0.90351667564081328,0.89627865913991456 +1998,8,31,6,0,0,0,5.5,0.0,89.67258614979887,88.00250309193008,80.51035591044706,0.0,0.0,0.0,1.0,0.0,0.0,1.4367836735308872,22.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1998,8,31,7,0,23,73,6.5,76.722501948090994,81.4725576673716,80.68582812885454,86.28398594369092,0.0,25.256554866444812,74.982163440389471,1.0,25.256554866444812,47.197535778984971,1.5,23.300000000000001,1.5,64.866532794045511,65.746009548902876,66.259600694207862,66.28113192276976,66.30506390401132,66.308620222867631,14.579001287011907,14.643755619008289,14.723512100188477,14.790750895951662,14.755499007217971,14.584534919840863 +1998,8,31,8,0,159,163,7.5,220.34076258891648,68.23955647345736,68.86087953837057,95.51719805935657,0.0,70.643005121260956,223.13097191836366,1.0,70.643005121260956,136.62262297590362,1.2766456202108416,26.100000000000001,2.1000000000000001,200.69496775438205,202.45593606016286,203.47627975125175,203.88826526538534,204.24270220171724,204.36979529523029,42.468949757947456,41.821596838605508,41.032477800837128,40.545338737035053,40.256868385950902,40.10184866054616 +1998,8,31,9,0,455,194,8.5,440.47046816565302,55.02193052642997,57.201013831374,105.82276998868986,0.0,133.55139366953824,464.24524157680082,1.0,133.55139366953824,275.46234911018269,1.4813853530839154,28.899999999999999,4.5999999999999996,438.62749421613626,440.22464135739608,441.11761682865938,442.69925483140639,444.02150006447027,444.53211937305434,82.03106107810946,81.766393086044516,79.875645419582256,77.839005966103642,75.987195755859887,74.814857416945998 +1998,8,31,10,0,516,217,9.5,574.14557665189068,42.13615108292003,46.20004631700092,118.56339304010147,0.0,168.90827769132241,613.67513618504404,1.0,168.90827769132241,358.65534892302469,1.5,30.600000000000001,5.2000000000000002,593.87624293868214,595.41444167573104,596.25650551213403,598.15784642744279,599.7484098608777,600.36169283896447,103.16822722227204,104.08610498682128,102.34088073166632,99.621761518477854,96.718029612082177,94.501637444854111 +1998,8,31,11,0,610,232,10.5,720.98575387151868,30.229298242155924,36.71530370417256,135.92259388435414,0.0,210.9160023686872,778.74352018406989,1.0,210.9160023686872,450.33212333711896,1.5,31.699999999999999,3.6000000000000001,761.17450835375223,762.44613218984603,763.110213296437,765.4570054107553,767.41879998669742,768.17608852301805,128.20706521655043,130.30509506321661,128.82854479744589,125.37461943800071,121.38435750522619,117.985208385646 +1998,8,31,12,0,619,269,11.5,802.95494759783571,21.20842467948258,30.389208699355557,160.42505699729833,0.0,234.83000909334834,868.90672673916333,1.0,234.83000909334834,500.86669102934121,1.5,32.799999999999997,4.0999999999999996,851.19932145652433,852.57907890775823,853.29691485368051,855.67540973596624,857.66869980650097,858.43356401986591,142.29379686575706,144.94767934482886,143.61795858952729,139.84520598305613,135.32093476040444,131.35139389599252 +1998,8,31,13,0,462,321,12.5,723.37573413954328,19.670212493582515,29.431575038109834,190.3701461576897,0.0,212.69242556273696,779.2559903586498,1.0,212.69242556273696,451.77756465314394,1.5,32.200000000000003,1.5,759.55536618198687,761.42673955298949,762.44785951141034,764.80839122171187,766.78053245250544,767.54244653579917,128.60234327527786,130.8564332437644,129.72807723918515,126.62021292637529,122.87122570945654,119.47563236446865 +1998,8,31,14,0,556,262,13.5,721.27565242848073,26.938678887023205,34.306399673070814,217.15304569694976,0.0,211.56975300137492,777.36951176085267,1.0,211.56975300137492,450.08246777663351,1.5,33.899999999999999,4.0999999999999996,759.06549929993264,760.65234166639721,761.50421629147081,763.71155600880161,765.56045874131905,766.27078756579465,128.40853090429167,130.4168158337196,128.98475105843903,125.63717175369466,121.75664498109701,118.44075345385755 +1998,8,31,15,0,571,212,14.5,629.36371291762282,38.25958472372812,43.03518952922801,236.51421485236742,0.0,184.45142019699438,677.17012796115444,1.0,184.45142019699438,393.66794583351742,1.5,33.299999999999997,3.1000000000000001,658.4218729474959,659.71970201259649,660.41134834957575,662.66484832726337,664.54490269107259,665.27423851063509,112.66028444080138,113.98635337420021,112.24664485597155,109.16152688727689,105.81543983576657,103.17715942757806 +1998,8,31,16,0,431,205,15.5,460.20721179308873,50.94554657848599,53.69182937615853,250.4063056962128,0.0,139.47655892838779,487.47277579977549,1.0,139.47655892838779,287.95655583693554,1.5,32.799999999999997,3.6000000000000001,464.64511320785823,466.25971164497656,467.16055312995616,468.86467841676199,470.28763636444376,470.83872854686831,85.504960675886721,85.599893000217264,83.807464619536859,81.649081196214752,79.610139667721242,78.198063216910569 +1998,8,31,17,0,342,159,16.5,302.3418615094655,64.10923270518009,65.22043750011424,261.2822420413939,0.0,95.929561304458119,312.19288299507707,1.0,95.929561304458119,188.30143353147321,1.3701504391215464,31.699999999999999,1.5,284.9907623292678,286.57637054861345,287.48084539207878,288.30886612351992,289.00898747024621,289.27196826523004,58.593916116003015,57.75909963817039,56.288523167255825,55.122597323588586,54.315731158403544,53.935812099594003 +1998,8,31,18,0,93,86,17.5,106.83195216244697,77.38128890336509,77.05594869716548,270.7226705507466,0.0,35.143745782182357,105.9627700889931,1.0,35.143745782182357,66.318312134359275,1.5,30.0,2.1000000000000001,90.045796381595579,91.042914239228395,91.623262124959339,91.855508596497756,92.053420283028913,92.125978193743379,20.445275140723904,20.225823424318225,20.154184744196584,20.286077021845916,20.434232564230104,20.380163066970837 +1998,8,31,19,0,0,3,18.5,3.0,87.79408110118798,86.37038356630093,277.9115107319412,0.0,0.94351212011975361,2.9440936457828428,1.0,0.94351212011975361,1.8214128229000011,1.4381290486571139,27.800000000000001,3.6000000000000001,2.737983578286781,2.7797251944043939,2.8042083528142956,2.796823332726821,2.7910997409887499,2.7884780452837683,0.55067933471176023,0.54879927112766536,0.54787642614487453,0.54583281597729916,0.54194028019956564,0.53759726537869434 +2003,9,1,6,0,0,0,5.5,0.0,89.67591072890808,88.07767854803855,80.92336573097951,0.0,0.0,0.0,1.0,0.0,0.0,1.4684080863290925,22.199999999999999,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,1,7,0,38,72,6.5,78.044860445507197,81.56977443121528,80.846774044215,86.63804701819217,0.0,25.855478162945133,76.224882332418304,1.0,25.855478162945133,48.010846752543152,1.5,22.800000000000001,2.6000000000000001,65.226756683376962,66.094088881221253,66.600228105278902,66.620989775185492,66.644452903799845,66.647663728422415,14.893375475642001,14.956090058968188,15.047915891708241,15.134901848567905,15.11378560328223,14.942290826500319 +2003,9,1,8,0,13,143,7.5,147.65358769692793,68.33545679784284,69.02452627119504,95.89107423142508,0.0,46.514247516532748,146.27518314938362,1.0,46.514247516532748,90.221870647946048,1.2990197933471106,23.300000000000001,3.6000000000000001,134.71498952288769,136.53089087633347,137.59373711195846,137.42443580783979,137.30028095563054,137.23633925325987,27.381854925329574,27.210245002190888,27.034377368975822,26.87020286626759,26.674584893965562,26.485634737745954 +2003,9,1,9,0,25,234,8.5,247.47661988693801,55.12765713978094,57.3800019089398,106.22861845179341,0.0,77.213408001068885,247.13713131257811,1.0,77.213408001068885,151.45185298615422,1.497293357948859,24.399999999999999,4.5999999999999996,230.49400328195401,233.37391009911556,235.05765691457395,234.85065849225157,234.70465497947356,234.62350344266906,45.571672614586738,45.450621107683425,45.167808877685765,44.793322337965122,44.322153530850414,43.885892411248534 +2003,9,1,10,0,285,308,9.5,504.49647526216927,42.270176969847604,46.41251746776459,119.00855559273434,0.0,150.70292969814795,531.21858327779978,1.0,150.70292969814795,314.40449761807139,1.5,26.100000000000001,4.5999999999999996,508.69573439392843,511.31079279223343,512.80354338511461,514.25949236553038,515.4824311097459,515.94887893377097,90.989578919005027,91.749207946265471,90.681162363729257,88.845356652466506,86.791257064727446,85.041420011233285 +2003,9,1,11,0,350,341,10.5,620.57797150827298,30.4253771080971,36.984888873420765,136.38275153059914,0.0,184.40481798666431,659.19215633448187,1.0,184.40481798666431,386.40222099340525,1.5,27.800000000000001,2.6000000000000001,637.20778181587355,639.8853771859433,641.40028506093734,643.05020047339747,644.43915016582127,644.96610742296741,111.16324645792238,112.55790615948563,111.51381743156483,109.13962228618422,106.33506356667704,103.83525455236091 +2003,9,1,12,0,505,296,11.5,730.08188337672323,21.518662718461226,30.73187786264668,160.7741854569342,0.0,208.39933449200964,788.08368080751325,1.0,208.39933449200964,455.80733478087433,1.5,29.399999999999999,5.2000000000000002,769.08801241131573,770.81877579724801,771.75804059723419,774.08091783817326,776.02101937047939,776.77114956235903,125.918993228167,128.30035883138987,127.29000397260222,124.27814597294348,120.50469062518253,117.06500876142339 +2003,9,1,13,0,636,272,12.5,823.80592127035061,20.05609306075052,29.81683717616459,190.41972747466227,0.0,240.87331746263263,892.89507019230223,1.0,240.87331746263263,513.69314013947815,1.5,30.600000000000001,7.7000000000000002,875.12537313982057,876.51027124142263,877.22842776964922,879.60469186281682,881.59671382524766,882.36038640043421,145.51510497267989,148.54445498080611,147.50178782187683,143.82291431287459,139.08716589799226,134.88844134110724 +2003,9,1,14,0,263,358,13.5,574.28704052294188,27.272431352833944,34.6758231226126,216.9546738897196,0.0,171.13358317954714,609.20400089930581,1.0,171.13358317954714,358.08861155044224,1.5,31.100000000000001,5.7000000000000002,587.2613845685014,590.00681615781696,591.56814140927861,593.28514344045868,594.72383236477708,595.27545160951911,102.82095609630693,104.25770442924113,103.50127418922054,101.51703783922339,99.072601802040523,96.738297801630367 +2003,9,1,15,0,83,306,14.5,366.33555101700603,38.540390568836315,43.369998325795265,236.23305100014684,0.0,111.96392505519042,374.99179126183924,1.0,111.96392505519042,226.11394271996417,1.5,30.600000000000001,7.2000000000000002,354.78758041326927,358.08704148017193,360.00553381206839,360.34251837373358,360.64686913598217,360.74331838623846,66.541070418155229,66.825382942084801,66.395335677554073,65.585927406262826,64.555624052727111,63.581691153284659 +2003,9,1,16,0,561,185,15.5,514.7452756100738,51.19827723781748,54.000284159750315,250.1184132818528,0.0,155.60347615562301,547.45944735356602,1.0,155.60347615562301,321.37671149453928,1.5,30.0,6.7000000000000002,523.69351866153943,525.13318780532154,525.92238751708976,527.56599183664673,528.94503672763653,529.47347062272434,95.47135852455763,95.754479743615647,93.763636401434766,91.170362381229594,88.623313385176161,86.870570165530665 +2003,9,1,17,0,568,97,16.5,332.41508668585851,64.35019774510856,65.51448502866432,261.0068429217298,0.0,103.03723311186448,349.53696709889687,1.0,103.03723311186448,208.49904137523208,1.3876451040259496,30.0,7.2000000000000002,316.91387446759722,317.65732348288299,318.05616517316668,319.44733363880414,320.60697360259633,321.05776197084043,63.899663016810095,62.946697430873243,60.933586632229492,59.224580051825939,58.058197432487475,57.560079324198092 +2003,9,1,18,0,375,63,17.5,145.15480139246174,77.62041284486556,77.3450283750065,270.4612064940799,0.0,50.103926937239684,144.77946609389988,1.0,50.103926937239684,91.089298622019115,1.5,28.300000000000001,4.0999999999999996,110.57092022411649,111.18018277879634,111.52479185720085,112.15754661930151,112.68468888869867,112.88914139148397,29.14601919513629,28.485408707799888,28.229635119371522,28.57166562044312,29.088448697742038,29.192843188199213 +2003,9,1,19,0,30,4,18.5,5.8269740849276337,87.8673035592149,86.50857613965796,277.5454838772862,0.0,2.4986707482105799,4.5544322612000139,1.0,2.4986707482105799,3.7513456516718398,1.4588367596425202,25.600000000000001,3.1000000000000001,2.8447928694679621,2.8831419239180138,2.9049109979353518,2.9641605122461896,3.0127980340218325,3.0323279503028155,1.4838606178347247,1.5064044415581341,1.5033051901485563,1.4966997956901051,1.4800547296089439,1.4501594817024912 +2003,9,2,6,0,0,0,5.5,0.0,89.67782967258087,88.14918730854069,81.32300653899694,0.0,0.0,0.0,1.0,0.0,0.0,1.5,22.800000000000001,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,2,7,0,69,79,6.5,89.793305411488987,81.66178547812302,81.00056553487705,86.9812874489877,0.0,29.956330315433096,87.511960327225154,1.0,29.956330315433096,55.255915066212943,1.5,24.399999999999999,4.5999999999999996,73.023661639181583,73.948310438442832,74.486973560951185,74.514326081718224,74.544156984048513,74.548992721365593,17.183367269928176,17.252890846857415,17.384167797922583,17.525664949142048,17.535767135384443,17.338280151168835 +2003,9,2,8,0,369,126,7.5,257.14634879126504,68.42680116561296,69.1814158139165,96.2530751782177,0.0,81.648044589021509,266.07912194558219,1.0,81.648044589021509,161.22180867984932,1.321004670985058,26.100000000000001,5.7000000000000002,234.56607684047884,235.73226985929432,236.3933215080217,237.46805097008246,238.36356091255445,238.71128642330495,50.026586756667299,49.086661924737143,47.697732467896955,46.789185440906557,46.2946872326443,46.135640909583977 +2003,9,2,9,0,584,154,8.5,467.3336907349227,55.22920068051567,57.552248295691044,106.62101215554796,0.0,141.11035364831622,497.6694117729154,1.0,141.11035364831622,292.76693835539101,1.5,27.800000000000001,5.7000000000000002,471.14442340791135,472.30515377085646,472.93444926040053,474.77088942711254,476.30203294303385,476.89729141819521,86.901959464843614,87.013165714144463,85.027856467079772,82.621530344057263,80.369850659218613,78.86117667649394 +2003,9,2,10,0,656,175,9.5,625.58232693420996,42.39995501597178,46.61767784282895,119.43803629286468,0.0,188.34928588058116,674.72987478650566,1.0,188.34928588058116,390.96293270622351,1.5,28.899999999999999,6.2000000000000002,655.67754193316614,656.73464293822963,657.28076856935911,659.39052828636045,661.15503919992739,661.83554898221644,115.01485612050918,116.48728413906599,114.77937300651594,111.56294890358603,107.95681906339449,105.14855332714205 +2003,9,2,11,0,670,205,10.5,738.35228631593213,30.61609686710299,37.24562791715184,136.82522635686797,0.0,215.54556044172233,801.03916616357196,1.0,215.54556044172233,460.89825234751407,1.5,30.600000000000001,7.2000000000000002,784.52224046469587,785.5747383096292,786.10596124537346,788.4013695166484,790.32193539269224,791.06171212369429,130.73488393447326,133.24656598555521,131.99992193072782,128.4615190109561,124.22686739693529,120.51471983113038 +2003,9,2,12,0,674,232,11.5,809.34793342025114,21.819549095228627,31.06312891583268,161.10942859066577,0.0,236.14983676278152,880.10087743264444,1.0,236.14983676278152,504.8261716969165,1.5,31.699999999999999,6.7000000000000002,863.82166404812529,864.90782122506243,865.44984249801178,867.826667367965,869.81788552120076,870.58247605501992,142.79286890193052,145.85532910075523,144.80945143518306,141.0971197253524,136.32846882445287,132.12150439232016 +2003,9,2,13,0,624,255,12.5,794.36570127966149,20.429429555918603,30.189370067162546,190.47135501579507,0.0,232.10845015516617,862.92733757514316,1.0,232.10845015516617,495.63444086339354,1.5,31.699999999999999,5.2000000000000002,845.92606742090709,847.17472460723354,847.81552424511972,850.20925704939873,852.21297533222696,852.9837780884925,140.27665420917594,143.23680039628582,142.22461415183349,138.66126497201188,134.0766045438088,130.00210447933358 +2003,9,2,14,0,317,367,13.5,626.56277534985827,27.59765346916552,35.034151317599836,216.7702738446571,0.0,182.19667735732108,666.1406600717728,1.0,182.19667735732108,390.275903583483,1.5,31.699999999999999,4.0999999999999996,643.50161297461239,646.31638650842672,647.91420192964461,649.63815901734597,651.08539703072108,651.6379144460775,109.40594943193567,111.05217589567563,110.30911251684411,108.18521971705404,105.471753918277,102.89597462921563 +2003,9,2,15,0,393,299,14.5,583.14655791056578,38.81509137245359,43.69568031819106,235.96738784566102,0.0,177.23624387516375,618.59731886022655,1.0,177.23624387516375,362.88407012268868,1.5,31.100000000000001,4.5999999999999996,596.6764214053336,599.17614607400515,600.58805965479905,602.06164183590909,603.30601172529975,603.77467954417079,106.96122257607762,108.20327343905801,107.08873902179076,104.75270549692006,101.99994542167944,99.62953659139653 +2003,9,2,16,0,183,269,15.5,375.78617940792788,51.4456636377615,54.30071797874886,249.84443464603837,0.0,115.38865073337,388.99216712531017,1.0,115.38865073337,233.11096072212189,1.5,31.100000000000001,5.2000000000000002,367.20300042892444,369.88473346730734,371.43308936643268,372.16232659362231,372.78654273356085,373.01406288572861,69.399462171806306,69.57908512577356,68.716032214865947,67.531822654883939,66.261894575133709,65.213707299414764 +2003,9,2,17,0,116,192,16.5,239.54939992605216,64.58584286420403,65.80090541404822,260.74367784091567,0.0,74.831537830127971,244.10696849047758,1.0,74.831537830127971,148.62175708981394,1.404886815424907,30.600000000000001,4.5999999999999996,223.21912559915523,225.24587477613147,226.4220316887197,226.90611939054895,227.3201239678661,227.47114661177324,44.997609845999378,44.678060786680419,43.981931125996411,43.363798682629174,42.845080926936312,42.463997960792774 +2003,9,2,18,0,136,89,17.5,118.14285723239756,77.85382450054281,77.62637484519165,270.21070101224325,0.0,39.121563218704047,117.34878422402062,1.0,39.121563218704047,73.266704606612407,1.5,28.899999999999999,3.1000000000000001,97.969523826475807,98.990808513043419,99.584242510156315,99.811971687137799,100.00757661731029,100.07792430808877,22.842471423329023,22.513332137397757,22.361261147982695,22.472490582269629,22.640058648175231,22.614333274936818 +2003,9,2,19,0,0,2,18.5,2.0,87.93887099879409,86.6428164174634,277.19282686433075,0.0,0.62900808007983589,1.9624779016486491,1.0,0.62900808007983589,1.2140240198498544,1.4797156824605184,25.600000000000001,2.1000000000000001,1.8253223855245198,1.8531501296029285,1.8694722352095299,1.8644601928795159,1.8605726470228225,1.8587950671444606,0.36710457868297902,0.36583946333368517,0.36522421496209134,0.36384682634191956,0.36123335191384431,0.3583379360548985 +2003,9,3,6,0,0,0,5.5,0.0,89.67916170274347,88.22060041845332,81.72506158592866,0.0,0.0,0.0,1.0,0.0,0.0,1.5,22.199999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,3,7,0,208,71,6.5,102.98302837349655,81.75387486973591,81.15484821099899,87.32669204524126,0.0,35.843321055403038,100.37441061112025,1.0,35.843321055403038,64.279861228126762,1.5,22.800000000000001,1.5,75.996800447966876,76.775919436624619,77.22559744533541,77.566412752971701,77.851353090147242,77.960664464435638,20.340617692108552,20.490788392601296,20.755982503499208,21.11485072790725,21.291517098526707,21.033801203204927 +2003,9,3,8,0,497,105,7.5,280.35801977189413,68.5188355182591,69.33930541189225,96.61690780703829,0.0,87.027087706184176,291.51641697212165,1.0,87.027087706184176,175.33970659214631,1.3434534272525047,24.399999999999999,1.5,256.10761486697675,257.05787989724251,257.58761620156673,258.59408388908162,259.43644780677266,259.76045546930879,53.630595338925772,52.605327910906155,50.960195299710847,49.767703036404555,49.051358534004045,48.812130333761004 +2003,9,3,9,0,351,227,8.5,414.42267147899702,55.332171914926995,57.72606788185241,107.01474299453501,0.0,126.33428502353641,434.20324962098755,1.0,126.33428502353641,258.02698107043449,1.5,26.699999999999999,2.1000000000000001,409.17044502262365,411.29226159887207,412.50162274338487,413.60907012112432,414.54387414101586,414.89669873225836,76.74478480574686,76.907073092446709,75.612594826030019,73.948302249458536,72.270787143056921,71.029384606403681 +2003,9,3,10,0,607,229,9.5,644.32663987091951,42.53213811326204,46.82504450328667,119.86782465457273,0.0,189.42681995426332,691.44078154732347,1.0,189.42681995426332,401.86927179377136,1.5,27.800000000000001,2.6000000000000001,669.94105729882506,671.59582917103671,672.49820047417529,674.40904663089213,676.01215429071954,676.62584595583451,115.15191249663977,116.63395669780358,115.14489712379789,112.16908525481533,108.75576798345512,106.01783103318571 +2003,9,3,11,0,241,349,10.5,540.17500266918012,30.81035176392001,37.50904083873498,137.26600028394307,0.0,161.2608329198913,572.6811635379978,1.0,161.2608329198913,336.94502438685004,1.5,28.899999999999999,3.1000000000000001,550.79817217088794,553.5420738027201,555.10690399715622,556.77289713659411,558.16685524348054,558.70295787894156,96.607752764303996,98.068679065071265,97.52896270043388,95.838395146583792,93.590463555826261,91.385705810932151 +2003,9,3,12,0,60,356,11.5,407.21473857891107,22.12393319537549,31.396900994737738,161.44163385152072,0.0,124.49993403687976,418.32305107018925,1.0,124.49993403687976,251.66422691808356,1.5,30.0,3.6000000000000001,396.15695832814799,399.84750414690041,401.99370949818586,402.4820951220367,402.91160834525141,403.05734778108149,73.639978765041164,74.221393353029768,74.005483458951588,73.2601457724017,72.141944761649953,70.940476929812277 +2003,9,3,13,0,0,143,12.5,143.0,20.80506052622142,30.564138880434587,190.5236933711626,0.0,44.866518496884161,141.43169809352196,1.0,44.866518496884161,87.485949473618447,1.5,26.100000000000001,1.5,131.25075974818796,133.18094014719628,134.31251382604455,134.19319953667497,134.10877800452144,134.06197997997728,26.247377631782999,26.207818652720839,26.161138206348216,26.08135217883942,25.917106783352303,25.691810053742163 +2003,9,3,14,0,0,129,13.5,129.0,27.92635705343535,35.395153105037764,216.58934658975463,0.0,40.501905079229097,127.42605376218141,1.0,40.501905079229097,78.878459690778882,1.5,23.899999999999999,1.5,118.20155204249045,119.95820726569971,120.98819993865544,120.86615233560073,120.77833441956578,120.73126836630482,23.687768952352386,23.644043989570363,23.601404252052664,23.531901722587865,23.387804371397078,23.189795794952651 +2003,9,3,15,0,0,109,14.5,109.0,39.09337848588981,44.024330917421814,235.70427122900696,0.0,34.256071349783895,107.47415879347851,1.0,34.256071349783895,66.589888657083762,1.5,22.800000000000001,2.6000000000000001,99.639481048547225,101.14233699096705,102.02369481009164,101.90029707169487,101.80968736611524,101.76310138971118,20.024899637884502,19.978920122675216,19.943448405238673,19.887931129433248,19.770506412615351,19.609124880744464 +2003,9,3,16,0,0,111,15.5,111.0,51.69622285086146,54.604050605211405,249.57164714142976,0.0,34.884994468381976,109.44759051096078,1.0,34.884994468381976,67.769043304507235,1.5,22.800000000000001,3.1000000000000001,101.52380707640724,103.04552822804068,103.93786026062443,103.79679456490858,103.69206232926906,103.63944792935466,20.397876483848755,20.348410720218798,20.308271867518155,20.244403252327448,20.11766230139337,19.952213315911578 +2003,9,3,17,0,0,73,16.5,73.0,64.82420400971904,66.0899966331703,260.4807686914491,0.0,22.958794922914002,71.831536474581284,1.0,22.958794922914002,44.512969690378284,1.42260467168955,22.800000000000001,2.6000000000000001,66.624267071644937,67.63997973050688,68.235736585147805,68.123801768216381,68.039399833389041,67.998360560883583,13.41130750200232,13.374528878524615,13.352087029413827,13.313805967262653,13.233184647438696,13.12756012412625 +2003,9,3,18,0,0,26,17.5,26.0,78.08949317221565,77.91008081797665,269.95983027323166,0.0,8.1771050410378674,25.549591823660549,1.0,8.1771050410378674,15.819691341958341,0.9886492450785065,22.800000000000001,3.1000000000000001,23.729191011818742,24.090951684838053,24.303139057723865,24.251180839254332,24.211329610946219,24.19265288746848,4.774588290160426,4.7598887034095645,4.7518932100674132,4.7362165279850981,4.704986894740304,4.6673572985034664 +2003,9,3,19,0,0,1,18.5,1.0,88.01091981327728,86.77787940545424,276.83858327048057,0.0,0.31450404003991794,0.98110487638388766,1.0,0.31450404003991794,0.60687793555019443,1.5,22.800000000000001,3.1000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93218275557686736,0.93020065011138686,0.9292959637736059,0.18354429501556013,0.18290547137033489,0.1825978373726625,0.18190114657483963,0.18058456145232546,0.17913681474890786 +2003,9,4,6,0,0,0,5.5,0.0,89.67991035309194,88.29189985214212,82.12942020352702,0.0,0.0,0.0,1.0,0.0,0.0,1.5,22.199999999999999,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,4,7,0,0,58,6.5,58.0,81.84606852959482,81.30962574580434,87.67414393415115,0.0,18.470503791094632,56.920074624601305,1.0,18.470503791094632,35.380889925389333,1.5,22.199999999999999,2.6000000000000001,51.554001072034339,52.310893789894536,52.754306547161832,52.668524501033012,52.604037340015616,52.572469709463292,10.740704454844874,10.717116233110517,10.719091729169078,10.714048497197277,10.667417182857097,10.57817226420493 +2003,9,4,8,0,0,111,7.5,111.0,68.61159864774234,69.49820792862239,96.98244186323218,0.0,34.935532507328318,109.61562276483508,1.0,34.935532507328318,67.753021209650498,1.3663723118134345,23.300000000000001,4.0999999999999996,101.32250596988325,102.78728621463735,103.6456630391548,103.49673186268379,103.38573503650171,103.33045243258108,20.482153510316653,20.403107932593635,20.32711246088434,20.235251302179215,20.094548118514609,19.93567503319332 +2003,9,4,9,0,0,167,8.5,167.0,55.43661516137533,57.901473266553786,107.40965725701915,0.0,52.359785903561992,165.42339598177264,1.0,52.359785903561992,102.04688068028541,1.5,23.899999999999999,4.0999999999999996,153.68999471296692,155.86577528139949,157.14053190464955,156.95510141701965,156.8193114736286,156.74917175455235,30.700768343526143,30.637367028035012,30.542635907849899,30.396894620628743,30.161767737508161,29.890847923749789 +2003,9,4,10,0,30,286,9.5,306.44669067709532,42.66676497354133,47.03461778076502,120.29773462696598,0.0,94.31961348569493,311.52912307788483,1.0,94.31961348569493,189.14586349044629,1.5,25.0,4.5999999999999996,292.5821293607861,295.7070087385672,297.52924506132689,297.8238157130229,298.08850028945574,298.17335571959183,55.800044154172163,56.007436207806919,55.75013120126151,55.242819722745452,54.554747005464669,53.805285442429664 +2003,9,4,11,0,6,213,10.5,217.74252798141163,31.00814164745373,37.77509709511594,137.7048763328551,0.0,67.818987358761746,216.63596435027102,1.0,67.818987358761746,133.26904544673127,1.5,25.600000000000001,4.5999999999999996,201.939725621181,204.70640656603805,206.32680854654967,206.15872287982612,206.04108554305529,205.97450173252787,39.744373779038504,39.736017609675265,39.653721224996289,39.471656619842122,39.149432010503617,38.757422351520546 +2003,9,4,12,0,30,358,11.5,383.51521531517773,22.431730303110292,31.733124317246002,161.77066557919412,0.0,116.51370545741977,392.56151732719866,1.0,116.51370545741977,237.08657045374747,1.5,24.0,7.2000000000000002,370.4176934410952,374.12364656756034,376.28265485268741,376.77591606117431,377.20707230949995,377.35554780492782,68.788398756201943,69.272924020274175,69.110651715563179,68.534535413261196,67.614464862486457,66.564352308503942 +2003,9,4,13,0,0,251,12.5,251.0,21.182880248078355,30.941045245233468,190.57659418587943,0.0,78.203423523033777,249.82591835375698,1.0,78.203423523033777,153.74084529168252,1.5,26.100000000000001,4.0999999999999996,232.75134925451584,235.95089298127274,237.82491800117953,237.6727298085963,237.57075492545212,237.5079564274792,45.819417270373158,45.819791496779111,45.734666014791145,45.54217433985432,45.183777706036537,44.7316816121701 +2003,9,4,14,0,0,240,13.5,240.0,28.258393249183353,35.75870440526853,216.41177975343194,0.0,74.998408670967663,238.68572603760538,1.0,74.998408670967663,146.93987132407489,1.5,23.899999999999999,3.1000000000000001,222.33675029870858,225.40911998022423,227.20869656413859,227.041223605103,226.92601527650726,226.85856379827686,43.942036369300787,43.934057810751241,43.84802623087203,43.658772734782453,43.31380855961109,42.883847775210363 +2003,9,4,15,0,0,109,14.5,109.0,39.375123492395424,44.35582292779306,235.44368133203443,0.0,34.256053480928699,107.47437851029075,1.0,34.256053480928699,66.588320905858325,1.5,22.0,3.1000000000000001,99.641100762174887,101.14394624038137,102.02529777860258,101.90134702327974,101.81028788188426,101.76351679079575,20.024196837013999,19.978624654844502,19.943601148847225,19.888167138211994,19.770601375359693,19.608972046235365 +2003,9,4,16,0,0,83,15.5,83.0,51.94984103711679,54.910160276060196,249.300070144079,0.0,26.103835323313202,81.70672500820163,1.0,26.103835323313202,50.64588878422957,1.5,22.199999999999999,0.0,75.750878999267513,76.905730378521469,77.583097761195432,77.468276683445652,77.382391567303756,77.339910097479404,15.250574851670576,15.210405564648946,15.184892069457117,15.143469533025849,15.054393495437068,14.934310054128417 +2003,9,4,17,0,0,52,16.5,52.0,65.0651712737486,66.38164003049344,260.21814214827674,0.0,16.354210082075735,51.142811443879722,1.0,16.354210082075735,31.683010459095218,1.4408176306576417,22.199999999999999,0.0,47.458382023637483,48.181903369676107,48.606278115447729,48.517766385985858,48.450537329416626,48.418356567440306,9.5517779324065497,9.5244177044990987,9.5084299105971688,9.4796786019699937,9.4204238429625438,9.3451772675228533 +2003,9,4,18,0,0,35,17.5,35.0,78.3273023433537,78.19602262191678,269.7086165003502,0.0,11.007641401397123,34.40768924763919,1.0,11.007641401397123,21.309746284636919,1.0133683135788758,22.199999999999999,0.0,31.943141746679089,32.430127268051244,32.71576411616676,32.650766480579676,32.601125536632814,32.57764463131474,6.4281656287713904,6.4090323850798496,6.3982702460991234,6.37800248425311,6.336991491734711,6.2863403170893575 +2003,9,4,19,0,0,1,18.5,1.0,88.08336723322799,86.91366780820532,276.48281751778745,0.0,0.31450404003991794,0.98109988367109724,1.0,0.31450404003991794,0.60687294283985072,1.5,21.699999999999999,3.6000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93218099268059207,0.93019745977414814,0.92929218148049286,0.18354399731994278,0.1829049403402255,0.18259730597717494,0.18190031740323254,0.18058336556071977,0.17913561741342388 +2003,9,5,6,0,0,0,5.5,0.0,89.6800787781746,88.3630669354125,82.53597138123317,0.0,0.0,0.0,1.0,0.0,0.0,1.5,17.199999999999999,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,5,7,0,164,70,6.5,94.340096715399525,81.9383932023734,81.46490237837637,88.02352545914881,0.0,32.159295318583226,92.682143984375614,1.0,32.159295318583226,58.9371326717432,1.5,18.300000000000001,3.6000000000000001,71.104113347037881,71.872708671027979,72.317846156238517,72.650491904218256,72.928289595193661,73.035242051988376,18.37536834324132,18.37855290517814,18.520895784587083,18.813298195445878,19.018147979732181,18.85962608609313 +2003,9,5,8,0,530,97,7.5,281.23904264310374,68.70512964823763,69.65813636701604,97.34954651435422,0.0,87.255233141509819,295.18631706940698,1.0,87.255233141509819,176.68331347172511,1.3897679081505818,20.0,5.7000000000000002,257.75319143495932,258.59011186164634,259.05150245388143,260.33642296535425,261.40466497397261,261.8223266804988,53.946022425306452,53.209605003744159,51.608819965855893,50.280554196233112,49.380183591077511,48.959841939714813 +2003,9,5,9,0,646,126,8.5,467.57716418363503,55.542574068153115,58.07847640475762,107.80560110102314,0.0,140.8749277936852,502.0478606920621,1.0,140.8749277936852,292.58056108359267,1.5,21.699999999999999,5.2000000000000002,476.07066605767869,476.95008671484879,477.41156279754654,479.1196637605085,480.54580265853167,481.09826468007373,86.415239162371179,87.144899274346443,85.51053073091272,83.054280147558842,80.5129526174576,78.633381364995927 +2003,9,5,10,0,741,142,9.5,645.02557418057086,42.803872122409196,47.24639643546275,120.72758146215223,0.0,188.05818243697837,700.33202819506892,1.0,188.05818243697837,402.43723017683391,1.5,23.300000000000001,5.7000000000000002,682.47381232447867,683.25901368115046,683.64308668960996,685.57130697021307,687.18671023276579,687.80716470189259,114.11720365693768,116.33659682999978,115.23265358695633,112.07417086916459,108.29857686526158,105.01703973669295 +2003,9,5,11,0,785,146,10.5,764.21910859475167,31.20946223017205,38.043763988416615,138.14166213142684,0.0,222.58401480263231,833.18813890831609,1.0,222.58401480263231,475.68857500606151,1.5,23.899999999999999,7.7000000000000002,818.76037909554066,819.56523065219199,819.94551166183749,821.83318296807454,823.42337831519637,824.02610173815674,134.1496692516543,137.35032677685547,136.66349021073719,133.1984119101279,128.51318023584685,124.35911912892077 +2003,9,5,12,0,806,150,11.5,832.99153211444082,22.74285330778947,32.071727611795495,162.09639401999036,0.0,242.34588212457538,910.49873834900689,1.0,242.34588212457538,517.92267908116946,1.5,24.399999999999999,5.7000000000000002,897.34224369017397,898.07043920597903,898.39615065564271,900.24648793849553,901.81065234947823,902.3982077112679,145.57095644629933,149.37226821153365,148.93671628489287,145.31518313777502,140.15047994502649,135.43828997195502 +2003,9,5,13,0,809,149,12.5,840.11051339741516,21.5627827556585,31.319990305739147,190.6299129620118,0.0,244.36807799097031,918.64545737549588,1.0,244.36807799097031,522.26903081602381,1.5,25.0,4.5999999999999996,905.68275848880728,906.39009039651114,906.70244497670285,908.53936273991144,910.09321158674925,910.67598638999175,146.79018166766511,150.6296050365923,150.18987552744392,146.52319458068195,141.29606348705809,136.53482607827229 +2003,9,5,14,0,801,142,13.5,788.99654071197222,28.593612861884395,36.124680811369586,216.2374592810908,0.0,222.36451451585984,861.36986206515098,1.0,222.36451451585984,490.84510085085924,1.5,25.0,5.2000000000000002,847.70886847165377,848.44550884160094,848.78532990583506,850.63949855646467,852.20198803799951,852.79346889542319,133.83273488826353,137.19936220355237,136.67728782502468,133.27782871605342,128.51153993337394,124.25595157954005 +2003,9,5,15,0,767,128,14.5,673.27708503291933,39.660195844519734,44.690028072668355,235.1855938012709,0.0,196.203978395761,732.11748119018637,1.0,196.203978395761,419.52943204084926,1.5,25.0,5.2000000000000002,716.00569270773235,716.77459860743022,717.14526215459375,718.9680295624828,720.49937867241647,721.08362210412281,118.67374475930501,121.24047189036888,120.35984219300997,117.19395887404663,113.13367009054681,109.59365873640382 +2003,9,5,16,0,708,114,15.5,517.87316732195188,52.20640201001863,55.21892369711284,249.029719207542,0.0,151.1262678153827,559.02015702362883,1.0,151.1262678153827,323.41465181164534,1.5,25.0,4.0999999999999996,536.38501071042822,537.09344966259061,537.44836772759618,539.10713827424081,540.49590273928607,541.03049943713268,92.50066580512366,93.62460412659712,92.1184898820581,89.387888194368003,86.433849892902231,84.179386168811234 +2003,9,5,17,0,549,97,16.5,314.36817694587933,65.30863259557101,66.67571530771328,259.9558221656745,0.0,97.468409747404351,333.1816118768507,1.0,97.468409747404351,197.31826170756452,1.4595455992462485,23.300000000000001,5.7000000000000002,299.88265421007168,300.65056445841265,301.06548098653741,302.43280583639876,303.57081337076426,304.01476423376238,60.28847163754061,59.900393602682179,58.267959329740904,56.636156677959242,55.264394963145619,54.477725355405298 +2003,9,5,18,0,343,59,17.5,127.47662269045524,78.56713309681618,78.48407448576555,269.4570799901736,0.0,43.018309502847821,128.47929314477338,1.0,43.018309502847821,80.080542580770882,1.0393916530297207,21.699999999999999,4.0999999999999996,96.269315244624977,96.84770460385792,97.176279500280771,97.763781393035885,98.252639797494538,98.442642980984431,25.439733190192424,24.765709633739952,24.344437859198813,24.453280199109443,24.771372904751466,24.897195634547689 +2003,9,5,19,0,0,0,18.5,0.0,88.15612588603469,87.05007966690387,276.1255932930342,0.0,0.0,0.0,1.0,0.0,0.0,1.5,20.0,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,6,6,0,0,0,5.5,0.0,89.67966964072018,88.43408223866949,82.94460376876756,0.0,0.0,0.0,1.0,0.0,0.0,0.2114878907548352,13.9,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,6,7,0,0,24,6.5,24.0,82.03087636477163,81.62068283511597,88.37471821096696,0.0,7.5480969609580288,23.586264815244004,1.0,7.5480969609580288,14.604818215756703,1.5,15.6,3.6000000000000001,21.903868626294248,22.237801555235151,22.433666822514365,22.386420831981077,22.350214385758996,22.333214568686046,4.4074330826161301,4.3939589281996012,4.3865786210894573,4.3722286850750507,4.3435501584743657,4.3088157325372221 +2003,9,6,8,0,236,156,7.5,237.41652220822914,68.79946782630833,69.81910379524341,97.71809038862845,0.0,74.000791433609834,244.76903433821195,1.0,74.000791433609834,148.08227584427161,1.4136471571524576,18.300000000000001,4.5999999999999996,217.52104656188089,219.10658728096035,220.01998360706875,220.76036145947438,221.3822026361704,221.61932313473164,44.914584528544033,44.531450502015034,43.639869061319892,42.865129260812402,42.265536364311153,41.876665855571716 +2003,9,6,9,0,455,188,8.5,427.37946560648595,55.6500915074493,58.257088527992394,108.20242061696639,0.0,129.59849329188668,454.86165190637831,1.0,129.59849329188668,267.28957676849376,1.5,20.0,3.6000000000000001,429.10116705863896,430.66464624877523,431.53934456927038,433.08083175788153,434.3675324381424,434.86578331157972,78.801753472386935,79.531097936789067,78.390904273646669,76.538675402956798,74.507686868274632,72.866968542920347 +2003,9,6,10,0,632,180,9.5,607.29513926968639,42.94349379142658,47.460377590620126,121.15718181407414,0.0,177.75892769229611,658.53146231810433,1.0,177.75892769229611,379.71709982660315,1.5,21.100000000000001,3.1000000000000001,639.04490449338721,640.17169776696915,640.76419668643837,642.8841113417609,644.65073616058544,645.33728037574963,107.40105436320106,109.65184345629056,108.8915852653916,106.28234357749307,102.91596992851511,99.852665539064958 +2003,9,6,11,0,592,256,10.5,720.49149624351219,31.414305075634974,38.31500664879868,138.5761699537761,0.0,211.45685122014902,780.95979627255952,1.0,211.45685122014902,449.37832645475748,1.5,22.199999999999999,1.5,761.90195422651493,763.55037255871162,764.43903662046068,766.57275515106301,768.35796223986756,769.04470380102464,126.75025859641013,129.751766419273,129.39203925504802,126.69787587578959,122.80068525496091,119.05443813734156 +2003,9,6,12,0,283,388,11.5,626.91134903808188,23.05721281991017,32.41263812907094,162.41869515874635,0.0,182.49442378256521,669.32409343870813,1.0,182.49442378256521,390.67578997275433,1.5,22.800000000000001,3.6000000000000001,646.36737124652029,649.26094232617845,650.90565788390722,652.69913998471293,654.20063433897974,654.77676095586639,108.75117624380339,110.87551449105291,110.66151141425982,108.93782207898602,106.26941241286501,103.52551583607752 +2003,9,6,13,0,90,389,12.5,465.57227784290899,21.944661820476774,31.70087471348781,190.68350904240813,0.0,140.00757708038589,481.28157621330229,1.0,140.00757708038589,287.73742762014518,1.5,22.199999999999999,3.1000000000000001,457.43848312637709,461.36695690194313,463.64821354262932,464.19933398427435,464.68348188630449,464.84807232771414,82.734432144519388,83.575069302193711,83.422648971548284,82.578585082554483,81.212689300280871,79.735754191649789 +2003,9,6,14,0,24,326,13.5,345.29431917969777,28.931866465943227,36.49295762093437,216.06626978338568,0.0,107.07604787206856,347.15899190168625,1.0,107.07604787206856,211.66162564094049,1.5,22.800000000000001,4.0999999999999996,325.71236719968277,329.67559594376286,331.99233823791155,331.8247281370314,331.71809231831446,331.64591454118658,62.878516696106018,63.047262268145708,62.927237461099445,62.519750157463903,61.834580838279173,61.063491196417736 +2003,9,6,15,0,77,322,14.5,376.42173237172938,39.94846301425445,45.02681707328171,234.92998004964642,0.0,113.79605590505216,386.33121742645534,1.0,113.79605590505216,232.37209196719667,1.5,22.800000000000001,3.1000000000000001,365.27782392398865,368.6917932260277,370.67779660414601,371.03732969588725,371.35969985780253,371.46370818005437,67.32614459128493,67.811099680563089,67.588838239814976,66.884748103637847,65.857831120260457,64.779355749149744 +2003,9,6,16,0,18,222,15.5,232.1874876843591,52.465787350179376,55.53021612616546,248.76060623139446,0.0,72.211125588865073,231.90899735454579,1.0,72.211125588865073,142.05614798548001,1.5,22.800000000000001,3.1000000000000001,216.36427295669418,219.14533717948876,220.77234932503899,220.56764623282595,220.42177345999974,220.34220972566504,42.454015672571884,42.444573846993613,42.293797097054437,42.005261734085408,41.577079828380803,41.130060582285211 +2003,9,6,17,0,81,159,16.5,190.68552406976707,65.55447385041559,66.97210059722424,259.6938300821405,0.0,59.11165355140313,192.9051301661155,1.0,59.11165355140313,117.4314990582908,1.4788094818662871,22.800000000000001,2.6000000000000001,176.86527493113095,178.73590080450464,179.82553240714847,179.91232977727563,179.99957681179308,180.01976482609368,35.221872183834719,35.117018055022001,34.755264527563355,34.341661600698551,33.893082834073283,33.524776759838794 +2003,9,6,18,0,230,74,17.5,118.77585175656365,78.80886413262878,78.77410854391881,269.20523919533434,0.0,39.419036398040404,119.33061403059949,1.0,39.419036398040404,74.14657953014715,1.0668300710020444,21.699999999999999,2.6000000000000001,93.959260135083184,94.769117132629546,95.236463993324421,95.629128473725046,95.958872869865814,96.084176112154836,23.355072766345511,22.844676823962235,22.495340201790501,22.506064199118573,22.662461985184219,22.70968543587632 +2003,9,6,19,0,0,0,18.5,0.0,88.22910342423737,87.18700797904158,275.7669735914682,0.0,0.0,0.0,1.0,0.0,0.0,1.5,20.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,7,6,0,0,0,5.5,0.0,89.67868499273327,88.50492546403044,83.35520567777132,0.0,0.0,0.0,1.0,0.0,0.0,0.2814453921484077,14.4,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,7,7,0,127,67,6.5,85.164393849806899,82.12354613309813,81.77697224824237,88.72760305868394,0.0,28.388143498457328,83.865415596257634,1.0,28.388143498457328,52.789692512457684,1.5,16.100000000000001,2.6000000000000001,66.279641075288936,67.049805152596974,67.497439220238093,67.654119764011412,67.788714308819465,67.837017746104209,16.353156189359698,16.251478776501809,16.285879890758949,16.455516166734153,16.593263646330374,16.504166130392704 +2003,9,7,8,0,428,113,7.5,259.51711882302936,68.89465261033456,69.98112327226833,98.08794161385997,0.0,80.621328743735745,272.03154625197533,1.0,80.621328743735745,162.53157084261895,1.4380173817691182,19.399999999999999,2.6000000000000001,238.47003453751046,239.51360756249863,240.10059606671058,241.11832938234178,241.9675043219444,242.29667249837377,49.527263477331829,49.159697772520381,47.941870737181134,46.776474146965541,45.828960619281268,45.273881813807357 +2003,9,7,9,0,462,187,8.5,428.8251292421109,55.75920947004236,58.437320066123924,108.59996189098993,0.0,130.02513445123165,457.21917477006201,1.0,130.02513445123165,268.15881458851061,1.5,21.100000000000001,3.1000000000000001,431.27961772590373,432.83750940352377,433.70866757949517,435.242936537324,436.52348131656663,437.01934767350195,78.902636419252488,79.773092056532349,78.76758357351035,76.948875563392406,74.882481309344598,73.165183346751931 +2003,9,7,10,0,286,300,9.5,492.56811490015127,43.085661814451214,47.67655666988728,121.58635383577,0.0,144.1425429070251,522.02649803855888,1.0,144.1425429070251,306.96755965257756,1.5,22.199999999999999,2.1000000000000001,499.64212727757587,502.21620402160022,503.68744975776019,505.11096857388793,506.30358113749855,506.76083231023972,86.197866246275353,87.530288004200543,87.12882551716136,85.67810742937364,83.695690632357952,81.730179688419653 +2003,9,7,11,0,543,259,10.5,683.43190026666002,31.62265759507265,38.5887880208336,139.00821675212921,0.0,195.23319106272896,741.20736396499308,1.0,195.23319106272896,426.57649383587079,1.5,23.899999999999999,3.1000000000000001,722.18579828288796,723.86447999795246,724.77859513483679,726.91931617136413,728.70534428058295,729.39661590099206,116.84338558298413,119.70927464323546,119.4704850680903,117.15177692522438,113.63603827383407,110.17931851392599 +2003,9,7,12,0,589,258,11.5,753.33982310677766,23.374717282824996,32.755781654883954,162.73745055112516,0.0,213.98469050917052,822.15381036610461,1.0,213.98469050917052,470.32495352062796,1.5,23.899999999999999,2.1000000000000001,804.6078115317589,805.97353478962327,806.69255018230763,809.0754637944425,811.06147793853711,811.83159364412586,127.77184352949159,131.36628798850637,131.38059734845748,128.88007780072405,124.81996491606816,120.77635633762883 +2003,9,7,13,0,342,373,12.5,662.76770930195948,22.328410932986,32.083598620391136,190.73724558707647,0.0,192.24701826552604,710.19215827087987,1.0,192.24701826552604,412.69389930582611,1.5,25.0,0.0,687.69177085286628,690.47829484798001,692.05479436675023,693.82598584562845,695.3112371370197,695.87858193792363,114.30717828668985,116.81689945513388,116.78679409228015,115.00194857354066,112.05154634766863,109.00786033002352 +2003,9,7,14,0,663,235,13.5,765.44504074196186,29.273004501357647,36.86340986492291,215.8980948627706,0.0,217.20738099147877,835.00850948046138,1.0,217.20738099147877,477.68337351555857,1.5,25.600000000000001,3.1000000000000001,817.14938592358942,818.45176029812501,819.13149404711635,821.47860691492895,823.4376518209699,824.19527295331056,130.17359438102878,133.58242897581212,133.31280836022074,130.52294451260019,126.32215551191759,122.26830474475449 +2003,9,7,15,0,618,187,14.5,621.19117222315845,40.23979063857061,45.36605972409986,234.67680755309306,0.0,181.78801190017788,675.8012522691505,1.0,181.78801190017788,388.41541849776411,1.5,25.600000000000001,2.6000000000000001,657.3255654125727,658.456575865898,659.04979595787347,661.22135304208757,663.03003417478067,663.73366513213,109.47865859713346,112.0103278319001,111.47412176648889,108.93890501427276,105.48030564614108,102.25222221768057 +2003,9,7,16,0,660,135,15.5,505.55656356665969,52.7278765180776,55.84391145422957,248.49273963223547,0.0,147.93664453663965,546.6777987470191,1.0,147.93664453663965,316.20068823366336,1.5,26.100000000000001,2.1000000000000001,522.67498612540226,523.58985430530845,524.06933543067987,525.86652889722131,527.36491042314367,527.94682497597239,89.937439277638433,91.423340800026537,90.391338212287224,88.004741284509251,85.248664282997396,82.871546499033627 +2003,9,7,17,0,404,127,16.5,283.0967939560577,65.80257893835973,67.27067253476554,259.4321847287879,0.0,85.962638860682432,298.61614771281018,1.0,85.962638860682432,177.3812555073284,1.4986312316640564,23.899999999999999,1.5,268.56865087964695,269.71084618039401,270.35380852270544,271.49398465919137,272.44373000814375,272.81350183193285,52.65760355993767,52.628056560583353,51.515027160465209,50.273224113474754,49.127882933193973,48.330774797796096 +2003,9,7,18,0,341,57,17.5,121.6802676412568,79.05237177833536,79.0659948335621,268.9531108105858,0.0,40.234835056129711,123.31657100254645,1.0,40.234835056129711,76.446734061769291,1.0958064625122805,23.300000000000001,2.1000000000000001,91.283332481389692,91.84617627377213,92.166211092990608,92.730336942791013,93.199456559349571,93.382023071011616,24.034713280790434,23.365026958743389,22.875459843236172,22.856708849165646,23.062444286624938,23.170347416676318 +2003,9,7,19,0,0,0,18.5,0.0,88.30220210336272,87.32434026659759,275.4070207625908,0.0,0.0,0.0,1.0,0.0,0.0,1.5,21.100000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,8,6,0,0,0,5.5,0.0,89.67712615042632,88.57557532644984,83.76766508251723,0.0,0.0,0.0,1.0,0.0,0.0,0.3608802702126592,15.6,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,8,7,0,120,70,6.5,86.838110191374469,82.21643116741792,81.93377607120124,89.08206018078032,0.0,28.614214609971054,85.729915882448196,1.0,28.614214609971054,53.814903329914706,1.5,17.199999999999999,0.0,67.857723776602114,68.653131722704927,69.115765066810383,69.27163829165022,69.405739020421606,69.453700391445338,16.544557288922235,16.404936000895102,16.402898452665173,16.54928368371035,16.682324561440748,16.612594508099217 +2003,9,8,8,0,326,128,7.5,238.72718761268499,68.99072345930173,70.14420777314895,98.45896785683578,0.0,72.884722482862415,248.23167153221988,1.0,72.884722482862415,148.72405400401564,1.462886312789696,18.899999999999999,2.1000000000000001,219.42293632763315,220.74570180554457,221.50232957568409,222.1749770329929,222.7418216981898,222.95649428779188,44.385963260584816,44.17971152711398,43.295803214360653,42.382194761352025,41.554792642636386,41.018359121358479 +2003,9,8,9,0,591,147,8.5,454.74780391028344,55.86996896088794,58.619180570267886,108.99807106893851,0.0,137.29406536496981,489.8117784589092,1.0,137.29406536496981,284.88933881693481,1.5,22.199999999999999,3.1000000000000001,462.97860302262063,464.0922109967666,464.69498177618266,466.48584608247734,467.97606041663965,468.55723778780987,83.433395587241876,84.668884345149038,83.660587009847518,81.58554718402344,79.185164247074553,77.109657000895041 +2003,9,8,10,0,504,237,9.5,574.9281226825608,43.23040552833428,47.8949273376528,122.01491727489645,0.0,165.08842224635785,620.03320567137621,1.0,165.08842224635785,359.12074534667562,1.5,23.899999999999999,3.6000000000000001,598.67303846285279,600.42363333153048,601.39414204394177,603.30189345727752,604.89191803938525,605.50910073309194,98.994755990005515,101.12357212753051,100.77646512881719,98.808573852127353,95.98842968214052,93.257282119373897 +2003,9,8,11,0,127,374,10.5,472.88548295498026,31.834503052717746,38.86506885327181,139.43762418112144,0.0,140.67106972787698,495.21911821391961,1.0,140.67106972787698,293.80023243311274,1.5,25.0,4.5999999999999996,472.18960364121278,475.5694723391897,477.52310778684125,478.60560697236127,479.51976548663242,479.86285091447297,83.241554212262827,84.473069829433356,84.414124193463422,83.522676647803323,81.985023523261702,80.264542615799982 +2003,9,8,12,0,204,382,11.5,552.89251332116669,23.695273080112873,33.10108252414197,163.0525471568152,0.0,166.09178733111403,583.77667522858621,1.0,166.09178733111403,343.29791518356603,1.5,24.399999999999999,2.6000000000000001,560.47786119050056,563.8577469432887,565.79995868949163,566.96965746602734,567.96085816744039,568.32975285020291,98.3153270696844,100.06048917081151,100.06790771590767,98.861336632862532,96.733580829339317,94.473162834085869 +2003,9,8,13,0,6,192,12.5,197.062144926809,22.71392328608165,32.46806167237754,190.79098954309458,0.0,61.434815594814275,196.05261651409251,1.0,61.434815594814275,120.62648740757487,1.5,25.0,3.6000000000000001,182.6462001642391,185.17273490418634,186.65270835433213,186.50671972165966,186.40512583197153,186.34691656399718,35.953509513681311,35.963224916356303,35.914817051233932,35.780044622669479,35.501924085929801,35.145721451535557 +2003,9,8,14,0,0,211,13.5,211.0,29.61687736074533,37.23591233382386,215.73281741908835,0.0,65.878933676042919,209.56308127744418,1.0,65.878933676042919,129.12819382717782,1.5,23.899999999999999,2.6000000000000001,195.0189619298003,197.76350849954457,199.37157552851355,199.20609200935968,199.08995086130005,199.02452039695683,38.555317147061302,38.54349025390033,38.483801141253792,38.343132664001558,38.059805191881331,37.692601543413019 +2003,9,8,15,0,0,120,14.5,120.0,40.5340426602136,45.70762496482629,234.42604014137711,0.0,37.692403772653293,118.41767970323906,1.0,37.692403772653293,73.312441451109081,1.5,23.300000000000001,2.6000000000000001,109.84244412681245,111.48550841128043,112.44898421713138,112.31358808809382,112.21418962182358,112.16306293679628,22.034622121384626,21.989920780251957,21.952599039179347,21.888788531461071,21.754382999818588,21.57219889689701 +2003,9,8,16,0,0,77,15.5,77.0,52.992546965741674,56.15988228490389,248.22612451659697,0.0,24.216811083073686,75.78947259708967,1.0,24.216811083073686,46.973998033126868,1.5,23.300000000000001,3.6000000000000001,70.27491184269401,71.346279989712755,71.974681055566876,71.864367302482236,71.781619510229007,71.740935355708245,14.14748314470409,14.109715626140815,14.086045693862378,14.046976871579197,13.963551041986355,13.852145224770014 +2003,9,8,17,0,0,103,16.5,103.0,66.05282987324824,67.57130633121683,259.1709025408909,0.0,32.340726163056154,101.6740714768198,1.0,32.340726163056154,62.853442565872399,1.5,22.800000000000001,1.5,94.181791643595346,95.566501021233563,96.37822248296257,96.235218377326774,96.128259324802812,96.075374797755828,18.9308898738987,18.88105227390281,18.832692604994083,18.757702158424372,18.626508998879906,18.469924413933054 +2003,9,8,18,0,0,21,17.5,21.0,79.29752999062808,79.35960128224725,268.7007098619321,0.0,6.6045848408382763,20.632090402986005,1.0,6.6045848408382763,12.773324631321692,1.126457465200295,22.800000000000001,2.6000000000000001,19.165885048007464,19.458076360830752,19.629458469700065,19.586038042418362,19.552673047580182,19.537099710468173,3.8561526718711026,3.8440874562968137,3.8376292564358163,3.8247216920140925,3.7991952583051019,3.7688009318599986 +2003,9,8,19,0,0,0,18.5,0.0,88.3753183034387,87.46195808681064,275.0457965579057,0.0,0.0,0.0,1.0,0.0,0.0,1.5,21.699999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,9,6,0,0,0,5.5,0.0,89.67499356320634,88.64600942908051,84.18186961978563,0.0,0.0,0.0,1.0,0.0,0.0,0.4512129137193037,18.300000000000001,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,9,7,0,169,65,6.5,88.254130383253582,82.3095605721143,82.09109999081518,89.43796909624164,0.0,29.369733815591442,87.708412137659863,1.0,29.369733815591442,55.13150974274447,1.5,18.899999999999999,4.0999999999999996,66.436006345424573,67.152844165009952,67.568560110456602,67.878380306299306,68.13750118821045,68.236983175339759,17.04356953629971,16.844592108961159,16.795547618507765,16.964684576825405,17.1564922553261,17.126339598975019 +2003,9,9,8,0,179,164,7.5,224.31543172102948,69.0877197710731,70.30837011420776,98.8310363632419,0.0,70.018077992168855,230.25338536324568,1.0,70.018077992168855,139.00257958840899,1.488262115799654,20.0,5.2000000000000002,205.97954866949652,207.73702998510925,208.7542585062186,209.14310551390287,209.47855016234294,209.59847487730013,42.131000346530783,42.034078567610919,41.437190017908549,40.767495538397228,40.096355399346614,39.586576603214212 +2003,9,9,9,0,222,241,8.5,355.99311836077629,55.98240989577973,58.80267863695511,109.39659442095643,0.0,107.4462422220039,370.99435869880745,1.0,107.4462422220039,220.67136210398084,1.5,21.100000000000001,4.0999999999999996,348.23156376196602,350.68724508550588,352.104278451097,352.73644745019004,353.27842157487822,353.47492190100439,64.113339474086018,64.748100200511217,64.362526607841559,63.364473244599161,62.097114567190999,60.866122990999095 +2003,9,9,10,0,18,269,9.5,281.01736549736017,43.377751678174185,48.11548144238427,122.44269356735147,0.0,87.31816761903255,281.61969169917512,1.0,87.31816761903255,172.06408647176266,1.5,22.199999999999999,6.2000000000000002,263.51155515062464,266.83353966985607,268.77652896480384,268.57430576071221,268.43427615038496,268.353384833978,51.233501155631068,51.328295581630144,51.232200380211154,50.922443044221467,50.394626607501607,49.798206452726085 +2003,9,9,11,0,42,347,10.5,379.57368685884234,32.04982057955933,39.143807692092295,139.86421861479533,0.0,115.20366035268353,389.42321279445707,1.0,115.20366035268353,234.49566286384174,1.5,22.800000000000001,4.5999999999999996,367.66558162965993,371.28856096945549,373.39866224077491,373.83096420461629,374.21199857183171,374.34022358052493,67.862968272047596,68.443724525394813,68.371845169480366,67.852397953327213,66.923067091460354,65.836859798478045 +2003,9,9,12,0,397,350,11.5,681.24963038921396,24.018784638583867,33.448463635818946,163.36387717410966,0.0,197.10131911889314,732.69963053306083,1.0,197.10131911889314,423.90980403229992,1.5,23.300000000000001,6.2000000000000002,710.81691733593857,713.47976672287768,714.98017105655538,716.69060973633884,718.12705617493691,718.67339193155988,116.87308771942713,119.68996481908532,119.86535613752963,118.14373450099714,115.021984164404,111.78516686225697 +2003,9,9,13,0,378,351,12.5,668.54046450368605,23.101091760440422,32.85416300368252,190.84461160897098,0.0,193.53350197534564,718.91156271057002,1.0,193.53350197534564,416.11585338656909,1.5,23.300000000000001,6.2000000000000002,697.14849434324515,699.80507053866916,701.30333347695841,703.0238286227235,704.46750009463653,705.0177082639384,114.755542417727,117.50762194165696,117.67730300390355,116.00653969044026,112.97049518147575,109.80844664865322 +2003,9,9,14,0,574,247,13.5,701.71104654958481,29.963335467425793,37.61033960136409,215.57031993502838,0.0,200.04465500266971,764.56483767412863,1.0,200.04465500266971,437.80230763200996,1.5,23.899999999999999,5.7000000000000002,746.32379123087435,747.88391728511874,748.72501792339995,750.85340482479774,752.62865528595137,753.31522324037371,118.92717220199745,122.36223827889562,122.60964857505944,120.58074247395481,116.93090783153907,113.20617011824511 +2003,9,9,15,0,493,244,14.5,586.14841453254394,40.831081463658144,46.05138094914833,234.177638282601,0.0,168.25048323526843,634.00363564171369,1.0,168.25048323526843,366.18525859860245,1.5,22.800000000000001,6.2000000000000002,613.36253943639872,615.12324020902713,616.09838803159073,618.06266782823297,619.69856712023784,620.33431845557277,100.61218540349594,102.97282019222017,102.76925081190602,100.90469954775962,98.056456257394018,95.193154507292277 +2003,9,9,16,0,224,234,15.5,357.70559792954424,53.25967424721202,56.47800001187344,247.96076285520795,0.0,107.84651124801242,373.8761347792622,1.0,107.84651124801242,221.8090909605589,1.5,22.199999999999999,4.5999999999999996,352.77077728685231,355.17366747645195,356.55901266891237,357.21890942385676,357.78316354618823,357.98903398586845,64.27386077067257,65.010371299775045,64.698815203356617,63.728934345016285,62.414567146481865,61.12918268336994 +2003,9,9,17,0,23,135,16.5,143.66287357340855,66.30510687153553,67.87387584352113,258.9099976722488,0.0,44.903337931930523,143.04268396631235,1.0,44.903337931930523,87.778424380190941,1.5,21.699999999999999,4.5999999999999996,132.05416701455098,133.79888003449025,134.81977112025572,134.65260865114197,134.52968704781568,134.46680328134823,26.416277276307351,26.370506866927489,26.251718744694127,26.064825545052187,25.80478758598311,25.546509580873021 +2003,9,9,18,0,190,69,17.5,103.11990431093921,79.54421034675238,79.65479368441446,268.4480497986255,0.0,33.606710200103166,104.27897775962199,1.0,33.606710200103166,64.438045832146614,1.1589353923189125,20.600000000000001,5.7000000000000002,81.797770586633845,82.557161335278835,82.996315031862778,83.362462395377293,83.668917036513221,83.78632567994002,20.100211818678975,19.69764543220953,19.338309075396481,19.243310344433034,19.277753582676482,19.281378092966566 +2003,9,9,19,0,0,0,18.5,0.0,88.44834198815181,87.59973647942678,274.683362180546,0.0,0.0,0.0,1.0,0.0,0.0,1.5,20.0,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,10,6,0,0,0,5.5,0.0,89.67228667707886,88.7162041332333,84.59770658795232,0.0,0.0,0.0,1.0,0.0,0.0,0.5541625618573427,15.0,5.7000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,10,7,0,171,67,6.5,90.062614672752844,82.40296379268668,82.24894983598342,89.79520869574162,0.0,29.588882032509797,89.773945083021147,1.0,29.588882032509797,56.239213216870908,1.5,16.100000000000001,5.2000000000000002,67.942786598227286,68.679576572077252,69.107229681966714,69.415818235209088,69.674198374383991,69.773186152872157,17.279692660597355,17.03547603090438,16.922925040810021,17.04306484155757,17.21466150639754,17.202769737811671 +2003,9,10,8,0,423,120,7.5,261.38385225300124,69.18568079025837,70.47362287816017,99.20401399812683,0.0,79.448961733938987,275.62175789365938,1.0,79.448961733938987,163.66635416462185,1.5,17.800000000000001,6.2000000000000002,241.23636086726492,242.36320558281665,242.99993701666054,244.01661147573904,244.86414179187653,245.19349803279687,48.548371319941054,48.608403480180641,47.662721626528068,46.546888233370169,45.488003616691735,44.71880555442722 +2003,9,10,9,0,191,244,8.5,342.40706840182543,56.09657099925512,58.98782183365271,109.795378406652,0.0,103.55650636867951,356.52180786096358,1.0,103.55650636867951,212.30820550081367,1.5,18.300000000000001,6.7000000000000002,334.19123053697433,336.66971637178619,338.10209623800779,338.73527185574142,339.2766522958691,339.47413857200758,61.639312427214279,62.292084778843453,62.007839155905316,61.148040345740107,59.971315321321242,58.794176226101342 +2003,9,10,10,0,468,252,9.5,563.09471383417713,43.52772432731236,48.33820896302861,122.86950592883778,0.0,166.36229571461638,607.76042081387595,1.0,166.36229571461638,351.82149314644602,1.5,20.0,7.2000000000000002,585.77180227097278,587.66827718429022,588.72522268549039,590.63217809112552,592.22078902753117,592.83759335875357,99.253153396717167,101.60028937641538,101.48898958991896,99.783249780874485,97.04787260492246,94.265961610779883 +2003,9,10,11,0,670,215,10.5,732.54617670553023,32.2685851951644,39.42496087671713,140.28783115651933,0.0,207.76759830566533,802.40685487954727,1.0,207.76759830566533,457.3166046150223,1.5,22.199999999999999,5.7000000000000002,784.79042690646656,785.99493034428474,786.62036790560944,788.92428556851746,790.84352859959881,791.58806449543385,123.62253420576629,127.39336993050171,127.67558229432126,125.45750172268963,121.48122190011682,117.45264212600364 +2003,9,10,12,0,716,195,11.5,789.9998504552226,24.345154526926414,33.797846468841996,163.6713378763167,0.0,222.99834169136574,869.38885634715666,1.0,222.99834169136574,492.63857720335301,1.5,22.800000000000001,6.2000000000000002,854.35313078567435,855.2291018825747,855.65145882192178,857.92877747878629,859.82899771194673,860.56262879149915,132.20667135893552,136.65110538420876,137.25499544762562,134.96439949951923,130.57524733115889,126.05646785606712 +2003,9,10,13,0,767,169,12.5,810.4916524790882,23.489808911615437,33.24180123181304,190.89798619428382,0.0,228.79851295483235,890.91163404595306,1.0,228.79851295483235,504.28173723013333,1.5,21.699999999999999,6.2000000000000002,876.6655723712455,877.57055044284982,878.0076062119573,879.94332571390248,881.56841438129914,882.18653164868215,135.57671853122957,140.08068274779004,140.6996284218358,138.28347015858816,133.69975563033807,129.06553453806163 +2003,9,10,14,0,759,161,13.5,759.20970881472238,30.312229345232637,37.98656604599352,215.41048474230138,0.0,214.53994038446177,833.36819622674875,1.0,214.53994038446177,472.75652892618712,1.5,22.800000000000001,6.7000000000000002,818.31839005012898,819.25281610686341,819.71406121297537,821.66467129859439,823.2994840435199,823.92451981122326,127.64543077658116,131.62440472910993,131.93449584861466,129.47756631377914,125.13009584803015,120.85074199309142 +2003,9,10,15,0,713,145,14.5,636.7240110242218,41.13076800617187,46.397195110345415,233.93155936091227,0.0,179.94203690159924,697.95108687148036,1.0,179.94203690159924,397.40388054740578,1.5,22.800000000000001,3.6000000000000001,681.00055893371609,681.79006020864585,682.18051416631704,684.14044039288262,685.77489246190487,686.40784821892635,107.53455963625234,110.70571810929653,110.72761239147081,108.49685602709872,104.8953489795438,101.35932742644813 +2003,9,10,16,0,618,155,15.5,493.4109053601062,53.529132127645696,56.79813489454401,247.69665365809985,0.0,144.84283061092574,534.92543180500934,1.0,144.84283061092574,308.87907101167951,1.5,22.199999999999999,3.6000000000000001,509.35690168921957,510.50364121199698,511.1228397113087,512.98451674324349,514.53201760556476,515.13672349352896,87.152788050681693,89.10141377930745,88.686970991309096,86.786863722266617,84.181323498424092,81.694474468515637 +2003,9,10,17,0,121,154,16.5,198.97814558066079,66.55928844096297,68.17825364472323,258.649482112043,0.0,61.391061702062899,204.59141830339524,1.0,61.391061702062899,123.48779965554017,1.5,21.699999999999999,3.1000000000000001,185.61869361874756,187.30533302073627,188.28416653057695,188.70017378092382,189.05461462723949,189.18508855854981,36.697359995260669,36.816442780438479,36.468687975734113,35.982210194357158,35.426078238902278,34.907048795772546 +2003,9,10,18,0,262,64,17.5,109.71450556526791,79.79228202391928,79.95143566510893,268.1951425878337,0.0,35.405491736629912,112.04884245518062,1.0,35.405491736629912,69.053446846839449,1.1934104990725964,20.0,3.1000000000000001,83.870356483355579,84.52373186859991,84.898940824249848,85.457352390936791,85.920185877109162,86.101788159012344,21.386587599426139,20.91438892623292,20.428695478567644,20.272406515643961,20.295003605604265,20.310434380446562 +2003,9,10,19,0,0,0,18.5,0.0,88.52115609568258,87.73754334438827,274.3197783366792,0.0,0.0,0.0,1.0,0.0,0.0,1.5,17.800000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,11,6,0,0,0,5.5,0.0,89.66900379307627,88.7861344235504,85.0150629453609,0.0,0.0,0.0,1.0,0.0,0.0,0.6718285779903734,12.199999999999999,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,11,7,0,98,66,6.5,78.94869636148276,82.49667050856806,82.40733148269712,90.15365727293987,0.0,25.677114981945554,78.570091560563753,1.0,25.677114981945554,48.938482388642413,1.0084203328368422,14.4,3.6000000000000001,62.497831035348881,63.250137870685286,63.68836205197433,63.835631631104036,63.962239688398206,64.007645385685223,15.053079606259347,14.853415822131353,14.741042054368524,14.778347723812479,14.846157766644311,14.819010653472187 +2003,9,11,8,0,481,103,7.5,262.45290164673742,69.2846455158043,70.63997833930144,99.57776728693342,0.0,79.573902957791745,278.4003318309708,1.0,79.573902957791745,164.20188005522732,1.5,17.199999999999999,3.1000000000000001,242.82576330724766,243.77493967515497,244.30557772044773,245.27256253926902,246.07971020850113,246.39244987060366,48.597676004298364,48.85485313196763,47.980953676636283,46.793176065475706,45.592876837485591,44.677830315968997 +2003,9,11,9,0,653,121,8.5,455.61245015615253,56.212489703915544,59.17461662574002,110.1942697407789,0.0,133.37440920033228,495.20598277551193,1.0,133.37440920033228,285.08075840949243,1.5,20.0,4.5999999999999996,468.70229373443624,469.55509828895907,470.00405872158098,471.66741895349304,473.05119590615072,473.590979289595,80.325029502199541,82.183700948207402,81.791506648702054,79.952460580184919,77.441044450737124,75.080687366176676 +2003,9,11,10,0,723,142,9.5,620.47767384465976,43.68034477223683,48.56309795850823,123.29517944421565,0.0,175.45692250962315,680.2117617309101,1.0,175.45692250962315,387.3007209113207,1.5,22.800000000000001,5.2000000000000002,661.96996561374488,662.78151774153901,663.18713809645283,665.11159223015125,666.71614680913945,667.33780757507191,104.84517925763429,107.92112141339037,107.94132526214986,105.78245481348777,102.29421438860749,98.86211266103588 +2003,9,11,11,0,737,166,10.5,732.97776890734974,32.4907678371874,39.70848253926945,140.70829764206852,0.0,206.8813833791599,806.7670513954231,1.0,206.8813833791599,457.10425285688484,1.5,23.899999999999999,3.6000000000000001,791.58480155360837,792.38921376764574,792.77612302472164,794.8973283348945,796.66707252536344,797.35053007748513,122.65427355001434,126.78261052784866,127.34361038256802,125.21771445851111,121.14359563292919,116.9482052555026 +2003,9,11,12,0,770,165,11.5,802.23589673702372,24.67428355004317,34.14915109882167,163.97483145038407,0.0,219.16387467435467,883.0081054347387,1.0,219.16387467435467,499.19588948921461,1.5,24.399999999999999,5.2000000000000002,868.76949804506739,869.65883652666844,870.09077386426964,872.02729225940175,873.64980682116834,874.26945069461601,129.65048127298979,134.0989285282877,134.84761076161175,132.6476774667326,128.28998991363889,123.80885779132073 +2003,9,11,13,0,779,161,12.5,809.61325370507984,23.879966958817075,33.63087445320862,190.9509913753651,0.0,228.40173628684403,891.60835912357163,1.0,228.40173628684403,503.69230253533459,1.5,25.0,5.2000000000000002,877.69160669180292,878.53642870265492,878.93754939129917,880.85460313808733,882.46312700835074,883.07509562084169,134.84749000634588,139.55123159603653,140.49230476879919,138.31448489406816,133.80373076943093,129.07069645202131 +2003,9,11,14,0,794,141,13.5,763.55835655950887,30.66340968071694,38.3644658703665,215.25319426940897,0.0,215.33420767742487,840.4936916616964,1.0,215.33420767742487,475.21991730914425,1.5,25.0,6.7000000000000002,826.40689287518137,827.17395018095283,827.53476568665246,829.40461493312296,830.97293094639053,831.57082875215247,127.61937750190111,131.90568008417358,132.49594589869147,130.20666493816347,125.86213228284612,121.46774279703874 +2003,9,11,15,0,731,142,14.5,642.91583929993692,41.43296194396832,46.74493422388251,233.68775794702805,0.0,181.63035821536565,705.95227633628144,1.0,181.63035821536565,401.15012156269484,1.5,25.0,5.2000000000000002,688.897011101408,689.66967584108306,690.04917435217203,691.98606428859648,693.60126679498092,694.22629500011863,108.11724644898302,111.53210243328685,111.79580381501184,109.75837190643522,106.12809487775209,102.49831685511815 +2003,9,11,16,0,689,113,15.5,487.04366252013347,53.80079269094447,57.12015613183061,247.433793150075,0.0,142.25421085416548,531.40807449870681,1.0,142.25421085416548,304.36111622229254,1.5,23.899999999999999,5.2000000000000002,507.53659833243523,508.27022499488737,508.64411035757183,510.27960861386873,511.64258485512931,512.17186200884908,85.434194049230086,87.622166737385086,87.372722734839755,85.453990743673799,82.688141279661338,80.032882148037856 +2003,9,11,17,0,506,99,16.5,284.57852728986825,66.81525146899526,68.48431109312124,258.3893658038761,0.0,83.844563915172273,305.31248896520395,1.0,83.844563915172273,178.87226476088534,1.5,23.300000000000001,4.5999999999999996,271.40902481512961,272.24000895388639,272.69822919695679,274.0327693080618,275.13834556360285,275.57401607147079,51.109551192555614,51.711088169314003,50.975144240547806,49.741428614252349,48.402766470697529,47.266712163373292 +2003,9,11,18,0,277,53,17.5,99.91272558322342,80.04161176465146,80.24938862883042,267.9419988117869,0.0,32.308015759145022,102.54578177821472,1.0,32.308015759145022,62.915394442381192,1.2300736508250059,21.699999999999999,3.1000000000000001,74.850987496187656,75.382417516975494,75.686089086936803,76.203138628186309,76.631634343539105,76.79988645044412,19.617919153074265,19.179722754138613,18.688943618319122,18.484162471707972,18.459273456619794,18.463060677627912 +2003,9,11,19,0,0,0,18.5,0.0,88.59363585568973,87.87523874437412,273.95510528858193,0.0,0.0,0.0,1.0,0.0,0.0,1.5,19.399999999999999,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,12,6,0,0,0,5.5,0.0,89.66514192158354,88.85577376927252,85.4338253080291,0.0,0.0,0.0,1.0,0.0,0.0,0.8067993838630017,17.800000000000001,6.7000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,12,7,0,0,13,6.5,13.0,82.59071052171154,82.56625075510225,90.5131925559266,0.0,4.0885525205189337,12.767631977875705,1.0,4.0885525205189337,7.9026817405353347,1.0653749155153898,18.300000000000001,5.2000000000000002,11.864595505909371,12.045475842419027,12.151569528861932,12.123060878470813,12.101087060621539,12.090899314396598,2.3868669881755666,2.3791823882610368,2.3751841173168176,2.3669185038602079,2.3507774887641353,2.331960618856507 +2003,9,12,8,0,0,45,7.5,45.0,69.38465260842638,70.80744838884415,99.95216245712041,0.0,14.152681801796309,44.247647731810552,1.0,14.152681801796309,27.407435346303949,1.5,19.399999999999999,4.5999999999999996,41.069753674301666,41.695877916065868,42.06312529221438,41.9828018813485,41.921605312940386,41.892505195602382,8.2653323506325584,8.2411619666144755,8.2273256033367659,8.2018151713565395,8.1497617769370425,8.0846414958659434 +2003,9,12,9,0,0,114,8.5,114.0,56.330202051338105,59.36306830504281,110.59311545937501,0.0,35.786866554797911,112.5252589208508,1.0,35.786866554797911,69.590263485793585,1.5,19.399999999999999,4.5999999999999996,104.40405019630205,105.95338912494164,106.86179557283285,106.71277294111029,106.60182368560858,106.54641054991487,20.920932708152655,20.879822747165331,20.844170969075787,20.77615000502378,20.639006448929692,20.462175894022547 +2003,9,12,10,0,0,128,9.5,128.0,43.83563146254722,48.79013452034526,123.71954115449434,0.0,40.156978836501807,126.40769652991058,1.0,40.156978836501807,78.193725088462841,1.5,19.399999999999999,4.5999999999999996,117.30980759560229,119.05123368934751,120.07229438796658,119.92528246460842,119.81713556062742,119.76174069907437,23.47326948598122,23.431521110828555,23.394410841521388,23.324991079628735,23.176800550227245,22.978561141343796 +2003,9,12,11,0,0,118,10.5,118.0,32.71633539816347,39.994324606749466,141.12545863613178,0.0,37.051567856877121,116.47050855607181,1.0,37.051567856877121,72.117678151606043,1.5,20.0,6.2000000000000002,108.00767995155547,109.62571305031588,110.57453972746283,110.45107280791638,110.36114615619191,110.31412087802499,21.655303100288357,21.614181369042122,21.58063431030304,21.523238609160533,21.395111121139468,21.216280545408058 +2003,9,12,12,0,0,140,11.5,140.0,25.006070839141803,34.50229621555357,164.27426483810672,0.0,43.896867824274409,138.45190135616704,1.0,43.896867824274409,85.621440906659899,1.5,19.0,6.2000000000000002,128.48523646874636,130.38005594298573,131.49096348754179,131.36408616364238,131.27324034691119,131.22404765236766,25.66159944344767,25.626613630954704,25.589655922743837,25.519411204852613,25.361270045709112,25.140603730041381 +2003,9,12,13,0,0,131,12.5,131.0,24.27145777531334,34.02128023962139,191.00350884771998,0.0,41.066457746180532,129.47792646904432,1.0,41.066457746180532,80.111769272021391,1.5,18.899999999999999,7.2000000000000002,120.11482204988303,121.89613726028806,122.94058884136267,122.82026144504852,122.7339546098606,122.687383401311,24.004744859480638,23.967940322801386,23.933084576784932,23.869635666038292,23.725516062499114,23.522304863411829 +2003,9,12,14,0,0,123,13.5,123.0,31.016727378378782,38.743913119032044,215.09833127189168,0.0,38.608899275397981,121.45960295556213,1.0,38.608899275397981,75.18518129808507,1.5,18.300000000000001,8.1999999999999993,112.65298283201945,114.33455027875249,115.3205877642902,115.19582698633147,115.10527215731972,115.0575796952496,22.566607269880318,22.526528367628661,22.492134335336697,22.431868674423281,22.297069694378976,22.108945499998384 +2003,9,12,15,0,0,103,14.5,103.0,41.73752175346827,47.09446446712523,233.44618606126795,0.0,32.373694833573467,101.51532444094929,1.0,32.373694833573467,62.905687215343406,1.5,18.300000000000001,8.1999999999999993,94.105473901333824,95.530568162450336,96.366371382740297,96.243352766567725,96.152528814896669,96.106353674530084,18.917963067442255,18.874170820518117,18.843185485271654,18.793112093575896,18.683252671512516,18.531565994101381 +2003,9,12,16,0,0,77,15.5,77.0,54.07452644580962,57.44393193413266,247.17217494609577,0.0,24.216811083073686,75.786240301364387,1.0,24.216811083073686,46.970765738985591,1.5,18.300000000000001,8.8000000000000007,70.27491184269401,71.346279989712755,71.974681055566876,71.863225998679269,71.779554077296623,71.738486688946395,14.14729041575856,14.109371835815882,14.085701666990618,14.04644006364458,13.962776818535639,13.85137006654862 +2003,9,12,17,0,0,46,16.5,46.0,67.07287131095005,68.7919184005394,258.1296567666962,0.0,14.467185841836228,45.233139028947996,1.0,14.467185841836228,28.018699700458107,1.5,17.800000000000001,7.7000000000000002,41.982414867063945,42.622452980867337,42.997861409819158,42.916533455199755,42.854608880436103,42.825124148240747,8.4491381904813636,8.4245339822444709,8.4103903059774368,8.3844447987589987,8.3313970064286753,8.2648302471944852 +2003,9,12,18,0,0,16,17.5,16.0,80.29206382560618,80.54851169106607,267.6886277672136,0.0,5.0320646406386871,15.715999563495599,1.0,5.0320646406386871,9.7283685011779131,1.269139478176098,17.800000000000001,6.2000000000000002,14.602579084196158,14.825201036823428,14.955777881676239,14.921393313150027,14.894917843829433,14.882615137195366,2.9378011609306456,2.9284362400614516,2.9235154369111767,2.9134611202430367,2.8937414947394382,2.8705828460221143 +2003,9,12,19,0,0,0,18.5,0.0,88.66564802798733,88.01267412769519,273.5894029092818,0.0,0.0,0.0,1.0,0.0,0.0,1.5,17.800000000000001,7.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,13,6,0,0,0,5.5,0.0,89.66069663382831,88.92509398288699,85.85387994677485,0.0,0.0,0.0,1.0,0.0,0.0,0.9623006496210431,20.0,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,13,7,0,0,41,6.5,41.0,82.68511364064187,82.72571332228505,90.87369173884802,0.0,12.928128304531382,40.364133734560859,1.0,12.928128304531382,24.992153368074096,1.1250073120786945,20.600000000000001,3.1000000000000001,36.888435833350329,37.439668989247927,37.762814636415094,37.696277100422698,37.645934919654032,37.621634323399164,7.560318142728474,7.5270317832384848,7.5057968875892431,7.4811081845458087,7.4372371894353888,7.3824846119717158 +2003,9,13,8,0,19,130,7.5,136.19330555339269,69.4857402980084,70.97604446050347,100.32706548038962,0.0,42.570506837047745,135.73254245452657,1.0,42.570506837047745,83.211724238500267,1.5,22.199999999999999,2.1000000000000001,124.66406340386891,126.3197260136541,127.28852670568551,127.1291880821494,127.01188591616889,126.951992255617,25.015763598509647,24.996928101920776,24.907619987175032,24.737948020067556,24.486622270670473,24.229968036525793 +2003,9,13,9,0,0,141,8.5,141.0,56.44974259474441,59.55318092001792,110.99176298629769,0.0,44.180601012192732,139.57401823366132,1.0,44.180601012192732,86.115776582625244,1.5,22.800000000000001,4.5999999999999996,129.58991972580526,131.46078075984428,132.5572678476623,132.38667925788423,132.26053633045086,132.19663300867921,25.840259925680531,25.809953348648172,25.767554522806776,25.672535915117717,25.485087639627888,25.250932391991491 +2003,9,13,10,0,0,173,9.5,173.0,43.99359992611356,49.019302728433864,124.14242014132581,0.0,54.095503035130051,171.49854946814156,1.0,54.095503035130051,105.75214713379202,1.5,22.800000000000001,3.6000000000000001,159.44909298426956,161.73155153787496,163.06917986634463,162.8920629393167,162.7632826701944,162.69570357722856,31.63128349102147,31.609766537976121,31.567024834068246,31.460814951098222,31.235819764475728,30.943948114210993 +2003,9,13,11,0,54,313,10.5,354.1947941282001,32.94525076917575,40.28243680600963,141.53915942251317,0.0,106.34189390589766,364.23516918886332,1.0,106.34189390589766,218.71013302366529,1.5,24.0,4.0999999999999996,344.09496073125695,347.45669823302376,349.41478398463624,349.78054241452605,350.10461006586848,350.21179796181252,62.359873659508501,63.00301062422291,63.098622433492004,62.750194814265086,61.935240183076658,60.903941359928702 +2003,9,13,12,0,0,176,11.5,176.0,25.340413937675446,34.85719914123051,164.56954958022993,0.0,55.068968529444675,174.48967729647433,1.0,55.068968529444675,107.68095742840451,1.5,25.0,4.0999999999999996,162.15420819259504,164.49030872521143,165.85950311028839,165.71337156573352,165.60992130367109,165.55259836700876,32.193021864867191,32.173391386613375,32.13584988953334,32.04280868533224,31.828947400520637,31.535106958001297 +2003,9,13,13,0,6,222,12.5,226.94991673350228,24.664172880386214,34.41291563523395,191.05542387581613,0.0,70.659377892801956,226.27012959340504,1.0,70.659377892801956,138.94766229655971,1.5,25.600000000000001,5.7000000000000002,210.99091776037278,213.8636660246606,215.5460619249867,215.38587677566855,215.27516290603259,215.21081988063187,41.316678583816163,41.36032617901418,41.332405979522811,41.190391643105009,40.864484684333583,40.436950449698827 +2003,9,13,14,0,84,344,13.5,409.16497847052187,31.372033609541027,39.124781694537326,214.94577904594664,0.0,121.93441778488672,423.21995473683194,1.0,121.93441778488672,252.68886628348088,1.5,24.399999999999999,4.5999999999999996,401.41783174765158,405.01877802664529,407.11256894628264,407.53742197533171,407.91324941100407,408.03805797106827,71.521641692061436,72.391382298011223,72.538682031427811,72.079542852567499,71.028063625809239,69.743006737025595 +2003,9,13,15,0,12,214,14.5,222.11547107040556,42.04430484771451,47.44565147631667,233.20679342884708,0.0,68.761040262883554,221.77992130244425,1.0,68.761040262883554,135.89420935669418,1.5,23.300000000000001,3.6000000000000001,207.04000193418256,209.79102835021612,211.40165348109105,211.20967613346198,211.07273213002318,210.99800449361052,40.227718404729096,40.281983766634205,40.24659881612569,40.078754340602949,39.727875522718499,39.296810898415856 +2003,9,13,16,0,0,132,15.5,132.0,54.35020243014493,57.769329593538494,246.91179022619082,0.0,41.351892017617274,130.5086767567866,1.0,41.351892017617274,80.609029276138941,1.5,22.800000000000001,4.5999999999999996,121.15914797244398,122.93115739779003,123.96993158208586,123.80747697634915,123.68715106954919,123.6263967857228,24.177747292060378,24.141381805509358,24.102548238678697,24.020914019991672,23.855342635632322,23.643425383076281 +2003,9,13,17,0,0,91,16.5,91.0,67.33202187776588,69.10094469973788,257.8703612173229,0.0,28.561072805849932,89.79260272830038,1.0,28.561072805849932,55.514508899569769,1.5,22.199999999999999,3.6000000000000001,83.174966520826828,84.408605579871406,85.131881423868165,85.000228298564636,84.901393247851857,84.852895274132734,16.700167100829113,16.66393404084198,16.632361226115584,16.572815499936464,16.459379622758398,16.31838210844279 +2003,9,13,18,0,0,47,17.5,47.0,80.543499906963,80.84866158959484,267.43503756688057,0.0,14.799577510128488,46.29762965175933,1.0,14.799577510128488,28.648772151626975,1.3108501249615403,21.699999999999999,2.6000000000000001,42.55060349769839,43.187202696529297,43.56042475892481,43.484063142677464,43.426273208861943,43.398399356580939,8.6595212993386959,8.6277175572189098,8.6035815547582466,8.5708356840272817,8.5144382671106484,8.4480645387540516 +2003,9,13,19,0,0,0,18.5,0.0,88.73705006043934,88.14969146905537,273.22273073868956,0.0,0.0,0.0,1.0,0.0,0.0,1.5,21.699999999999999,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,14,6,0,0,0,5.5,0.0,89.65566191227268,88.99406507791093,86.2751127837895,0.0,0.0,0.0,1.0,0.0,0.0,1.142400240323834,20.0,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,14,7,0,0,42,6.5,42.0,82.77990955961525,82.88572459040202,91.23503151374369,0.0,13.249291295997926,41.371971217410049,1.0,13.249291295997926,25.604734851213053,1.1874881171417029,20.600000000000001,2.1000000000000001,37.695999423274195,38.257323819204878,38.586345865042219,38.519120266313621,38.468313306912975,38.443731351465956,7.7541639587687836,7.7187231169477499,7.693829620174049,7.6656473115086774,7.618753203314216,7.5626717982140352 +2003,9,14,8,0,0,91,7.5,91.0,69.58794629109175,71.1457774564215,100.70234211553317,0.0,28.54074386437577,89.869290223041745,1.0,28.54074386437577,55.517472403011759,1.5,21.100000000000001,2.6000000000000001,83.125914808763198,84.348310436198602,85.064886696115281,84.933860059249852,84.835536187827643,84.787251547733547,16.695495996115632,16.660788798988062,16.626541840404418,16.561977963714032,16.443701610731811,16.300254848032594 +2003,9,14,9,0,0,155,8.5,155.0,56.57114430359695,59.74495720768308,111.39006020008685,0.0,48.429200215329331,153.68542142501775,1.0,48.429200215329331,94.691284114439938,1.5,21.699999999999999,3.1000000000000001,142.74173609489895,144.7716674641195,145.96116218223318,145.78152610167359,145.64918287025949,145.58161005405452,28.323207752195106,28.304768884307144,28.264274210575504,28.158777689423626,27.944962652837546,27.678845589603768 +2003,9,14,10,0,0,96,9.5,96.0,44.154262699551076,49.250584609980635,124.56364760886365,0.0,30.187526259180316,94.55769047374676,1.0,30.187526259180316,58.616029100007864,1.5,22.199999999999999,2.6000000000000001,87.639898017799993,88.973698062978087,89.75600862834348,89.636427954872843,89.547796565821741,89.503103163162635,17.638778125684315,17.594937729772418,17.565651361070245,17.519550813404535,17.418481819696702,17.278940230010484 +2003,9,14,11,0,0,162,10.5,162.0,33.177472889962175,40.57276667140074,141.94924998832113,0.0,50.726671124925957,160.43048118140021,1.0,50.726671124925957,99.060045303198109,1.5,23.300000000000001,2.6000000000000001,149.04079941553627,151.20624750307928,152.47556649730888,152.32205430740308,152.21146531206369,152.15231102539687,29.650805459524729,29.623133122176359,29.586347936596201,29.500411207947302,29.305695282056348,29.040500343552896 +2003,9,14,12,0,6,251,11.5,255.90203768499035,25.677208883241327,35.213775849305186,164.86060166374395,0.0,79.299160715253038,255.59948189802526,1.0,79.299160715253038,156.71575304779839,1.5,23.899999999999999,2.6000000000000001,238.55834965329254,241.75223180534215,243.62235663804719,243.45518661037829,243.34108408006298,243.27311099147909,46.362208967374606,46.43298159421979,46.412240902188834,46.253312532768135,45.878153202557534,45.383632438307615 +2003,9,14,13,0,0,155,12.5,155.0,25.05800343278835,34.80567715453524,191.1066252408165,0.0,48.504226266262009,153.4585101408305,1.0,48.504226266262009,94.809658975997237,1.5,23.899999999999999,2.6000000000000001,142.49592853389512,144.57697874475016,145.79693622556641,145.66099828116455,145.56404006713527,145.51111670398348,28.351145476642774,28.321543574852949,28.285847228948288,28.208807460921484,28.030050837804261,27.780208895378106 +2003,9,14,14,0,0,129,13.5,129.0,31.729179855455328,39.506945372141146,214.79542162630855,0.0,40.451254379428761,127.44321670891023,1.0,40.451254379428761,78.854199084666348,1.5,23.899999999999999,2.6000000000000001,118.23442231164088,119.99218853340798,121.02286434586058,120.89232996865303,120.79758929656261,120.74768242741696,23.641016356885721,23.602126319088981,23.568342467597184,23.505702488961816,23.363116749610597,23.163922914549833 +2003,9,14,15,0,113,305,14.5,380.90682206770316,42.353167688017095,47.79836040096532,232.96952772725598,0.0,112.19159094429881,398.72181614585043,1.0,112.19159094429881,236.63529219123157,1.5,25.0,3.1000000000000001,377.95468837200076,380.89727521612889,382.60259059298306,383.47691414564042,384.21387576116786,384.49113751582183,65.913731166909287,66.970181458705227,67.160838933722246,66.731592172451613,65.692063076255423,64.360274076525599 +2003,9,14,16,0,76,250,15.5,290.16557508856647,54.627688313747925,58.09621555231282,246.65262790950456,0.0,87.996940937026324,297.81170551218776,1.0,87.996940937026324,178.92756942125658,1.5,25.0,2.1000000000000001,278.75851852779937,281.50003169587274,283.09635542283542,283.30833903532357,283.50348966220065,283.56174726417424,51.755841494886539,52.228053828661118,52.212038295737557,51.822977518527665,51.079761344238669,50.232058435211322 +2003,9,14,17,0,126,158,16.5,202.3088719944941,67.59257572336251,69.41125811098318,257.61148369430316,0.0,61.636302115864403,209.05709513694546,1.0,61.636302115864403,125.4961346766782,1.5,25.0,2.1000000000000001,188.81878731684299,190.53247804145965,191.52734005356012,191.93019584775146,192.27340436598433,192.39962417568378,36.583487042954026,36.899687655527956,36.751296041374211,36.343674112445221,35.76776863897323,35.146741992370032 +2003,9,14,18,0,67,55,17.5,65.308182598495307,80.79577905891017,81.14969257208911,267.18123524306253,0.0,20.619855071943171,65.991027111857434,1.0,20.619855071943171,40.566462963064026,1.3554797222983408,23.899999999999999,1.5,54.541306504546853,55.200373606435775,55.584528786000099,55.73739530726435,55.867107624733713,55.915267948151978,12.309144500139164,12.220201195322005,12.066459312853702,11.96172602609499,11.87743625048966,11.793486059323701 +2003,9,14,19,0,0,0,18.5,0.0,88.80768916708278,88.28612232924067,272.8551480411069,0.0,0.0,0.0,1.0,0.0,0.0,1.5,22.199999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,15,6,0,0,0,5.5,0.0,89.65003000226476,89.0626551282039,86.69740938874679,0.0,0.0,0.0,1.0,0.0,0.0,1.3522969390258606,18.899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,15,7,0,68,64,6.5,72.232584558414302,82.87512773246895,83.04628958971227,91.59708810262771,0.0,22.80749610882409,72.608518391482974,1.0,22.80749610882409,44.776963415660077,1.2530049837065507,19.399999999999999,0.0,58.196381931358239,58.920943062253187,59.343342596388801,59.480292246442474,59.59770965974208,59.640115741623831,13.580825213979242,13.433227900516595,13.260638792113584,13.169324163796343,13.111793316212164,13.049363163069708 +2003,9,15,8,0,6,119,7.5,120.92202556047668,69.69130767858537,71.31665767352868,101.07785795190941,0.0,37.764723970478556,120.13871015311418,1.0,37.764723970478556,73.843633438072686,1.5,21.699999999999999,1.5,110.63208078988767,112.16756900753727,113.06682208972698,112.91459584592774,112.80162608329056,112.74485957801778,22.126945728348499,22.113634573628669,22.064940694179441,21.950803907552604,21.757306481027239,21.538465518008469 +2003,9,15,9,0,352,214,8.5,390.32764750193724,56.69443847028549,59.9383985273783,111.78785550108549,0.0,114.2041429780749,416.29911890219523,1.0,114.2041429780749,243.01794862580113,1.5,24.399999999999999,2.6000000000000001,391.0846371726858,393.11624340674825,394.27713726466664,395.32360730246319,396.20050966994461,396.53555594404133,67.444692706278261,68.937849118585589,69.102493612803869,68.347127120914507,66.832631604473136,65.133876758755534 +2003,9,15,10,0,468,253,9.5,557.0413001690863,44.31762926410914,49.483960101619154,124.98305696286623,0.0,160.56629399540967,605.10920633410626,1.0,160.56629399540967,347.9862364663133,1.5,25.600000000000001,2.6000000000000001,582.6759022783192,584.61529648292867,585.70006121544088,587.57333638356965,589.12980089133112,589.73614790842271,94.448801857880653,97.243674952668016,97.92550425595428,96.978236632655111,94.599190394019871,91.770477431944386 +2003,9,15,11,0,72,275,10.5,329.45002322508105,33.4129568050282,40.865259554968304,142.3555850024404,0.0,99.749213810226422,339.73823250507422,1.0,99.749213810226422,203.32092995589261,1.5,26.699999999999999,0.0,321.48814419190307,324.53669905845879,326.31082657362072,326.60928294766785,326.87679140467174,326.96240343112049,58.37467719540664,59.058239440726872,59.224701186114352,58.939562258492032,58.147413419021824,57.126216780919137 +2003,9,15,12,0,469,311,11.5,692.47791303729207,26.016350285570066,35.57194098395668,165.1473413726112,0.0,193.14110847441125,757.47530357816231,1.0,193.14110847441125,432.4159838994504,1.5,26.699999999999999,1.5,737.21845001163547,739.21411745488081,740.31747653445768,742.57088788415058,744.44130553820253,745.17077349073475,113.05121898988951,116.80110210110104,117.9852040597336,117.1121827003967,114.19614040901949,110.59550516997216 +2003,9,15,13,0,527,272,12.5,702.63822032031931,25.452840225645893,35.19946078097093,191.1570051867749,0.0,194.87178304861874,771.48514683907911,1.0,194.87178304861874,438.62691327307812,1.5,28.300000000000001,0.0,752.87515633654539,754.55816230152675,755.47413991313624,757.70114488624085,759.55025636116488,760.27070727661294,114.04066371948194,118.00151731530676,119.26547958945838,118.32171575713548,115.22335683782526,111.4534031035226 +2003,9,15,14,0,388,315,13.5,612.70230603156051,32.08801794519959,39.8902778133248,214.64714396926595,0.0,177.65276861334584,661.9046512105615,1.0,177.65276861334584,381.3102373998135,1.5,27.800000000000001,0.0,640.62101827301933,643.1683066559051,644.60798861285275,646.1727120734181,647.48310507127178,647.98334451395999,104.08443442292577,107.00067200315318,107.85460444711499,106.99028308939212,104.51614090007133,101.50911543617687 +2003,9,15,15,0,339,297,14.5,523.16413366479003,42.66396589092668,48.15245595579463,232.73433482560313,0.0,149.3057281150993,561.37915774486146,1.0,149.3057281150993,325.7559897641126,1.5,28.300000000000001,2.1000000000000001,538.77545955537062,541.33349533518151,542.79246769587928,544.20304999823338,545.38225103265904,545.83457229444093,87.613603229390904,89.830184731091776,90.415028904688498,89.70623052286399,87.794146493400092,85.436898233652585 +2003,9,15,16,0,18,188,15.5,197.42520170508357,54.906850499244136,58.4244554697275,246.39467482715102,0.0,60.973829802143278,197.41986161389988,1.0,60.973829802143278,120.72202154840447,1.5,28.899999999999999,3.1000000000000001,183.94445465764616,186.34511819563764,187.75018162783599,187.55454576292678,187.41252188845277,187.3377385749163,35.672558548698554,35.736713852434356,35.709571522403529,35.546124161335278,35.211132418625418,34.813550535108028 +2003,9,15,17,0,23,123,16.5,130.97096325688577,67.85440413155774,69.72272580781149,257.35302718283896,0.0,40.614541539952576,131.98561479658179,1.0,40.614541539952576,80.613960168716574,1.5,28.300000000000001,3.1000000000000001,120.74828902257673,122.25173919144099,123.13059712538899,123.18362009648936,123.23758384912956,123.24935848376806,23.869800056864051,23.949172496915526,23.903674083471568,23.768872338060426,23.533325548028888,23.241005639448293 +2003,9,15,18,0,188,52,17.5,79.945692372845173,81.04875756107513,81.45145625584213,266.92722685275976,0.0,24.937524754726862,82.250038685407546,1.0,24.937524754726862,49.974897660341355,1.4033397568572132,26.100000000000001,2.6000000000000001,61.994234615261902,62.577292665474005,62.914168955039464,63.204507880087839,63.447064874116421,63.540695606192514,15.099313575866791,14.987454408814001,14.710669721721251,14.480665480529721,14.303527145876133,14.173939256366248 +2003,9,15,19,0,0,0,18.5,0.0,88.87740133299738,88.42178684039489,272.48671386398865,0.0,0.0,0.0,1.0,0.0,0.0,1.5,24.399999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,16,6,0,0,0,5.5,0.0,89.64379126810442,89.13083013201039,87.12065497451835,0.0,0.0,0.0,1.0,0.0,0.0,1.5,16.100000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,16,7,0,104,62,6.5,74.300651863308559,82.97079724066214,83.20741285598716,91.95973728984387,0.0,23.473708105968992,75.029129235071949,1.0,23.473708105968992,46.042159865828047,1.321764797719694,17.199999999999999,2.1000000000000001,58.739668877022822,59.443855288819535,59.853750117705147,59.987083765852674,60.10184523972567,60.14296688057005,14.038689850872837,13.896649817594991,13.694788644259589,13.557930469244006,13.456770828625247,13.37841745358333 +2003,9,16,8,0,471,101,7.5,250.53862269427543,69.79586084382218,71.48869473043455,101.45347845355374,0.0,74.193617519542784,269.3891027528195,1.0,74.193617519542784,156.78233985393652,1.5,20.0,5.7000000000000002,233.76761885033227,234.70768509706127,235.23530427985327,236.17394579518185,236.95414916239886,237.25880277943804,44.378361502837571,45.319536245871689,45.200571484741999,44.422348559753033,43.273418376501631,42.089417194693326 +2003,9,16,9,0,654,119,8.5,444.67939100828761,56.819654619067414,60.13350479644686,112.18499787874198,0.0,126.42945843123451,488.45616041134804,1.0,126.42945843123451,278.26865853344458,1.5,21.699999999999999,4.5999999999999996,461.36038015269736,462.21378439850059,462.6660183313499,464.30373427734617,465.66119647960528,466.1934346234961,74.702675143382024,77.188206565773555,77.660767978984524,76.64883280096636,74.452652765686992,71.986706675255377 +2003,9,16,10,0,705,146,9.5,601.80464702123277,44.48370598705674,49.71940701470046,125.40048388692875,0.0,170.38977076895156,665.05958705725936,1.0,170.38977076895156,375.8450577368049,1.5,22.800000000000001,7.2000000000000002,646.1972327338832,647.06884974155594,647.51181115752843,649.45469775225274,651.06809468344841,651.69680285916547,99.873814402349666,103.58107941878841,104.70403837681926,103.66019867653397,100.68220147302966,97.150092345448371 +2003,9,16,11,0,725,169,10.5,714.83524595804158,33.651653725318695,41.15985863907337,142.75802378859976,0.0,195.51055021088439,792.38470096560116,1.0,195.51055021088439,445.96363829875844,1.5,23.899999999999999,5.2000000000000002,776.69860926876163,777.56029027711975,777.98581213893578,780.12300000299683,781.89869779175035,782.5891337511265,114.35879938681174,118.77889114837625,120.22022638998524,119.11926315985006,115.62409869494614,111.4989677719385 +2003,9,16,12,0,740,178,11.5,777.19134819597525,26.35773140074496,35.9316078801133,165.4296931421534,0.0,212.13749156173219,863.00431948641244,1.0,212.13749156173219,484.52863757685031,1.5,24.399999999999999,4.0999999999999996,848.39985600245654,849.20400112631341,849.58755078735157,851.78810166283949,853.61754516150813,854.32702693242402,123.58968922210947,128.56094343267262,130.44368934815654,129.42384551685964,125.72681206108278,121.18157533119603 +2003,9,16,13,0,803,144,12.5,796.96753703589218,25.848573682761955,35.594161966388285,191.20645936576804,0.0,217.26878360351125,884.68880875818445,1.0,217.26878360351125,495.76648502191819,1.5,25.600000000000001,5.2000000000000002,871.29115458138176,872.03309386857768,872.37718741976482,874.24542808565946,875.80685271236223,876.40406098922699,126.5056999384544,131.59263836023788,133.54072840296868,132.41955509373091,128.51839988615663,123.82891420484198 +2003,9,16,14,0,782,143,13.5,739.63033473409189,32.448400088901934,40.27465257828077,214.50083212168542,0.0,208.77819948108052,819.8929904148489,1.0,208.77819948108052,460.5500224102679,1.5,25.0,4.5999999999999996,805.23257346953642,806.05164357626154,806.44576767038973,808.34095889335038,809.92336863389323,810.53084074622689,121.82473453441544,126.55402774047808,128.26594832488504,127.10702473260031,123.37258836099438,118.92708672469325 +2003,9,16,15,0,725,138,14.5,618.32558638182377,42.97655433066172,48.50780247041372,232.5011590158626,0.0,169.21631925123347,684.53006883747435,1.0,169.21631925123347,385.90353551031382,1.5,25.0,3.1000000000000001,666.93165832032423,667.70849053330676,668.09530782085392,669.99780017244802,671.57741596522442,672.19269404548322,98.989054108826224,102.80443281110212,104.04543005993078,103.10661227949153,100.10623884175845,96.548806431135091 +2003,9,16,16,0,682,109,15.5,462.7635289027196,55.187554221238365,58.753914287307076,246.1379158935661,0.0,127.11471635990185,509.98577505548712,1.0,127.11471635990185,289.27536801852739,1.5,25.0,4.5999999999999996,485.0379120366706,485.76530559987145,486.14196363507654,487.73259126859131,489.05154314596052,489.56786838433453,74.959712929504079,77.587939259266065,78.191074862316484,77.184036782840977,74.917005660254532,72.355001880815266 +2003,9,16,17,0,509,87,16.5,260.79425393263466,68.11737720251705,70.03521408202538,257.0949932405463,0.0,74.715436148561849,283.81105022868917,1.0,74.715436148561849,163.94095681003043,1.5,24.399999999999999,3.6000000000000001,249.13809471574382,249.86411955604194,250.263841686207,251.49417267268205,252.51017678494625,252.91275202725362,44.612896166808802,45.813511237160178,45.811738480855119,45.089664377008106,43.878567850024346,42.561193909577398 +2003,9,16,18,0,258,41,17.5,78.004155779270718,81.30228876992199,81.75380145461362,266.67301758449594,0.0,24.270909434254833,81.739478090164624,1.0,24.270909434254833,49.180651539702325,1.454785547272743,22.199999999999999,2.6000000000000001,56.935494928828597,57.34750068238921,57.582531475544073,58.007960364484333,58.359847610633004,58.498953496084397,14.837492726962275,14.781740894703622,14.47104338419217,14.189970246767629,13.954064664170344,13.779409090221879 +2003,9,16,19,0,0,0,18.5,0.0,88.94601026098111,88.55649263220604,272.1174870978976,0.0,0.0,0.0,1.0,0.0,0.0,0.7639343230066561,19.399999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,17,6,0,0,0,5.5,0.0,89.63693405766355,89.19855388492314,87.54473439251025,0.0,0.0,0.0,1.0,0.0,0.0,1.5,13.9,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,17,7,0,131,62,6.5,77.126949343546386,83.06694665492577,83.36909830568814,92.32285445472444,0.0,24.105396345791604,78.738643371840652,1.0,24.105396345791604,48.180182118046204,1.3939961844729778,15.6,4.5999999999999996,59.687766670139958,60.371504896528208,60.768811349349235,61.04199346280457,61.270260650447142,61.358280610825709,14.487240718527589,14.396158521259354,14.180795570104255,14.020308587006237,13.896713325502075,13.783562202619832 +2003,9,17,8,0,445,103,7.5,243.00757670794155,69.90164137108758,71.6618974949376,101.82906900392857,0.0,70.342566547193641,261.75014518611601,1.0,70.342566547193641,152.14849813819873,1.5,18.899999999999999,4.5999999999999996,227.03163665416989,227.9953601843132,228.53886845407766,229.47991258175824,230.2605729735989,230.56655295511388,41.889235588271568,42.870331970501148,42.860913193539126,42.238559380676811,41.192233460620542,40.057686478993446 +2003,9,17,9,0,636,123,8.5,437.8197611392751,56.94682041741868,60.33027442791595,112.5813369790162,0.0,124.62739706046902,481.62667290187994,1.0,124.62739706046902,274.09629665152607,1.5,21.100000000000001,4.5999999999999996,454.45668000051029,455.3557963248677,455.83601252483936,457.49341635563178,458.86574956739514,459.40485815221336,73.367241721831192,75.880473185586297,76.508128435898229,75.674811436713767,73.592637855712468,71.151641470551922 +2003,9,17,10,0,681,151,9.5,589.1306533176737,44.65249606863025,49.956901003755696,125.81576641574178,0.0,161.81262059052435,651.81413500815745,1.0,161.81262059052435,368.11464635326968,1.5,23.300000000000001,5.2000000000000002,632.72814545154392,633.64994986566012,634.12664642476329,636.09836218255259,637.73249789055853,638.37200004859483,94.692246437716648,98.261502000249138,99.410735601786001,98.568550745522515,95.810481236009764,92.483003919006052 +2003,9,17,11,0,713,174,10.5,708.36392539546785,33.89351109500775,41.456504951320035,143.15643029334834,0.0,193.9188246419136,786.07842959687355,1.0,193.9188246419136,442.04434555435734,1.5,23.300000000000001,7.2000000000000002,770.07185779401527,770.98086713483872,771.43527726906677,773.59738235181339,775.39180744994007,776.09085720703968,113.01880948399861,117.48407985522722,119.16281383975443,118.28056042776819,115.00582348967602,110.92345981599692 +2003,9,17,12,0,656,225,11.5,753.73850688520065,26.701244201803753,36.29268858399298,165.70758541729145,0.0,207.06590205552109,835.11863235444389,1.0,207.06590205552109,470.48575901074929,1.5,25.0,6.2000000000000002,818.21608199950003,819.40820548955378,820.02560821733186,822.37877768842316,824.33113284744718,825.09244803345723,120.71124642225084,125.35910024314106,127.09772507370438,126.19446815736458,122.80053382640722,118.53363153762854 +2003,9,17,13,0,737,183,12.5,779.32357490421396,26.245093856275577,35.98967563129111,191.25488678237673,0.0,212.83566047942477,866.46534615851874,1.0,212.83566047942477,485.90756201763622,1.5,25.600000000000001,7.2000000000000002,851.59848832892396,852.44084835769388,852.84688785966739,855.07228656150289,856.92204774144022,857.63976594311407,124.00304122508672,128.97274674739563,130.8530318619278,129.83783140475077,126.14731870569094,121.60194324066788 +2003,9,17,14,0,776,145,13.5,733.66587772636922,32.81017890679319,40.65994313754978,214.3563733768823,0.0,200.53114356541724,814.34070888815563,1.0,200.53114356541724,456.90923001817202,1.5,25.0,6.2000000000000002,799.46350491550891,800.30757844472816,800.72023038106158,802.62965965600802,804.2208697533755,804.83418305828241,116.80765670572946,121.43657283994631,123.19584032016756,122.21481465485097,118.71999019580787,114.45822456119645 +2003,9,17,15,0,718,140,14.5,612.33279932039443,43.290787237124064,48.86426393686352,232.26994323599726,0.0,173.15461569105412,678.89462610568989,1.0,173.15461569105412,382.24484876851449,1.5,25.600000000000001,6.7000000000000002,661.04325561553605,661.84419969601572,662.24366330394287,664.15605920274686,665.74436325013471,666.36250869315427,101.10445431978943,105.00427305663216,106.39648391516455,105.51166067219707,102.5373994586477,98.901099927421527 +2003,9,17,16,0,617,129,15.5,445.99856825363901,55.469663643672654,59.08445629256791,245.88233427608557,0.0,123.25216180555621,491.11245448474335,1.0,123.25216180555621,279.28886558215248,1.5,25.0,6.2000000000000002,465.53843912024473,466.46961703091085,466.9695177867747,468.68538493633423,470.10429545722741,470.66317738028135,72.428816467312828,74.965306272672137,75.661229257623461,74.929777299473258,72.931532307065936,70.498371272936623 +2003,9,17,17,0,388,114,16.5,244.48313675322356,68.3813639387172,70.34858840796913,256.837382123812,0.0,70.994444786120908,263.39264044546542,1.0,70.994444786120908,153.25254698194314,1.5,23.899999999999999,5.7000000000000002,232.14978031214775,233.20862545802439,233.8085047464038,234.82247961107865,235.66178790016272,235.99216276518879,42.019246362579011,43.094467006175336,43.215535924600346,42.750891392443471,41.78725713847723,40.652170911082933 +2003,9,17,18,0,45,45,17.5,51.218785827709176,81.5562229281145,82.05657396654769,266.41861186652704,0.0,15.928570627520118,51.92524647809261,1.0,15.928570627520118,31.841953668903891,1.5,22.800000000000001,5.2000000000000002,43.202614945680502,43.751461052463526,44.071801763675921,44.202616006134868,44.313041753986717,44.35456642827765,9.4639164394846365,9.4660889951825382,9.3938955585520461,9.3228984236905532,9.2403741280137801,9.1408439219732873 +2003,9,17,19,0,0,0,18.5,0.0,89.01332628811268,88.69003372756842,271.7475265375116,0.0,0.0,0.0,1.0,0.0,0.0,0.9196483441112971,21.100000000000001,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,18,6,0,0,0,5.5,0.0,89.62944458098282,89.26578786727839,87.96953212774959,0.0,0.0,0.0,1.0,0.0,0.0,0.7399339279856827,18.300000000000001,6.7000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,18,7,0,0,16,6.5,16.0,83.16360388983087,83.53134910419107,92.68631460458138,0.0,5.0320646406386871,15.718458810333086,1.0,5.0320646406386871,9.7308277468102311,1.4699524071124221,18.300000000000001,8.1999999999999993,14.602579084196158,14.825201036823428,14.955777881676239,14.922261658130383,14.896489299487794,14.88447817093421,2.9379477960439124,2.9286978081050985,2.9237771849281557,2.9138695430260193,2.8943305517857296,2.8711726142755571 +2003,9,18,8,0,0,38,7.5,38.0,70.00868395475402,71.8362740122513,102.20449495130946,0.0,11.951153521516879,37.35685654680546,1.0,11.951153521516879,23.136232758433966,1.5,18.899999999999999,8.8000000000000007,34.681125324965862,35.209852462455629,35.519972468981052,35.449381289208958,35.395467335798237,35.369966287287937,6.979147485266326,6.9583712952422871,6.9466866825803804,6.9246779141572299,6.8801470510312752,6.8251543288510943 +2003,9,18,9,0,0,74,8.5,74.0,57.07596158994942,60.52870427025526,112.97672317180873,0.0,23.27329896295393,72.823173299426784,1.0,23.27329896295393,45.130379569228843,1.5,19.399999999999999,9.3000000000000007,67.536928264407251,68.566554795308349,69.170472702752605,69.059703290222316,68.976330385416475,68.935635136247001,13.59547977523952,13.55855453885399,13.535805826497722,13.4974562215868,13.416291899317178,13.309222675110687 +2003,9,18,10,0,0,96,9.5,96.0,44.82399949458944,50.19641553811948,126.22874500528073,0.0,30.18524659773205,94.557724846378036,1.0,30.18524659773205,58.612342722733629,1.5,19.0,11.300000000000001,87.644711684333373,88.978229840617018,89.760373081011039,89.639481603279521,89.549787081334273,89.504653936702994,17.63685978741427,17.593062456861247,17.564024380304833,17.517864224952795,17.416530992571555,17.276891976136174 +2003,9,18,11,0,0,112,10.5,112.0,34.13847266295875,41.75513738166716,143.55067304926834,0.0,35.169577453869621,110.50242758538018,1.0,35.169577453869621,68.436562968697302,1.5,19.399999999999999,11.800000000000001,102.45521265931451,103.99655627867268,104.90046773297307,104.77850728332513,104.68928353015777,104.64304550410647,20.55021698289282,20.508927842290532,20.478543121893278,20.426657365329699,20.307609447228323,20.139741642005287 +2003,9,18,12,0,0,128,11.5,128.0,27.046779445885242,36.65509387412896,165.98095051479913,0.0,40.138737583326666,126.48857764265431,1.0,40.138737583326666,78.258539690552809,1.5,19.399999999999999,12.4,117.33697198660492,119.08143854769494,120.10431865294797,119.98032869836817,119.89078884042212,119.84312685494676,23.4540013208475,23.417430982380711,23.386759060744978,23.328494951655099,23.189913330896353,22.992202217591306 +2003,9,18,13,0,0,125,12.5,125.0,26.642290425639626,36.38589616592339,191.30218973790687,0.0,39.206659503835667,123.49883967812511,1.0,39.206659503835667,76.423174180877922,1.5,19.399999999999999,11.800000000000001,114.54928274587355,116.25555199122456,117.25605893873681,117.13465416635316,117.04695848964388,117.00030386952091,22.909687756880501,22.872580626096806,22.841989532008704,22.785283502625369,22.650785552944559,22.458633398664443 +2003,9,18,14,0,0,117,13.5,117.0,33.17320745456785,41.046022882972174,214.2136564181755,0.0,36.724326655908541,115.48698724337299,1.0,36.724326655908541,71.500070029846398,1.5,20.0,13.9,107.09651596841802,108.70192033054161,109.64335764665709,109.5187145290152,109.42773450603865,109.38036322162925,21.458487791337053,21.41810818297995,21.387494515600672,21.333323177739231,21.207941146085787,21.030946913569174 +2003,9,18,15,0,0,97,14.5,97.0,43.60651828966398,49.22170405520168,232.04062928498954,0.0,30.499766758202448,95.552815208850319,1.0,30.499766758202448,59.227601748905926,1.5,22.199999999999999,13.4,88.565981020400343,89.912795407015608,90.702731181769479,90.582222948221698,90.492923339067019,90.44787178836151,17.820771351804943,17.777086726459842,17.747921011937684,17.701520861250653,17.59925039012677,17.457911621849753 +2003,9,18,16,0,0,82,15.5,82.0,55.75304195539028,59.41594518133298,245.62791156249776,0.0,25.78933128327327,80.710119177279338,1.0,25.78933128327327,50.023509901737341,1.5,22.800000000000001,14.9,74.838217806505327,75.979155313720085,76.648361643590732,76.530620635859691,76.44228582659801,76.398871188325529,15.066106296353112,15.025851395680851,15.000644400091252,14.958994044219502,14.870096030360797,14.751455852923856 +2003,9,18,17,0,0,40,16.5,40.0,68.6462323304152,70.66271350613454,256.5801929145299,0.0,12.580161601596718,39.325791768202755,1.0,12.580161601596718,24.356714094868014,1.5,22.800000000000001,12.9,36.506447710490384,37.063002592058574,37.389444704190602,37.316121522101064,37.260166202077393,37.233653179185779,7.3466370882576832,7.3248975658000797,7.3125981773280744,7.2895971487105351,7.2429271080745536,7.1850408374738315 +2003,9,18,18,0,0,22,17.5,22.0,81.8104069285943,82.3596163158492,266.1640134762992,0.0,6.9190888808781947,21.619558653042862,1.0,6.9190888808781947,13.386565937426441,1.5,21.699999999999999,16.0,20.078546240769715,20.384651425632207,20.564194587304819,20.520467666224476,20.486939885522823,20.471216328949918,4.0400763895639953,4.0276697426892367,4.020904374516868,4.0076796445772747,3.9813040222258822,3.9494637893468303 +2003,9,18,19,0,0,0,18.5,0.0,89.07914531951153,88.82218945580566,271.3768909435967,0.0,0.0,0.0,1.0,0.0,0.0,1.113108026342379,21.699999999999999,16.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,19,6,0,0,0,5.5,0.0,89.62130680985055,89.33249115308176,88.39493229372835,0.0,0.0,0.0,1.0,0.0,0.0,1.163192427876857,20.600000000000001,8.8000000000000007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,19,7,0,0,33,6.5,33.0,83.2607960504673,83.6941675262167,93.04999240805857,0.0,10.367914475339765,32.516769867633165,1.0,10.367914475339765,20.108605338855174,1.5,21.199999999999999,8.8000000000000007,29.850623758118665,30.30002327533165,30.563520187097158,30.507715711644572,30.465354165628405,30.445056442246841,6.0623068631668815,6.0457437225779511,6.0327325730245169,6.0099214157000072,5.9680776827422344,5.918388463960742 +2003,9,19,8,0,188,141,7.5,199.05827223878671,70.11702230914526,72.0118314340322,102.57962165480556,0.0,59.521228405794673,208.10939387251264,1.0,59.521228405794673,123.35902210673052,1.5,22.300000000000001,8.1999999999999993,184.74391956251281,186.28844596294277,187.18324862644553,187.53270193741321,187.83098709365009,187.93968779564477,34.920578244000971,35.479229837109742,35.597900754582753,35.368849920344502,34.793720893174545,34.079326764791688 +2003,9,19,9,0,420,186,8.5,391.35656367481431,57.20710183503048,60.72878954928525,113.37100761833086,0.0,110.6847115070502,425.26684120130506,1.0,110.6847115070502,244.86332354088768,1.5,24.5,7.7000000000000002,399.02519067363005,400.62733185970461,401.53322183914315,402.99415667032025,404.2033190870082,404.67818293040438,64.657615028464903,66.619879064442515,67.314331883724051,67.002154181080527,65.637831591100309,63.758826934056323 +2003,9,19,10,0,669,163,9.5,589.09538373821943,44.99821299441038,50.437921876697274,126.63926259984619,0.0,162.20459910429878,653.14374333283092,1.0,162.20459910429878,368.22085039685487,1.5,26.199999999999999,9.3000000000000007,633.12334576926287,634.16928590050611,634.71997924569155,636.74233442244554,638.41587308386602,639.07235534823235,94.242349787427415,97.927093423249545,99.443369208591164,98.972484941990615,96.530447456492197,93.219365301964842 +2003,9,19,11,0,725,170,10.5,708.3081974871676,34.386478558419405,42.05569270161125,143.94062513374578,0.0,193.84713472202517,788.6085846869106,1.0,193.84713472202517,441.94380339243276,1.5,26.100000000000001,8.8000000000000007,772.60998602663426,773.5008699262138,773.9448818856273,776.08391669509865,777.85791345508324,778.5494180631963,112.07480519077571,116.7216499213859,118.83323188121092,118.48521642684958,115.497403554516,111.40854645977544 +2003,9,19,12,0,613,251,11.5,740.44292276199747,27.394226738087536,37.01873328285147,166.24972448971263,0.0,204.34235865656296,820.2002741792536,1.0,204.34235865656296,462.26020898553844,1.5,26.699999999999999,8.8000000000000007,801.95858747653676,803.41708916164441,804.19508764276952,806.54398917784431,808.49091025166251,809.25127433463865,118.27223604470458,122.8756687548473,124.9461237142943,124.63203698562428,121.70130633237844,117.60738699049809 +2003,9,19,13,0,354,348,12.5,631.52285600956588,27.040052697882345,36.78271743219828,191.34827377468795,0.0,179.04551788112744,685.01037012779148,1.0,179.04551788112744,393.17663501386414,1.5,27.199999999999999,7.2000000000000002,662.99818142887989,665.71835022605853,667.26069565737566,668.93387795760748,670.33008745125778,670.8666150174721,103.88106434796292,107.00993430696782,108.39228229506725,108.15447658536492,106.05985155847975,103.0728804270683 +2003,9,19,14,0,645,203,13.5,686.57763632760975,33.53733924549654,41.43276513810705,214.07257145091089,0.0,188.84924786482455,762.44554127554966,1.0,188.84924786482455,428.9066178148156,1.5,27.199999999999999,4.5999999999999996,745.17299457108084,746.33080288211727,746.93636374212838,749.20440612410857,751.08218066905931,751.81760336217963,109.27973905017232,113.65954807743813,115.62994991161327,115.34260040358851,112.58135902364958,108.7187676559499 +2003,9,19,15,0,706,142,14.5,599.76042487525956,43.923600706764155,49.579986277286295,231.8131580298426,0.0,164.39397011074419,667.02709381591262,1.0,164.39397011074419,374.52478788995529,1.5,27.800000000000001,4.0999999999999996,648.75819441808198,649.59145573050614,650.01423355785926,651.93696683585779,653.53002935782183,654.15282159080448,95.456556313767209,99.306399032810901,100.9050569341323,100.38138296654139,97.789056048272883,94.338201153560107 +2003,9,19,16,0,663,111,15.5,445.01969823984501,56.037551463923315,59.74824411871428,245.3746279263563,0.0,122.45480822785039,493.28154600077988,1.0,122.45480822785039,278.35621538056307,1.5,27.199999999999999,4.5999999999999996,467.58047747413883,468.34604847977948,468.74743560515049,470.34193098213751,471.66016960693901,472.1785270406545,71.154937089369284,73.959680354930697,75.110961180153637,74.764262637011385,72.925118133428796,70.415431653370803 +2003,9,19,17,0,479,87,16.5,243.12535696267912,68.9118494406234,70.9774534061567,256.3234236470101,0.0,69.830306139934763,266.5333840165456,1.0,69.830306139934763,152.98753969382534,1.5,26.699999999999999,3.6000000000000001,232.13341503624682,232.88045329893583,233.29463225972191,234.49934992277991,235.4916609114685,235.8863675607908,41.007388225752173,42.369513094832755,42.754445868087345,42.467469361538718,41.50486588512031,40.21848179902787 +2003,9,19,18,0,237,37,17.5,67.267067426504781,82.06468402457429,82.6627674393332,265.90922565099106,0.0,20.141045453805258,71.514134350940566,1.0,20.141045453805258,42.458564353190859,1.5,25.600000000000001,3.1000000000000001,48.73128765912044,49.105925120330369,49.320423413123024,49.705395300674731,50.022788823583184,50.149114717817213,12.106214383718214,12.284854408541117,12.202162436862448,12.022266999398417,11.797971619327248,11.53993175589595 +2003,9,19,19,0,0,0,18.5,0.0,89.14324785476906,88.95272346014508,271.0056391058284,0.0,0.0,0.0,1.0,0.0,0.0,1.358004638645606,22.199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,20,6,0,0,0,5.5,0.0,89.6125024073647,89.39862034960098,88.82081862709256,0.0,0.0,0.0,1.0,0.0,0.0,1.5,16.100000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,20,7,0,91,58,6.5,67.737059693538527,83.35854927028144,83.8575548074797,93.41376222886946,0.0,20.788644589710039,69.290720084351321,1.0,20.788644589710039,41.974013169012537,1.5,17.199999999999999,0.0,54.041571527046287,54.699212212734054,55.082285216605086,55.204504554155974,55.309216967278005,55.347173957708861,12.312958402671711,12.383821741107461,12.331524159202331,12.218961532711118,12.063533144195661,11.883951033764468 +2003,9,20,8,0,440,111,7.5,245.58946222016965,70.22668907926257,72.18857594830297,102.95431453100552,0.0,71.304358381211458,266.16684977046339,1.0,71.304358381211458,153.7249999136807,1.5,21.100000000000001,0.0,230.45473003181974,231.5137957270957,232.11349833646568,233.05451268875936,233.83362420875656,234.13950015989161,41.714406424596525,42.935360635767395,43.342759639772396,43.117194352578707,42.23685215981412,41.041692659416142 +2003,9,20,9,0,568,149,8.5,424.97405612508891,57.3402627442758,60.930523812306475,113.76404233833131,0.0,118.58836569397226,466.65388504959162,1.0,118.58836569397226,265.35945138364696,1.5,23.300000000000001,0.0,439.47979082320626,440.72217334925926,441.40986621052724,442.7889762883969,443.93261319014005,444.37903853710293,68.960807918048772,71.363206552013295,72.341274038244038,72.032859276356177,70.418304639996578,68.197525540200715 +2003,9,20,10,0,718,128,9.5,582.94791950246429,45.17513000512223,50.68138904585084,127.0471646958874,0.0,159.55331693242275,649.72902244217448,1.0,159.55331693242275,363.88207621178788,1.5,26.100000000000001,0.0,631.55981394237836,632.2974613481465,632.6655310006629,634.48119932125337,635.9859391540017,636.57359343208884,92.257718743722137,96.08718174021557,97.823903165601294,97.547065410221322,95.100961011007939,91.737335404580975 +2003,9,20,11,0,731,162,10.5,702.17112691170519,34.637465370512565,42.358105585321525,144.32616412364013,0.0,185.67018463478198,783.42040726663106,1.0,185.67018463478198,438.04405449589353,1.5,27.800000000000001,0.0,767.78790171610024,768.62190847967418,769.03555611059051,771.13144994950892,772.86844269241271,773.54666424468041,107.11227128901504,111.67501553371139,113.8108046624949,113.6078011787128,110.82521281525354,106.87459968087811 +2003,9,20,12,0,752,168,11.5,765.53118298346192,27.743474592210333,37.383515118203405,166.51384700600792,0.0,208.86948183830748,855.35548762914584,1.0,208.86948183830748,477.19111845078612,1.5,28.300000000000001,0.0,840.9848649091557,841.74957038955438,842.11170641876356,844.25555498188578,846.03592795481973,846.72722078163292,120.19460729520343,125.39293399510619,127.95571287779252,127.80323410256875,124.67633614763298,120.20402173006731 +2003,9,20,13,0,773,157,12.5,772.88045967897244,27.438269609123545,37.18003276649077,191.39304762074687,0.0,211.22461022997456,861.976103925031,1.0,211.22461022997456,481.12394468897935,1.5,29.399999999999999,0.0,847.60371794480602,848.48424307028813,848.91443055670652,850.85381585073276,852.46928834157791,853.09156715534152,121.54098343324085,126.70297874323977,129.25962072085386,129.07108220722097,125.89995562388854,121.42146860198473 +2003,9,20,14,0,734,163,13.5,710.00820651405559,33.90242826971323,41.82004316826984,213.9330103237364,0.0,187.6875456451555,792.43960265601288,1.0,187.6875456451555,442.89156205064813,1.5,28.899999999999999,3.1000000000000001,776.95592175498723,777.78527546432872,778.19523285745004,780.29933708725912,782.04339213522155,782.72409742550008,108.27017466248947,112.88886067606227,115.05215787290032,114.84374498627466,112.02277425710203,108.02346589621186 +2003,9,20,15,0,677,153,14.5,588.71934231813952,44.24188733182306,49.93897384891891,231.58746960464245,0.0,161.75892006301277,655.08200644821852,1.0,161.75892006301277,367.8904526394827,1.5,29.399999999999999,0.0,636.1324510527761,637.0714413473296,637.5586671092193,639.54252842274195,641.18419883423246,641.827965791162,93.599032972991708,97.38722377878635,99.090765401530959,98.847845264323269,96.4710341281464,93.140609367814179 +2003,9,20,16,0,563,136,15.5,416.80859193238626,56.323053687530596,60.08121579885698,245.12246228985757,0.0,115.70705456805014,460.81997747290393,1.0,115.70705456805014,261.33824018741882,1.5,27.199999999999999,2.1000000000000001,434.93715688610689,435.96867957564388,436.5319431980277,438.25846963449362,439.68221774523204,440.2458358992684,67.082551506923835,69.619942434763459,70.730839898071949,70.634566711886009,69.136452215951635,66.904254730221041 +2003,9,20,17,0,387,98,16.5,222.12411299951589,69.17808148959926,71.29267150926421,256.06707143486966,0.0,62.808647712344602,241.80893816605663,1.0,62.808647712344602,139.28872257604297,1.5,27.199999999999999,2.1000000000000001,211.25302171101936,212.15826432109648,212.66998828952353,213.60865901825488,214.38358966873398,214.68987558141959,36.708437837475145,37.838669112831376,38.233712839859223,38.074536822191703,37.321507039327145,36.253721410984419 +2003,9,20,18,0,196,38,17.5,62.002296369794294,82.31889347474396,82.96586230703028,265.6542511989851,0.0,18.306248845154283,66.048109264903303,1.0,18.306248845154283,39.209546043993399,1.5,26.100000000000001,0.0,45.664994790008279,46.053388699832695,46.276929306150251,46.659782259430258,46.974672417882417,47.100587637777792,10.887451772350039,11.101867018208672,11.095660939009466,11.003237322367527,10.827934163189527,10.584792512036827 +2003,9,20,19,0,0,0,18.5,0.0,89.20539822313509,89.0813829173675,270.63382990637024,0.0,0.0,0.0,1.0,0.0,0.0,1.5,23.300000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,21,7,0,0,53,6.5,53.0,83.37642912346651,83.9498292281452,93.83443723945916,0.0,16.481399746408503,52.773107179707878,1.0,16.481399746408503,32.352954657863243,1.5,18.300000000000001,2.6000000000000001,46.369041267822119,47.032050904404947,47.42026190953527,47.348751205446092,47.295300463996917,47.268827180672105,9.6430917205735955,9.6482051918098897,9.6361095750936343,9.5899851327273637,9.5013516821969972,9.4000682124129433 +2003,9,21,8,0,415,105,7.5,230.71468183961483,70.3377157524978,72.3665127103553,103.32843910123914,0.0,65.419767100257246,250.90456718969727,1.0,65.419767100257246,144.52817991214022,1.5,21.100000000000001,1.5,216.87337929493577,217.86998231814007,218.43509257307824,219.36016827165122,220.12449078155373,220.425836009824,38.120219876136971,39.285887853241974,39.740472141289182,39.632385592730813,38.9006639567517,37.806035574453901 +2003,9,21,9,0,556,137,8.5,405.41696901582719,57.475463725018166,61.13389887451521,114.15568027709341,0.0,109.7619193223897,446.68228563990863,1.0,109.7619193223897,253.19198078539273,1.5,23.300000000000001,1.5,420.57868122940226,421.71082973730631,422.33677031233833,423.66734321806911,424.76923331430447,425.2007109002476,63.497085995132508,65.820058071409122,66.882064030911664,66.812189157097734,65.424831667266346,63.357796178268444 +2003,9,21,10,0,633,165,9.5,563.98810579469546,45.354740640784264,50.92678382037695,127.45229940254794,0.0,155.54162623025073,627.09744454834083,1.0,155.54162623025073,352.76735299201948,1.5,25.0,0.0,607.0873900554127,608.16588374511957,608.73931599167497,610.76346128764794,612.43628995829454,613.09451525628594,89.720263701011348,93.340822095716135,95.083235143086043,95.062243631537257,93.005904115606725,89.886834275465787 +2003,9,21,11,0,628,203,10.5,664.80642892507922,34.891366231106765,42.66230863262299,144.70717204617347,0.0,177.38998442135082,739.85748591625247,1.0,177.38998442135082,415.4624918855273,1.5,26.699999999999999,2.6000000000000001,722.23856735865002,723.43448932974513,724.06804171031763,726.32416155554654,728.18926669036853,728.92245081775422,102.09899336408324,106.30434301045761,108.39530793234661,108.45076813551583,106.17035862388803,102.57058526121359 +2003,9,21,12,0,728,184,11.5,759.62709322086585,28.09441048855488,37.74934648627034,166.77326121164364,0.0,200.82935324484362,849.06902765175232,1.0,200.82935324484362,473.77894370448752,1.5,27.800000000000001,1.5,833.7882893981506,834.68172179522492,835.12417814245441,837.35320695370797,839.20075309505557,839.9217763724115,115.39298512020594,120.39317460490433,122.91707772649346,122.9127550827222,120.10368116209104,115.83509641337383 +2003,9,21,13,0,629,251,12.5,749.49928463005222,27.836829727319955,37.57773498331206,191.43642313513232,0.0,200.50526919231376,832.52124950828943,1.0,200.50526919231376,467.80667760265618,1.5,27.800000000000001,2.1000000000000001,814.07579120054504,815.55537800144702,816.34776776002332,818.689911966247,820.62985183549267,821.38869959521776,115.40755275520739,120.05503113009655,122.37492112404287,122.40586104119525,119.82936249485704,115.81388211671123 +2003,9,21,14,0,203,356,13.5,506.36493445541578,34.26832901106814,42.207730190328355,213.79486663986495,0.0,144.43709309064852,539.11708364921583,1.0,144.43709309064852,314.20335767873212,1.5,27.800000000000001,3.6000000000000001,516.28326338272791,519.56355847833936,521.45584059765429,522.46628540920256,523.31905790357621,523.63769805396248,83.703744000053049,85.604995093524437,86.522425262104534,86.488970596524879,85.260086559398886,83.294463363704551 +2003,9,21,15,0,261,286,14.5,452.72355297452611,44.56123071523035,50.29852985050741,231.36350360181152,0.0,130.14556434714456,487.28219254245664,1.0,130.14556434714456,282.25544470240578,1.5,27.199999999999999,2.6000000000000001,465.3845224408845,467.88996765511774,469.32636250612302,470.68581029558851,471.8172118534867,472.25520806964727,75.459175918871253,77.477063538099415,78.411722979126836,78.401699402892106,77.18867187408199,75.243197222185444 +2003,9,21,16,0,557,136,15.5,411.00116450793826,56.60940944552555,60.41472250354585,244.8713924841185,0.0,114.17112055729271,455.21419369014933,1.0,114.17112055729271,257.73850471523781,1.5,27.800000000000001,2.1000000000000001,429.16234965225431,430.20298140436211,430.77247616418902,432.49058125164345,433.90696096940894,434.46804537131487,65.964995528389139,68.503075872145402,69.700830371841363,69.734606280366592,68.363172498706348,66.177123444622609 +2003,9,21,17,0,403,104,16.5,231.15162849929891,69.4447939388619,71.60823065025035,255.81113259771607,0.0,65.462476951778385,252.00582904623286,1.0,65.462476951778385,144.86568802533438,1.5,25.600000000000001,3.1000000000000001,219.7570674309905,220.73032135271842,221.28152625326305,222.23005681804625,223.01320608823653,223.32246453454678,38.033124225736266,39.234279049928013,39.746135299758294,39.71456396626786,39.010617397154029,37.909934634894881 +2003,9,21,18,0,19,35,17.5,37.22704189979271,82.57287011061457,83.26873146362762,265.39909261211,0.0,11.529868407555016,37.269976821966885,1.0,11.529868407555016,22.870093570890436,1.5,24.399999999999999,3.1000000000000001,32.677234272166579,33.139975296535937,33.410907207001991,33.411963566241049,33.415908245557816,33.414541948449219,6.745228444618232,6.7597560047088399,6.7570415980352561,6.7378851714427483,6.6878713283718074,6.6153125918926543 +2003,9,21,19,0,0,0,18.5,0.0,89.26534420143352,89.20789814634568,270.26152238406996,0.0,0.0,0.0,1.0,0.0,0.0,1.5,22.800000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,22,7,0,0,37,6.5,37.0,83.38395071785246,84.03293144291875,94.26292207977667,0.0,11.56674026963938,36.594777280629202,1.0,11.56674026963938,22.556034195105681,1.5,18.300000000000001,2.6000000000000001,33.195571401068712,33.688715031216113,33.977773103767355,33.918378985797183,33.873405501912231,33.851727444257349,6.7542715617064601,6.7459161272688304,6.7391325965164581,6.716714549469355,6.6676251997745259,6.6066758416797935 +2003,9,22,8,0,0,101,7.5,101.0,70.4501325714619,72.54564577472057,103.70186103944214,0.0,31.453380587332557,100.18346550774555,1.0,31.453380587332557,61.642249057400903,1.5,18.899999999999999,3.6000000000000001,92.418215961981389,93.74435219009105,94.521517672217485,94.383547644553531,94.28027391039474,94.229237266113316,18.355841926584468,18.347558871450573,18.339067216665121,18.287490992718869,18.157566644930981,17.985488247518369 +2003,9,22,9,0,19,215,8.5,224.1129280146836,57.61272192590458,61.33890476776272,114.54577537211892,0.0,68.944328936798584,225.50788825794106,1.0,68.944328936798584,137.11042720594705,1.5,21.100000000000001,4.5999999999999996,209.97376584605723,212.61460496499615,214.15940290822419,213.95896999065883,213.81477943797745,213.73725299262173,40.159683146911355,40.317354721083966,40.392892972829429,40.297129770690233,39.94664983587505,39.458712401408683 +2003,9,22,10,0,110,284,9.5,352.96520815499173,45.537031667575064,51.17407070754336,127.85451749889123,0.0,105.10350061894179,367.23877867658973,1.0,105.10350061894179,217.72797223428921,1.5,22.800000000000001,4.0999999999999996,347.38824782752408,350.46861910709583,352.25942398301368,352.53617521422103,352.78643993319599,352.86411976480429,61.004414268434687,61.899718108798425,62.345102692942547,62.288860146784607,61.560131096580925,60.422065081029771 +2003,9,22,11,0,278,338,10.5,541.42141891506276,35.14811090065187,42.968232393717805,145.08353532637796,0.0,154.92693227029807,585.39231624915976,1.0,154.92693227029807,337.41169957494827,1.5,23.899999999999999,5.7000000000000002,563.03119810987755,565.80514792251699,567.39069603676148,568.95805617398389,570.2630966529822,570.76754503501706,89.528182458930345,92.081077508327581,93.354628748483137,93.451471734925363,92.028856041192171,89.614770750640204 +2003,9,22,12,0,355,341,11.5,620.30024238191936,28.446920928959564,38.1161333139133,167.02791361803872,0.0,175.95062611996696,674.92016571288036,1.0,175.95062611996696,386.1850063595366,1.5,25.0,4.5999999999999996,653.03976150945027,655.73814991682616,657.26915265394655,658.91227705183087,660.28286077374651,660.8099457055124,101.50298220667601,104.66042515951386,106.26457419011876,106.34731244799183,104.55231072837168,101.62183971444175 +2003,9,22,13,0,138,374,12.5,482.78148329612657,28.235621256216795,37.975716379883295,191.47831525412985,0.0,138.67369819112767,512.53416363561769,1.0,138.67369819112767,299.92936058394048,1.5,25.600000000000001,4.5999999999999996,489.65128948991702,493.02357723738396,494.97343087793411,496.07260991621041,496.99601059502481,497.34525606900257,80.307316253134545,82.018115745918124,82.884879345443537,82.976891435567055,81.964436584355568,80.178750981851692 +2003,9,22,14,0,72,343,13.5,396.00264817459527,34.634896461914096,42.59569938239274,213.65803585904337,0.0,116.95226372698957,411.16367156396234,1.0,116.95226372698957,244.54243654230561,1.5,26.100000000000001,4.5999999999999996,389.41355118967556,392.9941114118119,395.07803074435299,395.48757003527385,395.84846941367312,395.96898146792444,67.906957128269099,68.828639685097443,69.29242655631937,69.276390025614106,68.553414407001227,67.353355024467248 +2003,9,22,15,0,24,251,14.5,266.21458340593438,44.88148319293104,50.65851723640703,231.14119925569764,0.0,81.426305990922145,268.17063630986092,1.0,81.426305990922145,162.96469501091178,1.5,25.600000000000001,5.2000000000000002,251.08137221883581,254.20114640374192,256.02610735764642,255.8217321430279,255.67760797660713,255.59691177065378,47.42307227287229,47.614720532804157,47.710182946475854,47.611031141893129,47.208868049939085,46.633685804791291 +2003,9,22,16,0,211,216,15.5,319.10349620237378,56.89647894694107,60.74862615977537,244.62139540670478,0.0,91.732269267438966,338.19303362802583,1.0,91.732269267438966,197.83796252031499,1.5,25.600000000000001,2.6000000000000001,316.82778977274182,319.07538958365899,320.37526165984582,320.95909344337883,321.45393709358342,321.63684706081074,53.104959612748154,54.207335142357508,54.774559619938039,54.811082403635531,54.116997011038812,52.942658459554941 +2003,9,22,17,0,11,105,16.5,108.41306201271942,69.71185157475982,71.92399315904093,255.55560278745384,0.0,33.670641938997022,108.01832998053567,1.0,33.670641938997022,66.188547311096102,1.5,25.0,2.6000000000000001,99.464216870199905,100.84069108407499,101.64689890908622,101.50486391279451,101.39882757615555,101.34611024540101,19.634509464543854,19.652646003652883,19.659238311424783,19.605803062767286,19.454408848070916,19.252292512547793 +2003,9,22,18,0,43,35,17.5,39.814642580819395,82.82644380999608,83.57120047454612,265.14375217850164,0.0,12.131270369074471,40.791852592607199,1.0,12.131270369074471,24.756792446562276,1.5,24.399999999999999,4.5999999999999996,33.43246498514965,33.86535723546541,34.118208098277378,34.222019882498643,34.309221399630545,34.342290036250546,7.0851830634914563,7.1499541149331405,7.1720085189729161,7.1751629430000232,7.1290932549363673,7.0303797789778688 +2003,9,22,19,0,0,0,18.5,0.0,89.32281726992808,89.33198286466578,269.8887757992002,0.0,0.0,0.0,1.0,0.0,0.0,1.180210051488376,22.199999999999999,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,23,7,0,0,0,6.5,0.0,83.39202633197326,84.11656295157985,94.69140653031337,0.0,0.0,0.0,1.0,0.0,0.0,1.5,18.300000000000001,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,23,8,0,13,128,7.5,131.86024538834033,70.56396844805523,72.72597802829306,104.07444622060594,0.0,40.584850935518681,132.10741109340671,1.0,40.584850935518681,80.565052077225218,1.5,18.899999999999999,2.1000000000000001,121.06449219209759,122.67408468957754,123.61628816826428,123.46299967929534,123.34959975079067,123.29209585173331,23.637818191851892,23.693532042409352,23.725496904144247,23.672174957222968,23.483849387201978,23.22030080331912 +2003,9,23,9,0,43,223,8.5,243.48779134292624,57.75205216573945,61.5455296917185,114.93418261941216,0.0,73.012724503953237,250.02290459588272,1.0,73.012724503953237,150.10752090788412,1.5,19.399999999999999,2.1000000000000001,232.68566213628119,235.16748833582963,236.61558068962501,236.7880781354458,236.94637172655936,236.99360390850921,42.428562763820729,42.843743547393018,43.060790545950738,43.055759263402713,42.687586596832013,42.042705156320508 +2003,9,23,10,0,43,282,9.5,308.81320608855549,45.721986484453076,51.42321193414444,128.2536724877725,0.0,93.142350046341363,318.07260713376172,1.0,93.142350046341363,190.55207007074708,1.5,20.600000000000001,0.0,299.04680797079448,302.10952694966909,303.89520571970627,304.17147604695208,304.41880991512113,304.49796814361014,54.125789381318334,54.71978903105834,55.022027419665818,55.011733889407274,54.510821055548995,53.645676928334261 +2003,9,23,11,0,278,351,10.5,553.40131858148277,35.407625856580715,43.27580539554182,145.45514473143155,0.0,158.48258129399031,598.60081317139179,1.0,158.48258129399031,344.80327477144976,1.5,22.800000000000001,3.6000000000000001,575.57611332019781,578.45085329367544,580.09504835582175,581.67241980956362,582.98620029367339,583.49358549136139,91.385083758641514,93.970211753416038,95.352933747132681,95.570245684085961,94.228811250144815,91.79204529507561 +2003,9,23,12,0,650,238,11.5,746.80982790085932,28.800891489246137,38.48378037189385,167.2777539840408,0.0,205.82804660837149,832.76952022304704,1.0,205.82804660837149,466.1502689256331,1.5,23.899999999999999,4.5999999999999996,814.68558963107887,816.07165441660663,816.80633646158503,819.14324980210904,821.07929486031298,821.83595614302715,117.83271296316282,122.66286924577803,125.33103863431411,125.7099853466827,123.30493554732357,119.17028195344206 +2003,9,23,13,0,731,176,12.5,749.08694336715519,28.634532040488814,38.373868741628634,191.51864193857182,0.0,204.70269735319297,840.23076673016442,1.0,204.70269735319297,467.18164683983798,1.5,25.600000000000001,4.0999999999999996,825.28179328198314,826.12864222016663,826.54208801981463,828.7290603387878,830.54262559373956,831.24929292216689,116.96110961805202,122.07159398263984,124.92270023732688,125.28728018956919,122.7031424235917,118.37126918521615 +2003,9,23,14,0,662,213,13.5,697.2835966835089,35.00198613616687,42.983823893526136,213.52241539090016,0.0,192.20230912826369,777.85514375062314,1.0,192.20230912826369,435.46288285284811,1.5,26.100000000000001,6.2000000000000002,759.40305106108576,760.70469019606014,761.39511104126541,763.65722958460128,765.52982322581693,766.26322302924143,110.04854247261964,114.56504050867109,117.0538704039521,117.42107853347903,115.19412215497735,111.33627633969419 +2003,9,23,15,0,285,279,14.5,458.28363154923727,45.202496961683494,51.018798873097296,230.92049561867543,0.0,128.72292497250118,495.18024105783888,1.0,128.72292497250118,285.60934692640478,1.5,25.600000000000001,4.0999999999999996,473.19274939226301,475.6532615199269,477.06360470058485,478.39842754764823,479.50900185064074,479.93911580523604,74.181025870294476,76.232230078177068,77.352909385855241,77.588369926968625,76.586286214372052,74.658374376179935 +2003,9,23,16,0,510,148,15.5,394.60812862618673,57.18412187758944,61.08278839638983,244.37244717628633,0.0,107.36100917207409,435.90739968415437,1.0,107.36100917207409,246.65578550934711,1.5,25.600000000000001,5.7000000000000002,410.33848828626151,411.57357719468257,412.26231241297342,413.6381350019123,414.77565716211438,415.22286040677284,61.57541175514168,63.825642494411028,65.075205351923245,65.345899467559875,64.322625659263807,62.37701724775917 +2003,9,23,17,0,476,80,16.5,225.19594378930609,69.97911859161553,72.23982092193432,255.30047711404708,0.0,61.216955257387546,250.15858209648133,1.0,61.216955257387546,141.74393510068458,1.5,25.600000000000001,3.6000000000000001,215.18863773054366,215.88016673675889,216.26534713827655,217.39677356186331,218.32615922860083,218.69769999762752,35.055612661194736,36.393738515054537,37.157136466466874,37.428347556755647,36.964831551634191,35.855496509608592 +2003,9,23,18,0,189,31,17.5,51.172174367901036,83.07943885693751,83.87308925674222,264.8882320959274,0.0,14.256518349107782,55.640292296171637,1.0,14.256518349107782,32.392408793776667,1.5,23.300000000000001,3.1000000000000001,37.020142317879191,37.336495079799647,37.518893735474819,37.84646676438895,38.115012749547333,38.22301803286993,8.2062656709281718,8.4299975841278378,8.560379301990114,8.6505184158765243,8.6175393070916968,8.4243795989999057 +2003,9,23,19,0,0,0,18.5,0.0,89.37753387393211,89.45333546683085,269.51564969859373,0.0,0.0,0.0,1.0,0.0,0.0,1.5,19.399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,24,7,0,0,0,6.5,0.0,83.40068147808582,84.20072407738284,95.11977112876991,0.0,0.0,0.0,1.0,0.0,0.0,1.5,15.0,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,24,8,0,417,111,7.5,233.56256505548072,70.67925087890431,72.90751112468826,104.44606076979436,0.0,64.88714610899244,255.69287149654826,1.0,64.88714610899244,146.23939158158953,1.5,17.800000000000001,3.6000000000000001,220.52845082911801,221.60034061370132,222.21087523005266,223.12481762970339,223.87935404323798,224.17726607730015,37.174867282119919,38.340430301783172,39.049692217091014,39.332918015011586,38.915713318738035,37.876147972831717 +2003,9,24,9,0,563,140,8.5,406.44642648027764,57.89346686568886,61.753759967486744,115.32075813927997,0.0,110.183106962369,450.47174557170626,1.0,110.183106962369,253.81738660307417,1.5,20.0,4.5999999999999996,423.49730976446477,424.66797584113766,425.317098862622,426.6466613725982,427.74695891079313,428.17836140883412,62.941795606864815,65.302454884328341,66.706529120618697,67.080111687261564,66.078760681934511,64.05109850046054 +2003,9,24,10,0,688,144,9.5,570.65136340259471,45.909585109328084,51.674167436531874,128.64962064633846,0.0,156.75746582592603,639.56028260633707,1.0,156.75746582592603,356.57460835801021,1.5,21.699999999999999,4.0999999999999996,620.04928745245218,620.94710166214827,621.41262361528675,623.32710151186711,624.91004256402039,625.53173188655705,89.37467981492037,93.191578143779381,95.393044505543756,95.889734240006035,94.210038596617764,90.994130931871226 +2003,9,24,11,0,713,174,10.5,690.46363913340622,35.66983438389976,43.58495416966145,145.82189531220533,0.0,183.1366864889296,774.31464838153659,1.0,183.1366864889296,430.97734017021031,1.5,22.800000000000001,2.1000000000000001,757.66354951613584,758.62570768734327,759.11753926653148,761.26794847799647,763.04741080428437,763.74472439002443,104.52685104420598,109.04630096435562,111.61878041534129,112.08932388609958,109.96379798854909,106.1715172889796 +2003,9,24,12,0,782,150,11.5,758.99568608669381,29.15620686925386,38.852191298388355,167.52273520441855,0.0,200.50311394860876,851.86288100997604,1.0,200.50311394860876,472.53328524772741,1.5,23.300000000000001,3.1000000000000001,837.47802558557191,838.32962441254881,838.74768268307025,840.67319112859525,842.27385083777267,842.89337621423169,114.28265362749184,119.2985566100193,122.19263807439731,122.64276977574026,120.16669057986596,115.93100543792809 +2003,9,24,13,0,767,157,12.5,754.98631697045732,29.033449572054856,38.77208334860634,191.55732412243051,0.0,199.70193625104721,846.86894131971803,1.0,199.70193625104721,470.13432585353672,1.5,23.899999999999999,1.5,832.1493828504066,833.06204297678869,833.51689630448504,835.46886919507529,837.09089509196315,837.71938977005959,113.85854410169964,118.81910888511379,121.67679650934656,122.12853519358113,119.68855583925578,115.49647853229105 +2003,9,24,14,0,758,146,13.5,696.99826203098917,35.369454080956885,43.371976853597715,213.38790468032553,0.0,190.84901311754265,781.75566101628704,1.0,190.84901311754265,434.37255646557401,1.5,23.899999999999999,0.0,766.05909761237422,766.96476761146619,767.41971702372791,769.34500692631661,770.94352366851274,771.56431529855899,108.66119713720533,113.36978368547719,116.12301418077128,116.66870720698583,114.48700028377472,110.49385994179333 +2003,9,24,15,0,700,133,14.5,569.91393017190717,45.52412415121636,51.37923757634796,230.70133172994082,0.0,151.15976023416206,639.82385309734138,1.0,151.15976023416206,355.9429188365865,1.5,24.399999999999999,1.5,621.22832394975239,622.02159949290103,622.42718077063648,624.27680891836292,625.8056803718963,626.4064529832508,85.972864480429493,89.717350762230637,91.975247203748538,92.545187176695521,90.956726596783653,87.840968638036387 +2003,9,24,16,0,656,101,15.5,414.85024534761106,57.47219748558385,61.417070599902054,244.1245232843166,0.0,110.51742023580719,465.45344917783098,1.0,110.51742023580719,259.51349728166633,1.5,24.399999999999999,3.6000000000000001,439.05809632811241,439.75894839263839,440.12759735067937,441.62539218774691,442.86119173405285,443.34923368706944,62.938564472188105,65.620796203816695,67.222322849162197,67.655699647231984,66.557312537305151,64.329082406626952 +2003,9,24,17,0,464,80,16.5,219.09818777844816,70.24645867448382,72.55557544259719,255.04575027058715,0.0,59.660635699990642,244.03703180929011,1.0,59.660635699990642,137.96293587121713,1.5,23.899999999999999,2.6000000000000001,209.30601920712036,210.00444825606371,210.39457562257212,211.51651517285956,212.43772295145018,212.80638517214328,33.974283483969238,35.266247227602577,36.074250756369516,36.472039614412523,36.129134074130143,35.054939916447232 +2003,9,24,18,0,182,31,17.5,49.761900327095603,83.22930321078924,84.08301740123215,264.5599518635835,0.0,13.911512859553861,54.406760970070586,1.0,13.911512859553861,31.510565058166797,1.5,22.800000000000001,0.0,36.224662719451423,36.542579167473335,36.726138480940506,37.048899400666997,37.313433873920502,37.419898496729409,7.945015367518522,8.1331457545728405,8.2728240471954688,8.4100655727776719,8.4323633520877657,8.2663260760720334 +2003,9,25,7,0,0,0,6.5,0.0,83.40994105378307,84.2854145056759,95.54789609023067,0.0,0.0,0.0,1.0,0.0,0.0,1.5,16.100000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,25,8,0,430,101,7.5,226.07198717637891,70.79600586228453,73.09024541991397,104.81657111170674,0.0,62.519892037030822,249.06873238788646,1.0,62.519892037030822,141.57566026496858,1.5,18.300000000000001,3.6000000000000001,214.09883003593407,215.06351998609853,215.61131303679943,216.50267932808248,217.23815139176776,217.52895660996123,35.604215985962696,36.758615961208235,37.535405811589733,37.921983616746154,37.608744174308676,36.598609335837601 +2003,9,25,9,0,582,127,8.5,400.55903877861437,58.0369759849556,61.96357999372469,115.70535924156403,0.0,107.91308066698312,447.66556038725486,1.0,107.91308066698312,251.10293960342767,1.5,21.699999999999999,3.6000000000000001,420.15285023083072,421.13511832004565,421.672950215941,423.31703290179803,424.67100724366918,425.2084857177008,61.429349986648681,63.876637094840277,65.399931311156379,65.973622432559921,65.107461380704734,63.048488867568267 +2003,9,25,10,0,706,136,9.5,571.3664903509939,46.09980417067253,51.926894853576385,129.04222107314658,0.0,151.6868793601096,642.12528798514802,1.0,151.6868793601096,356.8738127509493,1.5,23.899999999999999,5.7000000000000002,622.85213594307572,623.6832613452309,624.11135016315336,625.97552848152316,627.51599007747166,628.12169780752413,85.985924598001873,89.704917468454028,92.082034612109979,92.869063569245569,91.42255867043221,88.301294880889671 +2003,9,25,11,0,701,173,10.5,678.14362781662783,35.934656667601146,43.895603281615394,146.1836863423482,0.0,179.93471825727912,761.69097138055724,1.0,179.93471825727912,423.37610289064509,1.5,25.600000000000001,5.2000000000000002,745.07553879918726,746.03697521329707,746.52999751494906,748.67420078807254,750.44756208044907,751.14337623365714,102.33709271822265,106.77616557563084,109.45686713956256,110.12446475531065,108.22630054393748,104.52442529075708 +2003,9,25,12,0,716,180,11.5,734.69223205259379,29.51275094063241,39.22126862288812,167.76281320290494,0.0,194.37700544565172,826.1115575405845,1.0,194.37700544565172,458.3638414425406,1.5,26.100000000000001,5.7000000000000002,810.78296715523447,811.68174899447206,812.1309147692366,814.33711843254412,816.16343241700997,816.87818232040081,110.46693323985015,115.3341822377478,118.28708018413749,118.99879902445549,116.88752248759916,112.8309631624592 +2003,9,25,13,0,743,167,12.5,743.02750123985447,29.43226099755585,39.170250982898835,191.59428566285237,0.0,196.14309423220553,836.39348911214847,1.0,196.14309423220553,463.31039141662086,1.5,26.699999999999999,6.7000000000000002,821.72680046262576,822.52416820333417,822.91203167929825,825.04973496951322,826.82076311673779,827.51231990639974,111.40429557689272,116.3718003633563,119.39622420605863,120.10661212649229,117.92806663239455,113.78954055255423 +2003,9,25,14,0,752,148,13.5,691.12664607638681,35.73715688716657,43.76003138339314,213.25440528549402,0.0,182.49456682221683,778.17447121221312,1.0,182.49456682221683,430.98287770048432,1.5,27.199999999999999,4.0999999999999996,762.91108832932809,763.66601790313564,764.03467642256339,766.03587214170534,767.69359963373006,768.34114059223361,103.660462876461,108.27586027418124,111.08450992955852,111.74668159509365,109.72580813855703,105.88063146988046 +2003,9,25,15,0,670,149,14.5,563.8875623405105,45.84621689349483,51.73969614752648,230.4836467772048,0.0,150.19415192409858,632.9788207592685,1.0,150.19415192409858,352.48250108235385,1.5,27.199999999999999,3.6000000000000001,613.33926865430453,614.28475638834516,614.78174592264247,616.72481865470331,618.32906893101449,618.96141434964693,85.219970985401062,88.839844131245854,91.140966288494923,91.924167129671687,90.54245963926131,87.502543971325679 +2003,9,25,16,0,539,133,15.5,388.10824617063827,57.76056466539188,61.75133396959869,243.87759874364332,0.0,105.15841054391679,431.62803495446872,1.0,105.15841054391679,242.45820903684705,1.5,27.199999999999999,4.0999999999999996,405.94369849890103,407.04775766566922,407.65963224483608,408.96158965896024,410.03806478262391,410.46107984896378,59.696369703541045,61.96272875214953,63.443447336231635,64.047400479764789,63.274498054973158,61.328158833922608 +2003,9,25,17,0,429,87,16.5,213.34997718730989,70.51373508156028,72.87111790289849,254.7914166575125,0.0,58.612439233236252,236.40750835991236,1.0,58.612439233236252,133.65537671024012,1.5,26.100000000000001,4.0999999999999996,203.33629441820142,204.14774881764353,204.60594516589595,205.46016756367266,206.16447762417874,206.44344906665688,33.242054987157154,34.373211443720017,35.173810939656398,35.606555033723993,35.348104014879659,34.368837982070218 +2003,9,25,18,0,166,29,17.5,45.675877409667422,83.31363408096935,84.23450748635798,264.18533695743207,0.0,12.550010397026789,50.297784478056606,1.0,12.550010397026789,28.958878224906616,1.5,23.300000000000001,2.6000000000000001,33.430326250922477,33.726703920128671,33.898069163059091,34.207156871412259,34.460324987682441,34.562370930588301,7.1444636027853408,7.2678462907990511,7.3871142675668056,7.5401392705203518,7.6143907562648323,7.4930550451855904 +2003,9,26,7,0,0,0,6.5,0.0,83.41982928766554,84.37063324122971,95.97566130528075,0.0,0.0,0.0,1.0,0.0,0.0,1.5,16.699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,26,8,0,26,126,7.5,133.48259535771683,70.91425781665396,73.27417990943685,105.18584402076146,0.0,40.696307902728144,134.53431128452215,1.0,40.696307902728144,81.572822299850316,1.5,19.0,0.0,122.86074703071183,124.44139055442817,125.36632939564727,125.21534142429901,125.10371496857032,125.04702618244703,23.619941042573871,23.691089942835891,23.760075855269484,23.752426883053076,23.593898085152464,23.31979162607233 +2003,9,26,9,0,62,209,8.5,237.93992576521987,58.18258696002346,62.17497220530371,116.08784449022421,0.0,71.093426540034457,245.57231091923813,1.0,71.093426540034457,146.64733911645854,1.5,21.100000000000001,0.0,228.62045940447268,230.98066397900212,232.35715923524478,232.50936790906593,232.65049706532591,232.69130610783125,41.125734671058616,41.555631167057136,41.851310015768178,41.942880925206119,41.647716237414059,41.005740864738925 +2003,9,26,10,0,554,200,9.5,539.69298137276451,46.29261690448271,52.18134952250887,129.43133573190852,0.0,146.20424059357455,599.99047853297111,1.0,146.20424059357455,336.95595447268181,1.5,22.800000000000001,1.5,578.64860444724491,580.17721018577686,581.02409930142221,582.76372339225009,584.2032614343334,584.7677132730729,82.981702566149991,86.12729656989876,88.188813088762188,89.017444012119213,87.926782474812853,85.218044754354139 +2003,9,26,11,0,659,193,10.5,665.38254056617586,36.20200988655339,44.20767536161488,146.54042125522218,0.0,177.35991515035565,746.8145192756308,1.0,177.35991515035565,415.69648568872202,1.5,25.0,1.5,729.12169453973627,730.27093270597231,730.87734681824315,733.09017523699765,734.918499145851,735.63777297569118,100.63704116779556,104.88068957673104,107.5839420161694,108.49166092604229,106.85115389735664,103.27484484729511 +2003,9,26,12,0,650,234,11.5,734.89930702903803,29.870406792568502,39.590913790491626,167.9979468297901,0.0,196.35249344755709,823.01333733612842,1.0,196.35249344755709,458.77740540852989,1.5,26.699999999999999,4.0999999999999996,804.84991617215371,806.23680630706542,806.97652514789922,809.3012752743615,811.22433767900532,811.978598756937,111.45229729572024,116.06332895790382,119.00682712248903,119.97893230045744,118.1651062298706,114.25299657158824 +2003,9,26,13,0,354,334,12.5,606.88664017102246,29.83085312698584,39.56826193698081,191.6294532917744,0.0,168.17759663317261,663.19605739578105,1.0,168.17759663317261,377.83856337410543,1.5,27.199999999999999,2.1000000000000001,641.4389873506907,644.1162840530684,645.63850837442362,647.25088084284778,648.59386059583289,649.11204948994123,96.171334783622129,99.154241176494295,101.0357028821207,101.65230754299537,100.38865151804357,97.652021137277458 +2003,9,26,14,0,573,228,13.5,639.15313248640632,36.10495169912646,44.147860605091594,213.12182094911913,0.0,172.21942218494911,712.28144721180001,1.0,172.21942218494911,398.84783917400063,1.5,26.699999999999999,4.0999999999999996,693.47023453580584,695.04461245105642,695.90698097331222,697.88612667696566,699.52496776432554,700.16626354315531,97.930294414418455,101.74645105982118,104.17444967194436,104.98042602808378,103.46568437270749,100.18201619777567 +2003,9,26,15,0,551,180,14.5,518.47086137718611,46.16862738930393,52.10003740919419,230.26738025149515,0.0,139.99135174796763,577.84573982489326,1.0,139.99135174796763,323.74508324855015,1.5,27.199999999999999,3.6000000000000001,557.87625063090229,559.2268805694132,559.97035447095561,561.65121417037187,563.04165480264953,563.58726371443254,79.393074209018238,82.47690774240283,84.501250253054081,85.312288448451582,84.246247496179691,81.605996351579464 +2003,9,26,16,0,398,169,15.5,355.32544651064791,58.049082040498966,62.08543957204193,243.63164823397852,0.0,98.050605846806789,391.91800177551761,1.0,98.050605846806789,222.52009262246446,1.5,27.199999999999999,3.6000000000000001,366.66129210917416,368.12310195304917,368.9517135764616,370.35097718326398,371.50540587151932,371.96194904553437,55.806942899620246,57.648689616013598,58.890712364807897,59.50540621509937,59.004703200951376,57.399964824375381 +2003,9,26,17,0,462,74,16.5,207.63836917800143,70.78081072628721,73.18630922367144,254.53747050584587,0.0,54.860385015860814,233.22710560595101,1.0,54.860385015860814,130.76613699184367,1.5,26.100000000000001,3.6000000000000001,198.53596117658904,199.17616351302794,199.53409058720612,200.60385039147019,201.48150051142181,201.83357270799996,30.893349226555518,32.023362014755904,32.858490050959915,33.469876999082025,33.405034917822682,32.468323186824556 +2003,9,26,18,0,164,26,17.5,42.044195496347839,83.39776116120164,84.38574762934762,263.81073014320094,0.0,11.275995258755955,46.797969882811756,1.0,11.275995258755955,26.668430533701528,1.5,23.300000000000001,3.1000000000000001,30.621754281854322,30.885547796294496,31.038132531656153,31.326531276917308,31.562809887371927,31.658069070603752,6.4193959134001064,6.4858630211933113,6.5693003652721185,6.7202435497321451,6.8248250557153449,6.7451481104019404 +2003,9,27,7,0,0,0,6.5,0.0,83.43036968491849,84.45637856555317,96.40294633850651,0.0,0.0,0.0,1.0,0.0,0.0,1.5,18.899999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,27,8,0,288,114,7.5,195.9924958291889,71.03402950091332,73.45931216671715,105.55374667167513,0.0,54.543604085425976,212.73988621787126,1.0,54.543604085425976,122.17674435035752,1.5,20.600000000000001,2.1000000000000001,184.88534228946099,186.08402571827014,186.77518769810933,187.36270497116118,187.85086476377757,188.04069322096763,31.030567546638629,31.735957777904858,32.29931337072567,32.710080873279679,32.619152464915715,31.929830508725775 +2003,9,27,9,0,464,158,8.5,373.05607214265956,58.3303046475651,62.38791703455375,116.46807376719322,0.0,102.24835080496995,413.71542379572213,1.0,102.24835080496995,233.35770303115555,1.5,22.199999999999999,2.6000000000000001,387.3550296897439,388.71310244622879,389.47812169067083,390.84701737658958,391.97736581837984,392.42333307772992,57.931327634806259,59.923222240873287,61.34750644393651,62.092840027450805,61.607396686625755,59.876054880298859 +2003,9,27,10,0,463,219,9.5,501.25716008546829,46.48799315648498,52.43748447758523,129.81682949187862,0.0,136.92511597359771,555.66882718917043,1.0,136.92511597359771,313.36593194784081,1.5,23.300000000000001,2.6000000000000001,534.10470691267005,535.81239278733449,536.77046101771441,538.54018275279645,540.00246858711068,540.57829614213813,77.694591147562349,80.445232518069048,82.33482919523459,83.215597637027614,82.414581676203809,80.039423751926662 +2003,9,27,11,0,411,286,10.5,579.03987199566552,36.4718083085415,44.52109113651665,146.89200757900315,0.0,158.59274376076735,640.07272411851204,1.0,158.59274376076735,361.9411444750188,1.5,24.399999999999999,2.6000000000000001,619.12881724459248,621.20838447641404,622.37846398922682,624.40841864342133,626.08640980198481,626.74648593404049,90.279291923680447,93.449677595028518,95.497869708817504,96.3647026849751,95.30413274896658,92.539878259025514 +2003,9,27,12,0,547,254,11.5,673.26537640663844,30.229056775611976,39.96102718659357,168.22809776406015,0.0,181.47413719696237,750.92694474016412,1.0,181.47413719696237,420.22189276180944,1.5,25.600000000000001,2.6000000000000001,732.25671609766687,733.93104099223569,734.84916660635224,736.96534229399663,738.71684812919386,739.40309473381512,102.86458562739493,106.9012599922972,109.5595960461048,110.61055969151106,109.19872190432903,105.74447314306681 +2003,9,27,13,0,683,201,12.5,724.4687384444228,30.22911244347228,39.9660060230886,191.66275656923452,0.0,192.49079205181158,815.41090619519923,1.0,192.49079205181158,452.25735596532974,1.5,26.699999999999999,3.1000000000000001,798.83591274125524,799.9297869115984,800.49671030067009,802.77586819007308,804.66044169627048,805.40025576695894,108.72318139071635,113.43136218614755,116.55541762623251,117.76689565557905,116.1263718683706,112.18101745575066 +2003,9,27,14,0,740,152,13.5,679.48533616844918,36.47269622372072,44.53533765321291,212.99005766348142,0.0,179.65998269544693,767.25465009264485,1.0,179.65998269544693,423.87840555781605,1.5,27.199999999999999,3.6000000000000001,751.53169875127855,752.33431311917934,752.73318165809258,754.75785526612185,756.43337565371962,757.08953857973745,101.33331567614853,105.84913972180874,108.86235530695791,110.00484884978067,108.40427430217046,104.63172866428374 +2003,9,27,15,0,705,128,14.5,557.56596557156877,46.49120797236056,52.46012424013733,230.052472095292,0.0,147.87013227859592,629.71064650269545,1.0,147.87013227859592,348.21572382429656,1.5,26.699999999999999,4.0999999999999996,610.76069470781249,611.53264298318663,611.92764408568246,613.73194739598,615.22264140426387,615.80914445645965,83.221138862502798,86.830068870910566,89.369326992351233,90.474346240746229,89.383167955058369,86.387388792717744 +2003,9,27,16,0,632,104,15.5,396.61491977088428,58.33760804476726,62.41924839508076,243.38664624417135,0.0,102.59036269446896,447.76540011560996,1.0,102.59036269446896,248.30727711341129,1.5,26.699999999999999,5.2000000000000002,420.60642796878261,421.35570996490219,421.75754070522976,423.26444499577559,424.50538079919073,424.99808623268416,57.64169269763422,60.032344776795973,61.787364757837956,62.73752812824808,62.222388060801961,60.247232786033393 +2003,9,27,17,0,450,74,16.5,201.79929829376135,71.04754825920425,73.50101012549253,254.28390599931024,0.0,53.431917951712954,227.32297644743107,1.0,53.431917951712954,127.14557763813011,1.5,25.600000000000001,2.6000000000000001,192.90339717238521,193.55014590663239,193.91268712626561,194.97335365983935,195.84331252321576,196.19246256523476,30.007955368046499,31.013204580436298,31.845352776424864,32.524573204172427,32.553480415117271,31.718040666448193 +2003,9,27,18,0,157,23,17.5,37.947799426308862,83.48161740449115,84.53665582037374,263.43619192275276,0.0,9.9274110588050135,42.707881596563581,1.0,9.9274110588050135,24.085915610028056,1.5,24.399999999999999,2.1000000000000001,27.549877217488291,27.781437361103716,27.915457594083115,28.181035884406455,28.39875377763564,28.486452058292887,5.6941513259757093,5.695453609622704,5.731870676954105,5.8562340767892307,5.9699049216112039,5.9397655175896151 +2003,9,28,7,0,0,0,6.5,0.0,83.44158497286757,84.54264799426687,96.82963042750991,0.0,0.0,0.0,1.0,0.0,0.0,1.5,19.399999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,28,8,0,7,109,7.5,110.97104065916946,71.15534193650893,73.64563828328679,105.92014669050855,0.0,34.134250895952611,110.96088510321759,1.0,34.134250895952611,67.762217892112247,1.5,18.899999999999999,4.5999999999999996,101.86903870614817,103.26985616748613,104.09042933135635,103.94909273882213,103.84370054946756,103.79116974397918,19.847420093187264,19.851421721021566,19.875193192263442,19.860716162760408,19.748089837019897,19.555163665127015 +2003,9,28,9,0,6,174,8.5,176.7609762363644,58.48013127109585,62.60239287512433,116.84590833542502,0.0,54.44946944032322,176.86381312198839,1.0,54.44946944032322,108.0400737621833,1.5,20.0,4.0999999999999996,164.37524017437053,166.58861917402876,167.88492326028478,167.69602568070911,167.55748344018085,167.48598202298584,31.676483937277322,31.715086540294354,31.758617641150835,31.727191991053328,31.529246741399209,31.201495401807254 +2003,9,28,10,0,0,167,9.5,167.0,46.68589938947562,52.69525045152256,130.19857016491213,0.0,51.952321485646344,165.85298775496975,1.0,51.952321485646344,102.05996654425701,1.5,20.0,4.0999999999999996,154.21872477395274,156.4196280719656,157.70957380536655,157.53002393508655,157.39856611619587,157.33051343298132,30.296993323339507,30.282776759443944,30.278690266925704,30.221819657683664,30.037426495216515,29.759538563174235 +2003,9,28,11,0,574,246,10.5,653.04102107979838,36.743963386155635,44.83576946299429,147.23835687024274,0.0,176.48708587086188,728.44947044721926,1.0,176.48708587086188,407.43799216263358,1.5,21.699999999999999,3.6000000000000001,708.4490497940609,710.19097682074641,711.15194539072581,713.15195667015269,714.8083527405488,715.45641560553236,99.810399205759666,103.59803560034905,106.24706933698094,107.4084609639733,106.23022850251115,102.98415477978746 +2003,9,28,12,0,656,204,11.5,704.07702033745568,30.58858254376618,40.33150816198075,168.4532304200604,0.0,181.19596547600707,793.14316369812775,1.0,181.19596547600707,439.71784468097775,1.5,23.300000000000001,4.0999999999999996,776.4215881010557,777.55297850924603,778.14748535319291,780.43383413507695,782.32194368203704,783.06581168318507,102.24789984310854,106.62621503511245,109.60861215338238,110.8676953621603,109.45590731071924,105.82386534356603 +2003,9,28,13,0,425,312,12.5,635.82980182003575,30.626925114201207,40.3633725836109,191.69412783847798,0.0,168.9422443576583,704.52288469226278,1.0,168.9422443576583,397.18249037050816,1.5,22.199999999999999,0.0,683.5369243289847,685.70206931747521,686.91873153384472,689.05441233688646,690.82002893468518,691.51437023400626,96.000263207898925,99.397799340634975,101.66910187404891,102.67828276360979,101.59418454309947,98.659470015179778 +2003,9,28,14,0,6,170,13.5,174.24838767861465,36.8402487391348,44.9223356861329,212.8590237297523,0.0,54.140227520712081,173.51557475775621,1.0,54.140227520712081,106.54940397627735,1.5,22.199999999999999,4.5999999999999996,161.60681249010617,163.86313252152561,165.18516544374657,165.01744999898051,164.8960965162143,164.83170644249901,31.555849576698634,31.566381247701646,31.578065612603208,31.526315147590648,31.329808953859821,31.025026748177332 +2003,9,28,15,0,30,225,14.5,243.12970635289756,46.81381117115661,52.81981960997128,229.83886284421476,0.0,73.305936887244599,249.42970284827771,1.0,73.305936887244599,149.92448377978039,1.5,21.699999999999999,4.5999999999999996,233.72157492541231,236.30146710552259,237.80806966453761,237.9972880337086,238.16918251912466,238.22204785670232,42.471227717223961,42.826010012070718,43.073735999323524,43.16962919968455,42.918049873246758,42.316739711603333 +2003,9,28,16,0,333,191,15.5,343.45846900268702,58.626001002573865,62.7526214014785,243.14256721123425,0.0,94.439885530053417,374.45266643939772,1.0,94.439885530053417,213.91148747741988,1.5,22.199999999999999,3.1000000000000001,349.78850084070041,351.64308563144641,352.70790346761231,353.66104964299961,354.45404288212359,354.76128514859721,53.706761633869696,55.117556463794031,56.175252261288598,56.808353894206036,56.501346374537839,55.14917479354731 +2003,9,28,17,0,472,69,16.5,200.56449238206901,71.3138101496014,73.81508118957429,254.03071739520155,0.0,51.320041763516237,227.3146025861115,1.0,51.320041763516237,126.27676074802969,1.5,21.699999999999999,3.1000000000000001,191.97187296195693,192.56571688995155,192.89774865683015,193.91867192129897,194.7558928595767,195.09188748621517,28.67773376405016,29.57232022722793,30.406676805926914,31.154116044379261,31.302436712916297,30.554942614228541 +2003,9,28,18,0,123,23,17.5,34.389050751924465,83.56513530636819,84.68714957048527,263.0617831304762,0.0,8.9742882267441946,38.748392463853754,1.0,8.9742882267441946,21.889598590954506,1.5,18.899999999999999,2.6000000000000001,25.567057288404392,25.799391480398654,25.934372006233339,26.197838768755261,26.413807019031431,26.5008682139683,5.2291414884225897,5.1915821443886996,5.1791114233010909,5.2649857061260841,5.3642963004708628,5.3556530041107475 +2003,9,29,7,0,0,0,6.5,0.0,83.45349704655663,84.62943823455186,97.25559248243252,0.0,0.0,0.0,1.0,0.0,0.0,1.5,12.199999999999999,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,29,8,0,66,116,7.5,134.37673697825699,71.27821433148802,73.83315281043839,106.28491220615076,0.0,39.680457414831146,138.81549734409271,1.0,39.680457414831146,82.707276993191329,1.5,13.300000000000001,3.6000000000000001,124.71955165200023,126.10693738304306,126.91712709235013,126.96573961171201,127.01512595242112,127.02567404354902,22.879800963519159,23.014996010423339,23.170715934476366,23.287566605470925,23.224501235547844,22.934431743696919 +2003,9,29,9,0,539,155,8.5,401.22201709272241,58.632066371448516,62.81837604849171,117.22121090106374,0.0,106.47095975835357,447.9693808040397,1.0,106.47095975835357,250.63313190821214,1.5,15.0,3.6000000000000001,419.59400576895592,420.93091390089762,421.68187979700622,423.02943702507605,424.14297822877836,424.58155677290222,59.906481374911984,61.948124881013783,63.521806693753433,64.560088107749095,64.290628677121035,62.50831846340396 +2003,9,29,10,0,719,126,9.5,559.15990632683531,46.886298695663434,52.9545958796447,130.57642853923835,0.0,143.27960702436957,633.83350494675892,1.0,143.27960702436957,349.14145607824952,1.5,16.699999999999999,2.6000000000000001,614.57352536585154,615.3379988699636,615.73100389709157,617.51692817069431,618.9915032921665,619.57278702276642,80.254305007502552,83.721320229293468,86.310379200808612,87.641778949525531,86.813444114403751,83.942663122400916 +2003,9,29,11,0,695,175,10.5,665.13695045581744,37.01838385324054,45.15162736183247,147.57938464619014,0.0,176.75617905642156,751.55298013173979,1.0,176.75617905642156,415.35584834186193,1.5,18.300000000000001,4.5999999999999996,734.4258780031704,735.43750866096843,735.96302360793391,738.10416532762451,739.87333729113413,740.56935233880699,99.216087829020736,103.4351898493894,106.54047153763041,108.04428644917319,106.94093826017973,103.41493721371459 +2003,9,29,12,0,613,221,11.5,685.72061482991353,30.948865095003573,40.702255058348854,168.67331185865496,0.0,177.39398950406238,771.81389230709851,1.0,177.39398950406238,428.46855489801095,1.5,18.300000000000001,3.6000000000000001,754.24077843770669,755.54111784418683,756.2384309797535,758.54801196870233,760.45427470605682,761.20658126815181,99.91313465357247,104.02783892468237,106.98989719660973,108.39193402225963,107.26765834942756,103.83944179053201 +2003,9,29,13,0,605,231,12.5,689.25615511034539,31.0241770024878,40.76025050252493,191.7235021829416,0.0,178.738730398889,774.83575301432495,1.0,178.738730398889,430.6401864505126,1.5,19.399999999999999,3.6000000000000001,756.72726315634281,758.12692706351982,758.88289585236157,761.19438798965325,763.10263628795678,763.85536126576812,100.72592728384892,104.81539397862599,107.75706928693253,109.1512276087781,108.03105827853507,104.61256827263276 +2003,9,29,14,0,674,181,13.5,655.0150458445695,37.207468103460144,45.308727898259995,212.7286298121024,0.0,174.35738851809202,739.65331298605827,1.0,174.35738851809202,409.18090888710759,1.5,20.0,6.2000000000000002,722.21282581368985,723.28303432955011,723.84454893133739,726.00722134626733,727.79347881696287,728.49699643067822,97.926395588236971,102.05133991409716,105.079681455684,106.55791847258602,105.49182797166928,102.04255816329901 +2003,9,29,15,0,587,177,14.5,528.79921323542908,47.136289768741165,53.17898661345673,229.62649376249516,0.0,142.35832602924336,594.65876700394472,1.0,142.35832602924336,331.04583446090203,1.5,19.399999999999999,5.2000000000000002,573.15282678601068,574.42291201759792,575.11800380999034,577.12921549895464,578.78694708720775,579.44372803561009,80.057092295702745,83.169960484435862,85.508230996105851,86.829032934809476,86.229983420976026,83.571820895756062 +2003,9,29,16,0,140,210,15.5,273.37262903885096,58.91411920781945,63.08541958226796,242.8993856560852,0.0,78.478498504347058,289.96953794337071,1.0,78.478498504347058,169.58541567089208,1.5,19.399999999999999,5.2000000000000002,269.76725059192529,271.95613305365634,273.22741308904369,273.77263330132746,274.23290877134428,274.40497707176928,44.969466140696468,45.684817971178994,46.259668311358148,46.66332080091432,46.499467619110845,45.67525211024514 +2003,9,29,17,0,123,110,16.5,143.63837974144897,71.57945876702789,74.12838291886345,253.77789914388762,0.0,41.152571662983689,152.08586974478018,1.0,41.152571662983689,89.120025247370933,1.5,17.800000000000001,4.5999999999999996,134.16584521036037,135.4129141474852,136.13883279127035,136.43409151458786,136.68316808976337,136.77642747720657,23.577680434295083,23.80150835661949,24.058262527054204,24.314094402388989,24.347089788585347,24.004767438094301 +2003,9,29,18,0,134,21,17.5,33.058245978612845,83.64824694760773,84.83714594996832,262.6875649992556,0.0,8.1831087161154681,37.768844719792909,1.0,8.1831087161154681,21.024782842467094,1.5,15.6,3.1000000000000001,24.358849270887688,24.569994104226112,24.692681332860438,24.939428452841739,25.141625812102721,25.223157472490556,4.8423328572570528,4.777419300443781,4.7276274893196337,4.7725352968570647,4.8473034990799455,4.8515190435832825 +2003,9,30,7,0,0,0,6.5,0.0,83.4661269144078,84.71674514272702,97.68071108609925,0.0,0.0,0.0,1.0,0.0,0.0,1.5,9.4000000000000004,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,9,30,8,0,381,109,7.5,213.87816570729279,71.40266400661972,74.021848702598,106.64791190220794,0.0,57.067701783382333,237.80425866829876,1.0,57.067701783382333,133.98073695248496,1.5,11.699999999999999,1.5,203.77887517270602,204.84943004906458,205.46346474025947,206.3277724304171,207.04023326186939,207.32269377994731,32.129362272468995,32.719937202194053,33.402914494764737,34.126622091378444,34.395898370335431,33.775296185294145 +2003,9,30,9,0,558,128,8.5,381.01564255797348,58.78610676113263,63.03584077313578,117.59384567466358,0.0,99.962424795717979,430.1913259828716,1.0,99.962424795717979,238.99594109156689,1.5,14.4,3.1000000000000001,402.32571451437775,403.34828656555698,403.91479681720841,405.53385078421519,406.86526041185851,407.39591959640245,55.922563427677744,57.854833941555206,59.508054696733531,60.776557288127293,60.748290075552205,59.120555450331828 +2003,9,30,10,0,694,137,9.5,552.57234982863724,47.089150813880366,53.2154669066797,130.9502784099961,0.0,142.1175062997728,626.66027703549639,1.0,142.1175062997728,345.27895499826082,1.5,16.100000000000001,4.0999999999999996,606.72526481403702,607.59388605660331,608.04979431865638,609.9072115024519,611.4394585689422,612.04502763065989,79.486512709474781,82.803069863016461,85.34599345690205,86.826681400202062,86.229789687026198,83.435158048782554 +2003,9,30,11,0,683,174,10.5,652.98809961149152,37.294975821646375,45.46858005327958,147.91501031615158,0.0,167.87251950805421,738.99458484343177,1.0,167.87251950805421,407.85892732078548,1.5,16.699999999999999,2.6000000000000001,721.8883674810055,722.8996249383033,723.42901989402753,725.56497852220468,727.32808682488485,728.02368295613689,94.116781726697255,98.114822175507229,101.09171375249079,102.6351299946823,101.69112196160732,98.373521300963034 +2003,9,30,12,0,746,166,11.5,728.38791119757468,31.3097848103626,41.07316523425567,168.88831170283373,0.0,185.88833979883393,826.09633534352588,1.0,185.88833979883393,454.25959789269086,1.5,17.800000000000001,1.5,810.99056697516562,811.82395095213337,812.23932859993943,814.36640007902156,816.12538262683768,816.81583500943827,103.97863805169757,108.54725290365855,111.98376189867417,113.71171271571224,112.57360026739352,108.78603110479668 +2003,9,30,13,0,731,168,12.5,718.3804680081405,31.420753680992032,41.15652821789892,191.75081738518216,0.0,183.46970763472532,814.61408135219176,1.0,183.46970763472532,448.13051894936473,1.5,18.300000000000001,1.5,799.43283174683495,800.28390595163626,800.71089865717136,802.84934105296179,804.61710703759377,805.3116710302761,102.65211035446742,107.14921173290008,110.52704865139063,112.23322238118169,111.12235081155819,107.39542558322935 +2003,9,30,14,0,746,146,13.5,667.07009981972158,37.57421376335031,45.69438753296076,212.5987889870413,0.0,176.34629069827486,757.30912962448394,1.0,176.34629069827486,416.10871701313147,1.5,18.899999999999999,0.0,741.50705995588169,742.28676444007726,742.67445201783926,744.65310271251371,746.28995959848976,746.93182759055367,98.522508905570916,102.78152196869137,106.06889599296348,107.79224641244147,106.83903888150905,103.22928174364506 +2003,9,30,15,0,669,142,14.5,539.5844907341791,47.45849686063965,53.53748850465829,229.41530697246472,0.0,139.12479131272337,611.61240355665814,1.0,139.12479131272337,337.35052643423688,1.5,19.399999999999999,2.1000000000000001,591.34349694759294,592.26647840678993,592.7563764799512,594.63884479587944,596.19079475239664,596.80523543794129,77.664010761085265,80.827883917121852,83.293916290474996,84.891119342885418,84.494982372888401,81.850095782537835 +2003,9,30,16,0,625,99,15.5,378.67868781162412,59.20182100189994,63.417504009941865,242.65707631598164,0.0,97.966912780079753,430.94850136027725,1.0,97.966912780079753,237.12125273974777,1.5,18.899999999999999,2.6000000000000001,403.32759158446885,404.04618333430926,404.43228599351232,405.88661164957341,407.08367171821197,407.55944690536944,54.548147622227987,56.575585235297744,58.341778079719482,59.652619323581185,59.587745834460129,57.894847136416764 +2003,9,30,17,0,448,69,16.5,189.16896495963874,71.84435646272418,74.44077579944776,253.52544600681944,0.0,48.651452284174866,215.74711858475496,1.0,48.651452284174866,119.2120654772387,1.5,18.899999999999999,2.1000000000000001,180.98814091026543,181.59434752837529,181.93530560276608,182.93844794241448,183.76095907487831,184.09140671352458,27.128035887012878,27.729080696073535,28.455482518530037,29.266902529103724,29.641148064966842,29.062158441276324 +2003,9,30,18,0,123,19,17.5,29.748895177612638,83.73088403746245,84.98656162729542,262.3135992263093,0.0,7.206217952673077,34.329781827625887,1.0,7.206217952673077,18.940064376329435,1.274224332190086,16.699999999999999,2.1000000000000001,21.990471931858643,22.18063717130909,22.291126272530754,22.520330541390187,22.707968672903025,22.78376373878276,4.3275370507191049,4.269832257254186,4.2004054629413154,4.2081238108982983,4.2442551862128157,4.2443213657623309 +2003,10,1,7,0,0,0,6.5,0.0,83.47949464401275,84.80456368198467,98.10486449482256,0.0,0.0,0.0,1.0,0.0,0.0,1.3045912436547624,10.6,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,1,8,0,0,64,7.5,64.0,71.52870632368415,74.21171726244363,107.00901506926516,0.0,20.068232089629308,63.094443633320012,1.0,20.068232089629308,39.016095805669046,1.5,12.800000000000001,0.0,58.456836360434025,59.33742106828894,59.853852391501391,59.752204331099563,59.675333627047891,59.638187817977595,11.71500143269772,11.684493697450192,11.668367503825523,11.637578302664092,11.567913409651583,11.474123969597184 +2003,10,1,9,0,68,202,8.5,232.60165011058197,58.942246482638865,63.254759136411785,117.96367843139122,0.0,68.749267711843473,241.40002176708481,1.0,68.749267711843473,143.34070568329932,1.5,14.4,3.1000000000000001,224.55775728865291,226.84550878915832,228.18001150359788,228.32252514930872,228.4550853810556,228.49302970590389,39.589725406770221,39.930715907812242,40.254536081893143,40.474451193286214,40.334619899161822,39.767623701824796 +2003,10,1,10,0,0,122,9.5,122.0,47.294412151506066,53.477807396141735,131.319996606601,0.0,38.198554302940366,120.56774757166943,1.0,38.198554302940366,74.502542517266477,1.5,15.6,2.1000000000000001,111.90330918639195,113.56398976487515,114.53775884857679,114.38859104841666,114.27812222147067,114.22230671238596,22.297251509440645,22.258004651635392,22.235217475058761,22.185595020814798,22.05670779796127,21.869781726050174 +2003,10,1,11,0,0,162,10.5,162.0,37.573642878035415,45.78654099339348,148.24515711216762,0.0,50.51199060351022,160.68129858710896,1.0,50.51199060351022,99.028711135158076,1.5,15.6,2.6000000000000001,149.33477368675318,151.49457088720899,152.76063954660142,152.5959635104727,152.47619432925151,152.41334605233089,29.465447996145997,29.439646716083473,29.427344888635705,29.374688995844949,29.205602086831398,28.943667893399521 +2003,10,1,12,0,0,128,11.5,128.0,31.671221491777047,41.44413509152984,169.0982020577256,0.0,40.115588186795954,126.51966215533538,1.0,40.115588186795954,78.231088296104886,1.5,16.0,1.5,117.38873767921082,119.13389402579958,120.15720591497025,120.02356292706912,119.92618613124689,119.87529388603039,23.422918809639796,23.384405342602651,23.359779735396955,23.309833635357176,23.177955127753883,22.981649524356506 +2003,10,1,13,0,48,303,12.5,338.92094171451458,31.816540446084645,41.55209373548638,191.776013887797,0.0,99.922514730901497,351.63745319683505,1.0,99.922514730901497,209.25395339218738,1.5,17.199999999999999,1.5,332.10422219074758,335.38366289641311,337.29590580420893,337.64070297125022,337.94484644838076,338.04627999245213,57.675584075934708,58.300961542840511,58.768150520646863,59.0130890213943,58.702938553735727,57.792618147487637 +2003,10,1,14,0,561,260,13.5,649.14523209398567,37.940345762912294,46.079187896318615,212.469416788423,0.0,171.03139060108427,725.8803547814648,1.0,171.03139060108427,404.96890244531113,1.5,18.300000000000001,1.5,704.81058287736778,706.70878350727605,707.76611440404008,709.74795398038975,711.38832249959728,712.03147173087859,96.238807507186934,99.69187374286696,102.33009206897053,103.86667151005078,103.19451145094907,100.16837289412629 +2003,10,1,15,0,290,256,14.5,426.88661921611924,47.78028591110474,53.89518873107315,229.20524557828168,0.0,117.42358103270126,466.31062314163074,1.0,117.42358103270126,266.03724084535503,1.5,17.800000000000001,5.2000000000000002,444.57929984679481,446.89367753821296,448.22289218723336,449.46634990648204,450.4994544941236,450.9011129088052,66.586466873235892,68.251246197330175,69.599194099157245,70.558278052971858,70.341214712274052,68.760948170483289 +2003,10,1,16,0,0,128,15.5,128.0,59.488964850733055,63.74873589158402,242.41561427362228,0.0,39.872146077517478,127.02351156068028,1.0,39.872146077517478,78.15271283215111,1.5,16.699999999999999,4.5999999999999996,117.88179698636431,119.57999349819484,120.57541423727046,120.41246100807219,120.29120848000427,120.23052977533544,23.238190372366414,23.210868735642858,23.206170062213328,23.1683665160304,23.036782409955933,22.832777232786764 +2003,10,1,17,0,0,76,16.5,76.0,72.10836565104047,74.75212036236914,253.27335317293677,0.0,23.689247080567789,75.257137498482138,1.0,23.689247080567789,46.352867232842044,1.5,15.6,3.6000000000000001,69.508029621098316,70.530334099246872,71.129719111951843,71.015699536968668,70.929762440298006,70.887930212411888,13.812891459365897,13.781894253951737,13.770677867977993,13.74340477649422,13.666888094184158,13.553232271797103 +2003,10,1,18,0,62,22,17.5,27.257775640828058,83.81297795755177,85.13531290882216,261.9399480388138,0.0,7.2050553669707602,29.748885711055159,1.0,7.2050553669707602,17.149472838038108,1.418298833962102,15.0,2.6000000000000001,22.032049716511438,22.288763749675958,22.43873056539362,22.579392217749799,22.69531343641323,22.74141838023526,4.2954255147861362,4.276995652571534,4.2332299320146323,4.2252955168221922,4.2240902017703243,4.1983039824090866 +2003,10,2,7,0,0,0,6.5,0.0,83.49361930810754,84.89288788032054,98.52793063993091,0.0,0.0,0.0,1.0,0.0,0.0,1.432180836971241,10.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,2,8,0,501,89,7.5,223.70568560679527,71.65635461602875,74.40274808783023,107.36809165748805,0.0,56.666083886721133,253.76503642098908,1.0,56.666083886721133,139.91554007317225,1.5,11.699999999999999,3.1000000000000001,215.22330111244435,216.07738724507021,216.5631215471725,217.37953423734155,218.05332311881318,218.31993516790263,31.669719437960396,32.104578967918606,32.784004072337503,33.645107548214426,34.127467280385332,33.593144755984653 +2003,10,2,9,0,639,117,8.5,402.36888921710408,59.1004767707339,63.475101069131426,118.33057657014933,0.0,101.4497659514152,458.18498163468348,1.0,101.4497659514152,251.98540854851512,1.5,13.9,3.6000000000000001,428.71521509325646,429.62491501551182,430.12373907462569,431.68583795084641,432.97104590674445,433.48224283572995,56.374494853926286,58.209974273489188,59.9985912906672,61.496535647994087,61.704968289471168,60.146189676312957 +2003,10,2,10,0,762,122,9.5,572.66847950412466,47.50203581095825,53.74155894224139,131.685463017009,0.0,141.44367375386219,653.37297572844363,1.0,141.44367375386219,357.34721281523827,1.5,15.6,5.2000000000000002,633.41172769288403,634.15668689351901,634.53975030649929,636.28822772782212,637.73165927818945,638.30090385699373,78.507693222089685,81.628096217889308,84.321937466998634,86.204226403464162,85.942280123854147,83.356706205420792 +2003,10,2,11,0,780,150,10.5,690.80023863235158,37.854286180530735,46.1054219113287,148.56975201926159,0.0,176.43838602579265,786.56517347318129,1.0,176.43838602579265,430.77169817632284,1.5,16.100000000000001,4.5999999999999996,770.13593015643562,770.95677214776231,771.36951745926956,773.3715496850017,775.02706482406495,775.67713322569944,98.158747278659135,102.32388122600744,105.62510270095157,107.67893915478089,107.06697598920618,103.57827432067802 +2003,10,2,12,0,722,190,11.5,728.10716096545502,32.033054398783314,41.81506010215526,169.3029574349527,0.0,193.26917920533791,826.42168353712555,1.0,193.26917920533791,454.35529736497415,1.5,17.199999999999999,4.5999999999999996,809.79413502831994,810.84512491765395,811.38755484557805,813.61525011133381,815.45720339434456,816.18067744461246,107.85115504226654,112.32842646787275,115.81640296447124,117.93143367752282,117.1439338495742,113.363326197707 +2003,10,2,13,0,605,239,12.5,688.97806626597753,32.211422333367686,41.94683464343486,191.79903475637687,0.0,185.29236080243555,775.12176244472766,1.0,185.29236080243555,429.69783054975932,1.5,16.699999999999999,4.0999999999999996,756.50934714081995,758.11630957042814,758.99381057546475,761.03868040022951,762.73216646331559,763.39490299102533,103.83054873500123,107.76196508494091,110.81215802099132,112.67254903445074,111.96004460027331,108.56669238237814 +2003,10,2,14,0,406,295,13.5,574.66206835193134,38.3057247529952,46.463002371803036,212.34043124850393,0.0,155.273291172852,633.40370200707252,1.0,155.273291172852,357.51872271602605,1.5,17.199999999999999,5.7000000000000002,611.61927451652355,614.13215614746923,615.56320770961088,616.9995001003274,618.19624662129354,618.65789346837801,87.71069707132061,90.290072050214675,92.304930389833629,93.579440740307177,93.123834725055914,90.74017676458331 +2003,10,2,15,0,95,265,14.5,320.50109290178858,48.101510807890314,54.25195096785234,228.99625378412617,0.0,93.572480304697805,335.3003034194407,1.0,93.572480304697805,197.66171481505009,1.5,17.199999999999999,5.7000000000000002,316.34087211802631,319.24402464058477,320.93474122887733,321.17636356234789,321.39497619279194,321.46277717588561,53.75010685061315,54.352200656575647,54.897554635287307,55.251987916000402,55.026585493873249,54.171280072401565 +2003,10,2,16,0,566,152,15.5,399.41661642609654,59.77540942093679,64.07897662204694,242.1749750829097,0.0,103.00474427754614,449.48549695972497,1.0,103.00474427754614,249.38868652337715,1.5,15.6,5.7000000000000002,419.26091547338149,420.59348294854522,421.3438292063986,422.64544672552574,423.72078908153151,424.14405078549993,57.493702778977308,59.027841065567017,60.63088389990903,62.008764421164123,62.249325091014974,60.833396705403523 +2003,10,2,17,0,513,69,16.5,201.23548987568742,72.37134889091261,75.06227724594771,253.02161637335274,0.0,50.070530905848351,231.66775701180563,1.0,50.070530905848351,126.57863220700305,1.5,13.9,7.7000000000000002,192.7786497156163,193.39793431777139,193.74663517000752,194.72870292621553,195.53543238552714,195.85844613751362,27.925170843813223,28.272587921947785,28.864708597490054,29.746980609034789,30.32012403350781,29.900124303287061 +2003,10,2,18,0,122,17,17.5,27.031903908087948,83.8944598066454,85.28331577950004,261.5666742591581,0.0,6.0393456819145905,31.554364850954915,1.0,6.0393456819145905,17.212809087030216,1.5,11.1,4.0999999999999996,19.89121623770194,20.061149631388922,20.159827849879708,20.369001680147441,20.540179205055516,20.609508294160406,3.6588472516623436,3.6682157145215135,3.6146976073840933,3.5918057741497318,3.5801597069494431,3.5428296305324447 +2003,10,3,7,0,0,0,6.5,0.0,83.50851893078527,84.98171078870043,98.94978713010742,0.0,0.0,0.0,1.0,0.0,0.0,1.5,3.8999999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,3,8,0,522,86,7.5,224.66483376130296,71.78562012149322,74.5949290205843,107.72501232952798,0.0,56.728571889649636,256.95398113971964,1.0,56.728571889649636,141.19916127404201,1.5,7.7999999999999998,3.1000000000000001,216.75088491652093,217.57897897921171,218.04945967498415,219.10930731847549,219.98098013437101,220.3290566049819,31.778452056946271,32.079106123438464,32.664314232197981,33.603720411460728,34.223868834110981,33.804928583011133 +2003,10,3,9,0,695,109,8.5,416.96890203886323,59.260786018781175,63.69683432286447,118.69440917156591,0.0,104.51620403821225,477.16255316378232,1.0,104.51620403821225,260.8422286336156,1.5,10.0,3.1000000000000001,446.67606140251905,447.50383692684738,447.95262456156354,449.46632654102956,450.71262271635169,451.20718428438187,57.833308505346359,59.544176766157314,61.414070042435448,63.114222340002136,63.558820056951554,62.00785785357494 +2003,10,3,10,0,749,126,9.5,566.1807062284671,47.71197162057836,54.0066608842546,132.04656060896343,0.0,140.10419544903161,646.89836874454818,1.0,140.10419544903161,353.42685909077824,1.5,11.699999999999999,0.0,626.62355877597986,627.40910159034206,627.8170898647254,629.5928207045074,631.05804022106679,631.63646479072941,77.65560764555515,80.603065930061163,83.257334844434126,85.23977461108575,85.181064279471812,82.686845566035046 +2003,10,3,11,0,822,130,10.5,696.60609499774682,38.136804555004844,46.42513284751094,148.88872570551615,0.0,177.8569659946757,794.29475121087989,1.0,177.8569659946757,433.91760336569632,1.5,13.300000000000001,2.1000000000000001,778.13831188688721,778.95208010647241,779.36017088616495,781.21115917518796,782.74445296935949,783.34360718816822,98.68925536805979,102.71338216393156,106.12156802869725,108.36132635578295,107.85528324192232,104.48841712229157 +2003,10,3,12,0,842,128,11.5,751.89728080950613,32.39516228424953,42.18583483565666,169.50255468125957,0.0,191.24244892689654,857.5749322560464,1.0,191.24244892689654,467.88595293081517,1.5,13.9,2.1000000000000001,843.44702026197274,844.16800114628631,844.51474870507843,846.34004053031879,847.85501133694299,848.44397638828264,106.20632666875251,110.77360225970098,114.43564047841737,116.64861811104781,115.89939950993784,112.05297187557369 +2003,10,3,13,0,845,123,12.5,747.58475986723499,32.605284134356204,42.34063812813344,191.81982564452022,0.0,189.9824497640991,853.07965125996498,1.0,189.9824497640991,465.14046298458294,1.5,15.0,4.0999999999999996,839.2161473958048,839.89786403857568,840.22174362701583,842.01346799648468,843.50094845064837,844.078821265599,105.47631377175554,110.03075224538891,113.68582005380121,115.88979205467248,115.13812413148381,111.30378186154599 +2003,10,3,14,0,811,128,13.5,682.69593543101792,38.67021200102961,46.84570443592437,212.21175293542825,0.0,174.33049683112498,778.72620272295239,1.0,174.33049683112498,425.3262185377053,1.5,15.0,4.0999999999999996,762.55334678212409,763.35626265980841,763.75941234249126,765.59950592750704,767.12330392158481,767.71924035470056,96.741087815957187,100.68588436236345,104.02381771579851,106.22197062657631,105.73166393879355,102.43348579227057 +2003,10,3,15,0,781,108,14.5,560.33371277127276,48.42202591573095,54.607639152231734,228.78827700708172,0.0,143.50310482874212,640.83405324068974,1.0,143.50310482874212,349.59936485539436,1.5,16.100000000000001,4.5999999999999996,620.37632180332014,621.12526293820395,621.50989388113544,623.20228366844867,624.60045076981544,625.15034614956301,79.397415955274525,82.3658282106326,85.130230649332631,87.180914922168682,87.191042630903581,84.66737730669432 +2003,10,3,16,0,682,93,15.5,387.59565769525193,60.0610136552496,64.40808783727462,241.93513489135668,0.0,93.313886504955036,445.28059431514902,1.0,93.313886504955036,242.43287699456508,1.5,16.100000000000001,5.2000000000000002,415.47924597854893,416.15617127519596,416.51993120358566,417.91258506462941,419.05852840409921,419.51392692737568,51.550411610467812,53.055432831961376,54.765898008993076,56.351822723408851,56.809370429478058,55.413544372391826 +2003,10,3,17,0,523,68,16.5,200.08747638806753,72.63316896746994,75.37110725872279,252.77023199420847,0.0,49.771759395822237,231.43677343672258,1.0,49.771759395822237,125.82779952620761,1.5,15.6,4.5999999999999996,191.76912117553951,192.38281938802828,192.72855550813807,193.69438276239555,194.48864701340366,194.80597893108575,27.84736574782027,28.018027973584548,28.504378204719547,29.372460361068359,30.012519575348445,29.718973856302036 +2003,10,3,18,0,154,14,17.5,26.26895620454458,83.97526044657268,85.4304859448558,261.19384136973224,0.0,4.9877963750951295,31.975710301278752,1.0,4.9877963750951295,16.903602608268653,1.5,12.800000000000001,2.6000000000000001,18.326004649827127,18.44722742007265,18.517360370387181,18.781687081983225,18.9971448456213,19.085178689395782,3.0196906622771782,3.0760269250717784,3.0545606069072853,3.0485639489589356,3.0383574691497537,2.9850691473009983 +2003,10,4,7,0,0,0,6.5,0.0,83.524210433981,85.07102443947123,99.37031125455212,0.0,0.0,0.0,1.0,0.0,0.0,1.5,8.9000000000000004,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,4,8,0,99,128,7.5,153.97632693514433,71.91651191779275,74.78824609722174,108.07964851369543,0.0,43.416169939405997,163.64027312754536,1.0,43.416169939405997,95.481481066323738,1.5,11.699999999999999,5.7000000000000002,144.44698543243186,145.84951726007239,146.6675278693578,146.96754004098432,147.22185807882343,147.3162252774529,24.987152389062519,25.002430994798072,25.129144962560073,25.386884482565108,25.529849608614743,25.315887218712909 +2003,10,4,9,0,106,207,8.5,253.60044680367568,59.42315974912339,63.91992444997597,119.05504705479132,0.0,73.279057326190085,266.1678914228288,1.0,73.279057326190085,156.27797641433062,1.5,15.6,6.2000000000000002,247.76496936863992,250.08298078850663,251.43366785741182,251.58201255707053,251.72013765346196,251.759419813102,42.012865363127965,42.323416932157642,42.73011897472724,43.081049077878454,43.048667656534739,42.464845718480483 +2003,10,4,10,0,12,225,9.5,232.00707742654296,47.924166169746535,54.27305032328945,132.40317544831413,0.0,71.087293058014041,233.50072278638839,1.0,71.087293058014041,141.9417345936605,1.5,18.899999999999999,8.8000000000000007,218.0828371708979,220.90610043441771,222.55892584365077,222.35548139995331,222.20940303900736,222.13057191079599,41.264421612047784,41.327899486618939,41.426045156651519,41.44597890277393,41.235365585332339,40.807714144703354 +2003,10,4,11,0,97,333,10.5,399.46819750537492,38.42109459083152,46.74558219265356,149.2020124522143,0.0,115.98739129408884,419.74399019086712,1.0,115.98739129408884,246.58605545905709,1.5,18.899999999999999,7.7000000000000002,398.20126083563798,401.6818661231116,403.70722904491447,404.08235109826205,404.41432959374504,404.52383492790472,66.540430862798814,67.359700911557496,68.096456047988255,68.586023636422681,68.318352012116591,67.217635464360981 +2003,10,4,12,0,319,348,11.5,582.97938967788684,32.757423429261024,42.556352987010385,169.69697291134435,0.0,158.86057491174788,640.64325943480935,1.0,158.86057491174788,363.03461804282216,1.5,19.399999999999999,7.7000000000000002,617.93137770983083,620.76911470593359,622.39244943559868,623.98031017499295,625.30097699646444,625.81285994327072,89.832343691008049,92.236322605704842,94.208845589026964,95.576804536268639,95.244923299667533,93.00085873645159 +2003,10,4,13,0,623,237,12.5,694.60549313746765,32.998010414329656,42.73339099122386,191.8383347609183,0.0,180.7059466483577,785.45799413763348,1.0,180.7059466483577,433.7982583653274,1.5,22.800000000000001,7.2000000000000002,766.34165874626069,767.87663081505002,768.71357645987314,770.98253810077085,772.85620521617579,773.59491194954705,100.90426894665747,104.64781790660479,107.75116266323344,109.88387920893631,109.49537177962456,106.33095024465808 +2003,10,4,14,0,602,240,13.5,648.81417779463368,39.03366940155475,47.22716767494427,212.0833049874724,0.0,170.28714141183491,730.54558989526549,1.0,170.28714141183491,404.64238519738603,1.5,22.199999999999999,8.1999999999999993,709.85736460144221,711.61280120364734,712.58589244923496,714.51966425302749,716.1203113042053,716.74749709396269,95.13673112086785,98.31208509185366,101.12125772196518,103.13865309698218,102.91948392226497,100.15057905600239 +2003,10,4,15,0,36,199,14.5,219.66824486814377,48.741686128705766,54.962117518285645,228.58126198492306,0.0,65.727240089363249,226.12076942207841,1.0,65.727240089363249,135.39859633177613,1.5,22.199999999999999,5.7000000000000002,211.78017486916741,214.11314124024329,215.47592150033825,215.62649503572879,215.76510580750733,215.80609253637022,37.964308529788497,38.204438345106652,38.439793084395383,38.613989617150473,38.497676116382344,38.015684238277913 +2003,10,4,16,0,134,198,15.5,255.1899683996061,60.345636847287665,64.73593146786983,241.69607055913767,0.0,72.394892528792283,272.21812912319706,1.0,72.394892528792283,158.30320622091915,1.5,21.699999999999999,6.7000000000000002,252.34065819353344,254.42218033489826,255.63236802648311,256.14203583843948,256.57215921986625,256.73304330856649,41.355792165789929,41.763262839560859,42.262139388014759,42.769737100190405,42.873854182233821,42.26468760473481 +2003,10,4,17,0,255,90,16.5,153.07758981650173,72.89368897385131,75.67847144311784,252.51919718758242,0.0,39.445401893969809,169.86304540129842,1.0,39.445401893969809,95.506150464586042,1.5,21.100000000000001,4.5999999999999996,144.65945323790996,145.62661736195167,146.18707476104908,146.67592761190895,147.08219421622044,147.24053812827788,22.523643268715549,22.501105035718023,22.663589204759447,23.062240936328831,23.367533908671426,23.221185384140103 +2003,10,4,18,0,54,13,17.5,17.164685658225469,84.05531054960555,85.57673887461875,260.82151357707994,0.0,4.1395555524943237,19.112466664654988,1.0,4.1395555524943237,10.80685393946696,1.5,18.899999999999999,3.1000000000000001,13.703596080786678,13.85775816750327,13.947880425658386,14.039020336007415,14.113911353357278,14.143893078864771,2.4373110407445151,2.4613728887578716,2.4625332263303519,2.4682044390292521,2.4641456171015848,2.4321712680322602 +2003,10,5,7,0,0,0,6.5,0.0,83.54070958429935,85.16081980508672,99.7893799871241,0.0,0.0,0.0,1.0,0.0,0.0,1.5,8.3000000000000007,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,5,8,0,511,86,7.5,218.40570309160495,72.04903686044625,74.98268350164095,108.43187245736758,0.0,53.732790944656685,250.79375880703759,1.0,53.732790944656685,136.57788052675372,1.5,12.199999999999999,3.1000000000000001,211.48135621816556,212.31143016883669,212.7847905341016,213.57297391691534,214.22536093913664,214.48213534973456,30.339466507948597,30.26748989758703,30.586739756404544,31.357738221992587,31.994079925395937,31.834086082587522 +2003,10,5,9,0,696,100,8.5,403.52949109879006,59.58758058754125,64.14433478639955,119.41236283305973,0.0,100.83586619872473,464.99894319046712,1.0,100.83586619872473,252.39181050203055,1.5,15.6,3.1000000000000001,434.83184104717679,435.57457262433269,435.97508762264783,437.42209898906606,438.61403273338993,439.08697455648462,55.620606017548141,56.953718367983306,58.716197371171653,60.518119970667861,61.257670970984343,59.938791049660111 +2003,10,5,10,0,786,110,9.5,565.97828246639335,48.13856284804684,54.540662141382995,132.75519671450837,0.0,145.00124290182771,649.4396418334868,1.0,145.00124290182771,353.11229355641478,1.5,17.199999999999999,3.1000000000000001,628.98583032068098,629.75348942275104,630.14883499838231,631.85581426684462,633.26585543464387,633.82021549716831,79.961081019128642,82.688976247208643,85.518016063714555,87.802505388097842,88.078786933643272,85.734842357849587 +2003,10,5,11,0,828,126,10.5,689.98955152302813,38.70705073594739,47.0666767275785,149.5095500842672,0.0,176.08528690136956,789.83450229136838,1.0,176.08528690136956,429.78052551238648,1.5,18.899999999999999,2.6000000000000001,773.65807097919003,774.44612803070254,774.84001515886894,776.6676242007328,778.18133522257585,778.77253573322037,97.269423553149167,100.9462259270028,104.40613454676725,106.9244539790909,106.88546119944949,103.74498081427889 +2003,10,5,12,0,848,125,11.5,745.92925129851631,33.11971567729489,42.92650740510887,169.88619344481125,0.0,189.69064915345621,853.80450219909233,1.0,189.69064915345621,464.16623058018109,1.5,19.399999999999999,2.1000000000000001,839.62999955450539,840.33769571005394,840.67759124871736,842.48640166076325,843.98737752386546,844.57082751516214,104.88173443680155,109.03880831499609,112.81044833146625,115.39553029745679,115.03719571143185,111.52326114082867 +2003,10,5,13,0,839,123,12.5,735.35616051990382,33.389485531361714,43.12497966779952,191.85451283851717,0.0,186.98542400667253,841.89453675432469,1.0,186.98542400667253,457.6244320879041,1.5,20.600000000000001,3.1000000000000001,827.82548905125316,828.51960576908425,828.8525746974957,830.64885357677122,832.1391571125522,832.71874245603306,103.38533189532033,107.48673636698483,111.20638612099673,113.75794910755319,113.40736571377776,109.94235560349294 +2003,10,5,14,0,823,122,13.5,676.87379057612566,39.39595948755867,47.60726580270704,211.95501314436675,0.0,172.68090137194298,775.33651145135877,1.0,172.68090137194298,421.63965318792549,1.5,20.0,2.6000000000000001,759.16642213871773,759.92717117392772,760.30624449124866,762.10880379835953,763.60155282863025,764.18478360307074,95.380159587190604,98.993449291475571,102.39272794383018,104.86816175761645,104.83209777654659,101.74832153060183 +2003,10,5,15,0,775,107,14.5,548.02201933540277,49.060346921655245,55.31525063210891,228.37515687901248,0.0,135.56264510075357,629.39635319314186,1.0,135.56264510075357,341.9910255367883,1.5,20.600000000000001,3.6000000000000001,608.54616494068023,609.29732570826013,609.68705325224266,611.37035534335359,612.75947875438737,613.30706710335289,74.734530428293709,77.203742334163948,79.843113248866928,82.038596818763111,82.419604227142869,80.262723745550929 +2003,10,5,16,0,571,136,15.5,376.75155379988337,60.629138715730704,65.06236979300095,241.45775977478178,0.0,96.802994430571289,428.19884330859065,1.0,96.802994430571289,235.261194561883,1.5,20.600000000000001,0.0,398.03167512284011,399.22179313685814,399.89095327643247,401.12414341915741,402.14324621482803,402.54472361236049,53.807525975642179,54.827895711618133,56.25347748353601,57.757625463107232,58.422483621679255,57.329150700531592 +2003,10,5,17,0,172,102,16.5,143.65649592472295,73.15277239331343,75.98423113994257,252.26850998034917,0.0,38.889827274979027,155.61141316138821,1.0,38.889827274979027,89.048886118746623,1.5,18.899999999999999,3.1000000000000001,134.72899201465094,135.8868857717751,136.56125497773354,136.82401233096064,137.04745070364589,137.12983756498386,22.398220247328847,22.301641565744724,22.359137972673825,22.599744788717864,22.790617298750856,22.669510758756793 +2003,10,5,18,0,79,11,17.5,16.893084504830245,84.13454064765122,85.72198984835033,260.4497558753237,0.0,3.321757746140523,20.005091433058269,1.0,3.321757746140523,10.804286553447499,1.5,16.699999999999999,2.6000000000000001,12.443603857921499,12.551494273953438,12.614380084478965,12.762171985075138,12.882673449643798,12.931822878757224,1.9440932969271267,1.9844114449415045,1.9989839567513588,2.0282183209075284,2.0427512666103111,2.0131348763051022 +2003,10,6,7,0,0,0,6.5,0.0,83.5580309401997,85.25108675712517,100.20686999142093,0.0,0.0,0.0,1.0,0.0,0.0,1.5,12.199999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,6,8,0,219,115,7.5,171.02309107988114,72.1831995233335,75.17822351984174,108.78155728059154,0.0,45.06156614549085,188.42654250658089,1.0,45.06156614549085,106.71601726157746,1.5,12.800000000000001,3.1000000000000001,162.74339938705924,163.95654292509889,164.66146699149408,165.21678330013594,165.67883335963575,165.8585314275582,25.904792057706224,25.804584693138157,25.893051471401915,26.266530021119319,26.593173136054101,26.466172351147748 +2003,10,6,9,0,534,153,8.5,383.98569001738258,59.75402824180376,64.37002643715304,119.76623096796904,0.0,96.556166042490105,435.1310413051541,1.0,96.556166042490105,239.86918606796414,1.5,14.4,2.1000000000000001,405.73445579017232,407.0832278879123,407.84712152860891,409.14156776000334,410.21054032573818,410.63251297649668,53.817363250565137,54.76106745727774,56.074969976554279,57.549126201192976,58.22164943791747,57.189990300306491 +2003,10,6,10,0,683,148,9.5,541.61141985458721,48.35510188830782,54.80942902286772,133.10251671335863,0.0,140.05402102109849,620.14780938730269,1.0,140.05402102109849,338.60876899631381,1.5,17.199999999999999,2.6000000000000001,598.56210648786532,599.57565206051845,600.11982396079463,602.00988061672979,603.56773677898332,604.18408641697079,77.456835263920354,79.837606758135095,82.383389953673714,84.63062669475957,85.105242717298466,82.983103972939531 +2003,10,6,11,0,774,148,10.5,672.01811697021765,38.994565391083334,47.38832166380357,149.8112799011463,0.0,171.80166481320504,770.49391747166351,1.0,171.80166481320504,419.14911363200616,1.5,19.399999999999999,0.0,753.72449811340311,754.5571243012547,754.97956719590184,756.96068667399834,758.59786755309494,759.24093293272824,94.833727573567785,98.264391983421618,101.62324991169243,104.21736951565853,104.39480028077648,101.48758411802014 +2003,10,6,12,0,818,139,11.5,734.35541805771686,33.48191646780831,43.29619012180658,170.07019974716394,0.0,187.4014812605547,840.71274362237693,1.0,187.4014812605547,457.27281810493906,1.5,21.699999999999999,3.1000000000000001,825.64104169510006,826.47848420396053,826.89693369672932,828.79176367442597,830.36207864150026,830.97440671186473,103.51091419230762,107.41800736252698,111.10091117908838,113.77301090371233,113.72106679354654,110.37830146025516 +2003,10,6,13,0,833,125,12.5,729.08380924222445,33.77959365653912,43.5152902458178,191.86831310575133,0.0,185.52668416956175,835.93944499369491,1.0,185.52668416956175,453.80646585263992,1.5,21.699999999999999,2.1000000000000001,821.64231729760581,822.35970942349161,822.70738229988126,824.51971256228956,826.02264354562078,826.60757254110058,102.36825253678963,106.28531591090371,109.98927861136802,112.66152260273743,112.59720788422585,109.25063100439272 +2003,10,6,14,0,799,130,13.5,664.78174372947865,39.7569454427458,47.98587267965431,211.82680577597745,0.0,170.04187536052828,762.03448532994423,1.0,170.04187536052828,414.3289063695986,1.5,21.100000000000001,0.0,745.2907913327914,746.1338756481598,746.56331290185426,748.41546591107976,749.94792060327109,750.54789760235519,93.86081185499701,97.232601806780337,100.54713957020078,103.08958541740169,103.24204703897523,100.37046588885084 +2003,10,6,15,0,645,168,14.5,531.78202900900396,49.377864400814985,55.666903427529554,228.1699113725094,0.0,134.34447175196476,606.54627880296266,1.0,134.34447175196476,332.64613236058545,1.5,22.199999999999999,2.1000000000000001,583.21885199479391,584.47064556461464,585.15946990123803,587.08993048116338,588.67995283285427,589.31044196586811,74.51215261922367,76.629610046759069,78.935627683933987,81.042603893236162,81.591588518455424,79.650995282613493 +2003,10,6,16,0,239,181,15.5,280.539405434429,60.911379478023356,65.38726549473692,241.22018116750368,0.0,75.394719572070414,307.75115463125104,1.0,75.394719572070414,174.99890244979414,1.5,21.699999999999999,2.1000000000000001,284.65856654752952,286.44431363368932,287.47737564920095,288.36284805226234,289.09755999704805,289.38457008842948,42.725542233158876,43.177648300734845,43.823500259532139,44.630985340284688,45.010211936154271,44.38290715297569 +2003,10,6,17,0,50,90,16.5,101.85187078359333,73.41028318171475,76.28824805384436,252.0181693808718,0.0,29.505012529563587,105.64708065381009,1.0,29.505012529563587,62.658397321117327,1.5,20.0,2.6000000000000001,94.299818458116619,95.408317884029429,96.056916814166925,96.08494012860595,96.115830499602367,96.120776428391935,17.159112085460709,17.074835131843212,17.057959634085027,17.105962094550915,17.122060654465166,17.019902238694517 +2003,10,6,18,0,65,12,17.5,16.685631867074797,84.2128811837198,85.86615400357371,260.0786341086929,0.0,3.3014304711882096,19.485680013315868,1.0,3.3014304711882096,10.703474168844716,1.5,17.800000000000001,2.6000000000000001,12.511243002919162,12.629831257258363,12.699131864605516,12.856794224374546,12.985304727832204,13.037764301626503,1.9321139763700521,1.960186888302853,1.9694533077785863,2.0051034393308385,2.0343445328713368,2.0106637978111506 +2003,10,7,7,0,0,0,6.5,0.0,83.57618779960985,85.34181402567214,100.6226576269704,0.0,0.0,0.0,1.0,0.0,0.0,1.5,12.199999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,7,8,0,406,102,7.5,204.51263275425615,72.31900214195846,75.37484649671707,109.12857702984861,0.0,50.64083856018587,233.21942976095562,1.0,50.64083856018587,128.03233339051977,1.5,15.5,2.6000000000000001,197.4704975993622,198.48740869745865,199.07392425882364,199.87029910679405,200.52987868798806,200.78956102773111,29.082047150191883,28.787770273310556,28.823890810709088,29.354367101522801,29.913580369774024,29.873047586170685 +2003,10,7,9,0,553,140,8.5,377.22764840046324,59.92247948430891,64.59695826459173,120.11652782244443,0.0,94.229965362753816,429.87519825804941,1.0,94.229965362753816,235.62184456917061,1.5,17.199999999999999,3.6000000000000001,400.77218314036577,401.99387139321965,402.68315001890846,403.94187449096404,404.98146015132056,405.39189039412906,52.429231385094738,53.279720713096445,54.555803301849593,56.061015325024698,56.81646514027338,55.849101652521739 +2003,10,7,10,0,695,143,9.5,540.84747371361345,48.57372041333517,55.079281477943184,133.4450308871979,0.0,135.01482796801741,621.01673937951148,1.0,135.01482796801741,338.06399157547764,1.5,20.0,3.6000000000000001,599.45748451649399,600.42791612839324,600.94880839147538,602.81234325380706,604.34771345804211,604.95581761134531,74.538843076057788,76.611163225909593,79.069191278882172,81.369386913924572,82.068355220276956,80.111242298483759 +2003,10,7,11,0,719,188,10.5,671.79926890033016,39.283529003052024,47.71042068486888,150.10714660851457,0.0,173.49008661690431,767.64233257156241,1.0,173.49008661690431,419.44428420933536,1.5,21.699999999999999,1.5,748.51936079518816,749.72731164014692,750.37293135632922,752.51912441741592,754.29086896774743,754.98886008579109,95.952721328753711,99.094963549029998,102.32760556635513,104.96988485114008,105.30752681100846,102.58919806152916 +2003,10,7,12,0,355,338,11.5,594.80186091326618,33.84390286936425,43.66529238157998,170.2489773747385,0.0,161.57624869833046,657.2427457875001,1.0,161.57624869833046,370.21896641268313,1.5,21.699999999999999,0.0,634.61096621190052,637.39708460900351,638.98876559334656,640.54254622414021,641.8357639995296,642.33556722505864,90.912747475504531,93.11189691331748,95.227163191981745,96.902997324326606,96.947975908427352,94.840716187690731 +2003,10,7,13,0,30,275,12.5,296.61500534059985,34.16821879537947,43.904208486749006,191.87969125983713,0.0,88.260032039817091,306.80673369198621,1.0,88.260032039817091,183.08413607328399,1.5,22.199999999999999,0.0,288.80723920271043,291.85176442448051,293.62912379471749,293.91957986831216,294.17699958342001,294.26172269517048,50.916022888468,51.293606977949565,51.65563648503894,51.935807396433162,51.800513450910195,51.125728753128335 +2003,10,7,14,0,48,264,13.5,295.89171728889693,40.11649111483486,48.36286233308036,211.69861390861547,0.0,86.746043093839916,307.37003564348788,1.0,86.746043093839916,182.55530300058737,1.5,22.199999999999999,1.5,289.66678232764804,292.60430483074231,294.318554758951,294.57597862517076,294.80613788270296,294.88000172688248,49.95515131828482,50.313945752372469,50.704828099922658,51.022666141413858,50.922962319103227,50.261027057778932 +2003,10,7,15,0,485,249,14.5,520.08965817730109,49.69409535382078,56.01694124244734,227.96547676408238,0.0,136.10293474660014,582.70104427801698,1.0,136.10293474660014,324.46954441663195,1.5,22.800000000000001,1.5,557.17928737915156,559.28392034639,560.48055475759975,562.09464070945421,563.43054180469608,563.95414289647772,76.165620815414869,77.779501413849246,79.674253012998975,81.47563705402905,81.979212563690723,80.307372293529795 +2003,10,7,16,0,0,64,15.5,64.0,61.1922199236795,65.71048171289742,240.98331441617475,0.0,20.128258562554748,62.962931329364189,1.0,20.128258562554748,39.012407031610635,1.5,22.199999999999999,4.5999999999999996,58.410316336784632,59.300804147293711,59.823111526704956,59.720505914945953,59.642889486951802,59.605408559088758,11.757103629742724,11.724267584727871,11.704591612276495,11.670274926814558,11.598663163102339,11.50605717939548 +2003,10,7,17,0,28,85,16.5,91.493512385157572,73.66608585046622,76.59038431982701,251.76817548341916,0.0,26.995035505014648,94.076966574018428,1.0,26.995035505014648,56.278674620574407,1.5,21.100000000000001,2.6000000000000001,84.460756073823958,85.516421472618291,86.134524531380109,86.159214069167206,86.186713497103355,86.190883005858296,15.744377242715972,15.666385542405946,15.634260112214346,15.654718052476266,15.648967579892799,15.553706782576908 +2003,10,7,18,0,49,10,17.5,13.410264130420604,84.29026256615606,86.00914638691525,259.7082150330472,0.0,2.5774779484211079,15.62395676922468,1.0,2.5774779484211079,8.6271361465154861,1.5,18.899999999999999,2.1000000000000001,10.087617061999023,10.185744045828741,10.24316895663385,10.378716374210921,10.489170594874937,10.534310630907427,1.5189175979482714,1.5336793613963178,1.5345711871209284,1.5615070426556794,1.5891885666705285,1.5778188321320237 +2003,10,8,7,0,0,0,6.5,0.0,83.59519214798246,85.43298915904883,101.03661895651695,0.0,0.0,0.0,1.0,0.0,0.0,1.5,12.800000000000001,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,8,8,0,467,89,7.5,205.35502285207599,72.45644455948982,75.57253079495862,109.4728067319435,0.0,48.329057791804033,237.44573840195324,1.0,48.329057791804033,128.50383545539654,1.5,16.699999999999999,0.0,199.58327681287895,200.4555698185122,200.95724108415868,201.73222320329228,202.37439096520444,202.62694042999601,27.863104040449731,27.452273986241739,27.394995012161981,27.871574848209086,28.439007827582113,28.45821664256901 +2003,10,8,9,0,597,124,8.5,377.95369485912119,60.092908138813094,64.82508687939908,120.46313171235097,0.0,93.214272179135804,435.30581085811571,1.0,93.214272179135804,236.91038889169093,1.5,20.600000000000001,0.0,405.1038211487147,406.13052089023932,406.70435634735702,408.25291575290055,409.52762693745615,410.03528070501307,51.787253431634937,52.516541739741655,53.72695335874689,55.379588091936554,56.373055296282793,55.495263355942086 +2003,10,8,10,0,707,139,9.5,540.97172746252136,48.79435248615035,55.3501478683878,133.78263782254527,0.0,134.86930006260269,622.8250547799646,1.0,134.86930006260269,338.07332489221312,1.5,22.800000000000001,0.0,601.22146229474276,602.15907045165125,602.66098051600443,604.49924139356767,606.01438155013432,606.61419946624596,74.364893627756516,76.314808765223873,78.737621481438111,81.098848095924623,81.946785061847777,80.086802014046825 +2003,10,8,11,0,780,138,10.5,659.58918552641444,39.5738301569884,48.03287598837404,150.3970982507491,0.0,163.2611954895313,757.64108328953409,1.0,163.2611954895313,411.2381366397679,1.5,24.399999999999999,0.0,740.54091938593115,741.46377875937139,741.94399952863546,743.83789996368762,745.40292391878938,746.01761425437928,89.998831177892725,92.946659249289013,96.115661798565199,98.730175850575733,99.160011635059774,96.567653159847893 +2003,10,8,12,0,686,205,11.5,698.18669200313798,34.20555161240971,44.033704671832645,170.42251392349007,0.0,180.31162985622987,797.82653473289645,1.0,180.31162985622987,435.94591327978549,1.5,24.399999999999999,2.6000000000000001,779.80246006811456,781.05938090067184,781.7312649352566,783.97112914723255,785.82005811615738,786.54861052364731,99.728445779797198,102.99477896878848,106.35375352035059,109.10094113479518,109.4537163133861,106.62895002443267 +2003,10,8,13,0,461,287,12.5,616.98143836295162,34.5552448104604,44.29161984748819,191.88860544209743,0.0,163.84031443181985,693.67237643037606,1.0,163.84031443181985,385.30533183798309,1.5,25.0,2.1000000000000001,672.79182070052946,674.87180141580791,676.04153389164708,678.07736369385873,679.75976862468622,680.42146510735756,91.473486070144219,94.00296666678905,96.561811094876418,98.706308203208124,98.979925674723162,96.692012324339572 +2003,10,8,14,0,286,303,13.5,491.61752504835306,40.47446102997881,48.73810897868228,211.5703712492048,0.0,131.98673440357257,541.53699500799564,1.0,131.98673440357257,306.3354531028142,1.5,25.0,4.0999999999999996,519.64043907422501,522.2529300399367,523.75403632698021,525.17043353400186,526.34656047170199,526.80401652953287,74.420479456540392,75.850620051474422,77.397930299522812,78.828571194761309,79.125715286389692,77.609165173532134 +2003,10,8,15,0,225,262,14.5,386.62680440803882,50.00889729923321,56.36522985588903,227.76180605730897,0.0,104.88884650413786,419.104338167994,1.0,104.88884650413786,239.67136555445691,1.5,24.399999999999999,4.5999999999999996,397.60783110408374,400.231060538002,401.75050354832314,402.44587039537782,403.03341314977695,403.25226275280113,59.512633449756109,60.216732864780568,61.136060983694229,62.041633817368002,62.282441370157123,61.318824490568652 +2003,10,8,16,0,76,181,15.5,211.87334623475664,61.47152148727057,66.03188210049863,240.7471403549312,0.0,60.711622663927621,221.81334425297987,1.0,60.711622663927621,130.52653639021821,1.5,23.899999999999999,3.1000000000000001,205.44896817008978,207.52214853995073,208.73257258165685,208.84792785917745,208.95704579902025,208.98694388700343,34.946996080967331,34.996358409658207,35.177514465612084,35.440883278990036,35.508330765985214,35.162296517236619 +2003,10,8,17,0,99,96,16.5,118.45446244297631,73.920045550043,76.890502570958,251.51852957019298,0.0,32.715572542959514,127.2399853299716,1.0,32.715572542959514,73.498108366174861,1.5,22.800000000000001,2.6000000000000001,110.58598584867491,111.67985429590264,112.31871367522322,112.56546472750587,112.77463411453788,112.85233253421937,19.134347989453172,18.951782430369224,18.862280912158358,18.937412757695906,19.030735016353756,18.969611334391853 +2003,10,8,18,0,24,7,17.5,8.6111022849352867,84.36661522625036,86.15088200890389,259.3385663762315,0.0,1.9775634872044165,9.56611954589272,1.0,1.9775634872044165,5.4389980397068713,1.5,20.600000000000001,2.1000000000000001,7.0221358480601701,7.1062230181311046,7.155515225714014,7.2076774109595201,7.2504541325613383,7.2676706872179082,1.1654247978793038,1.1690995673964295,1.1667590218118555,1.1742057342601446,1.1809556977569606,1.1723892930178283 +2003,10,9,7,0,0,0,6.5,0.0,83.61505460685517,85.52459848394486,101.44862975455925,0.0,0.0,0.0,1.0,0.0,0.0,1.5,16.699999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,9,8,0,0,58,7.5,58.0,72.595524175646,75.77125275611775,109.8141224479824,0.0,18.178763502861294,57.185457321977438,1.0,18.178763502861294,35.353061694849465,1.5,17.199999999999999,2.6000000000000001,52.9827342678525,53.782110114352037,54.250938678906884,54.157001097739517,54.085881045613448,54.051600720038408,10.616956027113577,10.584897785903912,10.566610052064913,10.536513338123877,10.47342111825521,10.390939160924821 +2003,10,9,9,0,380,184,8.5,344.2680769385405,60.26528507123282,65.054366634306,120.80592295673017,0.0,88.097186938917929,384.01315206494723,1.0,88.097186938917929,214.24380462294872,1.5,20.600000000000001,3.1000000000000001,357.11644748558416,358.92677815723283,359.96960163229022,360.86332983899041,361.60828983969316,361.89614498560138,49.685784571098559,50.033762777592081,50.766835679524569,51.848690434001348,52.479049745329036,51.8464084527658 +2003,10,9,10,0,476,215,9.5,483.77377951085839,49.01692916355583,55.62195443535412,134.1152392553983,0.0,125.51081183390612,546.514737239238,1.0,125.51081183390612,302.29468152529483,1.5,22.800000000000001,3.6000000000000001,523.54433926825095,525.29853840354451,526.29156296888334,527.95526887531707,529.3292090088064,529.87125048172254,70.013477858387503,71.378359786793695,73.156905677702952,75.010023975491464,75.747914348269404,74.297322681877731 +2003,10,9,11,0,224,319,10.5,467.84926644983335,39.865355667467774,48.35558832871008,150.6810861445213,0.0,128.59615959962099,507.60300361863494,1.0,128.59615959962099,290.13575362891629,1.5,23.899999999999999,4.5999999999999996,485.67556007089468,488.72048333551425,490.48086524648591,491.35770250814903,492.09720816113645,492.37369042518765,72.89236923719227,74.007239255584494,75.255240658873035,76.36244761045738,76.495869529608143,75.158905774547321 +2003,10,9,12,0,391,316,11.5,595.35253059910724,34.566739121816234,44.40131675387703,170.59079898153192,0.0,157.01345243393914,661.31333487713846,1.0,157.01345243393914,370.44113775170973,1.5,24.399999999999999,4.0999999999999996,639.39399611131,642.03027936766159,643.53478319051703,645.04331713888018,646.29865679407624,646.78384370157005,88.118491589047579,90.120065713151618,92.24393268223082,94.030360320529994,94.255527875116428,92.2738280854268 +2003,10,9,13,0,563,270,12.5,670.3362114071208,34.940555445271194,44.67740950355314,191.89501621529303,0.0,176.53615902313234,758.12840604553105,1.0,176.53615902313234,418.12664677563941,1.5,25.0,4.5999999999999996,737.40865343347571,739.35129158168468,740.43376486564352,742.45843434118569,744.13379586224255,744.79022423276797,98.187535340199318,100.85050197388045,103.71515062849986,106.2247522059309,106.69324819010943,104.20794646617347 +2003,10,9,14,0,107,312,13.5,382.04105103075034,40.83072040839095,49.11148704345486,211.44201420752938,0.0,109.41043851429808,403.39465583146614,1.0,109.41043851429808,235.74978584293902,1.5,23.899999999999999,4.0999999999999996,382.6686546132247,385.97716806457174,387.90295442235583,388.23371926222967,388.52812048325984,388.62354594946112,62.601519754044929,63.139219577112875,63.825374888429657,64.43176073229111,64.425904208191369,63.51354040868236 +2003,10,9,15,0,30,247,14.5,263.46559217179663,50.32212853571882,56.71163552586351,227.5588540459299,0.0,79.367975177749102,268.24168882803383,1.0,79.367975177749102,161.27715067386066,1.5,23.899999999999999,4.5999999999999996,251.15489909083732,254.16809399547242,255.93080195941764,255.72449622922051,255.57807610290331,255.49717808634006,45.905417761744182,45.955158072829711,46.122410843557269,46.242461955888338,46.106040977776573,45.636455246768179 +2003,10,9,16,0,29,157,15.5,168.63269111646605,61.74914632117787,66.35133087987126,240.51164107541936,0.0,49.735857540111098,173.79936390621904,1.0,49.735857540111098,103.85716883689209,1.5,23.300000000000001,4.0999999999999996,160.70744340378738,162.56646170775088,163.65377922214208,163.74202744944077,163.82667071557213,163.84894651255536,28.795308196071741,28.786364746979082,28.857234326015568,28.993871570336726,29.004122379419176,28.759417741733621 +2003,10,9,17,0,274,88,16.5,148.75807429259663,74.17202815415907,77.18846600739059,251.26923421085436,0.0,36.819608627000321,168.16381596848956,1.0,36.819608627000321,92.763151196433881,1.5,21.699999999999999,3.1000000000000001,140.84587193647951,141.7956177698799,142.34747058438393,142.80604584464922,143.18817245357263,143.33620458488315,21.67788922369898,21.299386652757143,21.075133852802942,21.16714166254415,21.36808565308413,21.386600424114555 +2003,10,9,18,0,61,7,17.5,10.945739514874019,84.44186967990294,86.29127590313001,258.96975689712656,0.0,1.3362044209566839,13.649136918694985,1.0,1.3362044209566839,7.1502401037407255,1.5,20.0,2.1000000000000001,7.66369007410949,7.7192519555852845,7.7518082027438577,7.9001330754495847,8.0205964531492846,8.0702009230664729,0.80658096682097158,0.82496167859700475,0.82363735378672287,0.84747699060527515,0.87478946528689971,0.8684478573528106 +2003,10,10,7,0,0,0,6.5,0.0,83.63578438292684,85.61662706593475,101.85856551712737,0.0,0.0,0.0,1.0,0.0,0.0,1.5,15.0,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,10,8,0,20,103,7.5,107.84826402413576,72.73623589848245,75.97098666385472,110.15240132740679,0.0,32.181899894975388,109.59436000005543,1.0,32.181899894975388,65.876840571362308,1.5,16.100000000000001,5.2000000000000002,99.709238430599072,101.01462343521476,101.7793719032239,101.64763315824493,101.54985527521512,101.50070207320304,18.799180559056609,18.685059112164357,18.628766061420276,18.593445578824301,18.526087881170412,18.40830541396198 +2003,10,10,9,0,0,152,8.5,152.0,60.43957818449852,65.28474962053077,121.1447839266389,0.0,46.709750490165277,152.00821410985188,1.0,46.709750490165277,92.858626415609635,1.5,17.199999999999999,4.5999999999999996,141.08387377880223,143.03709281821722,144.18171592868805,144.00445287318871,143.87349734663945,143.80699057710513,27.189828963086924,27.130626260854115,27.124600842474649,27.109558003757854,26.994554405500388,26.77434040545883 +2003,10,10,10,0,6,197,9.5,200.36430001326434,49.24137855283943,55.89462532918455,134.44274007428496,0.0,61.372501437988745,200.99305174647864,1.0,61.372501437988745,122.514865554054,1.5,18.300000000000001,4.0999999999999996,187.37679406226206,189.89359666101896,191.3679569588173,191.17112221533208,191.0280401968962,190.95283983887592,35.67214646344155,35.646066584919765,35.68164235591788,35.687336643836709,35.536851114264024,35.214620371787966 +2003,10,10,11,0,0,212,10.5,212.0,40.15799066843247,48.67845706046651,150.95906481359958,0.0,65.462955455460971,211.81322380325591,1.0,65.462955455460971,129.66792083948502,1.5,18.899999999999999,6.2000000000000002,197.35441341665617,200.07773038997169,201.67339813144253,201.48075046562346,201.34218105921033,201.2677386443234,38.097074074965448,38.076477039755567,38.101962574575666,38.086698702659618,37.905539904085941,37.558254403622946 +2003,10,10,12,0,0,170,11.5,170.0,34.92734154929216,44.7680176946293,170.75382408531954,0.0,52.883413896945875,168.8837454029352,1.0,52.883413896945875,103.93630661962753,1.5,19.399999999999999,4.0999999999999996,157.01849824552511,159.27506933434353,160.59783672238376,160.43081853144253,160.30976984747099,160.24577729769976,30.829125711949402,30.791653906719539,30.783103109588112,30.743787798002128,30.585521208122614,30.318857809662536 +2003,10,10,13,0,0,113,12.5,113.0,35.324034349298465,45.06146237359256,191.89888654291656,0.0,35.441761114058146,111.54208738137089,1.0,35.441761114058146,69.032269055638992,1.5,20.0,5.7000000000000002,103.44230221647611,104.99641055306869,105.90782428535768,105.7793415163728,105.68490127100749,105.63643522842283,20.697674143748042,20.652643468685241,20.625207187031737,20.579192818851261,20.46538117309122,20.298450669270185 +2003,10,10,14,0,0,133,13.5,133.0,41.18513518125082,49.48287118997662,211.3134819167546,0.0,41.572137794567745,131.62177165224739,1.0,41.572137794567745,81.250929642498235,1.5,20.0,5.7000000000000002,122.2042403429745,124.00678739691377,125.06370478550512,124.91174866828462,124.79992196631311,124.74266524501218,24.257543727409434,24.211032741690737,24.189011711068151,24.144030303830018,24.01444384673724,23.81418453549086 +2003,10,10,15,0,0,134,14.5,134.0,50.633648191019745,57.05602502809608,227.35657739512328,0.0,41.789106842670584,132.84524678725174,1.0,41.789106842670584,81.835133787328743,1.5,20.600000000000001,6.2000000000000002,123.39296662532172,125.19120320061823,126.24547449298028,126.08231015456003,125.9614495216364,125.9004092022841,24.368091775133859,24.320687188743918,24.303520750830117,24.264089298029415,24.137588460614047,23.935770455367489 +2003,10,10,16,0,0,69,15.5,69.0,62.02495736818119,66.66869289952065,240.27680002567232,0.0,21.700778762754343,67.889162118182327,1.0,21.700778762754343,42.067503106113001,1.5,20.0,5.7000000000000002,62.973622300595906,63.933679471301005,64.496792114728748,64.388730998152525,64.307124105661472,64.267574780018776,12.676059745554696,12.640997296487919,12.619784669390599,12.58321950454248,12.506545722553593,12.406706993563299 +2003,10,10,17,0,0,31,16.5,31.0,74.4219003447066,77.48413846682833,251.02029335942711,0.0,9.7496252412374567,30.469166789906204,1.0,9.7496252412374567,18.868131597149947,1.5,18.899999999999999,4.5999999999999996,28.292496975630058,28.723827008845394,28.976819645747717,28.917055792318326,28.871311167343066,28.849776905304779,5.6931475457296905,5.6759104949793331,5.6663778599028571,5.648055730873593,5.611275202193168,5.5664109358280438 +2003,10,10,18,0,0,3,17.5,3.0,84.5159565941119,86.43024319055809,258.6018564432749,0.022737158340222555,0.94351212011975361,2.9440952574084713,1.0,0.94351212011975361,1.8214144345248393,1.5,17.800000000000001,4.0999999999999996,2.737983578286781,2.7797251944043939,2.8042083528142956,2.796823901781949,2.7911007708155133,2.7884792661912723,0.5506794308065901,0.54879944254183821,0.54787659767698993,0.5458330836302302,0.54194066622809189,0.537597651873298 +2003,10,11,7,0,0,0,6.5,0.0,83.65738921770401,85.70905867042981,102.26630147295592,0.0,0.0,0.0,1.0,0.0,0.0,1.5,16.100000000000001,5.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,11,8,0,0,59,7.5,59.0,72.8785720991396,76.17170470941298,110.48752166204714,0.0,18.456925131077018,58.24126056377186,1.0,18.456925131077018,35.964861394501263,1.5,16.100000000000001,5.7000000000000002,53.922303443095323,54.732115838348477,55.207052158178982,55.112180714918651,55.040380696402721,55.005744212725325,10.781740856069224,10.747406728844398,10.727355148051316,10.695977078045409,10.631957069151273,10.548931317222246 +2003,10,11,9,0,0,118,8.5,118.0,60.61575241742861,65.516185666925,121.47959909257571,0.0,36.639240193281765,117.1881097806353,1.0,36.639240193281765,72.031456461800431,1.5,16.100000000000001,6.2000000000000002,108.72492158772781,110.29701885606656,111.21868139735307,111.06318800295119,110.94719321456489,110.88948479883615,21.363181524107858,21.309162487712797,21.289287119326353,21.255075050673486,21.149040763343152,20.979116768726929 +2003,10,11,10,0,6,191,9.5,194.34055063917774,49.46762587143803,56.16808264119202,134.7650483212006,0.0,59.58347930978195,194.87176242750144,1.0,59.58347930978195,118.81951107732024,1.5,16.699999999999999,5.2000000000000002,181.63228983200773,184.08268367802967,185.51822059199841,185.32334776738819,185.1814054902658,185.10713048780852,34.638678800613327,34.604637527424167,34.632566682798803,34.635791205702802,34.492362784509346,34.184608273491165 +2003,10,11,11,0,0,106,10.5,106.0,40.45161870188219,49.00138018250555,151.2309919250168,0.0,33.266404343857253,104.54793881198424,1.0,33.266404343857253,64.732461455352478,1.5,17.199999999999999,5.7000000000000002,96.944171198927123,98.407324319950419,99.26544166298828,99.136816909107225,99.04168244396952,98.993493411462723,19.429793637826357,19.383973933369482,19.355806553133398,19.309734954903927,19.201422267656142,19.046354622416576 +2003,10,11,12,0,0,164,11.5,164.0,35.28723480576532,45.13369589904988,170.91158267937737,0.0,51.058387015908075,162.83409349690334,1.0,51.058387015908075,100.257718217442,1.5,17.800000000000001,6.7000000000000002,151.35829686218773,153.54296689409816,154.82364852765605,154.65917618419073,154.53971132164057,154.47684382991309,29.769336720844958,29.72771239009403,29.716221777133629,29.676486853546649,29.52437850271517,29.269705574927681 +2003,10,11,13,0,0,190,12.5,190.0,35.705565104358065,45.44366314522777,191.90018177041344,0.0,58.924918279604697,189.21946546564587,1.0,58.924918279604697,116.19165269107023,1.5,18.300000000000001,5.2000000000000002,176.09229708434003,178.58070215542961,180.03910914871597,179.86099550639216,179.73253039755193,179.66392274606,34.32662197562437,34.292971468216393,34.296719476083702,34.266626316535188,34.097775366253522,33.795087168525676 +2003,10,11,14,0,0,156,13.5,156.0,41.53757200895468,49.852136342129,211.18471625238976,0.0,48.580341547952152,154.85226327459768,1.0,48.580341547952152,95.33264086922452,1.5,18.300000000000001,4.5999999999999996,143.92909124874197,146.009545840621,147.22916751379711,147.0606221163122,146.93720649776728,146.87334566016312,28.322823622636008,28.276940297039193,28.263881756414911,28.224798494997597,28.081183376972405,27.841897333670207 +2003,10,11,15,0,0,89,14.5,89.0,50.94331627083222,57.39826569571341,227.15493471894538,0.0,27.988492897357762,87.620281725770752,1.0,27.988492897357762,54.308904405997971,1.5,18.300000000000001,4.5999999999999996,81.233373290487378,82.471317465398499,83.197419526469119,83.07494371873598,82.983371680338053,82.938036568560236,16.351471254358046,16.308551742587646,16.281323333183707,16.237150729740012,16.141854158888101,16.013053937620622 +2003,10,11,16,0,0,84,15.5,84.0,62.298818433952086,66.98383369179288,240.0426021056108,0.0,26.322763393637764,82.857379150381249,1.0,26.322763393637764,51.234916201001404,1.5,17.800000000000001,3.1000000000000001,76.845813911016421,78.001802859116751,78.67976249194848,78.555637829638613,78.462275909003154,78.416638890875916,15.370111492917497,15.327957369499307,15.304435684455518,15.265095764340522,15.176857268477185,15.056139699984911 +2003,10,11,17,0,38,77,16.5,85.045002066403015,74.66952969757483,77.77738449656968,250.77171244846434,0.0,24.461900380651482,88.332551461319468,1.0,24.461900380651482,52.304928687860652,1.2691276732146295,17.800000000000001,3.6000000000000001,78.656427595529934,79.618246641452345,80.181425847227032,80.201382179727787,80.224269336603555,80.227213624585119,14.37860116169502,14.281146382222802,14.200011704012404,14.161582307804585,14.112433351264567,14.032073711506136 +2003,10,11,18,0,3,3,17.5,3.1796073839954433,84.5888068592012,86.56769914994634,258.23493600689176,0.04770902634461295,0.94584701611169431,3.2435489729489722,1.0,0.94584701611169431,1.9476245595134616,1.5,17.199999999999999,4.0999999999999996,2.8240309583162282,2.9002812430976821,2.9247634402681255,2.9229215814249372,2.9216869947577013,2.9209262645794318,0.55297815731755351,0.55183032711229307,0.55090488857251707,0.54979309621850092,0.54704185667477145,0.54268331400692538 +2003,10,12,7,0,154,6,6.5,17.273654306579637,83.679875337731,85.8018757240501,102.67171259607103,0.002499170007027897,1.5132718949215314,23.931378014564828,1.0,1.5132718949215314,11.13974223120934,1.5,14.4,2.6000000000000001,12.875635905660262,13.071728141285879,13.106639302162534,13.288953794003449,13.436987044797874,13.497978150301059,0.91578777921577537,0.9385263757977671,0.9369829742242638,0.96632263417409237,1.0000462811833839,0.99257888622725921 +2003,10,12,8,0,445,88,7.5,192.83920487691086,73.02252256959842,76.37337695934598,110.81936294016438,0.0,44.550950097067201,225.96499399780674,1.0,44.550950097067201,120.70591469921426,1.5,16.699999999999999,2.6000000000000001,188.66784005898401,189.54165143576486,190.04582250620032,190.78842763790402,191.40289013236924,191.6448716976804,26.552838206803383,25.90599116802381,25.441175481240823,25.460334272689682,25.718224124114887,25.822829625322385 +2003,10,12,9,0,604,117,8.5,365.08742841008029,60.793769747590446,65.74862234181542,121.81025507048354,0.0,86.992006447406965,425.47787271285102,1.0,86.992006447406965,228.84893543576396,1.5,20.0,4.0999999999999996,394.73909917866558,395.70903882958532,396.25261169783869,397.74813271786286,398.98146522672778,399.47108960683499,48.761971221317054,48.742667407694228,49.44187903487741,50.925339985839095,52.133427892007283,51.799816015003145 +2003,10,12,10,0,683,152,9.5,529.54686393285988,49.69559350937748,56.4422464373468,135.0820751905674,0.0,128.55290594894933,612.76727966510043,1.0,128.55290594894933,331.11811808390627,1.5,21.100000000000001,4.5999999999999996,589.76020461778865,590.86063461976391,591.46383917246476,593.33448635458888,594.87670529529476,595.48826855257835,71.03064047110756,72.212593446525887,74.126004033017409,76.473148230493493,77.801254021843604,76.450062580239532 +2003,10,12,11,0,556,223,10.5,585.38824155438351,40.74612180529041,49.3242543826922,151.49682822673967,0.0,144.80896223209263,667.17997916125012,1.0,144.80896223209263,365.39893368898242,1.5,22.800000000000001,3.6000000000000001,647.08652445391897,648.74821112136885,649.67823985519408,651.53840679921507,653.07488018749348,653.68054037855893,80.378716025682806,81.995066976186735,84.219144278793493,86.531022946389342,87.513595244674775,85.790452534725546 +2003,10,12,12,0,620,245,11.5,679.57733415047983,35.64629459383487,45.49823914336565,171.06407007945583,0.0,172.4901350079414,774.6615266143292,1.0,172.4901350079414,423.71489585761992,1.5,23.300000000000001,3.6000000000000001,754.68917196478708,756.43969142090305,757.41027438455649,759.39411251753131,761.03565936017753,761.67918265637854,95.577091072611665,97.821068874651544,100.63960671688714,103.3601460290444,104.2802576018348,102.037263241337 +2003,10,12,13,0,162,338,12.5,450.89229863038616,36.0850312521847,45.82389630225098,191.89886960826954,0.0,125.20623682215701,487.56913814930306,1.0,125.20623682215701,279.86160732100399,1.5,23.899999999999999,2.6000000000000001,465.65959255985831,468.83155604291505,470.66943117450916,471.60789340908627,472.39709258240885,472.69472051528703,71.122132530007107,71.990616242911543,73.070802341813646,74.142530083673819,74.402741747158288,73.243577634076132 +2003,10,12,14,0,703,179,13.5,628.81650185625415,41.88789830076902,50.21915771228783,211.05566184985094,0.0,157.33537660325683,725.08880552198707,1.0,157.33537660325683,392.80122735731641,1.5,25.0,2.6000000000000001,705.34056819583839,706.53595251300283,707.18323093610888,709.26283829047645,710.97879633184516,711.65706891538582,86.743484188429832,88.638807091992362,91.318999555215626,94.105581953799415,95.357178748156755,93.425066190850615 +2003,10,12,15,0,738,112,14.5,505.93576946845155,51.250993707707735,57.738225459945625,226.95388665407953,0.0,120.89261329312555,590.3580563081432,1.0,120.89261329312555,315.94129995002083,1.5,25.600000000000001,3.6000000000000001,568.20440555667653,568.93773491259219,569.32559499463571,570.95542959264844,572.3012666322777,572.83287632689598,66.520831608302061,67.535065193508359,69.356124405387391,71.71942262568578,73.103773168225302,71.877992868148013 +2003,10,12,16,0,643,91,15.5,339.17258329238342,62.5705942595142,67.2966195314049,239.809033759158,0.0,76.696284862467394,399.45955672562951,1.0,76.696284862467394,212.43428536285086,1.5,25.600000000000001,3.6000000000000001,367.34534146375387,368.05759743622366,368.45230815354898,369.77508447117009,370.8670294321812,371.2997948659949,43.090662024247379,42.840342238930397,43.312164936582427,44.588967860195019,45.769276296593937,45.64108647858518 +2003,10,12,17,0,483,54,16.5,153.85999409109124,74.91478476946394,78.06806942727123,250.52349848035357,0.0,31.411883872261821,186.88524111397874,1.0,31.411883872261821,96.909709303172079,1.3366296428973383,25.0,3.1000000000000001,148.29276731016103,148.78847167101466,149.07139346869246,149.87043129443782,150.52666024518254,150.78969274326795,19.176486624155853,18.703917476683813,18.186169297180886,18.031560950177571,18.084828052891535,18.136258865392083 +2003,10,12,18,0,45,3,17.5,5.5875903795221618,84.66035166777178,86.7035592953794,257.86906777914845,0.07314208936204991,0.54516669501059023,7.4781321134387646,1.0,0.54516669501059023,3.6305982204749543,1.5,23.899999999999999,0.0,2.7979645504290325,3.8747760962696383,3.8877166139704964,3.9563720819282704,4.0121113239977486,4.0350828882349044,0.33043954393656327,0.33902048361467108,0.3384737169852326,0.34956102526084559,0.3623644022469848,0.35973179546941952 +2003,10,13,7,0,140,5,6.5,15.021683738378329,83.70324740544017,85.89505927644242,103.07467361990224,0.020996062770521223,1.2655427739680136,21.179403819188604,1.0,1.2655427739680136,9.6786330131469036,1.5,15.0,4.0999999999999996,10.373427494720856,11.449692564479513,11.478692699740076,11.634055043529193,11.760197530717964,11.812175735456291,0.76634819341622096,0.78574985494288174,0.78445505935744297,0.80947240971050916,0.83825826621968891,0.83198597064729163 +2003,10,13,8,0,419,89,7.5,186.27329920113618,73.16807448348384,76.57597132552085,111.14780590044786,0.0,42.224018341907893,218.46507927100532,1.0,42.224018341907893,116.64258921471243,1.2588511416656765,16.699999999999999,3.1000000000000001,182.31582767124257,183.20482620969008,183.71844474830505,184.45430708753145,185.06235127358823,185.30245526384431,25.335087628842828,24.763486057212347,24.266255983057913,24.199057700658525,24.329746251647752,24.394547378768983 +2003,10,13,9,0,623,112,8.5,365.57566712435425,60.97358919810303,65.98200495752312,122.13664066632425,0.0,86.74407897261554,427.99031004716045,1.0,86.74407897261554,229.08077350843226,1.5,18.300000000000001,4.0999999999999996,396.87407755498901,397.79152007319323,398.30433325403453,399.77321903245513,400.98586946445442,401.46625011350625,48.769547651929045,48.538493728818409,49.101822980497403,50.51269328846206,51.771985736512036,51.589294866439054 +2003,10,13,10,0,751,118,9.5,530.12949715368313,49.92520109431645,56.717034793820226,135.39373502634464,0.0,121.98721137120383,618.79288229116833,1.0,121.98721137120383,330.98900823369138,1.5,20.0,6.2000000000000002,597.19238345731037,597.96089339835817,598.36925653172636,600.056993290793,601.45011424977622,602.00098523368365,67.169173703212749,68.115932743081743,69.908077201925636,72.292265520097146,73.748562266395936,72.564582797684949 +2003,10,13,11,0,786,132,10.5,640.93132229923458,41.04138059773121,49.64697508328145,151.7565374869544,0.0,152.94910151696274,743.29151096257044,1.0,152.94910151696274,399.66305104733652,1.5,21.100000000000001,4.0999999999999996,725.81742475760677,726.7129320817221,727.18351678882232,729.04424757187894,730.58163992120444,731.18713534319772,83.99262269985887,85.829525906372439,88.50853103435,91.379260737483008,92.678689290017488,90.794314996851753 +2003,10,13,12,0,818,128,11.5,697.65090728447478,36.00439644038195,45.861534609107885,171.21128343900838,0.0,171.65675785567311,808.98474444548845,1.0,171.65675785567311,434.52891369407979,1.5,22.199999999999999,3.6000000000000001,793.77713436647593,794.56132737176654,794.95695353424367,796.79703380378851,798.32055864242045,798.91668314699098,94.113683333895253,96.460485918717794,99.700977735271991,102.87531562260953,104.09379263897044,101.73748514453092 +2003,10,13,13,0,796,136,12.5,686.92544868710559,36.46231632328985,46.202046153201636,191.89492011691326,0.0,169.51771195964054,795.7814007077036,1.0,169.51771195964054,428.04829374412122,1.5,22.800000000000001,2.6000000000000001,779.98471747932399,780.85026367377077,781.29526935516344,783.18083536705888,784.74094627489831,785.35256081529167,93.040932581031157,95.337205549959322,98.491732222342392,101.59781511855759,102.79842144798626,100.49252419406317 +2003,10,13,14,0,792,120,13.5,622.87947104003024,42.23598223593555,50.58381083002129,210.9262661207538,0.0,153.76532175999827,723.97003212988284,1.0,153.76532175999827,388.36319995845628,1.5,23.300000000000001,2.6000000000000001,706.69379089705785,707.48839786849373,707.89886790326932,709.68715662496686,711.16622999926221,711.74754259434326,84.337937249943934,86.111775086694934,88.776123425404805,91.729227521478009,93.12033946752905,91.27432606011719 +2003,10,13,15,0,750,104,14.5,500.59795177972364,51.55654241008115,58.07577289190583,226.75339593001848,0.0,114.79653390095748,586.21777222363119,1.0,114.79653390095748,312.46642811814382,1.5,23.300000000000001,3.6000000000000001,564.22717412330189,564.89461217617475,565.24591535186198,566.80739048573605,568.0973635399655,568.60654103832212,63.190529563418977,63.950952656495282,65.569971063785474,67.861438049976343,69.303912150727257,68.294735403874043 +2003,10,13,16,0,672,83,15.5,339.00428020143681,62.84015059372958,67.60691749489158,239.57608306295842,0.0,76.071815257344056,401.63785541873301,1.0,76.071815257344056,212.15184244802202,1.5,22.800000000000001,1.5,368.94636609745902,369.57987892424211,369.92850894766298,371.184680933653,372.223602877698,372.63391772001444,42.933344026666759,42.45186507495648,42.748249160428351,43.972626937773725,45.17114971381956,45.160742468954986 +2003,10,13,17,0,460,56,16.5,148.84138846005419,75.15753518582277,78.35605944858035,250.27566011563923,0.0,29.778269916497408,181.09054400370087,1.0,29.778269916497408,93.822968377462104,1.4069742550088247,21.100000000000001,1.5,143.38387909337627,143.91106733049116,144.21269549453285,145.01376253980314,145.6713077702648,145.93528076064635,18.2634649246348,17.933987045765029,17.438784618435307,17.243984995280623,17.191227714524608,17.163637159920302 +2003,10,13,18,0,58,2,17.5,5.1995028414851596,84.73052260149572,86.83773946206774,257.5043252025554,0.09902375586932906,0.49224662679118131,7.5476194852868019,1.0,0.49224662679118131,3.3858466948089077,1.5,17.199999999999999,1.5,2.3014370657446515,3.7960889652266667,3.8076395129968255,3.8741175529158873,3.928079334098789,3.9503277081923818,0.29911434900164613,0.30745792508306441,0.30696198421510901,0.31772546641447802,0.33020642854245769,0.32781275141483374 +2003,10,14,7,0,0,3,6.5,3.0,83.72750847065511,85.98858896256242,103.47505905301472,0.03957982604920502,0.94351212011975361,2.9440900617306434,1.0,0.94351212011975361,1.8214092388495577,1.5,13.9,0.0,2.737983578286781,2.7797251944043939,2.8042083528142956,2.7968220672199635,2.7910974507838695,2.7884753301394123,0.55067912100897431,0.54879888992415704,0.54787604467907702,0.54583222075092674,0.54193942172079468,0.53759640586342572 +2003,10,14,8,0,0,60,7.5,60.0,73.3152123599571,76.7794535374256,111.47273258593805,0.0,18.704420715821712,59.343651404448387,1.0,18.704420715821712,36.577553502778258,1.3135679491048182,13.9,2.1000000000000001,54.879567938285859,55.698331430333106,56.178494697952914,56.082959116735751,56.010687441083903,55.975789228543775,10.931498934502711,10.895513296394148,10.872619519378626,10.838377705691489,10.771609614479244,10.68763287843961 +2003,10,14,9,0,44,177,8.5,194.74455577179492,61.155166848333025,66.21627657754388,122.4586469192254,0.0,56.214813910999034,203.07852839996755,1.0,56.214813910999034,119.9761415365391,1.5,15.6,3.6000000000000001,188.06888716673481,190.10572382185666,191.29658495191629,191.40764631757821,191.5129336988756,191.54177622651051,32.586276362106112,32.471868169564267,32.493340860535369,32.647916694387369,32.717320021347049,32.504969969452624 +2003,10,14,10,0,0,97,9.5,97.0,50.1563655590158,56.99236383432907,135.699945317432,0.0,30.449476228349909,95.616839103679439,1.0,30.449476228349909,59.20025888757749,1.5,17.800000000000001,4.0999999999999996,88.675068636917047,90.016234785634992,90.802829277163355,90.67247263885703,90.575180528751574,90.526831684182696,17.784332083124493,17.738842789334683,17.711413024150751,17.666559813716379,17.565290216633716,17.424568774453668 +2003,10,14,11,0,115,307,10.5,380.96755751617127,41.33727436470676,49.96943648696024,152.0100864350784,0.0,107.46904485274472,404.34497377272078,1.0,107.46904485274472,235.06144117213739,1.5,18.899999999999999,4.5999999999999996,383.78207499031441,387.04588367244355,388.94643605573413,389.26577540478911,389.55089407919928,389.64294156333085,61.450692127421412,61.781667725544843,62.368665824477567,63.025955137662926,63.192701962832366,62.428228649754459 +2003,10,14,12,0,18,273,11.5,285.45325456235366,36.36141572942897,46.22346891800261,171.35322171887103,0.0,86.59149674563308,289.28176698113532,1.0,86.59149674563308,174.79785987849749,1.5,20.600000000000001,4.5999999999999996,271.08551260091565,274.46224587204335,276.43859465124677,276.24062053033452,276.10298894085344,276.02377439477527,50.175410953329134,50.205841591917739,50.344435456009947,50.440214523112047,50.278245017396522,49.784694226685438 +2003,10,14,13,0,24,280,12.5,296.49679562993072,36.837303867098576,46.57799686134118,191.88830569337176,0.0,89.115965298172085,301.34084984092965,1.0,89.115965298172085,181.58653368661504,1.5,21.699999999999999,5.2000000000000002,282.71145318538635,286.15493545513078,288.17003115372876,287.97152738742756,287.83407342532803,287.75432898822453,51.60428944867872,51.640412478327569,51.793742921616051,51.913292228214331,51.759468048575336,51.249125439557268 +2003,10,14,14,0,0,116,13.5,116.0,42.581692786270565,50.94597157232502,210.7964792680556,0.0,36.348607992817634,114.58214018887595,1.0,36.348607992817634,70.841457418438708,1.5,22.199999999999999,4.5999999999999996,106.31177594326583,107.90077510783949,108.83261214341907,108.69218121487613,108.58830985209103,108.53569962011491,21.220452738294643,21.171803364351902,21.144916419688929,21.099376177749761,20.984369886113825,20.813930212338668 +2003,10,14,15,0,35,216,14.5,234.33389908743254,51.85982531151824,58.410777245498544,226.5534274357923,0.0,68.856563228647289,243.29722812482433,1.0,68.856563228647289,144.45709332251491,1.5,21.699999999999999,6.2000000000000002,227.61747374060707,230.0791551559042,231.51776686460784,231.6839957880824,231.83671951354756,231.8824000074317,39.765562680993938,39.777216629761611,39.920583534175364,40.173213693067368,40.228978316664367,39.87349668716864 +2003,10,14,16,0,0,73,15.5,73.0,63.10735426585704,67.91459552101107,239.3437398116765,0.0,22.95089907092094,71.847831174287663,1.0,22.95089907092094,44.512714138368509,1.5,19.399999999999999,6.7000000000000002,66.639831477611068,67.654488610539246,68.249620616256337,68.137558105085532,68.053051205352688,68.011970177542878,13.406277011009204,13.369286298721635,13.346901430265895,13.308858681381695,13.228530680262139,13.1230529362381 +2003,10,14,17,0,0,22,16.5,22.0,75.39765173003788,78.64122168678644,250.02820775823128,0.0,6.9190888808781947,21.615299068022448,1.0,6.9190888808781947,13.382306354493466,1.4803015383548357,18.300000000000001,5.2000000000000002,20.078546240769715,20.384651425632207,20.564194587304819,20.518963632869831,20.484218016013592,20.467989426108947,4.0398224074413323,4.0272166888096699,4.0204510089110848,4.0069722281675562,3.980283734822315,3.9484422700834578 +2003,10,14,18,0,15,1,17.5,1.7928416957866868,84.79925172700896,86.97015590169883,257.1407830212928,0.1253387340714552,0.17341046108199221,2.4471702050096269,1.0,0.17341046108199221,1.1700802312083378,1.5,17.800000000000001,6.2000000000000002,0.65427401622450732,1.2443352605026139,1.2484607655455873,1.2723109882287251,1.2916699072118298,1.299652400939983,0.10544873077364511,0.10844437851815263,0.10827109694168623,0.11213802769691665,0.11663001617795966,0.11579567546500488 +2003,10,15,7,0,144,4,6.5,13.83822485333893,83.75265992275037,86.08244296539742,103.87274319648503,0.05825388471706807,1.0335347751893591,20.336505986058597,1.0,1.0335347751893591,8.8710127189365,1.5,11.699999999999999,4.0999999999999996,7.8511393620296577,10.715500906661044,10.738637552812525,10.865649028668617,10.968772449311301,11.011265722951341,0.62585075674302781,0.64171988993744111,0.64064949550283123,0.66108022870804739,0.68456312127913399,0.67935785155292572 +2003,10,15,8,0,469,82,7.5,187.63135094222565,73.4639180307238,76.98378711679642,111.79402639784576,0.0,40.491658062915448,223.59748317896162,1.0,40.491658062915448,117.40982825016896,1.3697781912364757,14.4,5.7000000000000002,185.05389021972422,185.87040314006211,186.34042645769745,187.04980793255436,187.63605270380455,187.86757213299117,24.610148014106507,24.106850628819544,23.508606876143915,23.263211636385297,23.208795510907272,23.207733745016945 +2003,10,15,9,0,624,111,8.5,360.30494461955232,61.33845584842705,66.4513780263689,122.77616714320418,0.0,82.682867843023104,424.09327332098792,1.0,82.682867843023104,225.78441073957177,1.5,16.100000000000001,8.8000000000000007,392.52541275439711,393.44348728646156,393.95929027688487,395.40948121015242,396.60784057376424,397.08223257806731,46.950685799663219,46.385834053546326,46.581845286280071,47.794875554810325,49.050733075389466,49.034048424223229 +2003,10,15,10,0,757,114,9.5,523.31599759565529,50.389001211070514,57.268147769236684,136.00062669149372,0.0,124.94853895746483,613.83723970985102,1.0,124.94853895746483,326.69465317088793,1.5,17.800000000000001,8.8000000000000007,592.04418276307069,592.78703078980834,593.17964801985602,594.82831413446002,596.19253257482785,596.72913574284382,68.936888164304079,69.490041404789366,71.091945122700551,73.578617894755368,75.190486945666805,74.297366356548793 +2003,10,15,11,0,804,121,10.5,634.66074899550472,41.63368114167893,50.291531623547385,152.25744470459202,0.0,150.9207797411317,739.92979196434032,1.0,150.9207797411317,395.63236078511125,1.5,18.300000000000001,7.2000000000000002,722.79260733480078,723.59187145090948,724.00654291275362,725.80240306006658,727.28806453148059,727.87192810085378,82.840509685006026,84.288699971734928,86.753901622495405,89.671634687914207,91.282890516645381,89.614446596325763 +2003,10,15,12,0,788,137,11.5,678.58553857523418,36.71722773532835,46.58392816774742,171.48988566002762,0.0,167.60837922743104,788.48719603442123,1.0,167.60837922743104,422.92776775970685,1.5,19.399999999999999,7.7000000000000002,772.56514976292442,773.44788715911079,773.90519739260503,775.79470710624776,777.35856727719477,777.97213173849843,91.936878957076601,93.857847013155961,96.754274148350945,99.955460818546754,101.45550107365371,99.446397870240347 +2003,10,15,13,0,790,135,12.5,674.26624950200687,37.20987748337479,46.95163247604659,191.87900105960676,0.0,160.47181711110821,783.8117055620213,1.0,160.47181711110821,420.24181104503361,1.5,20.0,10.300000000000001,767.81701785231792,768.6879452862064,769.14110194862621,771.02221468444145,772.57794719035451,773.18956457784452,88.049330319570615,89.780642508470606,92.515133566148009,95.597303306973558,97.128397547130859,95.261096036189059 +2003,10,15,14,0,804,114,13.5,616.63468358593605,42.92489974029435,51.30551619542239,210.66625430014238,0.0,146.47286836835758,720.07048014498127,1.0,146.47286836835758,384.40353972675098,1.5,20.0,7.7000000000000002,702.7313219651935,703.48140016630873,703.86887281465272,705.61518481517749,707.06066536234334,707.62814719870698,80.423571731814121,81.649601512961695,83.914090061835807,86.804557965458898,88.474728088187945,86.969253954540335 +2003,10,15,15,0,755,97,14.5,488.75144239507841,52.1607064202734,58.743108501507045,226.35394828335308,0.0,112.4643333861641,574.57612992093323,1.0,112.4643333861641,305.23751190812374,1.5,20.600000000000001,6.7000000000000002,551.94016574085731,552.64881782117754,553.02633804714731,554.6101055423436,555.91979998345982,556.43598716841848,62.262764506382823,62.505617888545117,63.787974836631598,65.967101287445473,67.571682267992784,66.935480920556856 +2003,10,15,16,0,648,87,15.5,327.44133941031703,63.372073258229406,68.21952247214821,239.11199559985943,0.0,74.041945265241239,389.63737623687541,1.0,74.041945265241239,205.08166784533947,1.5,19.399999999999999,8.1999999999999993,356.52778702503713,357.21490783266648,357.59754987149779,358.87114025986892,359.92541912208668,360.34131498865275,42.36074943608758,41.547507575498997,41.496380200658493,42.458805025898606,43.629803487588376,43.761220117179626 +2003,10,15,17,0,429,55,16.5,137.41980934006222,75.63500643402031,78.92342428465652,249.78115363737464,0.0,26.946927742188219,168.68843942203557,1.0,26.946927742188219,86.719588571754244,1.5,17.800000000000001,5.2000000000000002,132.5089287358042,133.03540765344229,133.33736596805096,134.1124224619015,134.7484454655453,135.00459249916622,16.524126057371696,16.488223211652041,16.121135673864543,15.869488619534287,15.707202613708507,15.531325934493596 +2003,10,15,18,0,0,0,17.5,0.0,84.86647170223951,87.100725388706,256.7785173293439,0.1520688573885953,0.0,0.0,1.0,0.0,0.0,1.5,14.4,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,16,7,0,126,4,6.5,12.40186133944035,83.77870144352953,86.17659797919346,104.26760016310169,0.07702170250597962,1.0153541406313367,18.307025935033117,1.0,1.0153541406313367,7.9868804912335358,1.5,5.5999999999999996,1.5,6.4179387477314176,9.7409850313420208,9.7641502662650286,9.8910450280113498,9.9940690198377204,10.036525830384299,0.61522096386204117,0.63108568456502512,0.63004490779897515,0.65049178627947091,0.67404432250289992,0.66899841652206093 +2003,10,16,8,0,429,86,7.5,181.12510564615667,73.61417061018507,77.18893335458425,112.11157214923934,0.0,38.714367668841739,215.35795125281533,1.0,38.714367668841739,113.3909719084605,1.4275487031515937,9.4000000000000004,1.5,178.4315844096688,179.29773286275372,179.79748926406873,180.50374994121267,181.08707705082199,181.31781184928781,23.542853240163275,23.187816400527105,22.648559525586414,22.385670921351114,22.265713653839935,22.186822950444984 +2003,10,16,9,0,606,114,8.5,353.8244441217754,61.52340643762086,66.68724790192697,123.08909696747962,0.0,78.823520479106719,416.85741712716043,1.0,78.823520479106719,221.80075958469121,1.5,13.300000000000001,4.5999999999999996,385.32420799229004,386.284325215411,386.82717208337772,388.28114032226517,389.48226553801186,389.95829592957955,45.004588938288052,44.354335426310854,44.430836467998894,45.485138982600766,46.668665397363526,46.736910434025887 +2003,10,16,10,0,721,124,9.5,510.92275330339947,50.62301980473512,57.54429893635944,136.29570290734495,0.0,118.25991921621879,599.31525340426799,1.0,118.25991921621879,319.24532032980926,1.5,17.199999999999999,5.2000000000000002,577.03846645038539,577.88173232898782,578.33712061463928,580.0532711600564,581.47163902754107,582.03144387526925,65.567103476288125,65.825953882904003,67.142405957133889,69.396274028533085,71.058331743195026,70.392158116756576 +2003,10,16,11,0,768,135,10.5,622.33679112945106,41.93047779632372,50.61315239736136,152.49858477776633,0.0,148.04533638467862,727.18542856786314,1.0,148.04533638467862,388.25865336910499,1.5,18.899999999999999,5.7000000000000002,709.84480404779367,710.63778398889792,711.05017603784154,712.91999390123658,714.46586711517295,715.07459852526245,81.338430287671542,82.584584801704068,84.858765519302466,87.78142194793115,89.481141034581725,87.964660625606072 +2003,10,16,12,0,782,139,11.5,672.89343449738294,37.07170765636043,46.94279796871093,171.62127775933726,0.0,166.38619599214235,782.92274138227924,1.0,166.38619599214235,419.4471896601417,1.5,20.0,6.2000000000000002,766.75997435251406,767.66978407610975,768.14403888237871,770.04202337661968,771.61353962389501,772.22973008922747,91.336875499760083,93.020801150411799,95.777338501902591,98.949684409002487,100.61279467074323,98.753167280819071 +2003,10,16,13,0,784,137,12.5,668.44748775936205,37.579920854943204,47.32283696564054,191.8669832524625,0.0,159.29649221997968,778.10617381646898,1.0,159.29649221997968,416.68426855145651,1.5,20.600000000000001,5.7000000000000002,761.85965062789683,762.75777103000576,763.22792359394668,765.11784723892208,766.68151056487818,767.29586313941354,87.490285023141666,89.005541759790006,91.583333205539915,94.636624098373787,96.321164044818772,94.569172834859188 +2003,10,16,14,0,738,141,13.5,598.77769478616347,43.26547372891786,51.662321368151,210.53554704394418,0.0,143.08352366585407,699.31897197605963,1.0,143.08352366585407,373.83367323868896,1.5,20.600000000000001,7.2000000000000002,681.06030446407158,681.92939927242128,682.38942115308032,684.28804173518836,685.85718459307066,686.47586351131838,78.783105819561698,79.805480986974089,81.858988424230347,84.654992156198375,86.382713699647553,85.074173490208963 +2003,10,16,15,0,667,123,14.5,465.80530177028027,52.459050869229195,59.07263741289649,226.15492786769823,0.0,108.48865587404762,546.68609875992342,1.0,108.48865587404762,291.38971887228894,1.5,20.600000000000001,7.7000000000000002,523.6275247683069,524.49553280625798,524.96978447730373,526.65601217757194,528.04849707125072,528.59935256481856,60.377559695931154,60.487638889296754,61.539674950905287,63.567825707572304,65.107065451884765,64.586784793284139 +2003,10,16,16,0,607,89,15.5,311.25363153875952,63.63417677908182,68.5215681967427,238.88084390033188,0.0,70.845717005604641,370.86883002092361,1.0,70.845717005604641,195.13669888577056,1.5,20.600000000000001,6.2000000000000002,338.58343548159962,339.29848423738724,339.69895408753814,340.98030425028355,342.04017483682031,342.45867127549548,40.833255007207221,39.947473599550399,39.731050011061249,40.535183558200927,41.595669250565592,41.7850129608792 +2003,10,16,17,0,449,52,16.5,136.11468502107692,75.86947267033712,79.20253648362208,249.53451188624484,0.0,25.368295391147264,168.84204802531647,1.0,25.368295391147264,85.846473289978164,1.5,18.899999999999999,6.2000000000000002,131.58014583830422,132.07332349817298,132.35627967634341,133.10589445032662,133.72086183017029,133.96894148162875,15.491548347654934,15.574075694727274,15.310862394889849,15.060783332707404,14.870134898608447,14.638692389480386 +2003,10,16,18,0,0,0,17.5,0.0,84.9321158946673,87.22936533898473,256.4176056162519,0.17919291808122728,0.0,0.0,1.0,0.0,0.0,1.5,15.0,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,17,7,0,61,3,6.5,6.9672498238828631,83.80563096080405,86.27102917313603,104.65950389838191,0.0958867600875102,0.56165196898956682,10.16498239079562,1.0,0.56165196898956682,4.5225372579087804,1.5,7.7999999999999998,0.0,3.1032516195417665,5.3780844514864903,5.3909355694829184,5.4747802461119086,5.5428228590625972,5.5708922741422686,0.34262201185323965,0.353204173869412,0.35263216936014602,0.36625001379052158,0.38212175034568424,0.37934736686691112 +2003,10,17,8,0,219,91,7.5,138.79257548468371,73.76594646874705,77.39485129027129,112.4252561185742,0.0,33.166804858172583,158.81574949171085,1.0,33.166804858172583,86.637398767989509,1.4869504298355594,11.1,4.5999999999999996,134.44051850223423,135.42172476050268,135.99214965568495,136.45517890400006,136.83979953750367,136.99007129706604,19.951803342980135,19.804963896998508,19.495666910199098,19.311211245517423,19.17853210889087,19.039093131411079 +2003,10,17,9,0,475,141,8.5,327.17845252219757,61.709965966260796,66.92382259062747,123.3973343753847,0.0,76.085175453464245,379.82764089958391,1.0,76.085175453464245,204.60756092209573,1.5,12.800000000000001,2.1000000000000001,350.80096125857403,352.07908508420013,352.81232119739695,353.99754756481826,354.98042704156785,355.36629000275627,43.81892940793297,43.132428740669511,43.041476134406686,43.814924813793951,44.740599432878234,44.788904772540704 +2003,10,17,10,0,397,210,9.5,421.43033551767724,50.85833061469087,57.82072784343986,136.58510084602793,0.0,106.20051088006574,475.98814879649643,1.0,106.20051088006574,262.24245033708382,1.5,15.6,3.6000000000000001,454.05143526390259,456.02513381383801,457.15862249694533,458.23588302616588,459.13537319654984,459.48179514348021,59.970690519315163,60.005218842067706,60.70399714707316,62.067948793109196,63.03821833357101,62.535011222327583 +2003,10,17,11,0,387,274,10.5,517.89228062680718,42.227540109529116,50.9341896352625,152.73348193236228,0.0,133.85844794772871,581.49396706701714,1.0,133.85844794772871,322.26955523242168,1.5,15.6,1.5,559.76596529473579,562.18436744684504,563.57094901351502,564.89550557809287,565.9998407256644,566.42618772467824,75.166941599734116,75.796714917012721,77.073119475252668,78.849422824143673,79.874970812606932,78.842207031938827 +2003,10,17,12,0,174,325,11.5,442.99986406035714,37.424730648812016,47.29996348158655,171.74740224811117,0.0,118.48025416372904,481.88646581708247,1.0,118.48025416372904,274.90865643123692,1.5,17.800000000000001,2.1000000000000001,460.36914974509443,463.4543914105999,465.24414212705562,466.14638330121034,466.90568312305419,467.19211538275158,67.350026098527437,67.820479758036512,68.643068049071843,69.713932803782996,70.225674131737392,69.334194103824842 +2003,10,17,13,0,611,240,12.5,651.27772944271567,37.94731778171542,47.691494251674776,191.85223161514497,0.0,160.61692919152989,747.6976033444729,1.0,160.61692919152989,406.1216888365293,1.5,19.399999999999999,2.1000000000000001,727.2840690756251,729.05210268385588,730.0402397798407,731.96193181780723,733.55382802804581,734.17785877230187,89.107179007004603,90.265200630005381,92.351146520367394,95.073183086579405,96.630018404999632,95.116733964668725 +2003,10,17,14,0,268,279,13.5,443.93732039549184,43.6032862527099,52.016264206955476,210.40431615714337,0.0,117.17775466800877,493.88297477874511,1.0,117.17775466800877,276.72597878349541,1.5,20.600000000000001,3.1000000000000001,472.52844572517665,475.00314102557968,476.43011256289958,477.74761800104534,478.84316926883935,479.26911588855921,66.214238368174065,66.622345766827152,67.539946805839733,68.96582543240909,69.819451559809451,69.025658650250534 +2003,10,17,15,0,578,161,14.5,455.23257611357712,52.75472496629065,59.39923555136959,225.95633792382102,0.0,105.70750782083097,528.00845267286627,1.0,105.70750782083097,284.18855717331991,1.5,20.600000000000001,3.6000000000000001,504.20984668704301,505.53569107085582,506.28396116383709,507.74202694212943,508.95016401319407,509.42440915091385,59.35421493954378,59.232838525153042,59.995247808712058,61.657131763209541,62.997716909500852,62.661900895567392 +2003,10,17,16,0,323,153,15.5,269.696438271266,63.893535335562646,68.82060359276537,238.6502801390973,0.0,66.788256653469205,305.81123867070482,1.0,66.788256653469205,167.9934500599233,1.5,20.0,2.6000000000000001,279.71490767624482,281.26532829235379,282.16379702496585,282.92314693994416,283.55813147515011,283.80212287371995,38.932708105162966,38.276385169432537,38.027146127210052,38.378225944854172,38.883114386307646,38.922649183017541 +2003,10,17,17,0,0,55,16.5,55.0,76.10092524604602,79.47842870849422,249.28829861703437,0.0,16.981135824796215,54.686462799264092,1.0,16.981135824796215,33.532141491452364,1.5,18.300000000000001,3.6000000000000001,50.326168466161697,51.067370657363547,51.50201794593719,51.415105678423387,51.349351309974011,51.31761638283357,9.9250345239028288,9.8995727038476442,9.8810470388700171,9.8471225730902354,9.7812329162824607,9.7002134269444724 +2003,10,17,18,0,0,0,17.5,0.0,84.99611851308623,87.35599394265576,256.0581268103481,0.20668651300975768,0.0,0.0,1.0,0.0,0.0,1.5,16.100000000000001,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,18,7,0,112,3,6.5,10.09943337480866,83.83344460273929,86.36571015555019,105.04832820356849,0.1148525314225824,0.76974782950469756,15.522357158848211,1.0,0.76974782950469756,6.4874944586243419,1.5,8.9000000000000004,5.2000000000000002,3.8486010884357351,8.1041350362806455,8.1214589216034359,8.2188520948007522,8.2979215832470175,8.3305091071480941,0.46659337153560604,0.47878150068256609,0.47798707534309104,0.49367981756014728,0.51176033879167815,0.50789989944162739 +2003,10,18,8,0,418,85,7.5,174.74869522513677,73.91921920930416,77.60149769355071,112.73496610304055,0.0,36.523980084490361,209.26434917724552,1.0,36.523980084490361,109.41133461002052,1.5,9.4000000000000004,4.5999999999999996,172.70796077217136,173.56971445681165,174.06737664047415,174.75414761960047,175.3214242957298,175.54642018227074,22.205545474279191,22.097764145992183,21.669244789446662,21.348786988896357,21.126034079578147,20.91308826144407 +2003,10,18,9,0,544,123,8.5,334.14946850066065,61.89807892146354,67.16103628497814,123.70077974190067,0.0,75.9953397187858,392.22344010713709,1.0,75.9953397187858,208.77353440169253,1.5,11.1,4.5999999999999996,362.30749242591151,363.40377252868745,364.02906140065039,365.16397672529911,366.10667150996323,366.47507935290531,43.94481393834797,43.045807376380374,42.790289390031731,43.507942349375156,44.462849473667582,44.608544145545963 +2003,10,18,10,0,654,147,9.5,492.62441626532654,51.094840511599116,58.09734321224217,136.86875050071242,0.0,115.93317539886371,576.83940408785497,1.0,115.93317539886371,308.23612444055425,1.5,12.800000000000001,4.0999999999999996,553.39610755021022,554.49104107249582,555.09775889379171,556.91142834347374,558.40973405103909,559.00204941238553,64.790853253463723,64.732178507064688,65.717803317545531,67.754062401372437,69.403269848576841,68.962988626929132 +2003,10,18,11,0,623,184,10.5,573.91188097618806,42.52474285517389,51.25453313538524,152.96211419034904,0.0,135.10620334678654,666.58787874125096,1.0,135.10620334678654,358.97143409766761,1.5,14.4,5.2000000000000002,646.8265827422141,648.10839921674039,648.81772211388738,650.88797565755453,652.59584912382604,653.27267159756525,74.978589387792951,75.634257914707803,77.263116571266949,79.768926933960799,81.406473435509895,80.410776581193687 +2003,10,18,12,0,716,167,11.5,649.28988070279433,37.776171861607175,47.655309456037,171.8682650734018,0.0,149.84637973021131,757.21081351007012,1.0,149.84637973021131,405.42425617163678,1.5,14.4,3.1000000000000001,740.00709885744163,741.01324120492723,741.55187146935521,743.63424760112594,745.35306234880318,746.03279495918991,82.570734025891568,83.723653619154021,85.899437305191753,88.800118563064686,90.571991060363587,89.126008475487311 +2003,10,18,13,0,700,183,12.5,650.86923995429242,38.31195221602551,48.05748824468152,191.83472779015125,0.0,156.89402160453224,757.27089532979358,1.0,156.89402160453224,406.51852628591848,1.5,15.0,4.0999999999999996,738.93471970271094,740.10423000999992,740.73762922022479,742.86674026963101,744.6258633561763,745.32001237234624,86.602921167927931,87.694227930321077,89.859004765415008,92.829925372222547,94.667220659113951,93.258285669469444 +2003,10,18,14,0,524,210,13.5,529.95351756246941,43.93820971076027,52.36722231250069,210.27252313953187,0.0,131.8118643580826,609.69683367102562,1.0,131.8118643580826,330.99971277006836,1.5,15.6,5.7000000000000002,589.23649858451984,590.8595248528319,591.77359480610119,593.53083116324296,594.98538424491016,595.55719496149879,73.504156775974366,74.010355720052644,75.397906942849801,77.618357667586736,79.045182253433339,78.159174973292124 +2003,10,18,15,0,696,120,14.5,470.912328459305,53.04759624528892,59.722775355198735,225.75815258054953,0.0,109.50911152760219,555.66770099374548,1.0,109.50911152760219,294.44857086619402,1.5,16.100000000000001,4.0999999999999996,531.75377016555967,532.60633719099587,533.07180889546544,534.72655475244017,536.09577756664225,536.63521545486606,61.302381621878141,60.948419162029417,61.727342897036074,63.604124800473372,65.27487632928667,65.066563103915072 +2003,10,18,16,0,623,82,15.5,304.08015086174987,64.1500208069428,69.11650067225283,238.42030176670383,0.0,66.311500161148857,365.66910644715807,1.0,66.311500161148857,190.55312878168374,1.5,15.6,3.6000000000000001,332.73780292385624,333.38767993846193,333.75121954961548,334.97209503586998,335.98169807668944,336.38019365938169,38.855220119748381,37.701653006059949,37.195278342601924,37.655534521890608,38.530472194163039,38.808313926640231 +2003,10,18,17,0,414,52,16.5,125.66171190218665,76.329240498402,79.75097265489237,249.04253199239437,0.0,23.154195908806752,157.08982516180481,1.0,23.154195908806752,79.352711949628656,1.5,14.4,3.1000000000000001,121.5973300516502,122.10187443503838,122.3926472689101,123.12220110040911,123.71915189523065,123.96068107836984,13.859222642773306,14.141299404987095,14.105161184122213,14.010631221946726,13.828611687115956,13.531406766895806 +2003,10,18,18,0,0,0,17.5,0.0,85.05841475453192,87.48053031256835,255.70016131928938,0.2345219060357727,0.0,0.0,1.0,0.0,0.0,1.5,11.699999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,19,7,0,3,2,6.5,2.1852040302720428,83.86213665297292,86.46061293860387,105.43394676065499,0.1339224582173293,0.62793522854427009,2.3236853551794967,1.0,0.62793522854427009,1.3647914187369066,1.5,6.7000000000000002,3.1000000000000001,1.8455939653876032,1.9987125314593275,2.014940563129977,2.0229214247947516,2.0295541161974699,2.0321395337099539,0.36866775450092426,0.36912422956591395,0.36851114792217643,0.36932661910985509,0.3694122022600434,0.36652231368255811 +2003,10,19,8,0,14,85,7.5,87.95643897110665,74.07395964690231,77.80882704837697,113.04059147170506,0.0,26.114189095151932,89.598632498308802,1.0,26.114189095151932,53.700487570033701,1.5,8.9000000000000004,3.1000000000000001,81.418003653014907,82.509950803760617,83.149780887932181,83.034278487402773,82.947955156152148,82.905253064012157,15.312166314410682,15.268784882132501,15.2159993260903,15.138910611845617,15.022367449097015,14.892513690326846 +2003,10,19,9,0,125,175,8.5,223.03928997665173,62.087686956345074,67.39882100375983,123.99933586983292,0.0,60.068936687106685,242.45817942115463,1.0,60.068936687106685,138.36579902363479,1.5,10.6,3.1000000000000001,223.66481775522411,225.53746054514596,226.6297410942862,227.07903723302246,227.46026230306899,227.60156830218739,35.066495873784369,34.681235320582388,34.51973958491525,34.700966030803528,34.931521151724795,34.849096959649856 +2003,10,19,10,0,562,185,9.5,479.69682811852488,51.3324540392997,58.374052024234636,137.14658496554588,0.0,112.41140840900894,555.33358251121786,1.0,112.41140840900894,299.45939165764446,1.5,15.6,3.6000000000000001,531.34107100318249,532.87494021694386,533.74469453072288,535.28504538927768,536.56219744617067,537.0628665209756,63.338769245354726,63.088934974199155,63.783981161828869,65.432624503705512,66.845331600368411,66.554087693404369 +2003,10,19,11,0,690,164,10.5,592.83663152797772,42.82195987872403,51.574071716571645,153.18446226869284,0.0,137.94530525495077,692.87813520923464,1.0,137.94530525495077,370.47319288818818,1.5,18.899999999999999,4.0999999999999996,673.68859328503095,674.77414209450501,675.36569829519954,677.37701196014029,679.03841287049443,679.69485620787111,76.424095322436358,76.954561675987208,78.575603055546225,81.205189241539117,82.985680446977398,82.115706507812348 +2003,10,19,12,0,770,146,11.5,661.14347028548195,38.12590647155489,48.00872027036091,171.98387388188607,0.0,151.26477322115238,774.70054879735949,1.0,151.26477322115238,412.40727290689216,1.5,20.0,6.2000000000000002,758.38247328067985,759.21258845347393,759.64609575925635,761.61140247032699,763.23644206237634,763.87643339251747,83.201870144141282,84.199081006772516,86.351769505509253,89.379376964767019,91.27662152951973,89.9413755167338 +2003,10,19,13,0,772,138,12.5,650.34240486887313,38.67370829927974,48.42070288140646,191.8144557135607,0.0,154.36411736693884,762.91375861365373,1.0,154.36411736693884,405.60526863876237,1.5,21.100000000000001,4.5999999999999996,746.9056055779771,747.67790983543421,748.07604137317844,749.98270477355436,751.5616154961541,752.18124682647283,84.911345438036335,85.789141227832644,87.945341948858882,91.048324296894279,93.009287294136328,91.72843222876503 +2003,10,19,14,0,768,122,13.5,587.23834888000226,44.2701174311484,52.71507380791562,210.14013234355005,0.0,134.27254622357182,691.62511848763506,1.0,134.27254622357182,366.34164067919443,1.5,21.699999999999999,4.5999999999999996,673.83471806557338,674.56002766553934,674.93884450239443,676.69488523241841,678.1492731496545,678.72031507660574,74.206160879864683,74.482244744036223,76.052630051443856,78.688327393523252,80.620044007976077,79.856953423184919 +2003,10,19,15,0,737,97,14.5,465.01943618795815,53.3375335174482,60.04313017835703,225.5603484113387,0.0,102.62753617513512,552.76012647058315,1.0,102.62753617513512,290.34194657964889,1.5,21.699999999999999,6.2000000000000002,529.73426701189101,530.37310476659957,530.71464385104309,532.19309330669273,533.41892126452535,533.89996881832451,57.540845654746626,56.985446590244308,57.547207178382202,59.298616571099735,60.967930147311222,60.895718474689076 +2003,10,19,16,0,646,77,15.5,304.19331706650877,64.40350651803736,69.40913262690599,238.1909083260372,0.0,65.939605393838875,367.88783496117776,1.0,65.939605393838875,190.50025894682491,1.5,21.699999999999999,4.5999999999999996,334.24855390473738,334.85012681018617,335.18517604222131,336.36123151174513,337.33423571759721,337.71780665874041,38.915402896291504,37.648887919653099,36.978911520543853,37.299735542525383,38.097533239932062,38.413575712481624 +2003,10,19,17,0,402,50,16.5,119.66808460900829,76.55429639260844,80.02004137957647,248.7972322930887,0.0,21.257297058437434,150.69135185919782,1.0,21.257297058437434,75.609493316532351,1.5,19.399999999999999,2.6000000000000001,115.9850867665168,116.46900819597141,116.74814061267361,117.45825861937155,118.03857165789556,118.27383669874403,12.576935452638317,12.897885419194969,12.952737469310048,12.949486545814283,12.837795254646121,12.537048912500554 +2003,10,19,18,0,0,0,17.5,0.0,85.11894096811042,87.60289465030998,255.34379106772317,0.26266791206580725,0.0,0.0,1.0,0.0,0.0,1.5,15.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,20,7,0,96,2,6.5,7.7674916485178356,83.89169950655969,86.5557079035622,105.81623315957307,0.15309992231915806,0.5250493217536929,12.546436513989523,1.0,0.5250493217536929,4.9660609697561036,1.5,7.7999999999999998,2.1000000000000001,1.704506288455037,6.3910578958928674,6.4025675882981421,6.4690878014441138,6.5230926150036828,6.5453502283330769,0.31826541741569259,0.32659452801895322,0.32604536897203917,0.33675171401320758,0.34907302773510546,0.34639330502086296 +2003,10,20,8,0,401,85,7.5,168.25763240872357,74.23013579158435,78.01679153939332,113.34202321842541,0.0,33.539942078938672,202.63790928167433,1.0,33.539942078938672,105.35843758317263,1.5,10.0,0.0,166.70237044075668,167.57089239013629,168.0742419847364,168.74166389314763,169.29208805556812,169.51140304434571,20.193721442191979,20.314861539431309,20.103175730294147,19.851709326601423,19.600618780987801,19.303970178248367 +2003,10,20,9,0,614,109,8.5,342.60951961866579,62.27872892273754,67.63710661473038,124.29290802465592,0.0,73.570776265678944,408.6116645597516,1.0,73.570776265678944,214.76210902470223,1.5,13.300000000000001,1.5,376.2062029087283,377.13164928717322,377.65643297893365,379.06248779267861,380.22415604499184,380.68366421641298,43.057155412079176,41.919110064108011,41.430396285599613,41.972773620473788,42.888419378612745,43.141315796136674 +2003,10,20,10,0,703,127,9.5,492.73803362868881,51.5710734935127,58.65075956782014,137.41854042358122,0.0,114.62816319368814,582.28967717276601,1.0,114.62816319368814,308.04526969258234,1.5,16.100000000000001,0.0,559.15905288799831,560.05756673255894,560.5488213777362,562.262223064301,563.6810978507591,564.23926538808723,64.341275415130966,63.822137161844786,64.488330008082286,66.399116984062061,68.186275037342867,68.036746976924292 +2003,10,20,11,0,762,134,10.5,604.25780360945032,43.11906417469903,51.89269326852678,153.40050953224247,0.0,138.61048445614244,711.25428552342362,1.0,138.61048445614244,377.07680113542796,1.5,18.300000000000001,2.6000000000000001,693.34174618604254,694.15400471903683,694.58288257361562,696.43371645742809,697.96595777150401,698.56820933114795,76.666425924059439,76.954370720271569,78.554779225369501,81.252187941596219,83.23106743562623,82.445149287144318 +2003,10,20,12,0,764,141,11.5,648.63756091002733,38.47380971927141,48.360079972211324,172.09423800621494,0.0,148.27832841954518,761.7418123440234,1.0,148.27832841954518,404.61430741120301,1.5,19.399999999999999,3.6000000000000001,745.65562574709202,746.45169271033149,746.86642896042633,748.79619413152432,750.39272341853746,751.02084151838812,81.657954247061809,82.398688863980254,84.41524831765669,87.402809979018485,89.329661633519621,88.187656709421944 +2003,10,20,13,0,784,134,12.5,650.60789623740322,39.03247039992201,48.78102216353347,191.79140161059664,0.0,149.4080656304034,762.81626389254779,1.0,149.4080656304034,405.65447734190553,1.5,20.600000000000001,4.5999999999999996,746.13860133732101,747.03741009973066,747.5128863341663,749.38531807238257,750.93578794873451,751.54446210540482,82.358623540001176,83.084947915419676,85.080611364785625,88.032026133321509,89.926776705449981,88.783760979344535 +2003,10,20,14,0,720,142,13.5,574.70746168557366,44.598883703020896,53.059697378673555,210.00711098403096,0.0,132.77354785554834,675.86545269203543,1.0,132.77354785554834,358.98273579999494,1.5,20.600000000000001,3.1000000000000001,656.87488234543605,657.78647441101009,658.27714749401184,660.16417536416179,661.72523305266645,662.34011384366829,73.733900227539849,73.844880798913877,75.176752906298816,77.699399489206883,79.602391355060405,78.964621630911608 +2003,10,20,15,0,672,116,14.5,448.33499496919683,53.62440692345343,60.36017434095886,225.36290448205466,0.0,100.52094445751874,531.61723396408911,1.0,100.52094445751874,280.45617844947094,1.5,21.699999999999999,1.5,507.8648100124858,508.69134609128639,509.14572682892953,510.76574066205802,512.10627543999419,512.63507022052147,56.71829575722024,56.074564742140524,56.46763215391482,58.082952426332724,59.662744983358401,59.650270714081636 +2003,10,20,16,0,541,100,15.5,287.70658783023816,64.65386731284191,69.6983738947473,237.96210151649612,0.0,62.62013883860795,344.38019260575754,1.0,62.62013883860795,180.68736367112155,1.5,21.100000000000001,3.1000000000000001,311.97711918350547,312.84838719821721,313.34486900311106,314.64950929837954,315.72496144407694,316.15250292411957,37.261658477516868,36.19022964562577,35.496969209967958,35.67328036168329,36.247400412760129,36.499047854883287 +2003,10,20,17,0,342,53,16.5,110.70862419705684,76.77597262180016,80.28550939388377,248.55242198172505,0.0,19.39838443600102,137.87670572881564,1.0,19.39838443600102,69.554973579455591,1.5,18.899999999999999,2.6000000000000001,107.01224684474334,107.54383820290187,107.85222975961585,108.37340991536502,108.80015292356221,108.97237840858058,11.330264672490225,11.587988465164317,11.684976927889057,11.747428149002182,11.687069222007239,11.457288689040363 +2003,10,20,18,0,0,0,17.5,0.0,85.17763483745912,87.72300843147708,254.98909953193458,0.29108980818099484,0.0,0.0,1.0,0.0,0.0,1.5,17.199999999999999,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,21,7,0,88,1,6.5,6.1408218710786038,83.92212362676737,86.65096376659645,106.19506092757925,0.17238821586751876,0.29093124392566688,10.495000234255798,1.0,0.29093124392566688,3.8742038557029277,1.5,13.9,6.2000000000000002,0.64294725612901782,4.9808705557554322,5.1404537442093359,5.1745559957486211,5.2022479922274076,5.2136553170510398,0.17585327044533888,0.18011192642301382,0.17979143471921391,0.18523121963908995,0.19142123869289668,0.18983437051135155 +2003,10,21,8,0,388,73,7.5,152.17648042788372,74.38771283441041,78.22534104073635,113.63915401451983,0.0,29.636370594892622,185.61648864684051,1.0,29.636370594892622,95.415645406656765,1.5,16.100000000000001,7.2000000000000002,151.60307634676485,152.33542375441829,152.759334535509,153.40618891279556,153.9384364916026,154.15133981148634,17.779381664762894,17.988687074245473,17.862968401783263,17.676945764162344,17.430548937094265,17.116876223866136 +2003,10,21,9,0,432,138,8.5,300.69777931834579,62.471140907317164,67.87582085983786,124.58140396805541,0.0,68.606424402677249,351.55531401138114,1.0,68.606424402677249,188.20060024214308,1.5,17.800000000000001,6.2000000000000002,323.26973181173514,324.53539766347291,325.26415856032071,326.41196831491828,327.36221685562123,327.73620392630966,40.385458392893895,39.439610273860836,38.939511040313235,39.238993275239849,39.87835898250276,40.025880168190831 +2003,10,21,10,0,471,192,9.5,435.09451785288854,51.81059900191801,58.92736948708664,137.68455613389884,0.0,103.64083738523166,502.7538226215118,1.0,103.64083738523166,271.97727602189036,1.5,20.600000000000001,7.7000000000000002,479.40989801367107,481.02592084356559,481.94884062031576,483.48044601749893,484.74997301649091,485.24862379762766,58.952516301970483,58.431206444261854,58.732882287870211,60.073961822604261,61.358782657095595,61.251239201495338 +2003,10,21,11,0,702,169,10.5,599.16117605429076,43.41592796305891,52.210284802711854,153.6102419487355,0.0,139.8067701064659,702.11946679100595,1.0,139.8067701064659,374.36664502130287,1.5,22.199999999999999,9.3000000000000007,682.13285879487353,683.287587178178,683.92026634594015,685.93334466678425,687.59833627527212,688.25450183471958,77.811112050065731,77.931886978910512,79.276944763494669,81.846691901727382,83.783588659828766,83.113195555020482 +2003,10,21,12,0,644,200,11.5,624.96277174585998,38.81975694583761,48.709272320399116,172.1993684536936,0.0,146.91806385677177,727.65850568604174,1.0,146.91806385677177,390.59845995107213,1.5,24.399999999999999,10.300000000000001,708.40589874173065,709.77141417376959,710.52612908793162,712.67152614882878,714.44382409757418,715.14398365107854,81.58804872725139,82.136917655646386,83.790156585105677,86.490929614525797,88.316699892409488,87.400052372957873 +2003,10,21,13,0,455,259,12.5,556.67692965151809,39.388123152716474,49.13833019791049,191.76555399236213,0.0,136.05299393658763,637.49311998531175,1.0,136.05299393658763,347.7873907857695,1.5,24.399999999999999,7.2000000000000002,616.64608415170301,618.62852737965579,619.75497560676308,621.64590566983713,623.21022317284724,623.8261722587207,76.197726712467244,76.636630110674773,77.916419319243033,80.056969848668345,81.483593580281493,80.668645888528701 +2003,10,21,14,0,369,269,13.5,489.00195161933368,44.924383810277114,53.40097231411054,209.87342914716902,0.0,124.066154659742,551.29572364660953,1.0,124.066154659742,304.33663606774735,1.5,24.399999999999999,7.7000000000000002,529.02907944169897,531.44293258852645,532.83169206965636,534.1021829002741,535.1632870750982,535.57180968566115,70.249083509074666,70.155390328849592,70.871797699254614,72.374889915477695,73.519550125946324,73.019772229621466 +2003,10,21,15,0,0,94,14.5,94.0,53.908087986152815,60.67378318101686,225.16580239579213,0.0,29.483444897675287,92.701320486596657,1.0,29.483444897675287,57.356647563490959,1.5,24.399999999999999,6.2000000000000002,85.98688696252033,87.284105155871799,88.044918365671364,87.914025196404154,87.816049654203439,87.767662431825599,17.220882374366056,17.173300292134201,17.144982433490291,17.10055672979027,17.002735981856574,16.868224168843419 +2003,10,21,16,0,242,143,15.5,225.83197732247186,64.90097962837555,69.98410022782069,237.73388525449673,0.0,56.08185719524058,256.10508459656495,1.0,56.08185719524058,140.8869318900247,1.5,23.300000000000001,5.7000000000000002,232.90557607755122,234.36821147237697,235.21835103974692,235.93717334680196,236.5354324309358,236.76774209414165,33.267775571452482,32.657135153358411,32.211282921318229,32.221620084868427,32.430369223275974,32.459805977123942 +2003,10,21,17,0,0,16,16.5,16.0,76.99415070944337,80.54725276046975,248.30812576241468,0.0,5.0320646406386871,15.715999205850343,1.0,5.0320646406386871,9.7283681435328333,1.5,22.199999999999999,4.5999999999999996,14.602579084196158,14.825201036823428,14.955777881676239,14.921393186867679,14.894917615294558,14.882614866256647,2.9378011396056807,2.9284362020219308,2.9235153988454829,2.9134610608466116,2.8937414090735936,2.8705827602528391 +2003,10,21,18,0,0,0,17.5,0.0,85.23443558357252,87.84079461196882,254.63617177127898,0.31974927767830147,0.0,0.0,1.0,0.0,0.0,1.5,21.100000000000001,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,22,7,0,83,1,6.5,5.7107838794852279,83.9533975028013,86.74634754522693,106.57030356101045,0.19179050901243228,0.28541662434291959,9.9165980483091474,1.0,0.28541662434291959,3.60963026644822,1.5,12.800000000000001,0.0,0.64338359477245144,4.2196440516550773,4.858415350569139,4.8925284093297021,4.9202276629918167,4.9316394441879421,0.17263668613080979,0.17690014989381345,0.17658859542268884,0.18204098615755521,0.18826151342789108,0.1867226638843936 +2003,10,22,8,0,390,75,7.5,153.1908501859416,74.54665313664985,78.43442310722384,113.93187826117062,0.0,29.139517221475575,187.31919825391688,1.0,29.139517221475575,96.022949441828814,1.5,13.9,3.6000000000000001,152.78086119496231,153.53933391245874,153.97893217859212,154.62137978994096,155.14933120887568,155.3606927946349,17.335959570554504,17.614007754365382,17.579551330014315,17.467215752907158,17.249132794127053,16.920029514810892 +2003,10,22,9,0,508,133,8.5,322.35530040049775,62.66485627105645,68.11488938291521,124.86473399020066,0.0,72.306627043585806,380.13466990435586,1.0,72.306627043585806,201.4846937502889,1.5,15.6,4.0999999999999996,349.54502140854169,350.76231737322507,351.46111564318653,352.59119413345877,353.5281327686954,353.89555706294556,42.785634736988136,41.653564396693397,40.991986688654023,41.187135998071113,41.773917966552482,41.999018673685811 +2003,10,22,10,0,556,183,9.5,467.66429259516582,52.05092860548731,59.203783832045275,137.9445744180406,0.0,109.88024279014084,544.28570006864993,1.0,109.88024279014084,291.97013112369581,1.5,17.199999999999999,5.2000000000000002,519.94309136063225,521.47700901095038,522.34916573069563,523.85842859605441,525.11236174075793,525.60247165973294,62.51417440359419,61.785834817461428,62.014567129216132,63.437123460856313,64.886178919342925,64.822174589037928 +2003,10,22,11,0,91,264,10.5,319.36359990306471,43.71242276457193,52.526732503996904,153.8136480459333,0.0,90.065684556754405,338.86252508474109,1.0,90.065684556754405,196.96717763775985,1.5,15.0,6.7000000000000002,320.58593612386892,323.49727845425321,325.19545340779717,325.43916056715676,325.66048774625438,325.72897370358021,51.840206446605507,51.736334279576525,51.940674071614779,52.392093758076854,52.633276604460058,52.243724082207152 +2003,10,22,12,0,523,239,11.5,581.73167511682686,39.16362363023991,49.05618082780691,172.29927789716712,0.0,140.32182561061188,670.65667294880939,1.0,140.32182561061188,363.21562181187471,1.5,17.199999999999999,8.1999999999999993,650.46695709026642,652.26476358457353,653.27983674425559,655.16647274628258,656.728858388562,657.34259815814619,78.482343515794639,78.743363360794305,80.045318962128377,82.319474527236665,83.969738086279889,83.201686703009059 +2003,10,22,13,0,569,222,12.5,591.59248797771761,39.740551499343646,49.49251123828133,191.7369036536553,0.0,141.54744983742529,684.59142118004445,1.0,141.54744983742529,369.19953077966102,1.5,17.800000000000001,6.2000000000000002,664.81082635509699,666.46884126447299,667.40018704814349,669.25178519344888,670.78598577136461,671.38783488539286,79.020913999562438,79.28252668653839,80.646565697807105,83.005004959835233,84.715670038334068,83.936475135039103 +2003,10,22,14,0,202,278,13.5,397.47645119980791,45.24649406685357,53.73877855057819,209.7390597987021,0.0,106.17002418303606,436.33772587808448,1.0,106.17002418303606,246.50064859158863,1.5,17.800000000000001,9.8000000000000007,415.64839630135452,418.39685825692465,419.99192504141251,420.74355773685306,421.38048081015006,421.61714581241711,60.689440013078524,60.530051921632982,60.894508726877277,61.792375280035692,62.447563699615237,62.068913573333241 +2003,10,22,15,0,24,188,14.5,199.64135332288754,54.18844966391712,60.983833107513306,224.9690263347477,0.0,59.782887580104983,203.19347427739496,1.0,59.782887580104983,122.0887238451774,1.5,17.199999999999999,9.8000000000000007,189.67189362353577,192.04794083028651,193.43944117569845,193.24406167116473,193.10235460343625,193.02771340544615,34.802639988268858,34.632609197471801,34.585941856970173,34.592816283399763,34.517610248117094,34.288953923832445 +2003,10,22,16,0,356,136,15.5,256.20367692872651,65.14472156871716,70.26618876091226,237.50626573025528,0.0,59.757204818831504,295.89047082984217,1.0,59.757204818831504,159.52094167022173,1.5,16.699999999999999,7.7000000000000002,268.80693414826135,270.20453848594036,271.01459485598519,271.71090281930498,272.29195623917229,272.51598373027781,35.663398223981481,34.891321203722072,34.27988291962798,34.180588134018414,34.32643707207599,34.395141241983993 +2003,10,22,17,0,365,46,16.5,104.32425254777104,77.20871411434723,80.80514919356001,248.06437063622081,0.0,16.752224897016891,133.98488146679688,1.0,16.752224897016891,66.027586057951794,1.5,15.6,7.2000000000000002,101.59580913014605,102.04318655916671,102.30287736873063,102.96329333418036,103.50207522397032,103.72148116211551,9.6619097266898795,9.8768772822493531,10.013656530616506,10.207021679485218,10.306917700146617,10.133115681593454 +2003,10,22,18,0,0,0,17.5,0.0,85.28928418961154,87.95617785694297,254.28509445623527,0.34860439311353036,0.0,0.0,1.0,0.0,0.0,1.5,13.300000000000001,8.1999999999999993,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,23,7,0,60,1,6.5,4.3055591627531555,83.98550760851192,86.84182452543433,106.94183455944784,0.2113098149941173,0.26722571053772826,7.4518103625383469,1.0,0.26722571053772826,2.7450317189874718,1.5,7.2000000000000002,2.1000000000000001,0.6438038264789111,2.8890868766736566,3.7126863165160193,3.7468137464015001,3.7745197095379681,3.7859390459933118,0.16202217700770824,0.166298801367187,0.16601650339355753,0.1715065025571946,0.17782234189053389,0.17644046777434824 +2003,10,23,8,0,300,86,7.5,145.07143381864927,74.70691622212786,78.64398296792267,114.22009214154654,0.0,30.552804871200728,172.40232651772496,1.0,30.552804871200728,90.401711272194461,1.5,8.3000000000000007,2.6000000000000001,142.96251735737928,143.8940811066993,144.43618021809746,144.86396229715672,145.21827933696426,145.35732042189665,17.989993684148686,18.234348841854025,18.261461924875675,18.19746609321006,18.01375212386618,17.69152296407561 +2003,10,23,9,0,489,135,8.5,315.37600297686731,62.85980569192022,68.35423575983683,125.14281094077977,0.0,71.207738919619288,372.09554411496742,1.0,71.207738919619288,197.17022809598112,1.5,8.9000000000000004,2.6000000000000001,341.72461681122007,342.96799658481996,343.68268762146471,344.80715020092993,345.73894227921107,346.10466285728302,42.367621754436307,41.240745938603254,40.497221249506758,40.565887748417516,41.03448015685602,41.248242411648619 +2003,10,23,10,0,538,188,9.5,461.21821810657445,52.29195834095193,59.47990311032809,138.19854064586704,0.0,105.5193909000612,536.75656263049655,1.0,105.5193909000612,287.98703395661499,1.5,10.6,5.7000000000000002,512.18282035008394,513.77272030532822,514.68053193091703,516.18688377736498,517.43820199166407,517.92773350180403,60.335156944243394,59.498920846659288,59.582777266239624,60.814322533400549,62.177214892408614,62.216456397041178 +2003,10,23,11,0,91,264,10.5,318.96546997130497,44.008419475224464,52.841921783092005,154.01071887088517,0.0,89.959963435155942,338.7191225627389,1.0,89.959963435155942,196.7203763190054,1.5,10.0,7.2000000000000002,320.41703336188158,323.32571478297029,325.02241938841172,325.26531505174444,325.48613497687268,325.55430060626247,51.816231732808426,51.675844263142693,51.845314807226089,52.283480420578663,52.529334526235978,52.175810096656541 +2003,10,23,12,0,6,197,11.5,200.90459053590638,39.505285427644374,49.400688805442115,172.39398066797122,0.0,61.55368223815799,201.52718033788432,1.0,61.55368223815799,122.86613494650261,1.5,11.699999999999999,3.1000000000000001,187.97036528172688,190.52476883378682,192.02153369159578,191.83254558835759,191.69613084116224,191.62345453051674,35.830495627231116,35.746197032434523,35.735745951159686,35.730647370715666,35.600260072877838,35.316179930335473 +2003,10,23,13,0,12,241,12.5,248.73853941371419,40.089640730307586,49.84344972852816,191.7054436717531,0.0,75.273355023437233,251.63108758109371,1.0,75.273355023437233,152.22513150646674,1.5,11.699999999999999,6.2000000000000002,235.37636178062002,238.40074926365935,240.17196390046146,239.97035414547108,239.8273630972883,239.74841858641904,43.736553245218396,43.637134543399966,43.653617483383208,43.698739651757222,43.582311852595488,43.234356571646423 +2003,10,23,14,0,24,257,13.5,271.08209746771524,45.565091853595035,54.07299671622339,209.60397879130468,0.0,80.554261973346328,276.80925019551563,1.0,80.554261973346328,165.95166650693486,1.5,12.800000000000001,6.2000000000000002,259.45874926408976,262.60198147310109,264.44199836036364,264.23544940198013,264.09008222724788,264.00863076081316,46.773572497463817,46.613950294225589,46.620968438114936,46.693498279448313,46.621394562947003,46.285972501514593 +2003,10,23,15,0,59,204,14.5,232.34203615515565,54.46536640467095,61.29020165477739,224.77256309916757,0.0,65.674948631485307,244.74511641828562,1.0,65.674948631485307,143.18791193106949,1.5,11.699999999999999,4.0999999999999996,228.99807454566212,231.327545217237,232.68934031186757,232.83556992863248,232.9725021449695,233.01153967842441,38.197377202198673,37.941309761211585,37.872546893348485,38.017691859203744,38.123879061871925,37.931662159977897 +2003,10,23,16,0,454,130,15.5,281.2157495759426,65.38497297920622,70.54451808125445,237.27925146078678,0.0,62.716507111153319,332.24229894543873,1.0,62.716507111153319,175.87815035349087,1.280758926184204,11.699999999999999,3.1000000000000001,300.38414093802083,301.61936763066933,302.33130696853505,303.36211432708177,304.21489970632024,304.55058436742468,37.739804376344068,36.84518914162679,36.037006437394837,35.860041164490802,35.995011278259355,36.102496035694159 +2003,10,23,17,0,254,52,16.5,91.475655937665437,77.4195483384833,81.05907816291912,247.82118595225452,0.0,16.34235503133559,114.15429020376162,1.0,16.34235503133559,57.643021030689177,1.5,10.6,2.6000000000000001,88.400294195384831,88.929042793286101,89.237341471896372,89.731747259124802,90.136166048157506,90.299826107536276,9.4601608043026086,9.5747012993415428,9.6491019411418861,9.8055166633140001,9.9020537872915479,9.7728874398075938 +2003,10,23,18,0,0,0,17.5,0.0,85.34212364912126,88.0690847938717,253.935955892925,0.37760964455446155,0.0,0.0,1.0,0.0,0.0,1.5,8.3000000000000007,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,24,7,0,71,1,6.5,4.7933689403067365,84.01843836218175,86.93735822953535,107.30952746242589,0.23094895237462154,0.27364539635442386,8.5640881550680792,1.0,0.27364539635442386,3.045197103262506,1.5,0.59999999999999998,0.0,0.64426378729055667,2.8346406543447267,4.209447180304708,4.2435800321998407,4.2712921245206585,4.2827123182323179,0.16577015157373806,0.17004345017387337,0.16975096093313755,0.17522968706339459,0.18151460915596673,0.18007818451564633 +2003,10,24,8,0,379,74,7.5,147.26462692851732,74.86845877270872,78.85396352209429,114.50369367262907,0.0,27.429744386249357,181.47195537180346,1.0,27.429744386249357,92.321764414453853,1.5,5.0,1.5,147.34867648122082,148.10206448082533,148.53912524637482,149.16290712078305,149.67478451157245,149.88021094897783,16.069671335273664,16.403872197804311,16.508790680643873,16.536124697932419,16.416517712186486,16.081873653182317 +2003,10,24,9,0,590,108,8.5,323.33692102313557,63.05591721071728,68.5937815311113,125.4155502588335,0.0,70.023691624075113,389.4322426395151,1.0,70.023691624075113,202.79380791265311,1.5,8.3000000000000007,1.5,356.816353387905,357.7559837511904,358.2906476428509,359.66022590328851,360.79018542323558,361.23818592116459,42.028908030589974,40.758393422205472,39.807718141521356,39.77531526375941,40.251992932638991,40.538514602720397 +2003,10,24,10,0,685,129,9.5,474.02706607625822,52.5335823243025,59.75562634032371,138.44640322093989,0.0,106.82338099300831,564.35867465104582,1.0,106.82338099300831,296.49128442525699,1.5,10.6,3.1000000000000001,540.41956183252012,541.36549898038504,541.89056576959615,543.59156637094623,545.00217528261953,545.5563728794026,61.072102031400007,59.864764819033049,59.791339671613464,61.171022509389324,62.851218293474005,63.048962633225401 +2003,10,24,11,0,745,140,10.5,586.73329609058999,44.303788439740885,53.15573732978189,154.2014479513075,0.0,130.15589253547287,694.89750152488818,1.0,130.15589253547287,366.34781687539152,1.5,11.699999999999999,4.0999999999999996,675.9682345010059,676.8634032525456,677.34663206643972,679.22002714119515,680.7723722462988,681.3820939375845,72.829770752079739,72.314639635818338,73.179171571235983,75.413982444453524,77.468010775814278,77.27627833240048 +2003,10,24,12,0,770,139,11.5,636.59054837073336,39.84461820854534,49.74267940765129,172.48349275082157,0.0,145.71212662973011,752.93495142475876,1.0,145.71212662973011,397.12793077583052,1.5,12.199999999999999,2.6000000000000001,736.31784701119966,737.1270261527286,737.55202694624427,739.45488685316025,741.03281165816668,741.65089409875509,80.901172587727913,80.751170773158293,82.144281257898314,84.896852257759946,87.110793734682062,86.569921345202658 +2003,10,24,13,0,724,151,12.5,614.52649567600508,40.435276528146225,50.19103034742434,191.67116940606292,0.0,136.23048868041226,725.50401961198349,1.0,136.23048868041226,383.73155358943154,1.5,12.800000000000001,2.1000000000000001,708.11874822877382,709.04418146145247,709.54223684494241,711.51569473074949,713.14882330990042,713.79182439440331,75.871024757914128,75.677246467265476,76.862094856490614,79.371541949706668,81.423029640083627,81.025127259785137 +2003,10,24,14,0,738,128,13.5,557.57000943743742,45.88005565669241,54.40350817738148,209.46816487116325,0.0,123.40091087245924,662.21603882006502,1.0,123.40091087245924,348.15198822346309,1.5,13.300000000000001,0.0,643.19940450299077,644.01189481824179,644.4489519847989,646.2320055918542,647.71027687419894,648.29048957773705,69.220064483303375,68.560372059305209,69.22832248689123,71.31709479751332,73.307024354201559,73.215673255914197 +2003,10,24,15,0,706,99,14.5,434.86908195302703,54.73871420060018,61.59276753815145,224.57640214337331,0.0,92.819349573579117,522.70472149454008,1.0,92.819349573579117,271.77950391356637,1.5,13.300000000000001,0.0,498.53607761207053,499.22003216685056,499.59442765695843,501.07250931794368,502.29922375738562,502.779693173346,53.486036430588626,52.117868491108815,51.753319309646905,52.815960029212938,54.26405705180229,54.584916911671009 +2003,10,24,16,0,591,81,15.5,275.1754046425487,65.62161552077987,70.81896829917491,237.0528533390653,0.0,53.982234576453656,337.17532910374757,1.0,53.982234576453656,172.63017033407897,1.3197296474066564,13.9,2.1000000000000001,303.28610372219742,303.95950648200437,304.33978143625455,305.51767462628288,306.48738613100107,306.87371578198884,32.975522308774835,32.01009628165766,31.052463168353306,30.75013720825854,30.824438098336003,30.985434100350361 +2003,10,24,17,0,336,44,16.5,94.771921448581381,77.62654103780038,81.30892100173371,247.57860345427193,0.0,13.72841653575774,123.15909101859155,1.0,13.72841653575774,60.066263451145872,1.5,13.300000000000001,0.0,92.592069174969055,93.023504483323421,93.274821607605773,93.905956982872837,94.420388707759713,94.630298809950006,7.9897832476011299,8.0751559596608651,8.123685612468325,8.2906790474067531,8.4379732032733408,8.3657973979810389 +2003,10,24,18,0,0,0,17.5,0.0,85.39289923884765,88.17944429090618,253.5888460438861,0.4067160191972637,0.0,0.0,1.0,0.0,0.0,1.5,9.4000000000000004,3.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,25,7,0,26,0,6.5,1.3458208465973012,84.05217208750231,87.03291038492085,107.67325588875694,0.2507105042012941,0.017495671005764882,2.6941936730035434,1.0,0.017495671005764882,0.0,1.5,2.7999999999999998,0.0,2.6217180643221166e-05,0.60927063110412416,1.2289860774767885,1.228980225026939,1.228980225026939,1.2289756344925278,0.010210372277200442,0.010198719797011287,0.010170676056014641,0.010136011534773726,0.010046379340446276,0.0098960032023801183 +2003,10,25,8,0,148,93,7.5,121.07665910429097,75.031234626897,79.06430533751737,114.78258275672711,0.0,28.714361528108359,137.72573598358133,1.0,28.714361528108359,75.0198444989298,1.5,6.7000000000000002,1.5,117.10320182454228,118.1453699016258,118.75427189113213,118.96851009115923,119.14936868770243,119.21711943632107,16.726841752528983,16.87681102261611,16.939229051902554,16.966094071334492,16.870950012599845,16.642955485623951 +2003,10,25,9,0,69,166,8.5,190.91453844495931,63.25311628002204,68.83344623688858,125.68287000142585,0.0,52.271638001244511,203.20053261514187,1.0,52.271638001244511,117.59608287132042,1.2528391486422308,9.4000000000000004,0.0,187.45711508802549,189.36013127672749,190.47311859011762,190.57219932707011,190.66693292515495,190.69208005889661,30.797945976088482,30.497900565241679,30.258629736412193,30.171049676501369,30.104583515472012,29.97348362322191 +2003,10,25,10,0,153,249,9.5,325.42864282570895,52.77569283521696,60.03085110572605,138.6881135655311,0.0,85.835162905660468,356.37267414481516,1.0,85.835162905660468,201.81547120710042,1.5,11.699999999999999,0.0,335.83725390104314,338.34874479346718,339.81174587978182,340.43499245254975,340.9646076250001,341.16041198833386,49.842367256210842,49.328473719204773,49.191253158856703,49.58652323397866,50.026239015242709,49.89942073795531 +2003,10,25,11,0,24,248,10.5,262.28649839502299,44.5983995242816,53.468063166984855,154.38583125905674,0.0,78.099547712364384,267.61593901005563,1.0,78.099547712364384,160.54696095531102,1.5,14.4,0.0,250.81822940732877,253.88072611359138,255.67366713867804,255.46738709123406,255.32164799615035,255.24063953913955,45.375003146852443,45.207273122983999,45.197564526293604,45.256676079356033,45.181579103291938,44.862506552403815 +2003,10,25,12,0,6,221,11.5,224.85014080614317,40.18149809882986,50.082035678520946,172.56783178049562,0.0,68.578933967048869,226.36666499589779,1.0,68.578933967048869,137.55377546076687,1.5,15.6,2.1000000000000001,211.35326822254476,214.16616255990411,215.81410881645547,215.6162597958801,215.47461989260265,215.39789820577784,39.908062059048618,39.798422263052217,39.784511820145603,39.790853846200449,39.665111059306618,39.362057327633572 +2003,10,25,13,0,12,218,12.5,225.62725859380475,40.77734501193521,50.53513805489437,191.63407849853044,0.0,68.258022487349436,227.83400361228561,1.0,68.258022487349436,138.03508667938522,1.5,16.699999999999999,1.5,212.95593234199271,215.73399757550567,217.36134303771627,217.16339601016921,217.0216044712044,216.94489471708329,39.707219949291535,39.59139265132017,39.581239968642649,39.594453212526361,39.479307339746889,39.181146506255473 +2003,10,25,14,0,113,274,13.5,339.24930034102658,46.191265107664464,54.73019508656583,209.3315996837098,0.0,93.579407718594098,363.15423640330539,1.0,93.579407718594098,209.23029411699773,1.5,17.199999999999999,3.1000000000000001,343.81966591296714,346.78664818850086,348.51704955195976,348.77082446838585,349.00220072575621,349.07331910795301,54.02036029568265,53.717550140019782,53.785268034977406,54.211340840337556,54.514417525999335,54.229707077197737 +2003,10,25,15,0,65,213,14.5,243.62436759053975,55.00837064353198,61.89141071092222,224.38053560886314,0.0,68.487716504097349,257.90913356185035,1.0,68.487716504097349,150.15794301902145,1.5,17.800000000000001,4.0999999999999996,241.33555548052809,243.73212240544117,245.13286761451346,245.29061589575795,245.43785647760808,245.48010655199431,39.931734180882906,39.596193470790332,39.462016611857258,39.57547761561765,39.677821537819327,39.513618590240945 +2003,10,25,16,0,0,87,15.5,87.0,65.8545327443935,71.08942111962874,236.8270846792715,0.0,26.974079320876687,86.329345625644848,1.0,26.974079320876687,53.070754349956196,1.3593392049531423,17.199999999999999,3.1000000000000001,79.989388488696918,81.164742036551559,81.853972182277786,81.726804754354802,81.631173697113596,81.584404774504748,15.772047579258295,15.718939188494643,15.682358441768837,15.632229017170395,15.536816298031399,15.416287510824027 +2003,10,25,17,0,0,39,16.5,39.0,77.82958213621983,81.55456101860106,247.336657322634,0.0,12.135623372822334,38.582277689003909,1.0,12.135623372822334,23.763790524177733,1.5,16.699999999999999,3.1000000000000001,35.643257438396518,36.178993194292325,36.493214516571541,36.427155404488417,36.376962213941773,36.352955092216277,7.0871000567803728,7.0666266273117317,7.0548830251524182,7.0339113622148215,6.9902638296296526,6.9345343688616197 +2003,10,25,18,0,0,0,17.5,0.0,85.4415588168902,88.28718776128567,253.24385654495197,0.435871138186095,0.0,0.0,1.0,0.0,0.0,1.5,16.100000000000001,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,26,7,0,0,0,6.5,0.0,84.0866889758923,87.12844089380945,108.03289357860386,0.2705967738814095,0.0,0.0,1.0,0.0,0.0,1.5,16.699999999999999,4.5999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,26,8,0,0,56,7.5,56.0,75.1951947815301,79.27494665118257,115.05666123266805,0.0,17.217472529283889,55.787944653978954,1.0,17.217472529283889,34.142492621573652,1.5,16.699999999999999,4.5999999999999996,51.369704190957584,52.124198900659977,52.56666885510348,52.478444784367355,52.411670384999255,52.3794604840067,10.051948611547619,10.027969649719104,10.014625240967602,9.9868478686003819,9.9243324322337934,9.8426580930831502 +2003,10,26,9,0,0,78,8.5,78.0,63.45132581607558,69.0731474543561,125.94469087118927,0.0,24.418668018531474,76.966059522074474,1.0,24.418668018531474,47.567232390330581,1.2864192735943485,17.199999999999999,4.5999999999999996,71.381379822220168,72.455744167648191,73.085853909821495,72.967795423357586,72.878835500308526,72.835516577060361,14.267794795125594,14.225064665134015,14.198266720144833,14.156485538024096,14.071146458673699,13.960334339529854 +2003,10,26,10,0,18,200,9.5,208.9167623047056,53.018180402328014,60.305473611479215,138.9236261053458,0.0,62.425238307649153,212.56313443934658,1.0,62.425238307649153,127.77499851477678,1.5,19.399999999999999,5.2000000000000002,198.45453291156642,200.96084875569582,202.42890711188764,202.23020144528817,202.08660507312152,202.0103524052733,36.404228966360826,36.208129474855006,36.126666473503349,36.106943207568783,36.012134957153215,35.780724414396012 +2003,10,26,11,0,357,320,10.5,530.95289004885228,44.89212218838759,53.7787827056578,154.56386717566696,0.0,132.85749547480842,599.10286161466775,1.0,132.85749547480842,330.21740704787072,1.5,21.100000000000001,6.2000000000000002,574.25010526802726,577.07541096180785,578.70692475634473,580.0126051732716,581.1071642673802,581.52555678060628,75.951020590525189,75.354330432897029,75.638721747403778,76.949798060488789,78.149018720431059,77.917303302164825 +2003,10,26,12,0,30,242,11.5,261.1151983210118,40.515801520790006,50.41864059948191,172.64701704017716,0.0,75.446004037775992,272.13809510686735,1.0,75.446004037775992,161.06324457566791,1.5,21.699999999999999,5.2000000000000002,255.81221366320935,258.55293917570697,260.15535138831621,260.37465960084575,260.57273132263356,260.63505367860972,43.725770171376709,43.604221877239944,43.652295509884198,43.874686857437112,43.976136230284759,43.679244421806182 +2003,10,26,13,0,0,160,12.5,160.0,41.11573278307349,50.87565813977629,191.59417087469106,0.0,49.565030359936777,159.17264722647366,1.0,49.565030359936777,97.778394030756502,1.5,21.100000000000001,5.7000000000000002,148.00855508760858,150.13376617278897,151.37970784162573,151.20698955352918,151.0805952041195,151.01514727718327,28.914536712722999,28.835386431884455,28.800726553913453,28.757911810371358,28.625846249900434,28.403501474904768 +2003,10,26,14,0,0,92,13.5,92.0,46.4986010248524,55.05294043203021,209.19426777846536,0.0,28.925535436179018,90.597018732257894,1.0,28.925535436179018,56.149728151229148,1.5,20.600000000000001,4.5999999999999996,83.98806700656435,85.266962020945442,86.017079505846539,85.894044381860937,85.802274801482369,85.756610734488348,16.899318934599339,16.855167646465102,16.826976873152233,16.782085138895045,16.684588376102905,16.551632395692856 +2003,10,26,15,0,0,72,14.5,72.0,55.274214980978826,62.186012422488076,224.18495835448508,0.0,22.644290882874099,70.849529122980087,1.0,22.644290882874099,43.905189280053037,1.5,20.600000000000001,5.2000000000000002,65.711605878882693,66.713404665705397,67.301000467543034,67.19130035417345,67.108622502740701,67.068380915523917,13.227709395976941,13.191527418954388,13.169393137796067,13.131754940881443,13.052383918427353,12.948206880825071 +2003,10,26,16,0,0,41,15.5,41.0,66.0836101654774,71.35575991455488,236.60196125806738,0.0,12.894665641636635,40.309782597743649,1.0,12.894665641636635,24.966477982160939,1.3995763981696232,20.0,8.1999999999999993,37.419108903252663,37.989577656860043,38.324180821795366,38.249323290043542,38.192210972652525,38.165135433500993,7.5303534611881666,7.5081099901406683,7.4955031788716662,7.47197758390414,7.424202934436317,7.364869751741578 +2003,10,26,17,0,0,39,16.5,39.0,78.02856394297882,81.79588361379562,247.09538421149026,0.0,12.10237273317315,38.641171589390908,1.0,12.10237273317315,23.76480965481727,1.5,18.0,5.7000000000000002,35.656291482111619,36.190576354416045,36.503946750976397,36.438204229015845,36.388258660060984,36.36436246322338,7.0681136809189349,7.0474647848356309,7.0355951273015815,7.0144607807423967,6.9709268381106968,6.9154214036267287 +2003,10,26,18,0,0,0,17.5,0.0,85.48805314642271,88.3922494940193,252.9010807180526,0.4650194559061064,0.0,0.0,1.0,0.0,0.0,1.5,17.199999999999999,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,27,7,0,0,0,6.5,0.0,84.12196705034059,87.22390780419151,108.38831443837093,0.2906097375430479,0.0,0.0,1.0,0.0,0.0,1.5,16.699999999999999,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,27,8,0,0,48,7.5,48.0,75.36028739653638,79.48582337235754,115.32583292665274,0.0,14.930722591531293,47.514379872864403,1.0,14.930722591531293,29.253897970031229,1.5,17.0,5.0999999999999996,43.920079330800462,44.577597655840997,44.96323097156418,44.884037392410001,44.823961601799937,44.795125566751686,8.7180862644604158,8.6948006602948702,8.6817813873219158,8.6567939502192051,8.603077376550667,8.5333786311091977 +2003,10,27,9,0,0,106,8.5,106.0,63.65046625358286,69.31280083750615,126.2009362427818,0.0,32.658147449170635,105.64476498756329,1.0,32.658147449170635,64.691796823241233,1.3204922889342123,17.800000000000001,6.7000000000000002,97.924314924578127,99.333360147814787,100.15951584589789,100.01468181052563,99.906301370605419,99.852733819572293,19.104588491893995,19.031861412587755,18.981058536313292,18.919528275307151,18.80709120298626,18.665370455318122 +2003,10,27,10,0,0,85,9.5,85.0,53.26093388923918,60.57938874109593,139.1528982540506,0.0,26.730898142919905,83.669046443501387,1.0,26.730898142919905,51.856097691443829,1.5,18.899999999999999,6.7000000000000002,77.580489094075176,78.762949602419354,79.456509831316296,79.335321967179311,79.244452012571472,79.199738263734162,15.61628353280015,15.57460849548184,15.548465320055108,15.505467133982705,15.413549639628931,15.290611035785066 +2003,10,27,11,0,6,203,10.5,206.51927075248307,45.184825556246146,54.087778800572345,154.73555645990672,0.0,62.861913168003539,207.93072860314021,1.0,62.861913168003539,126.29390768167487,1.5,20.0,6.7000000000000002,194.01712411738021,196.61132217647946,198.13137793051064,197.93381775547414,197.79103135011411,197.71523005141364,36.625688558766299,36.493185891694395,36.450615373805739,36.434978502735611,36.316049209644568,36.051635932853927 +2003,10,27,12,0,0,109,11.5,109.0,40.84740523511585,50.75237713813672,172.72106946131365,0.0,34.160339432317535,107.59518189999787,1.0,34.160339432317535,66.560194515151309,1.5,21.100000000000001,5.7000000000000002,99.798799652993395,101.29929014168128,102.17929725396557,102.04535755831488,101.94618147503239,101.89606861109399,19.952577762146774,19.900365819780447,19.868810660146575,19.821751245555507,19.713051426847883,19.557020838684146 +2003,10,27,13,0,0,154,12.5,154.0,41.45032697233444,51.21247626907549,191.55144874524504,0.0,47.765405035868291,153.09142215205077,1.0,47.765405035868291,94.101659268469376,1.5,21.100000000000001,7.2000000000000002,142.31740759017973,144.37081866281972,145.57471988669172,145.40520182970542,145.28092177688953,145.21681643164143,27.870694743330755,27.792562464509469,27.756021118047421,27.71140973669036,27.581644229474175,27.368047424102777 +2003,10,27,14,0,0,167,13.5,167.0,46.801945456392424,55.37162808887576,209.0561566129479,0.0,51.423573411721648,166.66631698254503,1.0,51.423573411721648,102.0517130469028,1.5,21.699999999999999,6.2000000000000002,155.07551254864975,157.26498623150005,158.54851457207553,158.36562889161337,158.23158729214856,158.16243107138948,30.004663687466895,29.90529150290801,29.86022450200802,29.815564541744333,29.685583818478147,29.463593484219853 +2003,10,27,15,0,0,105,14.5,105.0,55.5361281728215,62.47645527772009,223.98966798365444,0.0,32.746171702137339,103.90882165394453,1.0,32.746171702137339,64.079215604276129,1.5,21.100000000000001,5.7000000000000002,96.435293513096056,97.865145653257414,98.703666700930953,98.560543032112534,98.453569070261437,98.400572698506267,19.130722787160373,19.069952559707087,19.033988852121102,18.984425448005791,18.879313725884842,18.733495531121061 +2003,10,27,16,0,0,56,15.5,56.0,66.30873533836086,71.61786979597751,236.377501351824,0.0,17.612226242235405,55.081332448678296,1.0,17.612226242235405,34.124623693648495,1.4404276471821653,14.4,6.2000000000000002,51.109026794686564,51.88820362888201,52.345222585866836,52.251476561225026,52.180350770283162,52.146223192761347,10.286795928815545,10.257539440064008,10.240322142151491,10.209625114051434,10.146139784486465,10.065106300346352 +2003,10,27,17,0,0,19,16.5,19.0,78.22338127346477,82.03277639995864,246.8548232810511,0.0,5.9755767607584396,18.667240437869943,1.0,5.9755767607584396,11.556928549166869,1.5,14.4,3.6000000000000001,17.340562662482931,17.604926231227815,17.759986234490526,17.720740288471919,17.690584654963601,17.676507656456376,3.4889066564726559,3.4779956978331246,3.4721525727506664,3.4604809219866515,3.4373937321525316,3.4098941355724035 +2003,10,27,18,0,0,0,17.5,0.0,85.53233624448933,88.49456701033124,252.56061357976054,0.49410252611800054,0.0,0.0,1.0,0.0,0.0,1.5,15.0,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,28,7,0,0,0,6.5,0.0,84.15798213100555,87.31926728219635,108.73939258852255,0.3107509926629287,0.0,0.0,1.0,0.0,0.0,1.5,10.0,1.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,28,8,0,0,58,7.5,58.0,75.52645780272795,79.69686908801692,115.59000370276328,0.0,17.669325119863128,58.047052581457038,1.0,17.669325119863128,35.367975548681372,1.5,10.0,2.1000000000000001,53.3009324316834,54.075090454467421,54.52909541694148,54.439658243380649,54.372024273724293,54.33933906334677,10.313997834170852,10.288137777724881,10.274369898233239,10.247355906049034,10.185840944693295,10.102001370179357 +2003,10,28,9,0,0,100,8.5,100.0,63.850455603316924,69.55232015925073,126.45153218829435,0.0,30.898236041177451,99.507316663261932,1.0,30.898236041177451,61.020483140164572,1.3550642870553697,10.6,2.6000000000000001,92.238169648863121,93.576057766589983,94.360523738005014,94.220820978917686,94.116114568401699,94.06453954836978,18.073813912559999,18.008594418220252,17.961908558410371,17.903270304889809,17.794732157469003,17.658552196520095 +2003,10,28,10,0,0,72,9.5,72.0,53.50384058121882,60.85249011534002,139.37589039767602,0.0,22.644290882874099,70.851716785890858,1.0,22.644290882874099,43.907376941891734,1.5,11.0,2.1000000000000001,65.711605878882693,66.713404665705397,67.301000467543034,67.192072804534405,67.110020416609004,67.070038207402817,13.22783983762022,13.191760101049981,13.16962597998986,13.132118259992247,13.052907923676788,12.948731518740363 +2003,10,28,11,0,0,100,10.5,100.0,45.4763784873474,54.39493380698245,154.90090221730776,0.0,31.377168671054516,98.606536961966157,1.0,31.377168671054516,61.042732607453267,1.5,11.1,2.6000000000000001,91.444799113460476,92.827244034443666,93.638058492910289,93.507733583958341,93.410731967256751,93.362250630950456,18.329652329155,18.280654968368729,18.250334611631835,18.20381828254283,18.100779976797782,17.957413204586452 +2003,10,28,12,0,0,97,11.5,97.0,41.17618638389128,51.08312829832141,172.79001162486068,0.0,30.480644926317382,95.57419559473486,1.0,30.480644926317382,59.220385728419345,1.5,10.0,3.1000000000000001,88.598055348596205,89.9441923234223,90.733736780220895,90.610658703804418,90.519277036986622,90.473364644778925,17.807955276392157,17.762012070707964,17.732541297353819,17.686955553249845,17.586199930367719,17.446281827699554 +2003,10,28,13,0,0,101,12.5,101.0,41.781015288164106,51.54547853869781,191.5059166080427,0.0,31.706813573405409,99.580969020466426,1.0,31.706813573405409,61.664477452079659,1.5,9.4000000000000004,3.6000000000000001,92.333685115135154,93.731220300016091,94.550887972328539,94.423300343675166,94.328601307677332,94.280990197932894,18.522611534931098,18.474298998485242,18.444016152699938,18.397756217833145,18.29417552485852,18.148970142157715 +2003,10,28,14,0,0,86,13.5,86.0,47.101181724627644,55.68614287167029,208.91725655559017,0.0,27.047347443432955,84.661934761197273,1.0,27.047347443432955,52.47841770889486,1.5,9.0,3.6000000000000001,78.488862577554357,79.685455572925918,80.387306114009775,80.269025045475033,80.180594486921123,80.136809291249122,15.801916995668243,15.760387156466132,15.733951629793793,15.691148471716239,15.59899638810043,15.474573146717326 +2003,10,28,15,0,0,72,14.5,72.0,55.79399294860627,62.76262329747339,223.79466486859837,0.0,22.644290882874099,70.848715994707291,1.0,22.644290882874099,43.904376152178735,1.5,8.9000000000000004,3.6000000000000001,65.711605878882693,66.713404665705397,67.301000467543034,67.19101324356572,67.108102914789711,67.067764919852749,13.227660912370268,13.191440933788156,13.16930659312324,13.131619899491117,13.05218915191131,12.948011879154659 +2003,10,28,16,0,0,51,15.5,51.0,66.52979793059276,71.8756376897684,236.15372576973596,0.0,16.039706042035821,50.156148798475002,1.0,16.039706042035821,31.070574757247815,1.4818768357266796,8.9000000000000004,3.1000000000000001,46.54572083087524,47.255328304874652,47.671541997842979,47.583621216243145,47.516785271840774,47.484850245015146,9.3679022497167512,9.3409211030528123,9.3252405364182565,9.2968544413015337,9.2385080434443658,9.1647076074171885 +2003,10,28,17,0,0,23,16.5,23.0,78.41393157365026,82.26512932732015,246.6150162248147,0.0,7.233592920918114,22.603534058821413,1.0,7.233592920918114,13.996314400964579,1.5,8.9000000000000004,2.6000000000000001,20.991207433531972,21.311226490433668,21.498930704909579,21.453663988131012,21.41897480033305,21.402686898797661,4.2237918428368326,4.2108805265424634,4.2038077344443572,4.1900575182484472,4.1625761541736779,4.1292890047400901 +2003,10,28,18,0,0,0,17.5,0.0,85.5743657545379,88.59408144450471,252.22255184539597,0.5230593380606088,0.0,0.0,1.0,0.0,0.0,1.5,9.0,3.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,29,7,0,0,0,6.5,0.0,84.19470780287403,87.41447358618825,109.08600241443588,0.33102170275314224,0.0,0.0,1.0,0.0,0.0,1.5,8.9000000000000004,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,29,8,0,0,58,7.5,58.0,75.69364851260103,79.90801507063915,115.84908151311242,0.0,17.635447635242929,58.138114601447633,1.0,17.635447635242929,35.369358402657554,1.5,9.4000000000000004,4.0999999999999996,53.333539477701628,54.105753149289022,54.558610032833151,54.469602542066482,54.402304369324476,54.369766433475611,10.293995954306533,10.266882943945205,10.253083095101733,10.226624043159228,10.166024551695031,10.083732001720454 +2003,10,29,9,0,0,93,8.5,93.0,64.05120951243934,69.79161735586014,126.69640750164936,0.0,28.807675312349843,92.352080695158392,1.0,28.807675312349843,56.738460545240216,1.3901410323017518,10.0,4.0999999999999996,85.612485453208407,86.866484960963049,87.601813851100403,87.468494740347992,87.368385468047606,87.319272593764367,16.84694647928724,16.790718670929795,16.750600268337585,16.696205849464608,16.593283478791697,16.464104427040116 +2003,10,29,10,0,31,214,9.5,228.97006693477746,53.74678627249575,61.12467015225429,139.59256587896778,0.0,67.103317181220589,235.28920335892042,1.0,67.103317181220589,140.0989146144625,1.5,11.1,3.1000000000000001,219.98980147277695,222.62396984633244,224.16643648357467,223.96576427371355,223.82193506862802,223.74424226761073,39.208178076313786,38.931177866800105,38.79540455624447,38.744701392859923,38.649604062781549,38.426495269578247 +2003,10,29,11,0,145,285,10.5,368.7890877778193,45.7666496466054,54.70012963820653,155.05990987160354,0.0,96.891914221815654,404.07962187274779,1.0,96.891914221815654,228.81358499152722,1.5,12.800000000000001,3.6000000000000001,383.54771931819516,386.3475416237996,387.97801167177016,388.72071224786566,389.3500746579565,389.58457854262628,56.092098140451576,55.594652358542788,55.537838465035726,56.065675417767693,56.611594885532021,56.432898519089093 +2003,10,29,12,0,523,226,11.5,552.21214138988012,41.502022534618014,51.41077717141589,172.85386776375162,0.0,129.24628014529966,643.62074378714988,1.0,129.24628014529966,344.82413439557558,1.5,14.4,4.5999999999999996,623.26772257187099,625.01225664601054,626.0025985938222,627.80688113635858,629.30534783666337,629.89157879523782,73.500779536503131,72.633138647246795,72.908217117576257,74.609021702625782,76.344808405902171,76.277443328631975 +2003,10,29,13,0,592,201,12.5,566.49212072524801,42.10768606620402,51.87455152564371,191.45758125035505,0.0,130.64698409930099,664.44853056449801,1.0,130.64698409930099,353.47324290200913,1.5,16.699999999999999,4.0999999999999996,644.7239570252375,646.2540609794122,647.11634245084599,648.86349784942615,650.31625689928217,650.88308199498374,74.142919434944588,73.198010950307292,73.499597928926889,75.294268922577359,77.131762893279756,77.094450172489729 +2003,10,29,14,0,291,256,13.5,418.7404166039463,47.39619447191123,55.996370588539236,208.77756088760043,0.0,105.62939708413433,474.09822028454801,1.0,105.62939708413433,260.90285570916274,1.5,18.300000000000001,4.5999999999999996,452.46084536882813,454.80236621521385,456.15745925966246,457.35777556861768,458.36118549904683,458.74753403736406,61.071958234902084,60.225902775465507,60.069745783753007,60.876268484742802,61.809500780241862,61.78352683634126 +2003,10,29,15,0,594,132,14.5,401.26012182978377,56.047693865417045,63.04440198019299,223.59995217159192,0.0,86.032016224602827,481.84059051826046,1.0,86.032016224602827,251.48063176296213,1.5,16.699999999999999,5.2000000000000002,455.79219567053815,456.86085345056847,457.46667325032723,459.09695359200646,460.44350387370946,460.97638022360513,51.01255521494047,49.471075521334043,48.570689860008983,48.863648068453756,49.72323677202489,50.097943242653827 +2003,10,29,16,0,560,80,15.5,251.85040530962706,66.74668979707226,72.12895240997176,235.9306578827456,0.0,46.166587387144382,313.43823925123922,1.0,46.166587387144382,158.15410267604054,1.5,16.699999999999999,4.5999999999999996,279.20679891909447,279.89779592426174,280.28906202332308,281.42562901791183,282.36071727790033,282.73509876853132,28.513852686463377,28.268171525686427,27.489371650871643,26.931360201842974,26.581914139284368,26.330491444941732 +2003,10,29,17,0,347,36,16.5,81.335611565620781,78.60011504819241,82.49283481351425,246.37600729162486,0.00850010098245177,8.6204600929540938,111.69523238441209,1.0,8.6204600929540938,51.553785733751695,1.5,14.4,3.1000000000000001,77.992447075579406,81.302497893708519,81.506913288821707,82.049865358126567,82.491840939460857,82.672860328160965,5.1334338158983259,5.1972964871825047,5.1885333412357415,5.2721801510573059,5.3617280931503606,5.3196241110690412 +2003,10,29,18,0,0,0,17.5,0.0,85.6141033402597,88.69073794664492,251.88699392853871,0.5518267240182161,0.0,0.0,1.0,0.0,0.0,1.5,11.699999999999999,2.1000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,30,7,0,0,0,6.5,0.0,84.23211538584216,87.50947904295371,109.4280186203616,0.35142253791347705,0.0,0.0,1.0,0.0,0.0,1.5,3.8999999999999999,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,30,8,0,311,74,7.5,127.36733388174906,75.86179923411248,80.11919028836923,116.10297644762403,0.0,21.98061299914885,159.00801489920622,1.0,21.98061299914885,79.897957179003626,1.5,8.3000000000000007,0.0,128.00919530511857,128.78383864522948,129.2363783965564,129.79841774356061,130.25923072350747,130.44479908332178,12.797278349361738,12.850774756400924,12.887096728114013,13.048857305797032,13.173655938601263,13.063452810794157 +2003,10,30,9,0,612,97,8.5,306.00913228570312,64.25264132745784,70.03060257371118,126.93549372202152,0.0,58.595427801580499,376.85230321471084,1.0,58.595427801580499,191.88612721342872,1.425727906441284,11.699999999999999,1.5,342.70680429643784,343.55277586650931,344.03190346988094,345.31459384370555,346.37106847074676,346.79173795110677,36.095608839675656,35.360545629515848,34.268918152894138,33.71517003193717,33.484601505430447,33.419463636614474 +2003,10,30,10,0,711,116,9.5,456.39545040095379,53.98965535409579,61.39582012852419,139.802890981745,0.0,94.587846625986316,552.29094843641428,1.0,94.587846625986316,285.35602289688018,1.5,15.0,2.6000000000000001,527.39390427865931,528.24244324237975,528.71449889017765,530.31587926403131,531.64241381974557,532.16381083322972,55.712570438735774,53.888149233790813,52.979134019940439,53.478048544656311,54.653212580492742,55.090632549726656 +2003,10,30,11,0,739,132,10.5,555.83867119111028,46.05550757401106,55.003247824141525,155.2125871380159,0.0,118.53975075027886,666.31969235408474,1.0,118.53975075027886,347.13177476434396,1.5,17.199999999999999,2.6000000000000001,646.84853755893937,647.7108888477801,648.18219984104576,649.98251006184648,651.47773593866077,652.06300752265508,67.780971358866765,66.288630234600902,66.137778088671411,67.679659648566485,69.582168803913902,69.872085852950804 +2003,10,30,12,0,752,135,11.5,600.71110869846336,41.82479172528219,51.735206988909056,172.91266376646274,0.0,132.51786071632992,718.09835249251898,1.0,132.51786071632992,374.91788574153702,1.5,18.899999999999999,3.1000000000000001,700.88975380774673,701.70726152115651,702.14575663881647,704.00220764853032,705.545483579093,706.14845842390378,75.045672097756707,73.716232247025147,73.939396386391337,75.950158039429724,78.149767681332222,78.332209849998549 +2003,10,30,13,0,778,125,12.5,601.84616888922949,42.430228320013725,52.19958234164336,191.40645175130683,0.0,126.76727386467374,720.99986500162106,1.0,126.76727386467374,375.40746881426691,1.5,19.399999999999999,4.0999999999999996,703.95373454975663,704.69435629919076,705.08965758555485,706.87109047559875,708.35263284544487,708.9310988126208,71.854877811901503,70.491444259346565,70.66306045873597,72.542840417020003,74.673111169473714,74.918928095545198 +2003,10,30,14,0,749,117,13.5,532.5545699386355,47.686869707752344,56.30219809668559,208.63706580369765,0.0,112.95843816962946,641.1215817239588,1.0,112.95843816962946,332.47657078964943,1.5,20.0,3.1000000000000001,621.4702526204311,622.22100960642831,622.62814048654661,624.31043751898551,625.70910539564761,626.25466351017769,65.045999466031049,63.330394864349891,62.880187220824098,64.174963921493344,65.945744949442073,66.353919581260882 +2003,10,30,15,0,711,92,14.5,411.22545651821582,56.297117366280624,63.32167836455475,223.40553586315417,0.0,80.583505650935095,502.42502347005768,1.0,80.583505650935095,256.99939127631319,1.5,20.0,4.0999999999999996,476.92824456577574,477.57538972195971,477.9326484378185,479.33261632986222,480.49115005834466,480.94740948308743,48.092517020440312,46.352781779540891,45.272867785222466,45.410681621373065,46.169523849921063,46.625164092930369 +2003,10,30,16,0,582,75,15.5,251.19513334089621,66.95930505389632,72.37770473358388,235.70832364820723,0.0,45.440795119513332,314.9436685104144,1.0,45.440795119513332,157.64999542416706,1.5,19.399999999999999,2.6000000000000001,279.99115695492713,280.62855084112653,280.98829469448469,282.08742160637075,282.99207393810491,283.35420126648438,28.066679207744375,27.936225343260809,27.188907469524302,26.594085222561787,26.180798960531295,25.864242072960511 +2003,10,30,17,0,320,36,16.5,76.573211781844535,78.781834792197,82.71578787798117,246.13784330243615,0.022403007378671975,8.6464021306658836,105.39217949228811,1.0,8.6464021306658836,48.600093620379013,1.5,17.800000000000001,2.6000000000000001,69.164572299400248,76.661697642676316,76.868518079395571,77.403339515536132,77.838738698326836,78.017024009643947,5.1473228218734217,5.2100625152763325,5.2013135033713418,5.2836360707745236,5.371595818560273,5.3296286070037651 +2003,10,30,18,0,0,0,17.5,0.0,85.65151509710347,88.78448610367309,251.55403993574535,0.5803398378660779,0.0,0.0,1.0,0.0,0.0,1.5,14.4,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,31,7,0,0,0,6.5,0.0,84.27017390768452,87.60423402645552,109.76531628660504,0.3719536110869539,0.0,0.0,1.0,0.0,0.0,1.5,7.2000000000000002,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +2003,10,31,8,0,240,79,7.5,119.3122511853152,76.03084688740597,80.3303214175532,116.35160078343287,0.0,23.0406217841083,145.0465276464904,1.0,23.0406217841083,74.412826768013247,1.5,10.6,1.5,118.58389922392143,119.44475590235074,119.9483822843394,120.32636577571915,120.63883748308464,120.76226171870081,13.443284520398374,13.447754818500195,13.442336249089367,13.547695143806726,13.625298247418929,13.538088510679437 +2003,10,31,9,0,461,123,8.5,278.63432247787404,64.45466215973097,70.26918421832009,127.16872515632052,0.0,57.597191183736918,335.83673656241047,1.0,57.597191183736918,174.31303235450474,1.4618298496445474,15.0,2.6000000000000001,305.46839974392026,306.62359504648367,307.287074133082,308.32418696442636,309.18135451635987,309.52007238080085,35.191281582784931,34.682867541771444,33.799205548860662,33.309272891219365,33.038386599336846,32.872084420930918 +2003,10,31,10,0,527,161,9.5,411.12116651587314,54.23233090215742,61.6658302421626,140.00683491532115,0.0,90.60807540399432,487.79273127859756,1.0,90.60807540399432,256.85980312356253,1.5,17.199999999999999,3.6000000000000001,463.62148985876564,464.99310332889149,465.77738970249192,467.17455173887214,468.33347032380266,468.78743963315725,53.634953578545129,52.119738467155088,51.244822398542922,51.491231319800569,52.263900951126153,52.589154018419968 +2003,10,31,11,0,727,149,10.5,562.82271626636987,46.34282075389182,55.30416957073238,155.35894399830485,0.0,126.19075140666523,673.55416074130881,1.0,126.19075140666523,351.64103314015273,1.5,20.0,2.1000000000000001,652.76834326066137,653.80521947820012,654.37780859864563,656.25709217381268,657.81887715646906,658.42885356223098,72.583519433883225,70.855753569414532,70.45573817731092,71.883352108035751,73.783468846058895,74.170699311135351 +2003,10,31,12,0,692,169,11.5,594.50169786083927,42.144372510475186,52.05630117622214,172.966427181524,0.0,133.6982487551158,707.10167883162944,1.0,133.6982487551158,371.50947594251511,1.5,22.199999999999999,3.1000000000000001,687.86571442267143,689.01552899660487,689.65185976853888,691.66572541684536,693.33735117408582,693.99269321345571,76.146148019312491,74.742807969200669,74.820968883530057,76.649590025019407,78.768680319641959,78.976628691592339 +2003,10,31,13,0,347,274,12.5,485.14190290791674,42.74853179296267,52.52045868820611,191.35253948434485,0.0,117.29449318850645,552.3242933611748,1.0,117.29449318850645,302.031250416479,1.5,22.199999999999999,3.6000000000000001,530.75177064218281,533.19351001132566,534.60399487448512,535.89979471056051,536.9839745745511,537.40086865117541,67.516479075505771,66.646146078420117,66.601445547583822,67.616032229359462,68.763154250747576,68.716746902589065 +2003,10,31,14,0,493,198,13.5,469.36176639497762,47.973094857247176,56.60351335928747,208.49577041164414,0.0,107.36967401523994,550.69355909390583,1.0,107.36967401523994,293.30633102314312,1.5,23.899999999999999,4.5999999999999996,529.14058213681187,530.75645126375559,531.67978423240334,533.29556828388627,534.63757156379347,535.16190850342809,62.298189318957121,60.969818418427401,60.532114204432141,61.430028021536636,62.688444813804374,62.940874471593844 +2003,10,31,15,0,552,138,14.5,383.487451147755,56.54215183904997,63.594341093070696,223.2114247371579,0.0,80.714354480036775,459.0985149048621,1.0,80.714354480036775,239.53965048102418,1.5,24.399999999999999,5.2000000000000002,433.9189070919241,435.10177920064257,435.77743716710393,437.059180673718,438.12117759432095,438.53796771506785,48.295348195672346,46.853965191230877,45.832171028103289,45.784038714321106,46.281538712502737,46.589639493993197 +2003,10,31,16,0,467,96,15.5,235.48258311841607,67.16754015182345,72.62178747567148,235.48675163022273,0.0,46.207185093638572,289.11581092163152,1.0,46.207185093638572,147.37849459145608,1.5,23.300000000000001,2.6000000000000001,257.53297051242441,258.43747855583786,258.95647208656328,259.8524162385404,260.59240968428935,260.88648008858524,28.182121604538889,28.200526102919859,27.665219901540155,27.138246362639538,26.718175169993163,26.331634647527178 +2003,10,31,17,0,119,43,16.5,57.638733007172021,78.95899692657335,82.9338862808727,245.90057366167593,0.036496918609387044,11.299870621952552,70.642227905376927,1.0,11.299870621952552,36.118710326279796,1.5,21.100000000000001,3.1000000000000001,50.411223133320171,56.077819708932466,56.363279213175602,56.608750726125173,56.810580002593575,56.891306437698496,6.6511506633663995,6.6729297154613088,6.6617621763134354,6.6933718667200868,6.7154627565542224,6.6625455725928813 +2003,10,31,18,0,0,0,17.5,0.0,85.68657197638692,88.87528037339074,251.2237916563302,0.6085327017495766,0.0,0.0,1.0,0.0,0.0,1.5,17.199999999999999,2.6000000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1989,11,1,7,0,31,9,6.5,10.249478533696209,84.30596603316361,87.69002437564596,110.06320145345765,0.3906371195203395,2.8467795812973122,12.007335135885961,1.0,2.8467795812973122,0.068365047673934531,1.5,10.0,0.0,8.2139750752504472,8.3391999236032888,9.3050193593856285,9.8004925834969683,9.8238460574907975,9.8327820040802312,1.669968865594619,1.6709420920188491,1.6681578937588148,1.6704485774392019,1.6690987296472821,1.6559710648103045 +1989,11,1,8,0,406,42,7.5,108.85604285644251,76.18577015792181,80.5219320897071,116.56826982071732,0.0,13.075887834931944,147.08625071312861,1.0,13.075887834931944,68.781240264245497,1.5,12.800000000000001,3.6000000000000001,113.3161502194742,113.70710378131935,113.9348641055779,114.58171692869136,115.10926671410164,115.32441159866738,7.6964167209222172,7.7070874851551867,7.6890475784997543,7.8252368108527497,7.9997756913326281,7.9667116735656665 +1989,11,1,9,0,534,92,8.5,270.38547632976588,64.63871783327858,70.4849046626768,127.37075441441225,0.0,50.208986158402588,334.47161038195139,1.0,50.208986158402588,169.86873708701131,1.4947941872704655,14.4,4.5999999999999996,303.07471585388726,303.87167758091226,304.32421100685025,305.57299370018859,306.59989718518824,307.0110707336014,30.958938120682337,30.598476164924168,29.743168881255507,29.205907138142809,28.900887923359342,28.692733283214579 +1989,11,1,10,0,683,89,9.5,410.60892179051524,54.451849737669605,61.90876700946924,140.1816752525545,0.0,83.606983784862479,502.12897373184808,1.0,83.606983784862479,256.59906736132319,1.5,14.4,5.7000000000000002,479.60892923487489,480.20463407750867,480.53026054810573,481.91971735641658,483.07085438239676,483.52300940817543,49.812877861696009,47.981804737642243,46.867133122558535,47.045629289384905,47.876061519385544,48.372671684007791 +1989,11,1,11,0,711,106,10.5,507.96365121982512,46.600665385100335,55.57341995650068,155.48164046711628,0.0,102.5722204775257,613.64877436320626,1.0,102.5722204775257,317.11857654381799,1.5,15.6,2.6000000000000001,596.10849547054079,596.74979960815733,597.095490144731,598.6971492891239,600.02757018167836,600.54742244911972,59.189229093560094,57.553275033255368,57.093116178558553,58.225509810726294,59.837340755534811,60.244506633595769 +1989,11,1,12,0,823,88,11.5,590.80933843074286,42.42892064255953,52.34199497146993,173.00674039239735,0.0,129.66952918246636,709.12655700963523,1.0,129.66952918246636,367.58386177786929,1.5,16.699999999999999,2.6000000000000001,693.37637738264243,694.09131995412872,694.47112163135125,695.88556492232908,697.07175430394943,697.52599558840382,73.828387070899012,72.124268772628255,72.038505443983993,73.738956932235752,75.82582728877594,76.144124164381694 +1989,11,1,13,0,836,98,12.5,603.39256742865132,43.030047338339244,52.80449926449601,191.29811236716392,0.0,126.1352518961499,726.96626461994106,1.0,126.1352518961499,375.88643791971123,1.5,17.199999999999999,2.6000000000000001,710.46839548496121,711.09363758003531,711.4213627971252,713.03151908818631,714.37553108093255,714.89562372061732,71.948033450294091,70.211730395454438,70.048782121559611,71.727115888832103,73.809678093559853,74.173521436253395 +1989,11,1,14,0,508,126,13.5,403.64992382015055,48.224800491687674,56.86901110814447,208.36495762680897,0.0,87.896257511325373,484.58439707321463,1.0,87.896257511325373,253.30716641107341,1.5,17.199999999999999,2.1000000000000001,466.89596809276242,467.74313950363228,468.21639864746589,469.96279236279895,471.40505707997767,471.97621067870244,51.138417962665663,49.784766158737582,49.300416287433208,50.125852130341876,51.382214927952418,51.728774806447831 +1989,11,1,15,0,516,133,14.5,360.54609572932861,56.75638372904366,63.83352284768298,223.03464771679,0.0,76.136860489456552,432.26506271133786,1.0,76.136860489456552,225.3611801242883,1.5,18.300000000000001,2.6000000000000001,408.07535841524214,409.21363095302127,409.86429418507134,411.12383129125317,412.16632378548837,412.57641340851944,45.670186551929056,44.337657382224712,43.317953819508567,43.224302762835329,43.649422612870772,43.919877958189375 +1989,11,1,16,0,41,89,15.5,101.1001535959544,67.3484209140627,72.83492510755455,235.28615838752498,0.0,28.368356013715864,106.35726480564878,1.0,28.368356013715864,62.186115640661242,1.5,16.699999999999999,2.6000000000000001,97.270431190770012,98.401793219762368,99.064149146865262,99.090001516594256,99.118838573711329,99.123296114328284,16.698389764134564,16.681580797508136,16.610891840996839,16.522029570747566,16.398882791419528,16.243161437000762 +1989,11,1,17,0,2,38,16.5,38.23946453713274,79.11166798678305,83.1233487046714,245.68631515174224,0.04921796632851666,11.611377289187097,38.434583234153486,1.0,11.611377289187097,23.308165010237897,1.5,15.0,3.1000000000000001,34.662569505011355,35.602642158074431,35.903473536297483,35.841085390410505,35.793721285484608,35.771025811277902,6.7817501425106705,6.7623907285604821,6.7510283883379385,6.7306725932520788,6.6886509325984251,6.6351551942786555 +1989,11,1,18,0,0,1,17.5,1.0,85.71498055253464,88.95335267697925,250.92872022700513,0.6332925859003791,0.31450404003991794,0.99240387608929914,1.0,0.31450404003991794,0.0075961164082149479,1.5,13.300000000000001,3.6000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1989,11,2,7,0,4,8,6.5,8.1546523708674865,84.34521219493243,87.78421569185252,110.39125428331975,0.4114282750621199,2.5180428011406208,8.3333690843031594,1.0,2.5180428011406208,0.060768931265719583,1.5,6.7000000000000002,2.6000000000000001,7.3012925547941254,7.4126035311077603,7.5700450879119101,7.6760912682681859,7.6968499118182567,7.7047962363100133,1.477163896896271,1.4780372643157791,1.4755823421096905,1.4776431291016849,1.4765069340526533,1.4649447173681027 +1989,11,2,8,0,176,61,7.5,89.342552785489247,76.35645994546474,80.73289402371721,116.80665100146285,0.0,16.633064892054264,108.82016950261001,1.0,16.633064892054264,55.8556453693054,1.5,9.4000000000000004,4.5999999999999996,88.775776507699888,89.452667327900826,89.84921974496325,90.181174775297919,90.454537903096963,90.563478822879347,9.784578817040865,9.7883949691467933,9.7642296606319672,9.8105010342727592,9.8523658956443381,9.7859145807777299 +1989,11,2,9,0,111,138,8.5,174.64579895145425,64.84172798911526,70.72258525647383,127.59268191113357,0.0,44.335697859518383,193.38271437515812,1.0,44.335697859518383,108.3846288215431,1.5,10.6,3.1000000000000001,176.70399597152601,178.23224431977874,179.12412647383951,179.49345389239252,179.80526483503456,179.92250951941691,26.419210084645691,26.312866133160238,26.034387526625959,25.831443361477557,25.64670837126106,25.43034894916007 +1989,11,2,10,0,7,124,9.5,127.26725396903349,54.693951751662155,62.176425307477146,140.3733925162198,0.0,38.957830888730562,127.36639645540777,1.0,38.957830888730562,77.714997068724315,1.5,13.300000000000001,3.6000000000000001,118.45040002792717,120.10997987643594,121.08290237090225,120.9233395714746,120.80478001894838,120.74530329128783,22.782028984906386,22.682585636612149,22.620795956881619,22.557926726768489,22.440513915277755,22.279529520039908 +1989,11,2,11,0,7,184,10.5,187.9275122718017,46.88479513706202,55.86995205894626,155.61596971308427,0.0,57.151193388734711,189.21360776541368,1.0,57.151193388734711,114.88822721815278,1.5,14.4,4.0999999999999996,176.47042790614157,178.84675637476477,180.23938769990232,180.04744118081177,179.9077519039266,179.83460104912749,33.370668073852258,33.215549802051939,33.139758162693312,33.089341326241254,32.962317186122888,32.736917452229164 +1989,11,2,12,0,8,227,11.5,231.8527341313241,42.74220963887058,52.65652861904793,173.0509372669898,0.0,70.164467966346166,234.58863822766165,1.0,70.164467966346166,141.84632571519589,1.5,14.4,4.5999999999999996,219.22379519957579,222.08156216627108,223.75582488031651,223.55325772963556,223.40858360889925,223.32992530814946,40.912622418989812,40.723185416706329,40.649002089266638,40.628790346317473,40.511521432857663,40.237289903222482 +1989,11,2,13,0,4,288,12.5,290.40071767717563,43.340068665367696,53.11725131276836,191.23883574583868,0.0,86.464227898303292,296.19427245017727,1.0,86.464227898303292,177.82369929261137,1.5,14.4,3.1000000000000001,277.35416952803598,280.80033322980739,282.81867403744991,282.61616706298935,282.47615843826111,282.39498876473243,50.405099161455148,50.143979732374234,50.043726571182155,50.043396913495137,49.939933803611588,49.621098893668503 +1989,11,2,14,0,5,159,13.5,161.71136455557382,48.502305416949156,57.16149979814705,208.22201516832646,0.0,49.544942568520021,162.06367187231373,1.0,49.544942568520021,98.813919158532116,1.5,13.9,3.1000000000000001,150.92849740176231,153.01806820635636,154.24289369836799,154.06262331493525,153.93024889075838,153.86219631847314,28.938857087083861,28.814355585842417,28.749262480802063,28.694679830460288,28.569256218206451,28.367149686519834 +1989,11,2,15,0,4,104,14.5,105.74738638427149,56.99278909962339,64.09714601638872,222.84101267593755,0.0,32.688966502122895,105.23000689908179,1.0,32.688966502122895,64.540769622520116,1.2568564454805453,12.800000000000001,2.1000000000000001,97.729335725358069,99.141466009099844,99.969466122533603,99.826295754083603,99.719269503157633,99.666256123762935,19.115667252188064,19.043582304595535,18.995767099357142,18.938577941563558,18.83004819818964,18.688655764752824 +1989,11,2,16,0,1,59,15.5,59.291205551761159,67.54804536325261,73.06985556503774,235.065988421864,0.0,18.594014420078643,58.422892627153757,1.0,18.594014420078643,36.139398985318543,1.5,11.699999999999999,3.1000000000000001,54.187242064713985,55.008160958245988,55.489646724070845,55.393510789615824,55.320718598365282,55.285641483699685,10.861920792081849,10.83165239221746,10.813027314364469,10.780213391461823,10.712893722443679,10.626931032346455 +1989,11,2,17,0,0,24,16.5,24.0,79.27989835718063,83.3319471563966,245.4507609513095,0.06363006272686296,7.5480969609580288,23.591432461038696,1.0,7.5480969609580288,14.609985859018956,1.5,11.1,3.1000000000000001,21.903868626294248,22.237801555235151,22.433666822514365,22.388245496027679,22.353516504969114,22.337129384522814,4.4077412087931673,4.3945085643646955,4.3871286354347427,4.3730869089201585,4.3447879513309839,4.3100550198622232 +1989,11,2,18,0,0,1,17.5,1.0,85.74548830456861,89.03843448471906,250.603777016005,0.6606879362995984,0.31450404003991794,0.99240387608929914,1.0,0.31450404003991794,0.0075961164082149479,1.5,10.6,4.0999999999999996,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1989,11,3,7,0,0,9,6.5,9.0,84.38500544306896,87.87800034204642,110.71422809769204,0.43234656383985887,2.8305363603592624,8.9316348848036924,1.0,2.8305363603592624,0.068365047673934531,1.5,10.0,3.6000000000000001,8.2139507348603367,8.3391755832131746,8.4126250584428792,8.4405176357476801,8.4638711097415129,8.4728113182460572,1.6604894159236878,1.6614734606703563,1.6587152986041194,1.6610381653014956,1.6597715332682148,1.6467834797004244 +1989,11,3,8,0,0,58,7.5,58.0,76.52784738082548,80.94358549691505,117.03951936873675,0.0,17.284513424274941,58.707322831561044,1.0,17.284513424274941,35.37743602481072,1.5,10.0,3.6000000000000001,53.534303219627532,54.295661208177485,54.742200487611093,54.655744661031768,54.590434522660992,54.558802959906032,10.096880747304159,10.067745258902988,10.050356072343286,10.020867087239061,9.9600308980457903,9.8807403518723209 +1989,11,3,9,0,0,71,8.5,71.0,65.04505670170674,70.95958646458705,127.80857927098091,0.0,22.236915897029906,70.02560157112417,1.0,22.236915897029906,43.290090968411853,1.5,10.0,4.0999999999999996,64.943660312283953,65.924087633642159,66.49911384774822,66.388812343432235,66.305542619618947,66.265160236884384,12.992439310214799,12.956071812497472,12.932657080198609,12.89345459113075,12.813643043406788,12.711022862539266 +1989,11,3,10,0,31,153,9.5,167.34173809152296,54.935513783331764,62.442618938527616,140.55865514312814,0.0,48.401586817860256,174.45594204473312,1.0,48.401586817860256,103.05868956803491,1.5,11.1,5.2000000000000002,162.63478212291551,164.48793790096775,165.57269057248357,165.65945638679585,165.74311731523369,165.76479158173171,28.439736306279137,28.220024475952329,28.054940542215547,28.001428201246505,27.947554724925549,27.806222753205315 +1989,11,3,11,0,133,297,10.5,371.05685830855396,47.16699820507215,56.163941028730704,155.7440199374427,0.0,99.892394648722757,402.57876002291204,1.0,99.892394648722757,228.89369741663316,1.5,12.199999999999999,5.2000000000000002,381.64171652184461,384.75211153434429,386.56634279494347,386.85569650438265,387.11892332882087,387.20018407569205,58.316476518214586,57.57816087301768,57.267371070271878,57.458044538634596,57.726790686652087,57.597615928586215 +1989,11,3,12,0,360,233,11.5,449.81701287814155,43.051960554391606,52.96738930592574,173.09019143954347,0.0,107.50842235179817,516.48610785749997,1.0,107.50842235179817,280.06795728241747,1.5,13.9,2.6000000000000001,497.00921209283308,499.12081179460159,500.33866352728813,501.54509613524795,502.55477442171167,502.94224790844254,62.273756240688989,61.190795497889631,60.874166362687689,61.675967952261288,62.718971052748543,62.802481505784073 +1989,11,3,13,0,47,252,12.5,280.00575580285539,43.645535549030534,53.42552640302748,191.17682361648772,0.0,79.1422693765834,295.45752246842767,1.0,79.1422693765834,172.7014635369365,1.5,15.0,5.7000000000000002,278.29289110226654,281.09951589311015,282.74028157672848,282.96572060200504,283.1707006916991,283.23411306605368,46.118753736760105,45.773486297090386,45.640591814216762,45.792802142792205,45.920625322153789,45.708507239985366 +1989,11,3,14,0,105,188,13.5,244.49501829812979,48.775042117878044,57.449157692825,208.07828783473886,0.0,64.494814767584941,267.48503996333824,1.0,64.494814767584941,151.95623023677692,1.5,15.0,7.7000000000000002,252.38721818773405,254.39546132166629,255.5668593088746,256.15711604742381,256.65367535205172,256.84162631280509,37.798488914983423,37.344439489659166,37.104234083248997,37.250096927213256,37.500367890866961,37.420384896375161 +1989,11,3,15,0,36,232,14.5,247.58010394996003,57.22449337303005,64.3558419812837,222.6477258350907,0.0,70.587452065743804,257.70147748424989,1.0,70.587452065743804,151.56550245997789,1.283006196723187,12.199999999999999,9.8000000000000007,240.59124775717336,243.33071663919881,244.93437947277971,244.74223940561643,244.60608882017576,244.53070635571734,41.487753784397263,41.152890083430314,40.89467805656394,40.722946597685059,40.519740304891499,40.293828287283986 +1989,11,3,16,0,57,122,15.5,138.37972345259158,67.74300329254397,73.29981758288179,234.84667959760523,0.0,37.265904024890261,148.35276103671546,1.0,37.265904024890261,85.180605308077531,1.5,12.199999999999999,6.2000000000000002,135.13744448878262,136.58745224562048,137.43600472970604,137.49089988623621,137.54561595656497,137.55849758235223,21.923269359836986,21.947071273897993,21.877429080713174,21.762485747755843,21.575483950940537,21.343143857344785 +1989,11,3,17,0,20,24,16.5,26.25178248950218,79.44331735328326,83.53541111597069,245.2162600452144,0.07818684190065789,7.5150134811794835,27.522456580415803,1.0,7.5150134811794835,16.11887725362924,1.5,10.6,3.1000000000000001,23.106296266704724,24.666653922855627,24.860818174214874,24.858868613822548,24.859330297448711,24.857545374144159,4.3956871505525745,4.3882507206499275,4.3808920874282542,4.3741866757845749,4.3549316941838256,4.3202586516082713 +1989,11,3,18,0,0,1,17.5,1.0,85.77358900737285,89.12046234156712,250.28184507154526,0.68757129528817,0.31450404003991794,0.99240387608929914,1.0,0.31450404003991794,0.0075961164082149479,1.5,10.6,4.5999999999999996,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1989,11,4,7,0,28,8,6.5,8.9911925106054227,84.42530561646929,87.97132087656459,111.03200000904141,0.45338922348586125,2.5289178229572133,10.659244299837255,1.0,2.5289178229572133,0.060768931265719583,1.5,0.0,0.0,7.3013088509631245,7.4126198272767594,7.8091482970661836,8.6871296885619493,8.7078883321120202,8.7158318032029651,1.4835104966484909,1.4843766210776483,1.4819042673426364,1.4839435074374219,1.4827515984881647,1.4710959104653833 +1989,11,4,8,0,134,60,7.5,80.606585917750209,76.69985867743718,81.15392436167492,117.26679618202046,0.0,15.490798005268374,97.336302295191686,1.0,15.490798005268374,50.454005301503258,1.5,2.7999999999999998,2.6000000000000001,79.718438351369656,80.384952918863235,80.775715839839734,81.098345096055027,81.363787773836847,81.469792405221881,9.1155749686469498,9.1436011303157656,9.1282753553869114,9.1692401301115556,9.1965809686466606,9.1239401017476158 +1989,11,4,9,0,610,66,8.5,262.62429876789315,65.2486069939138,71.1958103722016,128.01839179456215,0.0,45.769025574545871,333.67162037325369,1.0,45.769025574545871,164.56625196605631,1.5,6.0999999999999996,3.6000000000000001,301.20781658868532,301.72571575096356,302.01423007157331,303.06764749012484,303.93567149950866,304.28274141881138,28.27492954052034,28.296559778229899,27.603714688347583,26.89771980545067,26.353282612584561,25.912539030044798 +1989,11,4,10,0,659,77,9.5,379.1761131102383,55.17641458978855,62.70723447691907,140.73744361907083,0.0,73.991026298474836,467.31863948650152,1.0,73.991026298474836,237.21984990006672,1.2459307267321282,8.3000000000000007,2.6000000000000001,445.14096246184585,445.70542753426446,446.0154317358755,447.39380464671007,448.5321967160852,448.98217774269017,44.797137823435449,43.154257152197594,41.879595400828975,41.688055072163145,42.116612438307662,42.522895463171622 +1989,11,4,11,0,838,90,10.5,553.06862523770667,47.44714347633391,56.455267358217355,155.86580976916252,0.0,115.86711962716889,673.44622792321377,1.0,115.86711962716889,344.68308600651852,1.5,9.4000000000000004,3.1000000000000001,654.48573622934339,655.08864513957701,655.40733960925752,656.93672706804864,658.2125717586564,658.70575308836317,67.757429714969987,65.369926206822882,64.381949116030043,65.156457920919379,66.743079702324238,67.363716408198712 +1989,11,4,12,0,825,110,11.5,603.33553011176286,43.35805438889845,53.27446171757138,173.12453698862436,0.0,127.10934661860595,728.90695749367137,1.0,127.10934661860595,376.11885468795754,1.5,11.1,4.0999999999999996,711.3507981428728,712.09588166807544,712.4948634335309,714.20416935583046,715.6297789613327,716.181397447103,73.425549134884463,71.28963556179437,70.647265084888076,71.942517250807256,73.83352547638691,74.409661408538298 +1989,11,4,13,0,846,103,12.5,603.49542732061741,43.94634105947736,53.72921505197712,191.11209630051326,0.0,126.65011085908625,730.57153885359469,1.0,126.65011085908625,376.0627950739231,1.5,12.199999999999999,3.6000000000000001,712.99982232048978,713.68490922417914,714.04839111304659,715.70103681562375,717.08070055387179,717.61333617497928,73.137432590121165,70.976234414128541,70.330082342131675,71.625210828462997,73.520650478384312,74.108278189544109 +1989,11,4,14,0,798,101,13.5,527.0378273999911,49.042903980217886,57.731877596007,207.93378604594795,0.0,107.01704843836602,641.38030813659475,1.0,107.01704843836602,328.90466439982703,1.5,12.800000000000001,4.0999999999999996,620.64509369396808,621.37642439477077,621.77460424453272,623.3963626551789,624.74361089524916,625.26956172152279,63.008935790937564,60.786221229389334,59.701709281246181,60.255212893719239,61.61918515422196,62.173633137368348 +1989,11,4,15,0,738,86,14.5,402.44351503126484,57.45139304838255,64.6095062232347,222.45480708212824,0.0,78.649476680684842,498.74321152533901,1.0,78.649476680684842,251.39853354580802,1.309231881161503,12.800000000000001,3.1000000000000001,471.70248818811649,472.31539662032048,472.65049401508941,473.98038551779587,475.08080686463711,475.51370865672283,48.159397086198055,46.479355843879375,44.901299209276807,44.336103721949861,44.401731586621054,44.734357711524915 +1989,11,4,16,0,555,59,15.5,216.39897881085815,67.93320091438514,73.5247126092982,234.62827077164587,0.0,32.930981151923852,278.69025250611691,1.0,32.930981151923852,135.82393461693189,1.5,13.300000000000001,2.6000000000000001,245.19699027561526,245.67479640137955,245.94545745603781,246.89704235694276,247.6767024028718,247.99143366989162,19.861906009675263,20.291309092555522,20.192335209006934,19.911309283782412,19.51099254909003,19.023127560021894 +1989,11,4,17,0,274,33,16.5,62.907244808447238,79.60184423048429,83.73365041264671,244.9828719467411,0.09286892792612379,8.0181300838792211,89.674822689823941,1.0,8.0181300838792211,40.034416347600697,1.5,10.6,3.1000000000000001,40.358107487484467,64.048935259348056,64.243623691027111,64.722389976355061,65.112230073519811,65.271787290994794,4.7705453202725172,4.8264136681116607,4.8183656359297276,4.8919209667180636,4.9701935295776813,4.9317009557420679 +1989,11,4,18,0,3,0,17.5,0.041917230018140676,85.79927658237577,89.19941382608096,249.96303260080774,0.7138785844987182,0.00054492399023582834,0.21975236770122275,1.0,0.00054492399023582834,0.0,1.5,9.4000000000000004,3.6000000000000001,8.1656603419955638e-07,8.1656603419955638e-07,5.9222951413769477e-07,4.099478329385239e-07,0.055387054224148295,0.077277290022233727,0.00031801448491184102,0.00031765155421894408,0.00031677809773705221,0.0003156984289876805,0.00031290672508730346,0.00030822307704863916 +1989,11,5,7,0,51,7,6.5,8.7228355525531711,84.4660701906854,88.06411784607815,111.34444783633391,0.47455255533915497,2.2239251424626181,11.865022141685134,1.0,2.2239251424626181,0.053172814857504636,1.5,2.2000000000000002,1.5,6.3886619109283709,6.4860590152028017,6.868436963847663,8.6951354175856927,8.7132992306920052,8.7202468496809153,1.3045624470049799,1.3053128983659901,1.303131761362655,1.3048940601117254,1.3037941603425391,1.2934998387877563 +1989,11,5,8,0,488,32,7.5,105.27786799264059,76.87241738360368,81.36382627379642,117.48840512546711,0.008281181017115885,8.015121190155833,149.83077022274119,1.0,8.015121190155833,66.509241076760404,1.5,5.0,0.0,107.61785069035413,112.49935671469262,112.67881767100083,113.2994828342291,113.80421918832148,114.01142471356752,4.7919890093493809,4.8668342307118833,4.8584585828554916,4.9553637913233937,5.0616928422474734,5.0210325898472865 +1989,11,5,9,0,714,48,8.5,275.36891831962777,65.4522800085455,71.43115759650539,128.22206764902063,0.0,43.584968156371936,354.66558513026757,1.0,43.584968156371936,172.1748064661017,1.5,10.0,2.1000000000000001,319.81730886561041,320.19352315215349,320.39870237720146,321.36529453422918,322.16232752321292,322.48088527367088,26.90631607087569,27.079239850280182,26.497343487949465,25.754287696444923,25.122686774974586,24.605085365649646 +1989,11,5,10,0,780,60,9.5,414.47452168259406,55.41653205181307,62.97015774465206,140.90974128192448,0.0,76.260410054730301,513.05889047146854,1.0,76.260410054730301,258.4264085688568,1.2703114331679854,12.800000000000001,3.1000000000000001,489.48552624766842,490.00938175253657,490.29375679625122,491.4890620662502,492.47967973775377,492.86774038510538,46.368359085536703,44.638063450520576,43.208548037040728,42.845237923981834,43.087843991289446,43.497360592254545 +1989,11,5,11,0,660,135,10.5,496.93314499133521,47.72510011877884,56.7438115220478,155.98136000459647,0.0,103.06022385765107,600.76571405539119,1.0,103.06022385765107,310.84714691851832,1.5,15.0,4.5999999999999996,580.78792345672014,581.71980514139818,582.23850385860692,584.03373774111992,585.5199048455512,586.10493759232327,60.7110992684729,58.734214824938078,57.745585158425492,58.297026061759098,59.585567151683577,60.060293239870219 +1989,11,5,12,0,625,153,11.5,524.08317619288118,43.6603729006473,53.577631015877486,173.15400968461765,0.0,113.55319475113872,629.19087436909172,1.0,113.55319475113872,327.94892041838648,1.5,16.100000000000001,3.6000000000000001,610.82897962330924,611.85956851501385,612.43301206616775,614.36782610654984,615.97097561859277,616.60090058945548,65.999430532005618,64.176597524468264,63.542422365237073,64.567219953788467,66.146832289831949,66.610022688042861 +1989,11,5,13,0,596,175,12.5,525.08257723628458,44.24237926756552,54.028208656111566,191.0446764236502,0.0,115.75847555407232,626.9272222409345,1.0,115.75847555407232,328.68446435481866,1.5,17.199999999999999,4.0999999999999996,607.01210542013007,608.28752335640729,609.00571383665408,610.9916738531648,612.63662637147445,613.28349257736261,67.325844192780082,65.580336126244219,64.963332165212137,65.965632324992967,67.496505211124457,67.913326462486836 +1989,11,5,14,0,606,158,13.5,479.04537716788417,49.30578606051077,58.00955371552037,207.7885231140275,0.0,102.1620303799337,575.53845390166521,1.0,102.1620303799337,299.95277641078007,1.5,17.199999999999999,5.2000000000000002,553.40813995152973,554.62242857395131,555.30929346858034,557.15520059451603,558.68156277869787,559.28401610373965,60.375577502758816,58.556095157334312,57.539840334589364,57.987446045450064,59.07750436313777,59.521381789125115 +1989,11,5,15,0,445,146,14.5,335.0638365894975,57.673386864477045,64.8580361513584,222.26227915709754,0.0,70.567351926014609,401.46744481827989,1.0,70.567351926014609,209.68994922603051,1.3355116414231776,17.800000000000001,4.5999999999999996,377.0547743468768,378.3436821450203,379.08362626092577,380.35344983149344,381.40225568371068,381.81690588182715,42.860920674191568,41.837278542803176,40.769581735486781,40.385118270990915,40.402290550736105,40.479130958704538 +1989,11,5,16,0,397,97,15.5,208.12907403152894,68.118547127879,73.74444450061132,234.41080344292783,0.0,38.225795694237441,257.25317180357644,1.0,38.225795694237441,130.44640465019455,1.5,17.199999999999999,4.0999999999999996,227.38144860611541,228.31357364436175,228.85269983875148,229.71791277314173,230.42844507564649,230.71320352441467,22.725577459842778,23.135067319184994,23.121032648748308,22.967481506059681,22.666569544772905,22.20373334736734 +1989,11,5,17,0,326,29,16.5,63.491714972893405,79.75540197634672,83.92657835287525,244.75065872729397,0.10765510687041942,6.9493524458822504,94.13214855853964,1.0,6.9493524458822504,40.31154707237728,1.5,15.6,4.5999999999999996,35.096868096455609,65.587471629563211,65.753002697080149,66.201136025629893,66.565882000844752,66.715313869350865,4.1400981408814532,4.1929524653485624,4.185907888630874,4.2551324229102843,4.3295637518805448,4.2957429187503493 +1989,11,5,18,0,9,2,17.5,2.1138367493100452,85.82255178780669,89.27527342053484,249.64744936642958,0.7395479784819735,0.63048795782086642,2.6404185620823739,1.0,0.63048795782086642,0.015192232816429896,1.5,13.300000000000001,3.6000000000000001,1.8253246031143482,1.8531523471927571,1.8694738435572833,1.8756716990378468,2.0100296452637445,2.1123936259011438,0.36986129606236817,0.370078987043434,0.36946369004972074,0.36997695053790991,0.3696878951807453,0.36678894143384627 +1989,11,6,7,0,22,6,6.5,6.7077963716604661,84.50725428440204,88.1563298122256,111.65145018276583,0.49583183489356514,1.896225593071095,8.0602571734754118,1.0,1.896225593071095,0.045576698449289688,1.5,8.9000000000000004,4.0999999999999996,5.475980944757465,5.5594641769926909,5.6311144243930125,6.5342011786002265,6.5497701612627797,6.5557278860042034,1.112362800174326,1.1130127017133855,1.1111591781909522,1.1126895251656708,1.1117979642951918,1.1030601758442704 +1989,11,6,8,0,395,37,7.5,94.885536283565926,77.04544441624037,81.57320471939298,117.70427235481544,0.019447372514191305,8.7362201837239954,133.6510024640757,1.0,8.7362201837239954,59.995663230157724,1.5,11.699999999999999,4.5999999999999996,91.460456449308964,100.88818983409764,101.09089704367911,101.67068843334836,102.14252462482166,102.33589679242802,5.2071351159904129,5.2758229103131553,5.2668424006194945,5.3564209410322254,5.4528862314454516,5.4095656355997459 +1989,11,6,9,0,274,135,8.5,221.19043506769253,65.6559750872977,71.66552734887209,128.41955788554003,0.0,48.620744334684531,260.04652223345829,1.0,48.620744334684531,137.89289912071169,1.5,13.300000000000001,5.2000000000000002,235.57875821150861,236.97401801764744,237.78493849231791,238.45481092615253,239.01142010067488,239.2293287281077,29.109974126583712,29.245034582470797,28.99098011196585,28.658525588561364,28.289292820605475,27.886999002211525 +1989,11,6,10,0,209,170,9.5,264.13156673535616,55.655743264174795,63.23127388176827,141.0755343070218,0.0,63.800113672909539,302.39487825320111,1.0,63.800113672909539,164.95494326394396,1.2948310983875966,16.699999999999999,4.5999999999999996,283.96586546198574,285.63552396828783,286.60523369085456,287.50676580462391,288.25493130304119,288.54731028189462,38.190390598166836,37.523501603922831,36.877156119735638,36.724520216623283,36.773805409457772,36.777059819671912 +1989,11,6,11,0,203,191,10.5,301.47418901756078,48.000737649302046,57.02945404254326,156.0906935910399,0.0,73.506419654759625,343.2634044230241,1.0,73.506419654759625,188.33669860928018,1.5,19.399999999999999,7.2000000000000002,326.47761192505277,328.27733891836783,329.32180802168068,330.36763450821348,331.23615510119589,331.57538981093251,43.308406778929516,42.512714399793822,42.038321499396126,42.250490561122206,42.706780274238405,42.770429707205317 +1989,11,6,12,0,5,197,11.5,199.94761859228385,43.95879865875838,53.87678290032528,173.17864699680487,0.0,60.82754094372828,201.35106421628885,1.0,60.82754094372828,122.26197766711263,1.5,20.0,5.2000000000000002,187.839360869106,190.37022667554785,191.85344137548694,191.65825934029445,191.51695405235097,191.44215868006881,35.528964817347649,35.361593307777419,35.276051620620706,35.219422787855152,35.082965355759214,34.843560217433627 +1989,11,6,13,0,3,249,12.5,250.7496710579525,44.533545302881414,54.322399554383495,190.97458891599013,0.0,75.070022840504407,254.55452126367351,1.0,75.070022840504407,153.44768636941305,1.5,20.0,7.2000000000000002,237.94578585524459,241.00853500955833,242.80296226878437,242.59738597545322,242.45166336575267,242.37116974212279,43.854936367592408,43.616830625802827,43.497207635337595,43.439842273025143,43.299109726743787,43.019313548604941 +1989,11,6,14,0,2,135,13.5,136.05147540392903,49.5635851407366,58.2820817269358,207.64251523390814,0.0,42.013163256474087,135.56414118485245,1.0,42.013163256474087,83.091307635622783,1.5,17.199999999999999,6.7000000000000002,126.041540627931,127.8473730227083,128.9061622472482,128.74099249954122,128.61871619842736,128.55690432535559,24.559978389513859,24.464965020053899,24.406304551795735,24.343196807810585,24.216694512668553,24.038426854642687 +1989,11,6,15,0,5,120,14.5,122.10507369809802,57.89037586008489,65.10133117057458,222.0701676481332,0.0,37.35819833424344,122.26565869770951,1.0,37.35819833424344,74.550721739421377,1.3618223545363572,15.0,3.6000000000000001,113.59697284869635,115.19474983446781,116.13140953210736,115.97428604494135,115.85725185561756,115.79883979654018,21.872234188504233,21.784206927917076,21.716180065009009,21.639446368358207,21.507776525475048,21.346329801204536 +1989,11,6,16,0,1,75,15.5,75.276326498314745,68.2989535874515,73.95891959547671,234.19432174590327,0.0,23.233634744742645,74.887161060258606,1.0,23.233634744742645,45.908963360927743,1.5,15.0,4.0999999999999996,69.315477441733663,70.331055425042038,70.926607427345473,70.812956713595426,70.727229510997901,70.685572526945961,13.573115761195835,13.542196074385657,13.521149344759628,13.479113784324099,13.391701882083758,13.279482655976391 +1989,11,6,17,0,3,20,16.5,20.307642618931929,79.90391745877322,84.11411187699747,244.51968499403353,0.12252231406246032,6.2940801548444751,20.183315548772693,1.0,6.2940801548444751,12.360719157210303,1.5,15.0,3.1000000000000001,18.342251432663431,18.867607602194603,19.030827011790311,18.991718044187866,18.961759793517047,18.947680887171735,3.6752394879158019,3.6640433087584245,3.6578866970074126,3.6459650909280641,3.62210075330009,3.5931212399607699 +1989,11,6,18,0,0,1,17.5,1.0,85.84342252714724,89.34803282947838,249.33520664379745,0.7645206445361388,0.31450404003991794,0.99240387608929914,1.0,0.31450404003991794,0.0075961164082149479,1.5,14.4,3.6000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1989,11,7,7,0,0,5,6.5,5.0,84.5488106762635,88.2478933684049,111.95288651720068,0.517221218873859,1.5725202001995897,4.9620193804464954,1.0,1.5725202001995897,0.03798058204107474,1.5,12.800000000000001,2.6000000000000001,4.563305963811298,4.6328753240073217,4.6736805880238252,4.6891764643042677,4.7021506165230633,4.7071173990255888,0.92249411995760355,0.92304081148353057,0.92150849922451117,0.92279898072305289,0.9220952962601191,0.91487971094468068 +1989,11,7,8,0,1,47,7.5,47.142940374216849,77.21885809753039,81.7819710443849,117.9143265438248,0.030814331242535777,14.241615085659641,47.47670661045904,1.0,14.241615085659641,28.742345093179715,1.5,12.199999999999999,2.6000000000000001,43.022447790340102,44.052362449434717,44.42125260875428,44.34678859636719,44.290360591007584,44.263214610312474,8.3183118449006024,8.2948403738059824,8.2809025843088939,8.2562795672991989,8.2051584751157485,8.1395333478228782 +1989,11,7,9,0,0,120,8.5,120.0,65.85958985170343,71.89881749920922,128.61081645606646,0.0,36.022353088747657,121.29628475969163,1.0,36.022353088747657,73.277709859595689,1.5,12.800000000000001,2.1000000000000001,112.16298286088613,113.70206837572169,114.60427291811956,114.45323820611193,114.34077412745251,114.28465738486102,21.080435252712196,21.038393066379978,20.992734246948775,20.910154850938358,20.759458724694124,20.578056296339742 +1989,11,7,10,0,1,200,9.5,200.446346701587,55.89392462617672,63.49046741794904,141.2348116927028,0.0,59.684143155999827,203.93659347126024,1.0,59.684143155999827,122.57756329657434,1.3194804843093548,13.300000000000001,2.1000000000000001,189.95765635188556,192.42132938255492,193.86485810909048,193.67065476818809,193.52974362984136,193.45544561054049,35.004223070271379,34.811139659504178,34.659498376798027,34.529344857348384,34.336190792966747,34.103767804835577 +1989,11,7,11,0,1,241,10.5,241.54006295317146,48.273926002010676,57.31207555613071,156.19383561133995,0.0,72.290564538248574,245.53014745418255,1.0,72.290564538248574,147.79286291059717,1.5,13.9,1.5,229.3639533564708,232.31168827135343,234.03873438480343,233.83396098440099,233.6880663604216,233.60828619194191,42.290853318164899,42.041353056571921,41.895999874429371,41.808659085604845,41.652799009060217,41.390678764762249 +1989,11,7,12,0,0,285,11.5,285.0,44.25321509660942,54.17180367032305,173.1984881003552,0.0,85.027340462819964,290.81066558857714,1.0,85.027340462819964,174.50369329674177,1.5,13.9,3.1000000000000001,272.18811397648642,275.59102307718001,277.58419689119557,277.38167990337178,277.24126127901184,277.16023726065305,49.682077324885761,49.377300476301869,49.224817667991665,49.167555714857244,49.036645619963252,48.737012324523874 +1989,11,7,13,0,1,297,12.5,297.57911497733596,44.81973541262114,54.61168109198213,190.9018610111245,0.0,87.91056449729642,304.61515773828768,1.0,87.91056449729642,182.24519966808558,1.5,14.4,4.0999999999999996,285.31244893564326,288.81462926117206,290.86581519063452,290.66664703828894,290.52975376025984,290.44940238359544,51.378265345283985,51.05232206583085,50.885210107433785,50.823453505991409,50.694637512208935,50.389309518704081 +1989,11,7,14,0,0,239,13.5,239.0,49.81619978371521,58.54935883818805,207.49578147223505,0.0,71.479698788626663,243.17354889802053,1.0,71.479698788626663,146.23596902374504,1.5,15.0,5.2000000000000002,227.09601460047838,230.00705725109316,231.71257830864826,231.50882675562769,231.36351193806388,231.28419278945387,41.848041601371804,41.593572470463137,41.434891101840392,41.332094863896955,41.165555051298732,40.907998334828768 +1989,11,7,15,0,1,179,14.5,179.41724393171754,58.10226343417678,65.33929274945464,221.87850098393858,0.0,53.496562547966285,182.19946012908773,1.0,53.496562547966285,109.67811640422016,1.3881396302878604,15.0,5.2000000000000002,169.45874168021709,171.68947355063497,172.99660718083956,172.80968820855253,172.67299345322604,172.60209380851961,31.380769653433628,31.231623503188437,31.099891137843695,30.972916242979046,30.778870400993458,30.555055085348464 +1989,11,7,16,0,0,112,15.5,112.0,68.47433477019014,74.16804678835649,233.9788724392482,0.0,33.280815156843055,113.75744383148427,1.0,33.280815156843055,68.392734645158697,1.5,15.0,4.5999999999999996,104.82214630291941,106.24715900600171,107.08249279365262,106.94135187201812,106.83604777005462,106.78365285222608,19.442038186749645,19.418380830211568,19.396772008977329,19.335854971738307,19.202648086064436,19.028654797963998 +1989,11,7,17,0,0,37,16.5,37.0,80.04732157332327,84.296171715815,244.2900178615931,0.13744563928859216,11.107853699841309,37.72748210343255,1.0,11.107853699841309,22.55830106351522,1.5,14.4,4.5999999999999996,32.506843711384015,34.591911138480583,34.87954736420928,34.820991249434577,34.77659328461197,34.75526028719333,6.4878445105354263,6.4694756268322235,6.4586026873241016,6.4393137716508182,6.3993342052295255,6.3481365099918694 +1989,11,7,18,0,0,1,17.5,1.0,85.86190409274002,89.41769123289163,249.0264171723574,0.7887414560885722,0.31450404003991794,0.99240387608929914,1.0,0.31450404003991794,0.0075961164082149479,1.5,14.4,2.1000000000000001,0.91266119276225988,0.92657506480146423,0.93473611760476494,0.93783529286085376,0.94043012330461284,0.94142347980511787,0.18449882399152082,0.18460816229670621,0.18430169984490224,0.18455979614461065,0.18441905925202381,0.18297594218893609 +1989,11,8,7,0,1,4,6.5,4.0289903390473309,84.59068983408356,88.3387431727853,112.24863725929303,0.538713649673538,1.2583930345672869,4.0638855883318268,1.0,1.2583930345672869,0.030384465632859792,1.5,10.6,2.1000000000000001,3.6506453357935658,3.7063008239503827,3.7389448800103993,3.782173027569554,3.8018807944931741,3.8058541216104516,0.73821523768779451,0.73865233990235479,0.73742588600465964,0.73845752449472746,0.73789264615647066,0.73211693865036787 +1989,11,8,8,0,3,36,7.5,36.418036011565107,77.39257419454071,81.99003448668348,118.11849893020802,0.042386674863361014,11.231694450477468,36.247107512001691,1.0,11.231694450477468,22.190414881037793,1.5,12.199999999999999,2.1000000000000001,33.182387270276628,33.889232371448408,34.18043092406797,34.118597379341516,34.071579265763702,34.049127122349155,6.5597516598956664,6.5408260792795456,6.5298398208397614,6.5099071040758325,6.4689703083404098,6.4172535811350695 +1989,11,8,9,0,28,104,8.5,112.59160295022743,66.06302028601951,72.13092464244895,128.79580022925958,0.0,31.802580303364831,118.06191805882068,1.0,31.802580303364831,69.276052289026438,1.5,13.300000000000001,3.1000000000000001,108.36788264296135,109.66026248722051,110.41717336358053,110.45485070958243,110.49403263713747,110.50192214141342,18.66491636218413,18.676973641645311,18.635807065795596,18.564976569861187,18.432249948090472,18.247981892845054 +1989,11,8,10,0,4,177,9.5,178.76930363270105,56.130951932400066,63.74762234535897,141.38756524603747,0.0,53.584069977616167,181.23215884183554,1.0,53.584069977616167,109.27424497592817,1.3442495468004956,14.4,2.6000000000000001,168.71954102017858,170.9511657969378,172.25886213912619,172.0701240777461,171.93196325762347,171.86044454032589,31.422487611057448,31.264164355674904,31.132993613407013,31.013029666186323,30.828892872570425,30.610933108689085 +1989,11,8,11,0,11,108,10.5,113.89546330469302,48.54453559652709,57.591556880790066,156.2908132694321,0.0,34.805931920711267,114.0754154985374,1.0,34.805931920711267,69.552197814908681,1.5,15.6,3.6000000000000001,106.24595223876739,107.72505667572474,108.59214715461547,108.45005635895433,108.3445173245111,108.29153463075266,20.351363625697299,20.260797192953071,20.205935139746096,20.151924991227087,20.049365710093269,19.906429267282718 +1989,11,8,12,0,3,126,11.5,127.7437035851005,44.543506566217914,54.46258028869288,173.2135738830771,0.0,39.608734604423816,127.02604543167844,1.0,39.608734604423816,78.019583651077227,1.5,15.0,3.6000000000000001,118.08475130410781,119.79289309619523,120.79444772835603,120.64052754280587,120.52670630023005,120.4690368467306,23.143882357692828,23.060655208625274,23.011729977156957,22.957240616319563,22.840671005082129,22.6699407620671 +1989,11,8,13,0,4,247,12.5,249.30025246102136,45.10084702127028,54.895947685158404,190.82652224430748,0.0,74.560329059149879,253.38739268549401,1.0,74.560329059149879,152.55799616969887,1.5,15.6,4.0999999999999996,236.88609524362252,239.9226068720599,241.70162978470447,241.49600367304944,241.35007776397001,241.26965232620108,43.589569939071531,43.338154924659371,43.20112271340107,43.127687585223583,42.983418435755219,42.708943076992718 +1989,11,8,14,0,1,129,13.5,129.51785854353008,50.063530389184315,58.811283854983365,207.34834375431447,0.0,40.115005859578631,128.83129282077559,1.0,40.115005859578631,79.088947744688099,1.5,16.699999999999999,5.7000000000000002,119.723081321441,121.45561596644302,122.47149691227622,122.31047295636412,122.19102183440111,122.13089281116011,23.452977885950869,23.366281171646872,23.310873130543399,23.247182456537981,23.121757372624121,22.949103263797163 +1989,11,8,15,0,2,101,14.5,101.82710442701875,58.308955405977116,65.57182448824926,221.68731042278623,0.0,31.542442268188498,101.20466141091163,1.0,31.542442268188498,62.138634415197153,1.41443781608332,17.199999999999999,4.5999999999999996,93.947457193177158,95.317522452668101,96.120876210858754,95.980027284250156,95.874571241834801,95.822514792203478,18.450582310147006,18.389068745694562,18.343342639817408,18.282625477408267,18.169726727695895,18.027883512284234 +1989,11,8,16,0,1,103,15.5,103.26939488890724,68.64460804170706,74.37173760207789,233.76450488980495,0.0,30.892231201052638,104.56091378243818,1.0,30.892231201052638,63.044441184506212,1.5,18.300000000000001,4.5999999999999996,96.401471783127818,97.729513697612759,98.508059304603492,98.372394446143403,98.270873839386141,98.220684148515531,18.038970936101837,18.015391650838875,17.997425003547285,17.945108751974047,17.824801384081976,17.665633572320139 +1989,11,8,17,0,0,38,16.5,38.0,80.16276459746193,84.4525624204496,244.04322107532047,0.15127359494010859,11.323005297747903,39.022561555366124,1.0,11.323005297747903,23.171594328190331,1.5,18.300000000000001,4.5999999999999996,32.993930867946503,35.598570136286611,35.891676398638864,35.832693281889739,35.788007977662581,35.766499240468285,6.6136240134108224,6.5949942262846788,6.5839084253223072,6.5643611968107329,6.5237445427404888,6.471540400462156 +1989,11,9,7,0,0,3,6.5,3.0,84.6328399588941,88.42881199603806,112.53858386834227,0.5603007581647789,0.94351212011975361,2.9772116282678973,1.0,0.94351212011975361,0.022788349224644844,1.5,17.800000000000001,8.1999999999999993,2.737983578286781,2.7797251944043939,2.8042083528142956,2.813505878582562,2.821290369913839,2.824270439415355,0.55349647197456253,0.55382448689011854,0.55290509953470657,0.55367938843383169,0.55325717775607197,0.54892782656680827 +1989,11,9,8,0,20,22,7.5,24.715244438809435,77.5665059618762,82.19730221118708,118.31672336103333,0.054168947903288515,6.9543870585827152,26.053263119208765,1.0,6.9543870585827152,15.172021804061298,1.5,17.800000000000001,7.7000000000000002,22.149927368950166,23.453400966550305,23.632929596525852,23.629723242177167,23.629015073264878,23.626892458611078,4.067520796169668,4.0604554484970476,4.0536419017639789,4.0471936802598432,4.0290688192991846,3.9969583944132001 +1989,11,9,9,0,5,78,8.5,79.515031297050612,66.26616082198312,72.36174416716466,128.9744690056681,0.0,24.404565215104856,79.390473101037273,1.0,24.404565215104856,48.501871526136142,1.5,18.300000000000001,7.7000000000000002,73.518028683037869,74.578544524410745,75.200389978804409,75.082687799485697,74.994006074850617,74.950814142192513,14.26312455435845,14.231853348507263,14.207494347015846,14.159713230760147,14.064110620920776,13.944782367215266 +1989,11,9,10,0,7,88,9.5,91.068310085501139,56.36670046364068,64.00262219273148,141.53378956867786,0.0,28.096432521353755,90.709087788335609,1.0,28.096432521353755,55.570807005702086,1.3691273982728633,18.300000000000001,6.2000000000000002,84.272457958364498,85.486778159262229,86.198764703376355,86.071569645721183,85.976231309890039,85.929277750352767,16.437750942463634,16.377605369428498,16.333699600793576,16.278764465632356,16.179170364342994,16.055345885780714 +1989,11,9,11,0,7,144,10.5,147.72312418694992,48.81243740638366,57.86777908451366,156.38165587667012,0.0,45.09443678354323,148.1148127503171,1.0,45.09443678354323,90.246759859280246,1.5,18.300000000000001,4.0999999999999996,137.93560790807553,139.84890702262771,140.97051040059239,140.79915300039167,140.67272697216657,140.60835615968116,26.375272297808582,26.25698857712154,26.182614052908445,26.111728743247358,25.980169472419952,25.796031037402692 +1989,11,9,12,0,44,227,11.5,252.39501521359793,44.82955839357774,54.749000446266464,173.2239469517863,0.0,71.140862129411246,266.30362560589396,1.0,71.140862129411246,155.62042210046621,1.5,18.899999999999999,3.6000000000000001,250.51693475349472,253.10277858639105,254.61517274517982,254.80258673947122,254.9743270986464,255.0262165687403,41.698249281786367,41.321032975803313,41.095859176876147,41.10519649031221,41.129793028323142,40.957849935935272 +1989,11,9,13,0,39,256,12.5,278.27174746391864,45.376778791016356,55.17509488702785,190.74860444947174,0.0,78.183408531707457,294.26085517545778,1.0,78.183408531707457,171.64053191834316,1.5,18.300000000000001,5.2000000000000002,276.84646198627189,279.66919075475482,281.31995449137941,281.54860813033235,281.75574249559133,281.82037499370517,45.831718882484736,45.408802891748614,45.15604503232597,45.171421607969826,45.208726331181062,45.0250498473726 +1989,11,9,14,0,675,107,13.5,453.96622703585535,50.305479250450965,59.06775724688909,207.2002268490507,0.0,88.935282059769207,557.46673382607378,1.0,88.935282059769207,283.80736616092531,1.5,20.0,6.7000000000000002,537.46554299948559,538.17743317912152,538.57044809235845,540.15030527029126,541.45651122951642,541.97161447959013,53.620326577302748,51.683066434121727,50.23004228632017,50.071915648108657,50.688936507380824,51.176514342672569 +1989,11,9,15,0,712,67,14.5,358.87843682569383,58.51036007472989,65.79883218695954,221.49663003797235,0.0,63.372464294041258,451.9986080349268,1.0,63.372464294041258,224.35635545514842,1.4406900088415484,20.0,5.7000000000000002,425.65034499215056,426.15818097382481,426.43321618392645,427.68004548530416,428.70956532969501,429.11709165408945,39.428547711498055,38.486940206072703,37.065608353714396,36.243780613718357,35.827596328287058,35.752205050735036 +1989,11,9,16,0,585,50,15.5,205.6465375488057,68.80969372035254,74.56990625927526,233.55127105171118,0.0,27.575658632946389,271.38012188454479,1.0,27.575658632946389,129.21723900178904,1.5,19.399999999999999,5.7000000000000002,236.25073245553077,236.68485789969367,236.93130744228577,237.88715384334358,238.66725825221567,238.98447123018568,15.993249216691591,16.604371419269306,16.858120626909749,17.005321855610081,16.870399132150677,16.417210709387287 +1989,11,9,17,0,286,27,16.5,54.188042473143838,80.20696030861957,84.54504921782903,243.74404760992445,0.1616507901719474,6.4810538931843373,82.947562832426058,1.0,6.4810538931843373,34.49102082711935,1.5,17.800000000000001,5.2000000000000002,18.671602089706191,57.126900766957021,57.283073436754236,57.696841506610546,58.033634393905373,58.171597287778653,3.8604941211091415,3.9092124085441227,3.9026843655652259,3.9666138859140085,4.0353368994913499,4.0040641984917169 +1989,11,10,7,0,10,3,6.5,3.2586235826149972,84.67520704666528,88.51803078666482,112.8226089358682,0.5819727661975579,0.94687422669374921,3.905226102760011,1.0,0.94687422669374921,0.022788349224644844,1.5,3.2999999999999998,2.1000000000000001,2.7379886163876552,2.7797302325052677,2.8042120067894891,3.0121012784951358,3.2120980408311066,3.2150772281792079,0.55545857790035413,0.55578435358311729,0.55485957712054146,0.55562720461098369,0.55518776950155146,0.55082952084375447 +1989,11,10,8,0,323,38,7.5,80.698254167787184,77.7405641874672,82.40367934772898,118.5089363375698,0.06616559290696186,9.1452313699289771,114.8647266505437,1.0,9.1452313699289771,51.201635227235187,1.5,6.7000000000000002,4.5999999999999996,61.420106797423479,86.094856206739593,86.313713156303578,86.871540070782615,87.32570250831337,87.511637722299412,5.4429624811234518,5.5082814821686652,5.4990285798509575,5.5847789168132751,5.676190528167842,5.6318115757626623 +1989,11,10,9,0,619,63,8.5,248.19727525191468,66.46890442536326,72.59117032628681,129.14678553213346,0.0,37.19453115881943,322.4754874785894,1.0,37.19453115881943,155.54037086582079,1.5,10.0,5.2000000000000002,288.06511874933381,288.57163950308012,288.857241400352,289.86259057404874,290.6859969626197,291.01792187160942,22.190636610331403,22.809421372593285,22.855568593006289,22.631505398327672,22.169318643806655,21.552576203141903 +1989,11,10,10,0,742,82,9.5,404.29597413572384,56.601045078006166,64.25535010067017,141.67348204282186,0.0,72.186439136873759,505.24417536887916,1.0,72.186439136873759,252.75907865333673,1.39410227046556,13.300000000000001,7.2000000000000002,479.1504058038804,479.79356155897017,480.14676531341115,481.55751755556315,482.72189672692389,483.18308692930947,44.686423536918284,43.430738220031643,41.870418785514858,41.105239347440182,40.814047938237884,40.900503204227363 +1989,11,10,11,0,809,94,10.5,521.01954119306322,49.0775030275467,58.140623554771615,156.4663948388124,0.0,100.62819616937463,641.16676902189295,1.0,100.62819616937463,325.03814027515415,1.5,15.6,8.1999999999999993,620.83491818415064,621.50166685969282,621.86398157937947,623.42854746906653,624.72626556559635,625.23417325136154,60.497264351687043,58.176882333465308,56.583842774434956,56.451699014457795,57.211307087794367,57.824814328439096 +1989,11,10,12,0,455,194,11.5,454.77589085131876,45.111256934916554,55.03095262755104,173.22965163813686,0.0,100.42890458958998,539.45354753203492,1.0,100.42890458958998,284.45596543353884,1.5,16.699999999999999,8.1999999999999993,520.05939221580218,521.59908937760576,522.47992088747537,524.13978278201841,525.51438418830458,526.05493071743263,59.464212530707208,57.811373816195179,56.847443493156163,57.138714497874616,58.013061920389219,58.368206229271884 +1989,11,10,13,0,170,232,12.5,328.41368138716211,45.64743068282593,55.4490194542776,190.66814175500323,0.0,83.847453134839512,365.62166548582042,1.0,83.847453134839512,203.81975551995245,1.5,17.199999999999999,9.3000000000000007,347.71223105024984,350.09679225841973,351.4852748260472,352.16393161831286,352.73772970635821,352.95222316210049,49.361825593783443,48.560773326960856,48.083755462667838,48.17128144422594,48.458942417109036,48.446189777544255 +1989,11,10,14,0,592,137,13.5,439.07542194556112,50.54195061152044,59.31868121400514,207.05145835179,0.0,89.196512089168806,534.73260802828304,1.0,89.196512089168806,275.10639212709259,1.2465162834489871,17.199999999999999,8.8000000000000007,513.38980679956978,514.40952819642837,514.98486690390121,516.73923163896654,518.18637552048006,518.76018359046623,53.858277423338649,52.10978137249559,50.723810444516729,50.553897238755887,51.048911863975384,51.44543053182776 +1989,11,10,15,0,729,78,14.5,374.27592268690125,58.70638827907786,66.02022391332935,221.30649669970407,0.0,67.180676923618279,470.75335385815481,1.0,67.180676923618279,234.12294903263614,1.466868074439362,16.100000000000001,10.300000000000001,442.59706312707459,443.22598777500383,443.57067336832813,444.92386438666551,446.04094545092943,446.4839675982185,41.783481862861493,40.969669307748568,39.546503533694882,38.628533357459439,38.107369930029442,37.912827489797039 +1989,11,10,16,0,575,58,15.5,209.12220932947631,68.96951513962117,74.76246975252941,233.33922544070174,0.0,28.71649738707573,275.82277770060466,1.0,28.71649738707573,131.24902269430484,1.5,15.0,6.2000000000000002,239.95115131767889,240.43672491443675,240.71341570534568,241.63311416022975,242.3842068133082,242.68916344928408,16.542394405294843,17.130198223458862,17.431536283080394,17.659874020745711,17.562118138740541,17.13672454524453 +1989,11,10,17,0,228,30,16.5,51.319316480157944,80.2490516843999,84.63467586523248,243.4486562825254,0.17185960473605222,7.4047579546556692,75.566826780234607,1.0,7.4047579546556692,32.416445053299938,1.5,13.9,3.6000000000000001,20.395489438375456,52.568951148954568,53.775856136102746,54.081705567880803,54.331366105404882,54.432952474818705,4.3827133663985149,4.4162376846641314,4.4088346142581543,4.4538409065434639,4.4980089605421254,4.4627167244655741 +1989,11,11,7,0,34,4,6.5,4.8269396130421232,84.7177349709838,88.60632875726307,113.1005962819046,0.6037183904731906,1.2687663751292191,7.0997361775078662,1.0,1.2687663751292191,0.030384465632859792,1.5,1.1000000000000001,2.1000000000000001,3.6506608801955656,3.7063163683523834,3.7389561538734535,4.2462737592112765,5.0721285107566949,5.0760991161048672,0.74426905916515373,0.74469925251949642,0.74345617123575303,0.7444672568196683,0.74384923474792641,0.73798436787822819 +1989,11,11,8,0,466,27,7.5,86.945601029864932,77.9146572416214,82.60906903215083,118.69507705954109,0.07838091814904372,6.7471111824056873,131.44312391432072,1.0,6.7471111824056873,54.994590942524638,1.5,4.4000000000000004,0.0,58.394504165002601,95.400946455935497,95.552615783399503,96.08895079062998,96.525059741957534,96.704139030400825,4.0362562698384687,4.1010877450304815,4.0940542605521415,4.1779946437448512,4.2704436041655809,4.2363181724458796 +1989,11,11,9,0,707,48,8.5,256.84047942024722,66.67114268425522,72.81909630990945,129.31271551539686,0.0,36.633309892717143,338.26058801868714,1.0,36.633309892717143,160.73059133370666,1.5,8.3000000000000007,3.6000000000000001,301.57394197247362,301.96422528318686,302.18045547787642,303.13680193309403,303.91990052368061,304.23555770062666,21.650547919205305,22.408592645108559,22.576404364506214,22.423331473070451,21.974702439720108,21.258310823427937 +1989,11,11,10,0,801,67,9.5,411.76760306911211,56.833860302167416,64.50568889815791,141.80664281722983,0.0,71.714957487185913,518.79999494977426,1.0,71.714957487185913,256.92882292131225,1.4191614776542112,11.1,5.7000000000000002,492.54536883559211,493.03740133379199,493.29979655772541,494.55377427725404,495.59160750631634,496.00000598744685,44.622656308081758,43.417108909735894,41.759071547891281,40.803657396778526,40.346520016604003,40.329747784831603 +1989,11,11,11,0,857,78,10.5,526.92887363307955,49.33960474709519,58.40997206896526,156.54506364352252,0.0,101.65773073909595,649.42777807712332,1.0,101.65773073909595,328.1286239124446,1.5,13.300000000000001,6.2000000000000002,629.19085449358374,629.85357491429841,630.21308978851596,631.58466269993914,632.72620936089788,633.16907760749291,61.279808890861474,58.911348530606674,57.186343224943904,56.915841983246416,57.554708525496245,58.1536219888145 +1989,11,11,12,0,789,93,11.5,542.06727479308711,45.38848963383579,55.308326177421044,173.2307340037571,0.0,108.84479559737625,664.84427481773798,1.0,108.84479559737625,338.00582212036335,1.5,15.6,7.7000000000000002,647.6971551619456,648.3116868632743,648.63994449069094,650.20532674484832,651.50695922366685,652.01374423760274,64.843192216297695,62.326767357864,60.821957789392648,61.013949562634771,62.083326015455043,62.775288919523959 +1989,11,11,13,0,735,117,12.5,531.00490764704409,45.91270401810999,55.7176194146961,190.58517057812108,0.0,107.83854868745034,649.88112374902437,1.0,107.83854868745034,331.54362479134892,1.5,17.800000000000001,5.7000000000000002,631.66438344837525,632.40293656978974,632.80522929274889,634.49728214263939,635.90102495750989,636.45059492852226,64.239533424584693,61.845931731465591,60.398253160860236,60.611710945681295,61.669205704105423,62.318114550369231 +1989,11,11,14,0,458,176,13.5,408.01190104088619,50.77285072459054,59.563959754101916,206.90206866496308,0.0,87.936245983174643,487.50072151804437,1.0,87.936245983174643,255.20783273392601,1.2661897168673288,17.800000000000001,8.8000000000000007,466.10796651344708,467.58153784472751,468.42655474028265,469.92127301781113,471.15727474638271,471.64438026797887,52.954015309193792,51.515968143755082,50.304364335502875,50.097873789950206,50.394243790007224,50.628857846136242 +1989,11,11,15,0,355,111,14.5,254.0549773220076,58.896953455928276,66.23591007061343,221.11695005336063,0.0,49.712388408767346,309.42788795316579,1.0,49.712388408767346,159.43464428947973,1.4929426751976007,17.800000000000001,8.8000000000000007,289.03546843524748,290.00019074746297,290.55310966626894,291.67219768644441,292.5936689815918,292.96144728874862,30.463074614057099,30.149557280429342,29.402145321339802,28.937417448401096,28.66519104677834,28.456333675004949 +1989,11,11,16,0,365,85,15.5,179.78059624243951,69.12399870858074,74.94934791300368,233.1284251035711,0.0,30.826326485723477,226.93918734085247,1.0,30.826326485723477,112.80809116505765,1.5,16.100000000000001,5.2000000000000002,198.56348292045496,199.38244376058481,199.85734213327675,200.65186119155726,201.30259436737245,201.56506129820099,17.80356237991592,18.206967934483245,18.439492233245172,18.666150540011238,18.651703250158381,18.32128908628912 +1989,11,11,17,0,58,38,16.5,43.335917660886366,80.28901600910669,84.72140558247658,243.1571577900733,0.18188736590624505,10.458453791608971,52.052029954037259,1.0,10.458453791608971,26.909128407387684,1.5,14.4,4.5999999999999996,29.952910570178513,41.364412081065304,42.733185063763159,42.833317715305249,42.917235809681159,42.949285989967109,6.1346119918311164,6.1379063173960464,6.1276290360704788,6.13556957287825,6.1299312467489395,6.0813931034794519 +1989,11,12,7,0,2,1,6.5,1.0455968425918685,84.76036559049568,88.69363349559087,113.3724310549583,0.625524749906613,0.3150967989936122,1.1750468009491239,1.0,0.3150967989936122,0.0075961164082149479,1.5,13.300000000000001,4.0999999999999996,0.91266208100876178,0.92657595304796603,0.93473676182185472,0.95659800676541362,1.0164368642289792,1.0174300652007038,0.18484475468408285,0.18495369819949661,0.18464628561673915,0.18490320747133282,0.18475943381121032,0.18331122195626065 +1989,11,12,8,0,155,44,7.5,63.390759971349361,78.0886911295146,82.81337245072012,118.87508746875187,0.09081906159578108,11.607027273540494,81.765988127289233,1.0,11.607027273540494,39.670772099891579,1.5,15.6,3.6000000000000001,47.112490629577096,64.93831539297274,65.230038262746177,65.480362597695716,65.686204619934585,65.768514389147867,6.8315621747738788,6.8537113902171898,6.8422043659838758,6.8743045667136693,6.8964723361909925,6.8418883370218992 +1989,11,12,9,0,334,111,8.5,208.39894830537992,66.87276589903165,73.04541432014506,129.47222763491055,0.0,38.944139773910173,256.21679986626714,1.0,38.944139773910173,130.7391893550076,1.5,19.399999999999999,5.7000000000000002,229.08618288428752,230.16107676607214,230.78474186060063,231.70011044992754,232.45101197476913,232.75260966006451,22.862105036186392,23.32390047923284,23.457890201152122,23.480833473054325,23.297241762603569,22.833979155538831 +1989,11,12,10,0,479,145,9.5,349.29980111548866,57.06502042274634,64.75352118025243,141.93327479325038,0.0,70.331841639405567,423.84393683978453,1.0,70.331841639405567,218.45408715936949,1.4442913805528375,20.600000000000001,4.0999999999999996,399.26521018900831,400.54346428580311,401.27498087352421,402.54568649132841,403.59587673230476,404.01069800801179,43.071056613664176,42.336689443446254,41.182504303448518,40.556065023218011,40.231684077879095,40.081030029358551 +1989,11,12,11,0,697,118,10.5,480.35730206084418,49.59861561207573,58.67570686584777,156.61769784824867,0.0,94.63548972915963,590.58556254800192,1.0,94.63548972915963,300.28006596759309,1.2549062295887343,22.800000000000001,5.7000000000000002,569.96353587883357,570.77277831046433,571.22047010591882,572.88502023487126,574.26108490743388,574.80358435739333,57.403027308827717,55.364201804959137,53.698471969942702,53.362066320430898,53.758543107893999,54.21595729269481 +1989,11,12,12,0,755,122,11.5,548.756522135664,45.66114507928399,55.58101136878096,173.22724184456035,0.0,111.60094858949013,671.85658442167994,1.0,111.60094858949013,342.57175383314018,1.5,23.300000000000001,4.5999999999999996,653.20904119331885,653.98996119350033,654.41617558034352,656.14596248153225,657.58118074784227,658.14273094954638,66.71601808933886,64.206082863970821,62.627887524893922,62.692542715795938,63.672800662331248,64.338584385773999 +1989,11,12,13,0,747,121,12.5,538.92466523719906,46.17250154090321,55.98079413544424,190.49972961775234,0.0,104.95407027373183,660.25974049289357,1.0,104.95407027373183,336.48774961441524,1.5,23.300000000000001,5.2000000000000002,641.41276458409379,642.19285684842134,642.62088689454356,644.34090064727445,645.76596480751266,646.32542150568713,62.88207071507,60.528857232324633,58.993911420150425,59.012066487729363,59.897507525215062,60.51732393337354 +1989,11,12,14,0,719,112,13.5,473.63339473003964,50.99808790781074,59.8034987301155,206.75209097646263,0.0,88.962066367128855,584.56685514054686,1.0,88.962066367128855,295.97861334377791,1.2857459331752072,23.899999999999999,5.2000000000000002,562.86652719112919,563.64168371935136,564.07039766517823,565.67765348765624,567.00539686544323,567.52966770388082,54.196598415760853,52.329890436428776,50.683165235646406,50.222421021703504,50.442144866352947,50.848319563578471 +1989,11,12,15,0,549,105,14.5,324.38937332203011,59.08197169869446,66.445803464987,220.92803249410275,0.0,61.609659344834441,404.26960914327265,1.0,61.609659344834441,203.61827898655295,1.5,23.899999999999999,3.6000000000000001,378.18194506821465,379.03353182573164,379.51354834646554,380.944175724351,382.1223094614906,382.59291044174995,38.108664662986179,37.720930488937206,36.630373836389879,35.836465048004939,35.344343311060911,35.019995722974272 +1989,11,12,16,0,470,68,15.5,188.61090475476567,69.27307397016492,75.13046347738623,232.9189295828011,0.0,27.085286719963896,246.48924839932056,1.0,27.085286719963896,118.78976194331933,1.5,23.300000000000001,3.6000000000000001,213.94284966072715,214.55163219221015,214.90300448473297,215.88458531572962,216.68570636549342,217.01156917255935,15.569508044061358,15.988659237492282,16.26628219009319,16.572475780258685,16.651892174038483,16.329455185887952 +1989,11,12,17,0,130,31,16.5,42.770477542329992,80.32683244071389,84.80520352571982,242.86966404502127,0.1917214784484233,7.5765867581413024,60.130473728393028,1.0,7.5765867581413024,27.153125621423431,1.5,19.399999999999999,3.1000000000000001,21.251843713016555,40.742878146742683,44.323953396464276,44.629069967058982,44.878183826473332,44.979498224500517,4.4832670655751343,4.5164887034489993,4.5089949465263928,4.553865772437848,4.5977675213467455,4.562177967828168 +1989,11,13,7,0,16,2,6.5,2.3406985124782587,84.80303888544817,88.77987110483393,113.63799983559734,0.647377279078781,0.63343716074205314,3.4340839089661443,1.0,0.63343716074205314,0.015192232816429896,1.5,7.2000000000000002,4.0999999999999996,1.8253290224810426,1.8531567665594513,1.8694770487841486,1.9450550206482202,2.4803391762820075,2.4823247271757065,0.37158243380760858,0.37179816055828835,0.37117813629902191,0.3716855534727555,0.37138138903350681,0.36845708674493005 +1989,11,13,8,0,313,38,7.5,76.055697499940237,78.26256954733567,83.01648888815066,119.04891229204215,0.10348395079151454,9.356848457964098,109.98046987678538,1.0,9.356848457964098,48.271011098155206,1.5,8.9000000000000004,2.6000000000000001,46.547765765383616,81.683066559628315,81.90931482324028,82.441376510930951,82.87473399483865,83.051985753164786,5.5624963604569073,5.6241785341770871,5.6147588007690139,5.6960563980670287,5.7817640553396643,5.7366794633213356 +1989,11,13,9,0,514,58,8.5,205.96093105614432,67.07366317390834,73.27001564802228,129.62529355481072,0.0,28.056245647362339,270.07782655960301,1.0,28.056245647362339,129.38911785952982,1.5,11.699999999999999,2.6000000000000001,239.67921639483396,240.14271095797082,240.40643500854628,241.35560007583973,242.13057415734306,242.44533189752144,16.364394194221397,16.943672862282682,17.177482315200738,17.261124189873975,17.097474053240685,16.627533841879643 +1989,11,13,10,0,757,76,9.5,395.93723871974538,57.29439957782372,64.99872938694497,142.0533836107904,0.0,70.254489008485521,499.45816147837741,1.0,70.254489008485521,247.44005637219203,1.469477351201666,15.0,3.1000000000000001,472.70599145546009,473.29753073964508,473.61849741564146,474.96527002161503,476.0782212165916,476.51853289402499,43.747428555434325,42.861115021952862,41.334479408709313,40.332193161289325,39.75504327624386,39.554738642246193 +1989,11,13,11,0,841,75,10.5,508.93046927475405,49.85440949855852,58.93771071789415,156.68433506831795,0.0,98.172479240465734,629.97204137436177,1.0,98.172479240465734,316.9812555167029,1.2741688154382746,17.199999999999999,3.6000000000000001,609.75049270012721,610.39058031639649,610.73577622553125,612.08214472574207,613.20161577077988,613.63650467690729,59.768506172559562,57.51684846392542,55.623925762907191,55.051258705479881,55.271788747706381,55.771650592384674 +1989,11,13,12,0,851,80,11.5,557.73207865055929,45.92911306431644,55.848899471144755,173.21922469406513,0.0,112.28546120441645,685.38862151446938,1.0,112.28546120441645,347.10678180581789,1.5,19.399999999999999,4.5999999999999996,667.79617269625987,668.46153376027041,668.81903337436313,670.19562905742191,671.34495676330152,671.78766652863487,67.353092935270794,64.673122725772672,62.911082577752822,62.779533202393054,63.627262378780394,64.323067711754661 +1989,11,13,13,0,852,79,12.5,552.48870387270244,46.426727480471634,56.238444391974326,190.41185984577234,0.0,106.2435469065138,679.62275513173029,1.0,106.2435469065138,343.86067743433347,1.5,20.600000000000001,4.0999999999999996,661.73427167100499,662.39314445567629,662.74889216979568,664.12046122600316,665.26367195392311,665.70577256272213,63.842156562333443,61.326232945444772,59.626431599895923,59.435856636794568,60.187707864208505,60.848022117890466 +1989,11,13,14,0,824,73,13.5,484.53652230285485,51.21757260318755,60.03720593787532,206.60156123565298,0.0,87.915088135829336,604.2334476686151,1.0,87.915088135829336,301.96828454514747,1.3051648926531527,21.699999999999999,3.1000000000000001,583.54839427559182,584.04191795032943,584.3028944418644,585.64586417385101,586.75960715888357,587.1951764495725,53.843389603949831,51.827750056157441,49.985107537798257,49.32950094450775,49.414944037084695,49.868976103462487 +1989,11,13,15,0,748,64,14.5,360.46960691823165,59.26136181478818,66.64981937244848,220.73978913780093,0.0,60.194790037944493,459.34062022784457,1.0,60.194790037944493,225.21838677019744,1.5,22.800000000000001,5.2000000000000002,431.33334457897814,431.82130438478964,432.08503904713871,433.29035709866383,434.2863333981698,434.68166607859661,37.504382805067074,37.134038035022982,35.9419509395915,34.924719256075356,34.233638610357403,33.826342958929175 +1989,11,13,16,0,607,48,15.5,201.97222957627659,69.41667365716256,75.30574215294,232.7108008763578,0.0,25.300347846602648,271.34087062206561,1.0,25.300347846602648,126.85815450531339,1.5,22.199999999999999,5.2000000000000002,234.4967006750401,234.91683288913094,235.15679718007274,236.07808861091664,236.829716276114,237.13566552634381,14.362477526679102,14.801959672474661,15.141608350800949,15.504248230259829,15.64307028865394,15.295847384312355 +1989,11,13,17,0,280,25,16.5,49.958369310413772,80.36248201502862,84.88603679881679,242.58628810097574,0.2013494691606517,5.9768109095033282,79.361147880014954,1.0,5.9768109095033282,31.819558588147412,1.5,20.0,4.0999999999999996,16.126673383260442,46.268401079928978,54.26848605674715,54.657286478306879,54.973725846253757,55.103380782117455,3.5613578006630968,3.6072418523507346,3.6012233219751271,3.6613994865251076,3.7262790135846577,3.6974460707697134 +1989,11,14,7,0,0,0,6.5,0.0,84.84569312823855,88.86496637805578,113.89719074360131,0.6692596509278514,0.0,0.0,1.0,0.0,0.0,1.5,16.100000000000001,4.0999999999999996,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1989,11,14,8,0,3,33,7.5,33.354259620974439,78.43619394234983,83.2183157795339,119.21649908352937,0.1163792583334545,10.240678581301207,33.395696991459189,1.0,10.240678581301207,20.324123872490368,1.5,16.100000000000001,4.5999999999999996,29.977453047035155,31.103837633885405,31.369289160390217,31.312785224663081,31.269813510866317,31.249300030142258,5.9809353968854015,5.9636636683499153,5.9536454738113376,5.9354479884512052,5.8980917684622467,5.8509299979183504 +1989,11,14,9,0,1,67,8.5,67.284135986051623,67.27372251003914,73.4927907523792,129.77188793503936,0.0,20.926113949707485,66.616723016789408,1.0,20.926113949707485,41.022947441337621,1.5,16.699999999999999,5.2000000000000002,61.741854939086828,62.662662385759383,63.202701747847108,63.097385673238648,63.017782360741435,62.979274119891244,12.221172548678028,12.190473034512543,12.171920258480776,12.136668740620305,12.060998761332632,11.962629327684438 +1989,11,14,10,0,76,193,9.5,224.82874517550059,57.52187184855469,65.24119588315989,142.1669776341635,0.0,59.633313382809284,242.83683690159202,1.0,59.633313382809284,138.5325548738476,1.4947037391630436,17.800000000000001,4.0999999999999996,226.70712419587397,228.89237565815625,230.1693706790528,230.30080335251762,230.42408917814356,230.45906292000365,35.343917220048048,35.152340903732217,34.837639531711226,34.585048414113253,34.323722683804753,34.056592496398629 +1989,11,14,11,0,477,182,10.5,426.2740010843728,50.106861180894825,59.19586700458166,156.74501496511752,0.0,91.720049316189716,510.76426455783223,1.0,91.720049316189716,266.50080163459342,1.293371699589855,19.399999999999999,5.7000000000000002,489.12214649619051,490.64650409246826,491.51947817949457,493.03466148054304,494.28832013981764,494.78166082710095,55.484876407385521,54.004159877564781,52.631110953394987,52.257924072513696,52.390376321737627,52.619967410536873 +1989,11,14,12,0,396,204,11.5,424.79889102756562,46.192284645586696,56.1118828200709,173.2067338255894,0.0,95.790539523653123,503.29619259824244,1.0,95.790539523653123,265.94770099924034,1.5,20.600000000000001,5.2000000000000002,483.42709908719803,485.08797299288972,486.04248092371222,487.68644747231843,489.04596305328425,489.58196138853384,57.310235627666231,55.782740157596578,54.635741736987029,54.588240956357062,55.128777581465187,55.414893222990386 +1989,11,14,13,0,535,198,12.5,493.36046864747192,46.67528761426565,56.49047243750463,190.32160449650064,0.0,104.71085804928185,590.06628658906561,1.0,104.71085804928185,308.08323274147244,1.5,22.199999999999999,5.2000000000000002,568.7382469782641,570.35073271932174,571.27352679320791,572.89503784702083,574.23907660597467,574.7659205901989,62.772017334828995,60.95481344978279,59.57233317378293,59.42993768787975,59.984121957452935,60.342927701208069 +1989,11,14,14,0,647,133,13.5,453.90509425532412,51.43121743452667,60.26499117394526,206.45051812694376,0.0,87.937370005481711,557.89734097120117,1.0,87.937370005481711,284.11983801818542,1.324425940699153,23.300000000000001,6.2000000000000002,535.25713112043138,536.26064719453007,536.82449730256883,538.53931396841563,539.95388657506817,540.51466842434684,53.74819731981794,52.090214052183875,50.480848407012395,49.929064574399831,50.005712037811172,50.290054405925332 +1989,11,14,15,0,488,130,14.5,321.86879227831776,59.43504538224085,66.8478756050697,220.5522677882538,0.0,59.963298838759272,395.26347392327546,1.0,59.963298838759272,201.29512680314184,1.5,23.899999999999999,5.7000000000000002,369.2507975734718,370.41557501122338,371.08350041399416,372.25405867697964,373.22068013258638,373.60466138204697,36.666807668223669,36.544153560263879,35.740198726074652,35.084643217186503,34.586191117617396,34.171467905371181 +1989,11,14,16,0,209,96,15.5,148.41730669815965,69.55473374574937,75.47511268047025,232.50410339268873,0.0,30.074962491806531,178.66924133990318,1.0,30.074962491806531,92.690005958694329,1.5,22.800000000000001,6.2000000000000002,157.50527575483829,158.53212548086583,159.13161073372598,159.64421682627176,160.06691468528749,160.2346899950243,17.399099228932251,17.572873161950746,17.695788616479422,17.870890643703053,17.932724226649022,17.696282297834259 +1989,11,14,17,0,5,35,16.5,35.438919178559026,80.39594764540362,84.9638744604485,242.30714407176143,0.21075903175817476,10.442401535214644,37.009456118503749,1.0,10.442401535214644,21.611193170840831,1.5,21.100000000000001,5.2000000000000002,30.214918175695551,32.701140850609377,33.699953466349221,33.64523751912008,33.603768318088264,33.583824885416938,6.0992134123029249,6.0819919192192557,6.0717648596048663,6.0536780085798547,6.016139925001224,5.9679741259269514 +1989,11,15,7,0,1,0,6.5,0.018345121244951999,84.88826509344352,88.94884301238146,114.14989354855734,0.691153712425412,0.0002384865761843756,0.089098296917051859,1.0,0.0002384865761843756,0.0,1.5,17.800000000000001,5.2000000000000002,3.5737101176336122e-07,3.5737101176336128e-07,2.5918989009992168e-07,1.7941411434171224e-07,0.031056378699681912,0.036405005115620365,0.00013917938472637298,0.00013902054771443715,0.00013863827853645091,0.000138165760335629,0.00013694396809147883,0.00013489416444031218 +1989,11,15,8,0,19,33,7.5,35.177629619796825,78.6094635772253,83.41874876656821,119.37779826607559,0.12950835259027024,9.9685783190062534,37.454974513610345,1.0,9.9685783190062534,21.609176615283861,1.5,17.800000000000001,4.0999999999999996,29.742386158803097,33.497369035749038,33.754798785875622,33.755481037274969,33.758739855645018,33.757469633532452,5.831373641622144,5.8219435057535867,5.812180026646744,5.8038322347387181,5.7789583017072834,5.7329483452666059 +1989,11,15,9,0,7,122,8.5,123.96306869851961,67.4728309000906,73.71362934073395,129.9119884415643,0.0,36.06323974805025,127.36063398405091,1.0,36.06323974805025,75.727944377035854,1.5,18.300000000000001,5.2000000000000002,117.33509645553525,118.86862988145563,119.76746917810817,119.62046692577218,119.51111805580371,119.45636846340241,21.03864901373219,21.02363538598804,21.01436435168403,20.966772859951956,20.828979867481802,20.639881066044055 +1989,11,15,10,0,46,106,9.5,125.08991269403049,57.74731135087596,65.48080303986596,142.27406793773758,0.0,35.048816734215777,132.20889504126461,1.0,35.048816734215777,76.974080441865596,1.5,19.399999999999999,4.5999999999999996,123.1058492513132,124.45737435732754,125.24803043761786,125.28947643044292,125.33287096742222,125.34146147863768,20.703597755326488,20.620517961338749,20.476824866462053,20.349777357479258,20.20332987115761,20.037762289134363 +1989,11,15,11,0,6,153,10.5,156.04973510564514,50.35584640119098,59.450059786553744,156.79977923419204,0.0,47.519576162395339,156.89289888032795,1.0,47.519576162395339,95.342640569518466,1.312499691623663,20.600000000000001,5.7000000000000002,146.12928174662392,148.13833930740543,149.31593981959762,149.13768919843432,149.00633136236766,148.93927064206434,27.830118869396433,27.703142964560868,27.607864635496345,27.514124516367971,27.357895923037745,27.161863368343251 +1989,11,15,12,0,318,198,11.5,374.11784418829791,46.45055220350818,56.369854887382836,173.18982225317166,0.0,87.838665721258067,435.53996111063054,1.0,87.838665721258067,233.11180607364071,1.5,21.699999999999999,6.7000000000000002,417.4367127077644,419.29035352627506,420.36180938911008,421.43251816126724,422.32508542929497,422.67010397595533,52.467102454106247,51.209699916936522,50.241291564394082,50.108616937003923,50.398277998902515,50.550855993621163 +1989,11,15,13,0,253,213,12.5,351.76699420160782,46.918089331128634,56.73678207295007,190.2290090543269,0.0,82.705307561069304,405.49835391743443,1.0,82.705307561069304,219.44747159506653,1.2455803622705068,22.199999999999999,7.2000000000000002,387.04121716341984,389.02870193818296,390.18143761668784,391.29011978271865,392.21165653343803,392.57043055461213,49.358263462847745,48.343317181910386,47.52070857662126,47.414874410485638,47.640480350467385,47.72105976365706 +1989,11,15,14,0,48,191,13.5,214.64597957093619,51.638937265291474,60.48676630344675,206.29900304085137,0.0,59.641104981152083,227.65508172433405,1.0,59.641104981152083,132.26321679632494,1.3435078396618891,22.199999999999999,7.2000000000000002,213.37901013280151,215.60344423184665,216.90446282446885,217.03616478872641,217.15934099798687,217.19434465645202,35.236151296827842,34.951926849895088,34.658870117402209,34.503046790860203,34.34855064477356,34.159441377660727 +1989,11,15,15,0,10,89,14.5,92.90090126063744,59.602946805332614,67.0398925764465,220.36551890069268,0.0,28.339961855160496,93.135858645313448,1.0,28.339961855160496,56.691448444419379,1.5,21.699999999999999,6.2000000000000002,86.503339138071581,87.721204559596629,88.435166817121598,88.305553568133945,88.208360320542567,88.160578236850029,16.588753936966786,16.541272867658311,16.497046131083909,16.431044154474872,16.31841816681699,16.183484863888648 +1989,11,15,16,0,1,74,15.5,74.248038873327701,69.68719350641005,75.63850689502368,232.29890390095127,0.0,22.645426721245652,74.279612192318339,1.0,22.645426721245652,45.285637477906647,1.5,21.100000000000001,6.7000000000000002,68.634488740728841,69.627026144622235,70.209102628461551,70.098092586366462,70.014338793356615,69.973662239187036,13.219561766167955,13.186501299326643,13.168513511299373,13.134670594588924,13.056619248525935,12.949638857221698 +1989,11,15,17,0,32,33,16.5,35.767458164446019,80.42721411797056,85.03868752698716,242.03234704383812,0.2199380717709102,9.6531028668014347,40.292105236157298,1.0,9.6531028668014347,21.97962082223701,1.5,20.600000000000001,5.2000000000000002,27.813584562953352,32.515407080772889,34.773732627971462,34.776619349452488,34.781577493389356,34.781094958108532,5.6471740305051963,5.6383446140043203,5.6288762809189077,5.6211440030684381,5.5974619645877981,5.552818627461571 +1989,11,16,7,0,0,0,6.5,0.0,84.93069031340043,89.03142386907521,114.3959997838053,0.7130394376389675,0.0,0.0,1.0,0.0,0.0,1.5,19.399999999999999,10.300000000000001,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0 +1989,11,16,8,0,6,42,7.5,42.666973471501819,78.7822755990067,83.61768175851414,119.5327631719349,0.14287424331504656,12.552577009325789,44.187280619234699,1.0,12.552577009325789,26.021303484177551,1.5,20.0,12.4,36.803724753119887,40.273866828756333,40.598608449514629,40.533528930663245,40.484241103332323,40.460500348936115,7.3318437228320112,7.311234218011692,7.2989400763554553,7.2773144076404996,7.2323326284009379,7.1744305547696419 +1989,11,16,9,0,5,51,8.5,52.383854790840992,67.6708744242236,73.93242045209043,130.04557575566346,0.0,16.180623975387164,52.06447116968284,1.0,16.180623975387164,31.924220162923422,1.5,15.0,14.4,48.235499369510876,48.945105778654138,49.361256409142079,49.274061711684496,49.207840857563568,49.176132050043513,9.4463021573637338,9.4230331831747467,9.4102189993642806,9.3831924724860372,9.323469348313246,9.2468544640957262 +1989,11,16,10,0,2,161,9.5,161.82247405601606,57.97059232728472,65.71743331626472,142.37466829130489,0.0,48.448311428383903,164.00808662849025,1.0,48.448311428383903,98.885146949803428,1.5,13.9,6.2000000000000002,152.51039730525741,154.5537497921577,155.75122570003973,155.57056721388102,155.43760792171415,155.36964268359759,28.406368181723501,28.314388305149492,28.214909571297049,28.089700655611846,27.894726041779684,27.665827730578837 +1989,11,16,11,0,316,177,10.5,336.42990113413612,50.60124193899348,59.700173880623844,156.84867159311716,0.0,75.073376457139304,394.02487046467104,1.0,75.073376457139304,209.63594827487762,1.3315369312517547,15.6,7.2000000000000002,375.59982443367267,377.30272844076165,378.28737796409018,379.25547432667219,380.06102069789165,380.37380913742732,45.285820413130757,44.349574740166759,43.394403208082338,43.018335296899203,42.969772924111972,42.978794133867538 +1989,11,16,12,0,607,128,11.5,461.94092122728733,46.70380950302223,56.62271035210289,173.16854473108526,0.0,87.855419230448589,566.75916678920203,1.0,87.855419230448589,289.21782861344491,1.253626947178065,15.0,11.300000000000001,548.59938630884415,549.4601801199849,549.94135734059239,551.70528248136475,553.15973710684182,553.736897069664,53.197073809270641,51.402001191265455,49.92556965895983,49.704505630907455,50.173197915712045,50.576903072369305 +1989,11,16,13,0,430,133,12.5,367.33777784505332,47.155041694666316,56.977278717202466,190.13412123936376,0.0,76.30526019823553,444.53522567134939,1.0,76.30526019823553,229.92013801973434,1.2623280189946966,15.6,11.300000000000001,428.53631455867162,429.56481286360236,430.14933101876062,431.53899431497177,432.68672111936638,433.140345266628,46.096222909735346,44.700015080677943,43.532123946216956,43.32876612077164,43.6264336048513,43.896092000686274 +1989,11,16,14,0,783,79,13.5,462.15731684470575,51.84064925626009,60.70244532773485,206.1470600424764,0.0,84.758032102995557,578.55886839305094,1.0,84.758032102995557,288.37617289365591,1.3623888053761553,13.9,11.300000000000001,557.34168758132785,557.90180578393654,558.20123536844096,559.60997998711503,560.77647071732542,561.23482644534386,52.449215760545819,50.727401525824355,48.816438415484136,47.899717285395546,47.651093027869287,47.866247715211863 +1989,11,16,15,0,740,59,14.5,345.45440227499779,59.76499336909849,67.22579336619354,220.1795955415536,0.0,54.316041783366593,444.20977062874545,1.0,54.316041783366593,215.79893923208502,1.5,13.300000000000001,9.3000000000000007,416.23286053756749,416.67612389055955,416.91634275998712,418.05831734917246,419.00115315364314,419.3768563659894,33.656263456215171,33.697800164609816,32.841774824001831,31.876369647801226,31.140292644173215,30.568731624902792 +1989,11,16,16,0,551,55,15.5,190.2029681978743,69.81399555210325,75.79585978413508,232.09527147652116,0.0,21.888654734396138,256.63435610635622,1.0,21.888654734396138,119.47167741934622,1.5,12.800000000000001,8.1999999999999993,220.95148103945235,221.41953035922151,221.68922492733111,222.56217451336011,223.27401709575301,223.56402365202604,12.494747063558831,12.708432714848724,12.907207921696784,13.252947681894758,13.497953659998164,13.29505933330954 +1989,11,16,17,0,193,28,16.5,44.450397319898215,80.45626808237803,85.11044897105552,241.76201298209716,0.2288747511100196,6.8955181596178434,67.023418586701254,1.0,6.8955181596178434,28.130889150211019,1.5,11.699999999999999,6.2000000000000002,19.130301805575076,37.032506028513708,47.691036415114127,47.975437665097331,48.207593110382824,48.302054047788523,4.0812980971216213,4.1124461737728639,4.105581824132881,4.1474741890111959,4.1886396691463119,4.1559636829708335 +1989,11,17,7,0,25,2,6.5,2.3871721649118549,84.97290338592427,89.11263128618735,114.63540286357473,0.7348949032528941,0.63404131822369003,4.1754792144887629,1.0,0.63404131822369003,0.015192232816429896,1.5,0.59999999999999998,4.0999999999999996,1.8253299278081849,1.8531576718865936,1.8694777053892868,1.8756743722407576,2.4029898112699071,2.7668635544609721,0.37193501661506612,0.3721503409843176,0.37152934832344364,0.37203556846793168,0.37172830886526914,0.36879881381393181 +1989,11,17,8,0,479,21,7.5,72.606963018254419,78.9545251132317,83.81500699841186,119.68135008250722,0.15647952180680372,5.5781112226196941,118.61888992182078,1.0,5.5781112226196941,46.032802433413636,1.5,2.2000000000000002,3.1000000000000001,18.203888651569791,82.545600404852294,82.670732266630239,83.156548433948487,83.5514343114246,83.713725855056879,3.3440852568893464,3.4033001947923833,3.3974879540841441,3.4740372076895167,3.5592647696027964,3.5310472851709296 +1989,11,17,9,0,752,35,8.5,240.3980797773221,67.8677383474194,74.14905254164232,130.17263358221518,0.0,27.377268120882,325.70463429417072,1.0,27.377268120882,150.2405784839558,1.5,4.4000000000000004,3.6000000000000001,286.8779942603789,287.20717192744098,287.39171434365585,288.21703822206126,288.89120318843629,289.16471966452008,15.495415104347476,16.049987638485252,16.478081415884414,16.838643293134847,16.856475343920902,16.433947329299695 +1989,11,17,10,0,874,46,9.5,402.17095687036033,58.19158923867828,65.95096934302545,142.46879514507714,0.0,61.9087558892099,515.8823122436379,1.0,61.9087558892099,250.32332241050543,1.5,5.5999999999999996,4.0999999999999996,487.96894687905615,488.37923936359863,488.59600637298649,489.60224285164077,490.43776513768074,490.76624462406318,38.563621829879516,38.292958184351505,37.065874984717311,35.927510679637109,35.055498224061367,34.552585481913539 +1989,11,17,11,0,920,54,10.5,514.74938908847639,50.84292568118125,59.94609493557491,156.8917377689853,0.0,92.710512809744387,645.50866158163649,1.0,92.710512809744387,319.87896628334784,1.3504668900145913,6.0999999999999996,4.5999999999999996,625.10206022733951,625.5614015695096,625.79825960329367,626.89802276340208,627.81670367308436,628.1698487692172,57.282623479822796,55.188240651163966,53.032484093858052,52.016538877799412,51.724011381796636,52.04571359057843 +1989,11,17,12,0,946,58,11.5,575.02255424233613,46.95195175490584,56.870345172023356,173.1429577517974,0.0,103.24753888508039,715.0326022004698,1.0,103.24753888508039,357.07334504967645,1.2702819052432104,7.2000000000000002,4.0999999999999996,697.48519504268438,697.96455469590251,698.21288551675832,699.34884446479862,700.29962999180577,700.66290608673307,62.821343437061174,60.26844344775764,58.223630657150501,57.609878434626594,57.852875077658538,58.46814433331145 +1989,11,17,13,0,941,57,12.5,566.58355577718248,47.38605550668343,57.21186947765422,190.03699099102678,0.0,106.98612638571655,705.23739040905048,1.0,106.98612638571655,351.8485924816149,1.2788975326876013,7.7999999999999998,4.5999999999999996,687.49163678633704,687.96406749748405,688.20637234327774,689.32933584440207,690.2707039440711,690.6288840075797,65.204681279335205,62.563300137400425,60.391100278540328,59.665264792759686,59.845261051922911,60.447471144153099 +1989,11,17,14,0,917,53,13.5,498.80249774394787,52.0362729228606,60.911944451792806,205.9947358373443,0.0,89.931531953269257,627.51044953401845,1.0,89.931531953269257,310.03841254179724,1.381046548487681,8.3000000000000007,5.2000000000000002,605.9743491933209,606.42950090567854,606.66367115772266,607.75386031838059,608.66435647855099,609.01468170562384,55.81145870692275,53.934090438052131,51.775574717963771,50.650828409683385,50.129009600095088,50.327557178350759 +1989,11,17,15,0,848,47,14.5,372.80722911467785,59.921115292592376,67.40550378333658,219.9945533445253,0.0,57.939644760291806,481.28404007572732,1.0,57.939644760291806,232.29703354559487,1.5,8.9000000000000004,3.1000000000000001,451.28417971868197,451.70776033052596,451.93485790360626,452.95767304742338,453.80508850029611,454.14057251648046,35.785133544732851,35.984590170825911,35.184384385760282,34.109444870906948,33.179603040863135,32.475630285061357 +1989,11,17,16,0,655,34,15.5,193.04545242421469,69.93508588354273,75.9471095434561,231.89327744185033,0.0,17.927722383186495,265.90828370531051,1.0,17.927722383186495,121.02077070966487,1.5,8.9000000000000004,4.5999999999999996,228.10693176028124,228.43191269783699,228.61789568886113,229.41627885524062,230.06665788298989,230.33210928693026,10.213033266752932,10.365170007865839,10.547546568841424,10.852247077756809,11.087227750809603,10.963554357085441 +1989,11,17,17,0,290,20,16.5,44.37181630737966,80.48309803808515,85.17913371581515,241.4962586290371,0.2375575319607098,4.6271566186331565,74.779160531996894,1.0,4.6271566186331565,28.24660367240396,1.5,7.2000000000000002,5.2000000000000002,12.270260105869385,33.903150412024111,49.886375133839593,50.22553994268646,50.50142227222743,50.614613252862256,2.7634958641358218,2.8040943902617781,2.7993964647990239,2.8523498564754575,2.9103277143670656,2.8877408902453547 +1989,11,18,7,0,7,2,6.5,2.0986652191765933,85.0148383411808,89.19238745088778,114.86799820314305,0.7566962922977785,0.63029072792913177,2.5930919840331024,1.0,0.63029072792913177,0.015192232816429896,1.5,1.7,3.1000000000000001,1.8253243075662837,1.8531520516446922,1.8694736292056209,1.8756715506612507,1.9930256429605788,2.1267775682016561,0.36974619383975915,0.369964016180028,0.36934903532531871,0.36986268658901866,0.36957464166169002,0.36667738311524434 +1989,11,18,8,0,253,31,7.5,57.399084456706014,79.12610526375744,84.0106151351717,119.82351826713564,0.1703262952844169,7.474062462041223,86.94593095044803,1.0,7.474062462041223,36.586306433097405,1.5,2.7999999999999998,3.6000000000000001,20.366148024756498,61.964168149314645,63.073025016312073,63.530325332180666,63.902636464512199,64.055067523094237,4.4487247042040057,4.502255160246234,4.4947660376540197,4.5652099823430277,4.6405068659127986,4.6047024274744022 +1989,11,18,9,0,323,98,8.5,185.05973935972168,68.06330721807846,74.36341356732744,130.29314865694496,0.0,32.267139175691256,232.19988261927284,1.0,32.267139175691256,116.18840691534504,1.5,5.5999999999999996,5.7000000000000002,205.52661758755985,206.4797103483838,207.03435436169008,207.88000577652383,208.57267139938335,208.85204607601389,18.615700838642613,18.928654940689007,19.144426979622505,19.415002615286959,19.517361793676908,19.212525919116445 +1989,11,18,10,0,409,148,9.5,313.17219270695284,58.41017685622933,66.18129400652208,142.5564676142137,0.0,63.036944119559926,381.08991576040677,1.0,63.036944119559926,196.09047431074373,1.5,8.9000000000000004,7.2000000000000002,356.73517103741318,358.07321787791335,358.84327523036848,360.0709768048464,361.08468988600185,361.4875634776887,38.399333839293213,38.37166581966126,37.642764715610724,36.981204479321846,36.477741221842145,36.004822096055797 +1989,11,18,11,0,691,112,10.5,455.53762465014319,51.08077669204862,60.18770950870114,156.9290254853605,0.0,85.950952122891863,566.60195663507579,1.0,85.950952122891863,284.8259712613729,1.3692723760274865,11.1,6.7000000000000002,545.25399126622096,546.03927562724357,546.47234724655209,548.07384317457604,549.39657980047764,549.9195837644113,53.037421874697678,51.43873319423372,49.625469860194663,48.798841600214253,48.605170192810071,48.782376439158547 +1989,11,18,12,0,768,88,11.5,505.01552466361852,47.19487567754215,57.11265665582735,173.11311954224936,0.0,92.467211749040459,627.26844638567241,1.0,92.467211749040459,315.05445642391243,1.2867746533416025,12.199999999999999,7.2000000000000002,609.48668130893464,610.0816265390813,610.40188671318003,611.9187339757151,613.17445455332722,613.66762356968513,56.431704811334072,54.33811391878303,52.522439273043013,51.973753209541243,52.177325760682372,52.653642341401572 +1989,11,18,13,0,908,64,12.5,552.66353285649598,47.611043370585534,57.440463220850255,189.93767044942118,0.0,105.06517361493533,688.08946397583622,1.0,105.06517361493533,343.54183209268496,1.295270991547191,13.9,7.7000000000000002,669.90806787031261,670.44307571880177,670.72258377923015,671.93954624050832,672.95653481259262,673.34670638940258,64.223460373285477,61.696836037377246,59.510156967418006,58.731298587430224,58.797270743349891,59.370564599222291 +1989,11,18,14,0,884,59,13.5,486.01654210023895,52.225730192059125,61.1151821512056,205.8420797345456,0.0,88.309558841313844,611.62546362773037,1.0,88.309558841313844,302.40181016505693,1.3994583206190923,14.4,8.1999999999999993,589.83333418462962,590.34349790979934,590.61049175412847,591.78458947549257,592.76270470792508,593.14144841420477,54.849246096192594,53.142722920775881,51.053439449296803,49.897970391964847,49.345040394552562,49.454866240550679 +1989,11,18,15,0,815,50,14.5,360.84913539756985,60.0712457807793,67.57895242844484,219.8104504628799,0.0,56.610067576558514,466.26865869454036,1.0,56.610067576558514,225.05688651822493,1.5,13.9,7.2000000000000002,436.61130337428449,437.06358343049061,437.30850250228565,438.37461063611528,439.25626282144174,439.60655946797675,34.87541397280792,35.146987041838209,34.45415189577156,33.445291571198759,32.524437911237236,31.808443397377921 +1989,11,18,16,0,621,44,15.5,193.26370255630977,70.05041393145632,76.09219762959201,231.6929953027335,0.0,19.008593761656439,265.67740243238165,1.0,19.008593761656439,121.33745687670714,1.5,13.9,4.5999999999999996,227.65587338719817,228.03974842122329,228.26054682038531,229.12488839965087,229.82920020949132,230.11681068356592,10.898288408264646,11.015724185740137,11.139394802509006,11.458462877796155,11.72878624307598,11.626448850278845 +1989,11,18,17,0,277,23,16.5,45.963318824617929,80.5076943163123,85.24471862506665,241.23520139735743,0.24597521966104724,5.4753860918375743,75.734557971311119,1.0,5.4753860918375743,29.290036212690456,1.5,11.1,5.7000000000000002,14.779081268663942,33.94634062147616,51.274893334382568,51.637877329581258,51.933276677141905,52.054338222841103,3.2637286018069864,3.3066628940787148,3.3011518549802368,3.3574304803261756,3.4182866182085196,3.3918855704699973 +1989,11,19,7,0,5,1,6.5,1.0636491437116617,85.0564290750615,89.27061483893544,115.09368334183453,0.7784179324907895,0.31533147890816948,1.4232767522034706,1.0,0.31533147890816948,0.0075961164082149479,1.5,-2.2000000000000002,0.0,0.91266243267550895,0.92657630471471342,0.9347370168746223,0.93783591534541499,0.99700553331440056,1.1131267428452254,0.18498171252312906,0.18509049973684627,0.18478271098659377,0.18503916786520114,0.18489419191476908,0.18344396297460908 +1989,11,19,8,0,230,34,7.5,57.225394733765498,79.29690731897391,84.20439530225372,119.9592300208682,0.1844161151571502,8.4047403855307241,84.725632097766265,1.0,8.4047403855307241,36.127222976622839,1.5,0.0,2.1000000000000001,23.190107490665532,58.045954729666015,62.365477863219141,62.699718193593057,62.972638692516028,63.083607937970143,4.972418747387275,5.0087566132685364,5.0003598128262325,5.0492778939144536,5.0967600296934581,5.0567466838990391 +1989,11,19,9,0,513,77,8.5,213.44270153246549,68.25746496782806,74.57539107818803,130.40711075255768,0.0,30.968764732374495,280.40159313269362,1.0,30.968764732374495,134.23758442207534,1.5,1.7,3.1000000000000001,246.35123074505242,247.05990237103319,247.46946036829326,248.51325749248906,249.36568458911486,249.71189552392551,17.681335807375724,18.083225056639822,18.384630460146077,18.782863084422331,18.988665007477906,18.632384347369268 +1989,11,19,10,0,614,100,9.5,345.73289006004177,58.62623035327301,66.40829053402523,142.6377074627859,0.0,58.718433260350643,437.33241145125493,1.0,58.718433260350643,216.68334452988094,1.5,2.7999999999999998,2.6000000000000001,410.52759190803715,411.3212554567184,411.76856864733446,413.17415539208588,414.33136538464538,414.79489087730349,36.141818615726478,36.218613852958249,35.422134252010181,34.585890659876419,33.96020678893543,33.394263561842187 +1989,11,19,11,0,565,123,10.5,401.8635869484566,51.31467528356663,60.42490514304012,156.96058444853452,0.0,74.654988137699291,497.28149002671313,1.0,74.654988137699291,251.96683293658305,1.3879355420108213,3.8999999999999999,2.1000000000000001,476.81368797126373,477.71608965228324,478.22276552976922,479.89122209334323,481.26479249741715,481.81224277184208,46.043295766082466,44.90014976747262,43.425133954926636,42.756849715051494,42.536890331238169,42.587671827222387 +1989,11,19,12,0,425,184,11.5,413.29279807538126,47.43247955907895,57.34954353567417,173.07909005832272,0.0,86.133348892695807,495.51225412459007,1.0,86.133348892695807,258.6897221413019,1.303088276639714,6.0999999999999996,2.6000000000000001,475.95614703876447,477.45717217931394,478.31820477697772,479.89664358657114,481.19978041026457,481.71537530312276,52.140671838170753,50.83265196545436,49.553875004166784,49.198104400311948,49.328779951017985,49.517031775765062 +1989,11,19,13,0,717,113,12.5,496.52223677635243,47.829919754645914,57.662970643152214,189.8362139344743,0.0,96.904215642589463,615.74780563343882,1.0,96.904215642589463,310.17299019815744,1.311430097908442,7.2000000000000002,2.6000000000000001,596.65781708411907,597.40036706912508,597.80573421551128,599.44792481366051,600.80670415463078,601.34129370653397,59.346407262450619,57.269066979665368,55.318131920488334,54.619181977069424,54.700732666324399,55.113615292843079 +1989,11,19,14,0,716,98,13.5,441.70761228167908,52.408945458679966,61.31207923857555,205.6891436071335,0.0,78.537094284139812,553.79884894696875,1.0,78.537094284139812,275.97600552436421,1.4176009653894495,8.9000000000000004,3.1000000000000001,531.95625017992677,532.6297612143486,532.99742477673681,534.476669341601,535.69889104226377,536.18182034313429,48.76186422999082,47.521117911985655,45.785167336043713,44.812365987759179,44.360860349491219,44.326912835214429 +1989,11,19,15,0,633,82,14.5,321.72475197738493,60.21532107493998,67.74607075435763,219.62734751811612,0.0,50.528054860662508,412.33207965662848,1.0,50.528054860662508,201.49037703996376,1.5,9.4000000000000004,5.2000000000000002,384.67140037357751,385.29814883284365,385.64997957815621,386.90401754355992,387.93522939396553,388.34931427980467,30.920522813513951,31.269664683119196,30.794320385708872,30.122820188546793,29.416263962561242,28.79131575115413 +1989,11,19,16,0,229,62,15.5,116.50356224492199,70.15993259572714,76.23106881000894,231.4945006800932,0.0,17.91881430190157,149.87491607367403,1.0,17.91881430190157,73.518938208837241,1.5,9.4000000000000004,4.5999999999999996,129.56537386562832,130.15326194508467,130.4962661271652,131.16039324621485,131.70282846695423,131.92332950406029,10.436813838975661,10.50586280239987,10.542958925596356,10.724692445090115,10.885292542917954,10.799734535087081 +1989,11,19,17,0,152,31,16.5,43.435662857523589,80.53004905778116,85.30718248926868,240.97895925607378,0.2541170042318429,7.6815845522673314,63.192503156890766,1.0,7.6815845522673314,27.515751754755946,1.5,7.7999999999999998,4.0999999999999996,21.561287000361752,33.293511394337813,46.075046065500388,46.363830622803633,46.599748737543251,46.695563281474008,4.5419318575251797,4.5728908204018959,4.5652921766461727,4.6073174805786099,4.6475637906319713,4.611484772831373 +1989,11,20,7,0,1,0,6.5,0.011392621859879647,85.09760985644394,89.34723672876422,115.31235806860306,0.800032376139355,0.00014810408417843538,0.085458486478516255,1.0,0.00014810408417843538,0.0,1.5,9.4000000000000004,6.2000000000000002,2.2193327295794793e-07,2.2193327295794795e-07,1.6096118245196697e-07,1.1141911430990314e-07,0.0067618591456995326,0.033841681011256348,8.6432685819102384e-05,8.6334045423643773e-05,8.6096649980172248e-05,8.5803208409958797e-05,8.5044455341877208e-05,8.3771493578750769e-05 +1989,11,20,8,0,23,37,7.5,39.245910762918719,79.46682076519228,84.39623520376699,120.08845070110549,0.1987498989086136,10.76976996939856,43.435412700809934,1.0,10.76976996939856,24.118837865455252,1.5,10.0,6.7000000000000002,31.056117508429217,36.689884020204083,38.197721150644405,38.201722017266789,38.207885469721006,38.207609095651932,6.3005800338520892,6.2908296070660841,6.2802715563201339,6.271785942223878,6.2455487684703002,6.195776303360339 +1989,11,20,9,0,59,99,8.5,114.4841936969918,68.45009501246392,74.78487230447814,130.51451268368675,0.0,29.421552768774017,124.55413682316404,1.0,29.421552768774017,70.439408382120334,1.5,12.199999999999999,6.2000000000000002,113.18611620070413,114.40089034576559,115.11259206743293,115.14785362763581,115.18424784629602,115.19171021495507,17.136552385064991,17.143817592900398,17.153785299570867,17.172387719944691,17.121124116595897,16.959823424485311 +1989,11,20,10,0,443,127,9.5,302.71053653174766,58.83962539719116,66.63184257980876,142.71253908705728,0.0,56.826601694159081,373.63821221461353,1.0,56.826601694159081,189.50506011853034,1.5,13.300000000000001,9.8000000000000007,349.66000939758658,350.78953235708065,351.43822899868536,352.60792029147194,353.57272663518717,353.95743179393537,34.551979850653908,34.729763704448743,34.193204947767477,33.567120740513992,33.02281312344801,32.478834490004694 +1989,11,20,11,0,691,105,10.5,443.60942794690834,51.54450308579105,60.65757044522738,156.98646633294163,0.0,79.443684841700147,554.63995145534579,1.0,79.443684841700147,277.32681283679909,1.4064378968338493,15.0,9.3000000000000007,533.44210207210767,534.16971917973888,534.56972995858359,536.11461988542226,537.39001906443855,537.89493479941859,49.232894056217745,47.925864834737538,46.204055825084495,45.32233289524261,44.933801927274345,44.95303011042207 +1989,11,20,12,0,583,157,11.5,469.55104537738259,47.66466331989147,57.580906040152946,173.04093097736614,0.0,92.550780103185588,574.06361821512542,1.0,92.550780103185588,294.14499061804031,1.31920542483526,15.6,9.3000000000000007,553.42306385355869,554.61449654644548,555.28842864336002,557.14940354233545,558.68358723059703,559.29274297569179,56.482898012342446,54.829751352104807,53.207368488830369,52.672078583722232,52.76726977420735,53.034377902204611 +1989,11,20,13,0,371,172,12.5,369.26238120122684,48.04260105502988,57.87930434129302,189.73267792269007,0.0,80.207502228634297,442.92268357734145,1.0,80.207502228634297,231.48683218962282,1.3273562029392632,16.699999999999999,9.3000000000000007,424.52513256993689,425.92471586701475,426.72696685205437,428.26412920269127,429.53231508919532,430.03506096636613,48.727753567769305,47.531500350962759,46.30247545909527,45.889274862653636,45.943029314283663,46.075159818758806 +1989,11,20,14,0,205,173,13.5,270.80949960779429,52.58584564102999,61.50255892923493,205.53598184973976,0.0,62.172487221650563,313.75729133196694,1.0,62.172487221650563,169.15914732872054,1.435450974256495,16.699999999999999,8.1999999999999993,296.52523291010965,298.20905133107465,299.18607098916135,300.12197136798562,300.89793520970409,301.2020983202367,37.524684770489863,37.103058702693154,36.410760824565479,36.061514842749943,35.860579692597192,35.675408992837077 +1989,11,20,15,0,542,126,14.5,329.85400969625317,60.35328050145516,67.9067931253454,219.44530754492752,0.0,58.371798069514448,411.39698827009556,1.0,58.371798069514448,206.08573896414404,1.5,18.899999999999999,6.7000000000000002,383.17015213957387,384.31165389630269,384.96714820027279,386.0947724593795,387.02501620628385,387.3953144224468,35.232361780203767,35.653432343767683,35.320657072279623,34.757624073615631,34.072287160368383,33.390388327407102 +1989,11,20,16,0,202,96,15.5,143.6231855832832,70.2635982813046,76.36367120986166,231.2978712373712,0.0,27.600639806510735,174.62724546310346,1.0,27.600639806510735,89.694569542311356,1.5,19.399999999999999,9.8000000000000007,153.12702256912789,154.15585261727978,154.75772500473175,155.25467375664033,155.66461614244758,155.82742337658365,16.093701146536329,16.118861608261383,16.125278161631798,16.262856128038898,16.36474211548126,16.248576792575196 +1989,11,20,17,0,115,29,16.5,38.289884923849769,80.5501561864518,85.36650600766781,240.72765061023117,0.2619725002386378,7.7311232850710798,52.557290108683034,1.0,7.7311232850710798,24.006759308050096,1.5,18.300000000000001,8.8000000000000007,21.910209679552615,29.69902361091571,39.851098126753755,40.019009430624948,40.15706833155788,40.212287854713225,4.5505923255566705,4.5654815942048872,4.5578538313053718,4.5794967307856744,4.5946559263035693,4.5585330152619514 +1989,11,21,8,0,378,23,7.5,58.771523142519975,79.617280497459,84.56976496722935,120.22686650631111,0.21235978909856143,5.8195109321687868,98.008253141846566,1.0,5.8195109321687868,37.386873844704333,1.5,7.2000000000000002,10.300000000000001,15.303901553618612,53.224237021244889,67.59568651199082,68.035149430918594,68.392568121482469,68.539258516953822,3.4777306135823389,3.5305130544665952,3.5245795193903233,3.5933094580858755,3.6687978743320695,3.6402245339526282 +1989,11,21,9,0,702,41,8.5,222.78867233247692,68.64108035394588,74.99174424945252,130.6153503105882,0.0,21.973102594369784,306.52046761958132,1.0,21.973102594369784,139.45046495896901,1.5,7.2000000000000002,11.300000000000001,267.46713275326272,267.8048536328161,267.99680957164469,268.83996715047488,269.52745801097689,269.80749488246215,12.416692437490552,12.658263174710557,12.915891846400978,13.314610051147909,13.584847615683579,13.353942283906825 +1989,11,21,10,0,821,54,9.5,376.74349528044451,59.05023824125066,66.8518343121022,142.78098949798692,0.0,59.289933417394074,486.52846049124531,1.0,59.289933417394074,234.98904086637617,1.5,7.7999999999999998,11.800000000000001,457.80500239054061,458.29217237705041,458.5567256571959,459.67702444172141,460.60340706997027,460.97153082606133,36.516631726079453,36.800340816756147,36.07889742707939,35.030402913507793,34.07330775107777,33.326421240433561 +1989,11,21,11,0,886,63,10.5,494.08776695873098,51.77014311739195,60.88559516391051,157.00672476557324,0.0,85.559506496758445,623.02447249290412,1.0,85.559506496758445,307.50451656779808,1.4247603207961625,8.3000000000000007,11.800000000000001,601.30081505043472,601.84656722677698,602.13500960861813,603.35947276386992,604.37779176096922,604.77380479636201,53.229048549983318,51.734765365076626,49.732137993404905,48.529368668840235,47.919187780816301,47.903755867785584 +1989,11,21,12,0,909,68,11.5,552.29531030132193,47.89132857526271,57.80664596750525,172.99870568867078,0.0,100.30901166327851,690.06342910983176,1.0,100.30901166327851,343.45124071934509,1.3351083386993166,8.3000000000000007,11.800000000000001,671.26858418323354,671.84189144500442,672.14431680990776,673.4120555339681,674.46885912864275,674.87708916302586,61.773135530375072,59.474908617915538,57.271009731076425,56.263323103989293,56.12738492100037,56.51098647936211 +1989,11,21,13,0,915,67,12.5,550.66506775753567,48.24900565847201,58.089378882698156,189.62712102148083,0.0,99.953295754266108,688.72067213211506,1.0,99.953295754266108,342.42008932293794,1.3430303448923935,8.3000000000000007,8.8000000000000007,669.63006398296727,670.19645494763779,670.49419420072059,671.75171196850692,672.80027206625437,673.20517095727553,61.713860524537843,59.507400405971801,57.223601913711569,56.162374179982386,55.867599317795495,56.199897974101276 +1989,11,21,14,0,885,62,13.5,481.75101548244123,52.756360235707554,61.686546906116725,205.38265133338487,0.0,83.513697654816809,609.20776266846644,1.0,83.513697654816809,299.88476455891487,1.4529845471048781,9.4000000000000004,9.3000000000000007,586.51378120335914,587.05481355724601,587.34025079950413,588.554730330231,589.56478246632923,589.95806347718406,52.054575776742041,50.79832542625067,48.843235552943383,47.582102369793304,46.850095458692799,46.688180827562192 +1989,11,21,15,0,822,52,14.5,359.11427010529064,60.485066518862574,68.06105687456466,219.26439593255884,0.0,53.416466040458339,466.98472030813809,1.0,53.416466040458339,224.05857791020532,1.5,8.9000000000000004,6.7000000000000002,436.25466471750178,436.72728780620741,436.98607524669785,438.07935004063523,438.98051168252726,439.34009397903134,32.521847198123638,33.112077385631224,32.743583599608669,32.000341088549284,31.091758613687357,30.26577639809944 +1989,11,21,16,0,676,39,15.5,196.92428859163044,70.36137093081003,76.48995635562592,231.10318660365016,0.0,16.577857994529712,275.65473223300887,1.0,16.577857994529712,123.40505963337495,1.5,8.3000000000000007,5.7000000000000002,235.09004009807936,235.42148284467683,235.61256540423997,236.40990682924544,237.06052791607641,237.32557222382306,9.6049192254510718,9.6298888097392705,9.6531193822555199,9.9129358306827164,10.166992483440159,10.140739236691742 +1989,11,21,17,0,293,21,16.5,44.382717231657026,80.56801137951261,85.42267176677161,240.48139417436235,0.26953178468298483,4.9530285487657153,75.644668144895846,1.0,4.9530285487657153,28.26016379435859,1.5,6.7000000000000002,4.5999999999999996,13.268456253807244,27.63166459322305,50.581353835332635,50.923400546888828,51.201704876258233,51.315814540225475,2.9546317785842051,2.9952939431730594,2.9902897573700415,3.0434745361221456,3.1012843796802945,3.0772744408628334 +1989,11,22,8,0,6,16,7.5,16.557297135769659,79.68648344323194,84.67052244895939,120.4271273996741,0.22180128300243443,5.0393095034036914,16.880490746689148,1.0,5.0393095034036914,10.158928677124154,1.5,-0.59999999999999998,0.0,14.602589940588906,15.290088462759099,15.65046883560511,15.647034277061691,15.645621411846308,15.643710197862681,2.9472560762089604,2.9419831510279399,2.9370571503229321,2.9322167480238464,2.9188987721729256,2.8957032047153959 +1989,11,22,9,0,6,68,8.5,69.533090279728867,68.83030368338184,75.19589378277936,130.70962254148415,0.0,21.118586280525033,69.75348038709987,1.0,21.118586280525033,42.406026872647324,1.5,0.59999999999999998,2.1000000000000001,64.469113983922938,65.393523816734401,65.93562978319369,65.830152572327876,65.750459578455079,65.711867591699757,12.32722965698431,12.294292757210028,12.277638820341357,12.246195689445299,12.174119735602662,12.076040669460358 +1989,11,22,10,0,8,142,9.5,145.11708765816761,59.257945816381834,67.068150500844,142.84308830281967,0.0,43.261539062276384,147.45194646822975,1.0,43.261539062276384,88.653088572275635,1.5,1.1000000000000001,2.6000000000000001,137.05177561280084,138.87986714283969,139.95127532448632,139.78076983212966,139.65455542449058,139.59082529218227,25.337311499802563,25.287969801100552,25.224493973547254,25.114638998734886,24.925822789274967,24.704548292336668 +1989,11,22,11,0,11,178,10.5,183.31461526286645,51.99147985626505,61.1088702686462,157.02141530924138,0.0,54.563014798956338,186.49677336578429,1.0,54.563014798956338,112.06151024126919,1.4428830848608452,1.1000000000000001,2.6000000000000001,173.99710868316387,176.26768074951951,177.59803835688061,177.4070714421681,177.26742760345513,177.19499649980139,32.019529119782959,31.876751259360702,31.738542408260017,31.599123876515087,31.390839416825198,31.153293488016104 +1989,11,22,12,0,5,188,11.5,190.64762252989482,48.112378698195165,58.02666675901654,172.9524792817618,0.0,57.393025887598121,192.83198602647505,1.0,57.393025887598121,116.55182833254713,1.3507788800623484,1.7,1.5,179.87654778571985,182.28053599315027,183.68936495507145,183.49486668819856,183.3530726730443,183.27904919416451,33.646610923326257,33.486157020332264,33.353450512165004,33.230487773992444,33.035946890453566,32.799683981422433 +1989,11,22,13,0,4,197,12.5,199.10229578807946,48.44905400449338,58.29311087544464,189.51960394097625,0.0,59.600017698226964,201.70001224833354,1.0,59.600017698226964,121.73773792131291,1.3584332909045371,2.2000000000000002,2.1000000000000001,188.19113059698216,190.68777738003126,192.15089678262115,191.95342470647302,191.80982520314549,191.73446835950557,34.943682906597672,34.77901189078613,34.641259122134535,34.511784370296432,34.309446850853568,34.063076425194716 +1989,11,22,14,0,3,197,13.5,198.41469945588631,52.92042137146354,61.863971383633086,205.2292113574455,0.0,59.054831188097019,201.98260635476586,1.0,59.054831188097019,121.32277966518666,1.4701776574540828,2.7999999999999998,3.1000000000000001,188.35589917793496,190.81330039916648,192.25306291734782,192.05710758553604,191.91468132525455,191.83991688849684,34.661689877595528,34.517741423005241,34.370085019895441,34.214955060321849,33.98465307821327,33.720535816285185 +1989,11,22,15,0,3,163,14.5,164.11367556323219,60.610624763060784,68.20880235965296,219.08468036258668,0.0,48.088438795001196,167.88484230201095,1.0,48.088438795001196,100.30757230093074,1.5,2.7999999999999998,2.6000000000000001,155.91979531309946,157.94898320479476,159.13822692610222,158.96170392629887,158.83187097393329,158.76538515520332,28.14950676752942,28.110878742169906,28.053464287310678,27.939157562304892,27.730334479872855,27.476434415376307 +1989,11,22,16,0,1,50,15.5,50.231580169328147,70.45321405376367,76.6098792154216,230.91052829263683,0.0,15.737355329282236,49.51534287155161,1.0,15.737355329282236,30.610817696992708,1.5,2.7999999999999998,1.5,45.919273447186818,46.614966936251648,47.023015065668254,46.939278663922067,46.875749453547876,46.845264692676089,9.191515632963533,9.1652342613537172,9.1498592479387462,9.1225909769538198,9.0660509351112957,8.9937115483458498 +1989,11,22,17,0,0,26,16.5,26.0,80.58361203392191,85.4756642154426,240.240308839864,0.2767854326416458,7.9856433603566739,26.136487254882688,1.0,7.9856433603566739,15.842211957956556,1.5,1.7,2.6000000000000001,23.1520046693383,23.752380444316202,24.441207373348824,24.396934816184054,24.363254786142559,24.347187599544863,4.6638769616317699,4.6503802883527978,4.6425686843318932,4.6283437320041374,4.5991720089448895,4.5623990329649047 +1989,11,23,8,0,0,35,7.5,35.0,79.75560598211018,84.7700059178098,120.6200513945066,0.23118943470209116,10.484961595071713,36.112254687184503,1.0,10.484961595071713,21.339231314776189,1.5,-1.7,6.7000000000000002,30.361009071513074,32.159437861899519,33.274573378887688,33.219256237289258,33.177311800868566,33.157160091575953,6.1240185292872358,6.1066741409334488,6.0964102753955043,6.0781943779703917,6.0404448500476473,5.9921140599748606 +1989,11,23,9,0,1,114,8.5,114.25211651848512,69.01764748489774,75.39720773548316,130.7973313334829,0.0,32.952042159926954,117.69205208537672,1.0,32.952042159926954,69.787916084150581,1.5,-1.7,4.5999999999999996,108.16115407811631,109.58636047942943,110.42199099765426,110.2842960113158,110.18169760454032,110.13052220511526,19.226512564582936,19.178278424977183,19.156209120851592,19.118637743901179,19.01754733049642,18.864848434721079 +1989,11,23,10,0,61,182,9.5,205.55924631208742,59.46262582284716,67.28067660615687,142.8988676856637,0.0,54.138940503399404,222.56473608866793,1.0,54.138940503399404,126.6481599093257,1.5,-1.7,6.2000000000000002,206.99919566747599,209.06053312653557,210.2663382731194,210.38527507284402,210.49658950046529,210.52848530674515,31.897361926965203,31.937220278030782,31.820438027755706,31.631694311480217,31.341892748999204,30.99710716393864 +1989,11,23,11,0,122,187,10.5,245.53629395289414,52.20839931018034,61.3272880291998,157.03059544455263,0.0,61.602039114971376,274.11753579650099,1.0,61.602039114971376,152.47209719534933,1.4607858740408046,-0.59999999999999998,5.7000000000000002,258.1172160540857,260.11809873155107,261.28437008825887,261.83121766766209,262.29165060473366,262.46555808800008,36.816021189003223,36.522322714808951,36.031852182996808,35.751607690193403,35.533246530940751,35.301292875755578 +1989,11,23,12,0,113,262,11.5,321.47747839849313,48.32771888225501,58.24087357246334,172.9023185324212,0.0,84.145809165675004,351.42509469108745,1.0,84.145809165675004,198.23931753706452,1.366198565303066,-0.59999999999999998,5.2000000000000002,332.46813230100531,335.29800183073451,336.94968961525854,337.18169991925708,337.3931906481011,337.45789943339611,49.998232039394999,49.437002098931714,48.843078258270936,48.508080065477088,48.253830945998196,48.036186379039584 +1989,11,23,13,0,104,210,12.5,264.35467807465778,48.64266864705068,58.49041903772931,189.4101894632646,0.0,66.851964623426369,292.8155398111337,1.0,66.851964623426369,164.22419084634444,1.3735455823035938,0.59999999999999998,4.5999999999999996,276.41314133076276,278.6148131652767,279.89920745012705,280.51318279409963,281.02915456025971,281.22479001164891,39.846521036674758,39.438485372893886,38.935279383251711,38.723357494935527,38.586913271902787,38.41884864434509 +1989,11,23,14,0,87,202,13.5,242.79741147150634,53.07796386199929,62.034763170423474,205.07572359879225,0.0,64.512878376420787,263.34736585252409,1.0,64.512878376420787,149.61414198060805,1.487006122108514,0.59999999999999998,4.5999999999999996,247.47101098061052,249.77574994134676,251.12181819693023,251.26508698898999,251.39939396875147,251.43755159908906,38.295728887927041,38.053632275123782,37.677624607435249,37.382176326239012,37.085682406300606,36.803539504655348 +1989,11,23,15,0,244,158,14.5,248.02044089836801,60.729904090553035,68.34997301632367,218.90623074319586,0.0,53.585601724251653,292.93156192024287,1.0,53.585601724251653,154.70804575295702,1.5,1.7,4.0999999999999996,271.46792201221962,273.06307578027781,273.99104848825732,274.77569098809425,275.42566109610124,275.68117359197709,31.803709586008431,32.139711879825931,32.045799911110862,31.814371787783678,31.435608701840199,30.910313623298769 +1989,11,23,16,0,311,74,15.5,145.42186370504129,70.53909475238798,76.72339823594108,230.7199796176558,0.0,20.319415953839759,189.39180374901241,1.0,20.319415953839759,91.4170919198002,1.5,1.1000000000000001,6.2000000000000002,163.25205296307868,163.97474694907572,164.39716579404768,165.1025275979315,165.67938840196427,165.91310262226327,11.95428016994312,11.973673869263214,11.945968926958855,12.081183066201133,12.233445924106704,12.167466152653457 +1989,11,23,17,0,227,23,16.5,40.709615951298446,80.59695722986775,85.52546963695758,240.00451353649305,0.28372455039973393,5.4948154329209036,66.696299124114205,1.0,5.4948154329209036,26.030899615478493,1.5,0.0,3.1000000000000001,15.058268265122033,24.289057297746716,45.663055285298853,46.016806085749636,46.304734514677392,46.422692733939087,3.2736363593819795,3.315304246821464,3.3098204373266595,3.3646060985741753,3.4236893730719684,3.397498585849231 +1989,11,24,8,0,237,26,7.5,47.199149300730198,79.8245940350979,84.86815474037235,120.80555583473858,0.24051791143252246,6.2194756741204822,76.130731311738714,1.0,6.2194756741204822,30.141164553559079,1.5,-4.4000000000000004,2.1000000000000001,16.969733763960022,37.424326981710415,53.645351630584727,54.041377779377399,54.363733829316871,54.495778548408879,3.7045928076573991,3.7511850718480497,3.7449610729000153,3.8062047398288539,3.8721037371341849,3.842352704463563 +1989,11,24,9,0,593,51,8.5,198.51748178578978,69.20299414032606,75.5955729963513,130.87848169196283,0.0,20.008294983995796,273.24070720265496,1.0,20.008294983995796,124.50100524698534,1.5,-1.7,3.6000000000000001,236.99747815436086,237.41843967132147,237.6613914548052,238.50187424623044,239.18757763226179,239.46726946922536,11.489251178682256,11.567877646379914,11.664705608355595,11.980389233627989,12.268137892599782,12.182710856178733 +1989,11,24,10,0,749,68,9.5,354.75912802097901,59.66415682177292,67.48929886748367,142.94836238691818,0.0,53.714587104349206,460.24909295870145,1.0,53.714587104349206,221.79846514566114,1.5,1.1000000000000001,3.6000000000000001,431.2068519332754,431.74563436315447,432.04374319744124,433.28757064628428,434.31067796364493,434.72075460246623,32.691117224543142,33.2870745381624,32.927190347985096,32.233862137961943,31.383944665372596,30.573003653299264 +1989,11,24,11,0,817,80,10.5,469.32805508042031,52.42078908742769,61.54074209516949,157.0343245504274,0.0,77.760987311730432,594.57818073594115,1.0,77.760987311730432,292.80041095607754,1.478447815123603,2.2000000000000002,4.0999999999999996,572.0819203292366,572.66577511553419,572.97832904386587,574.39385925247348,575.56512189142825,576.02727767186195,48.496759577107603,47.521192942146136,45.806195537201766,44.624877233341365,43.907266121283797,43.654217488944902 +1989,11,24,12,0,846,86,11.5,528.67350119982439,48.53725620435618,58.449173355507206,172.84829188631622,0.0,96.506822637176768,663.71902561590275,1.0,96.506822637176768,329.53798009817234,1.3813486023753416,3.8999999999999999,5.2000000000000002,644.0508954826887,644.64855537788026,644.96493137261723,646.45373052602247,647.68891237884827,648.17200285468675,59.852307553868897,57.939891768487115,55.687823511750814,54.572932542506152,54.095544174531561,54.289927154394746 +1989,11,24,13,0,787,85,12.5,494.08188283981053,48.82977431550101,58.6812242667106,189.29894240899574,0.0,86.070123810802187,620.34849196800269,1.0,86.070123810802187,308.2229897894037,1.3883475833520253,4.4000000000000004,4.5999999999999996,601.28952544175741,601.88086681695745,602.19740307335019,603.6786820552162,604.90458356688612,605.38693308373945,53.399958037713589,51.781676816984557,49.818671783230528,48.807541789131967,48.39074515779231,48.522368599321844 +1989,11,24,14,0,692,110,13.5,432.75178006179203,53.22892525757067,62.19885573082172,204.9222520580782,0.0,78.589693632561008,544.54745114261129,1.0,78.589693632561008,270.66283275795621,1.5,5.0,4.5999999999999996,521.27126255042731,522.08124533084845,522.52850247788433,524.08196915418443,525.36521593756481,525.87406059017644,48.831363273965856,48.11095746088661,46.540639652870979,45.378940660960694,44.652298475932554,44.303560729908426 +1989,11,24,15,0,453,118,14.5,284.13895736902634,60.84285661961849,68.48451540981729,218.72911914002478,0.0,51.406058727897339,355.43154746345783,1.0,51.406058727897339,177.85114605041778,1.5,4.4000000000000004,3.6000000000000001,329.89631130086264,330.96504352567729,331.57992491330208,332.6704790981006,333.56732117933143,333.92586977817462,30.699306020772671,31.276070718812015,31.194374652184081,30.875503579437176,30.33400416401776,29.654790689017709 +1989,11,24,16,0,372,63,15.5,147.7538743073232,70.61898374394147,76.83047537589799,230.53162560280163,0.0,18.110152499741517,197.22026020288064,1.0,18.110152499741517,92.723923775424836,1.5,3.8999999999999999,4.0999999999999996,169.26205689776049,169.86660535821375,170.21955677160295,170.8760025578726,171.41267912127739,171.63029102322716,10.663289337014898,10.664033423558251,10.62892133570254,10.760964297068174,10.911159698955579,10.858839789795459 +1989,11,24,17,0,45,32,16.5,35.474222582977795,80.60804769154791,85.57207611841501,239.77412708821154,0.2903408058524712,8.8548503887758443,42.907555061683944,1.0,8.8548503887758443,22.03545005482037,1.5,2.7999999999999998,2.6000000000000001,25.426662127280206,28.202491518635004,35.299793981646893,35.385001854035657,35.456399810365959,35.483679634398236,5.1940894580296133,5.1969277234458406,5.1882407064939162,5.1950608855059794,5.1904348240636686,5.1494310342437837 +1989,11,25,8,0,80,33,7.5,40.021268479586261,79.89339347028763,84.9649086138289,120.98356099596937,0.24978007022734627,8.7087514161378241,53.147744961681077,1.0,8.7087514161378241,25.120328601478228,1.5,0.0,5.2000000000000002,24.786994027886092,33.409346960240711,41.831989277300863,42.018261995347757,42.171453811776487,42.232691795186838,5.1255943457177526,5.1419740812041113,5.1334040909629373,5.1573383321611006,5.1739106743521059,5.1333638800309904 +1989,11,25,9,0,389,83,8.5,178.48462100414145,69.38622603460068,75.79087660969398,130.9530816683364,0.0,25.794217270422141,232.793889868517,1.0,25.794217270422141,111.9154722181633,1.5,2.7999999999999998,5.2000000000000002,203.15493835516395,203.96411912717053,204.43601102879535,205.19744999212196,205.82122009575897,206.0730654286829,14.990690480583304,15.040390313576895,15.061750314516278,15.293956840724015,15.506637371286415,15.41991941155147 +1989,11,25,10,0,672,87,9.5,342.06068378733221,59.86241832649663,67.69390439330336,142.99160968143727,0.0,53.879294278437435,441.26810190438187,1.0,53.879294278437435,214.11027724609582,1.5,5.0,6.2000000000000002,412.50913521824987,413.18727568765757,413.56832470453406,414.86196608583867,415.92466573747458,416.35126511449067,32.554755704830967,33.232490404656616,33.029521402019512,32.453043539900179,31.677565079997549,30.863668291760991 +1989,11,25,11,0,742,108,10.5,459.2131454833206,52.62853846739441,61.74912757583551,157.0326638830477,0.0,78.540311086439587,578.8119447525844,1.0,78.540311086439587,286.93380575334237,1.495847508899291,7.2000000000000002,7.7000000000000002,555.43872956729342,556.21905227597335,556.64852496128469,558.19722089771199,559.47654658127624,559.98363195631555,48.810675450990253,48.03683562236472,46.434751417956342,45.294868230259553,44.589677224524834,44.270812826801411 +1989,11,25,12,0,636,145,11.5,475.87428458536505,48.74089968738242,58.65147491891791,172.79046944015727,0.0,92.585456341169817,588.37838634318098,1.0,92.585456341169817,297.87070096885469,1.3962099313816845,9.4000000000000004,7.2000000000000002,567.16993190803032,568.26215147838388,568.87427365626195,570.67258060550046,572.15688754101814,572.74484558001518,57.109790920547027,55.687388467529281,53.825774099254431,52.920103067843542,52.553040009351257,52.584178277993892 +1989,11,25,13,0,652,142,12.5,479.11632485449576,49.010297974771916,58.865449706592145,189.18592960132122,0.0,88.888313547855432,593.40048300181002,1.0,88.888313547855432,299.82399836367989,1.402819533320209,10.0,7.7000000000000002,571.99059555869508,573.05613925301452,573.65359029304273,575.43751198326822,576.90910608846048,577.49281068699099,54.869760181944471,53.544174585177863,51.766039666633581,50.885881572301606,50.508821749674844,50.495817680849221 +1989,11,25,14,0,636,125,13.5,420.0872031563847,53.373245895281705,62.356185244902136,204.76886300319654,0.0,78.364512923040309,525.72801783559066,1.0,78.364512923040309,263.06620668051323,1.5,10.6,7.7000000000000002,502.08970957877432,503.06379888437556,503.60923864985563,505.23810858651979,506.58230421281735,507.11678147893349,48.546522713099328,47.99792577327834,46.550754963804543,45.451456586404873,44.748794095030448,44.333619732106399 +1989,11,25,15,0,393,144,14.5,287.31751574643056,60.94943776930989,68.61237928407571,218.5534197036661,0.0,53.611455261547142,353.45316156739057,1.0,53.611455261547142,179.88329628824113,1.5,10.0,7.2000000000000002,327.46339094149835,328.81085912990659,329.59094316483083,330.71846985129775,331.64543130752571,332.01595046220808,31.846414425012558,32.391802364415675,32.370877855079385,32.155162114286,31.735657439946291,31.101694795859764 +1989,11,25,16,0,134,84,15.5,114.30048309503258,70.69285537957865,76.93107613595002,230.34555289043956,0.0,23.560565944536982,134.67281687330262,1.0,23.560565944536982,70.911521806923602,1.5,10.0,4.0999999999999996,118.96603559753378,119.94467594310321,120.51815764176939,120.75301364789692,120.94963989689566,121.02493252291852,13.818155394633383,13.801656094255502,13.770827976923675,13.796320470509702,13.802024400516798,13.702924207188596 +1989,11,25,17,0,37,28,16.5,30.82864102538505,80.61688574572476,85.61547351791921,239.5492680636797,0.29662645598225873,7.8764602470398852,36.77192747378848,1.0,7.8764602470398852,19.164007199014861,1.5,8.3000000000000007,5.2000000000000002,22.644639138994943,24.609438469081628,30.545960865994903,30.6252923357819,30.691666473876925,30.717120232637733,4.6207941098579486,4.6237839395237676,4.6160634232315019,4.622737925613885,4.6193832319435542,4.5829507286522171 +1989,11,26,8,0,1,13,7.5,13.086108871892989,79.96195018306786,85.06020764390594,121.15399020804344,0.258968957368252,4.0896719358535423,12.944983858183926,1.0,4.0896719358535423,7.9583078995588163,1.5,11.699999999999999,6.7000000000000002,11.864597183347982,12.095021010562537,12.262608434451424,12.235033059501635,12.213815230603419,12.203940697221082,2.3876779354630324,2.3801161665924635,2.3761162948503292,2.368006169089699,2.3520536381865798,2.3332279115443626 +1989,11,26,9,0,0,78,8.5,78.0,69.56722566177179,75.98300587436651,131.02114235607723,0.0,23.599960850500135,78.394139198459698,1.0,23.599960850500135,47.581687539908884,1.5,12.199999999999999,7.2000000000000002,72.386817694651683,73.422641663197538,74.030126402409294,73.915995228002302,73.829999257430913,73.788121970495183,13.78156539492989,13.742414222584387,13.719923299635154,13.683682996672802,13.603329642672566,13.495964901958553 +1989,11,26,10,0,2,124,9.5,124.75263024395082,60.05729089368712,67.8943812513475,143.02864935529604,0.0,37.681641278796882,125.60834783672242,1.0,37.681641278796882,76.17217173840551,1.5,13.9,7.2000000000000002,116.62717189167033,118.25093173503038,119.20290564360155,119.04400931166695,118.92557732945818,118.86655886950395,22.032774467180854,21.992175118051122,21.953701631776305,21.878169274121291,21.727959444828706,21.539004738003914 +1989,11,26,11,0,5,176,10.5,178.35102919977601,52.83153847102405,61.95234112014653,157.02567655307666,0.0,53.269325931701857,180.94309104261373,1.0,53.269325931701857,109.0129729323571,1.5,15.6,6.7000000000000002,168.64618618467441,170.88740980805559,172.2007746282672,172.01107863964498,171.87212389596897,171.80037680083467,31.241572689252298,31.131039694966795,31.014420033914757,30.877605244021531,30.667895717070831,30.421747598323154 +1989,11,26,12,0,3,176,11.5,177.55194465345127,48.93856036254491,58.84768900950556,172.72892292028325,0.0,53.611442609952562,179.10286401861953,1.0,53.611442609952562,108.5183299226187,1.4107632686726577,16.699999999999999,6.7000000000000002,166.9241427207597,169.1925208347819,170.52202369646724,170.33222618575533,170.19320789733541,170.12134303514861,31.421813248247471,31.292132764908324,31.178712712705931,31.061495727039734,30.869144290722097,30.636775854847613 +1989,11,26,13,0,2,191,12.5,192.02878864306518,49.184168884618096,59.04302081580873,189.0712198271036,0.0,57.864798312350025,194.29402780207789,1.0,57.864798312350025,117.39647117132589,1.4169416017475598,18.300000000000001,7.2000000000000002,181.17901092027498,183.60591271524859,185.02810382195807,184.83245800132511,184.68989568558325,184.61540725822076,33.9365681365908,33.788781312434693,33.654171886523997,33.51827214918206,33.307772533174678,33.058717797452474 +1989,11,26,14,0,411,172,13.5,361.73610738562644,53.51086894794469,62.50669066695828,204.61562490992873,0.0,72.325121993049024,438.76926309630375,1.0,72.325121993049024,226.42563605034272,1.5,19.399999999999999,7.2000000000000002,416.55974324045002,418.06439907033075,418.92934155338241,420.32036856246236,421.46917321999319,421.92498355879349,44.193346527588794,43.866835652201431,42.875933102520889,42.158044666337318,41.676556257148924,41.294894465991398 +1989,11,26,15,0,269,131,14.5,228.56795054395894,61.04960629617434,68.73351760850456,218.37920859392,0.0,46.40586247485907,274.28296487163243,1.0,46.40586247485907,142.55725297334652,1.5,19.399999999999999,6.7000000000000002,254.11110492406789,255.45395285898698,256.23442171033679,256.94817103870821,257.53824322658357,257.77089127532815,27.430667362240868,27.805783618056438,27.811906847876894,27.667288472656868,27.339209216997652,26.848023462177359 +1989,11,26,16,0,75,86,15.5,102.83922496631216,70.76068765972283,77.02516958504472,230.1618496452242,0.0,23.568993793673801,117.38292561072022,1.0,23.568993793673801,63.862543871300609,1.5,19.399999999999999,6.2000000000000002,104.33335175168702,105.33092793673913,105.91569027110717,106.15233765011405,106.35039442006601,106.42629307235214,13.828638132870191,13.817611234352182,13.787977127836095,13.810694770868908,13.810966944686749,13.709999290953089 +1989,11,26,17,0,44,26,16.5,29.333022847447527,80.62347527854044,85.65565343000871,239.3300546216874,0.30257437125252834,7.3823021932440653,35.543983821194288,1.0,7.3823021932440653,18.235607487579315,1.5,15.6,6.7000000000000002,21.20648770592291,22.924719929527917,29.277793352803272,29.353585877844871,29.41696032208872,29.441300077363756,4.3311268999078036,4.3341215258295174,4.3268819117258621,4.3333740892262389,4.3305136542194678,4.2963439866521203 +1989,11,27,8,0,173,31,7.5,45.614691198338292,80.03021017558919,85.15399242222641,121.3167699777258,0.2680773090199515,7.6803754283591461,68.995891737717386,1.0,7.6803754283591461,28.871527582321811,1.5,2.7999999999999998,3.6000000000000001,21.463185043069171,32.926002693403738,50.423018325259832,50.7170578669988,50.957230664613469,51.054809951900253,4.5420689191747465,4.5737355030040083,4.5661187013359736,4.6089974064900048,4.6502565190430474,4.6140569682973744 +1989,11,27,9,0,4,68,8.5,68.956042333214327,69.74587573152857,76.1718484439362,131.08267788490812,0.0,20.882672100264411,69.230682103050199,1.0,20.882672100264411,42.054114036610088,1.5,7.2000000000000002,2.1000000000000001,63.939722896160319,64.858009146493202,65.396574906660234,65.292038443483008,65.213069828261624,65.174824540436333,12.19624539867351,12.160719996114931,12.140296840558308,12.106043709985599,12.034197927870736,11.938708186355136 +1989,11,27,10,0,9,203,9.5,206.35825728855127,60.24865621418,68.09061855922387,143.0595236810461,0.0,58.368216559410776,215.17071748007621,1.0,58.368216559410776,126.2620395868956,1.5,10.0,3.6000000000000001,200.05125385477686,202.45143301973678,203.85742544203805,203.67796587755606,203.54844740151094,203.47941515611166,34.175706711324743,34.171901998611574,34.112764736324749,33.96586154500622,33.687057374723857,33.351476091415783 +1989,11,27,11,0,9,188,10.5,192.20438662015735,53.02968193108906,62.1502809967404,157.01342750102916,0.0,56.794331057254098,196.2148396639316,1.0,56.794331057254098,117.51625004543168,1.5,11.1,4.0999999999999996,183.0593624506283,185.4224982161557,186.80702155253218,186.61342287613698,186.47233283696266,186.39874775115337,33.335842362468107,33.216957200971812,33.080275773307932,32.921000527788046,32.6868404380428,32.421179666279471 +1989,11,27,12,0,13,223,11.5,229.68815591483016,49.13015133136874,59.037728382637106,172.66372565860985,0.0,67.328754773977764,235.66137042337763,1.0,67.328754773977764,140.52258955352846,1.424989154420381,11.699999999999999,5.2000000000000002,220.42392625659375,223.17486990728284,224.78618456404084,224.58346334824833,224.43785153840517,224.35949398735175,39.560039544384473,39.358115156685216,39.157403812715927,38.972330258720682,38.716236107417217,38.433077030323105 +1989,11,27,13,0,4,201,12.5,203.04733993505982,49.35131865785312,59.21386543317913,188.95488379539884,0.0,60.800215549731526,206.27916700317141,1.0,60.800215549731526,124.15968790705033,1.4306939467121316,11.699999999999999,4.5999999999999996,192.51027778441926,195.03917509968591,196.52089563746887,196.32228302604074,196.17815698424479,196.10220815647716,35.682276257823297,35.521950907281266,35.367001405418002,35.214218899022384,34.987329580094567,34.72467651798673 +1989,11,27,14,0,1,202,13.5,202.45941998021468,53.64174047139231,62.650313782275944,204.4626083998128,0.0,59.90291900510401,206.63093289566538,1.0,59.90291900510401,123.80875958922954,1.5,12.199999999999999,4.0999999999999996,192.68040300046192,195.17628009825546,196.63861975722864,196.4428444106087,196.30084620597552,196.22607355912001,35.156499326911934,35.039784339496833,34.900852643341679,34.734250187137363,34.487789345479555,34.202945041754994 +1989,11,27,15,0,7,167,14.5,169.52591658904529,61.14332432860837,68.84788662220156,218.20656390091548,0.0,48.921736138519918,174.72152630890156,1.0,48.921736138519918,103.63798472102486,1.5,12.199999999999999,5.2000000000000002,162.23039434381334,164.28765274406655,165.49322680805065,165.31768364297398,165.18874464620106,165.12243452581296,28.603512714740621,28.586495967170976,28.551237453889659,28.450997410568309,28.240691621600867,27.971686344626399 +1989,11,27,16,0,1,114,15.5,114.22303356516521,70.82246224597192,77.11272838316884,229.98060545484284,0.0,31.746463964615572,119.53196521935047,1.0,31.746463964615572,69.796197031211264,1.5,12.199999999999999,3.6000000000000001,109.11022731260275,110.50021429354302,111.31537516790074,111.18597794617177,111.08982949237787,111.04159954233243,18.550074402346471,18.497849236998796,18.464688505902576,18.416669267287777,18.311270798397246,18.166552549080819 +1989,11,27,17,0,0,30,16.5,30.0,80.62782169110939,85.69260914982037,239.11660435189492,0.3081780567942623,8.9880991153986951,30.81857893509304,1.0,8.9880991153986951,18.289395849018081,1.5,11.699999999999999,5.7000000000000002,26.034729756974851,26.686242613385595,28.351316351872633,28.303422531307795,28.267082471348409,28.249648543524032,5.2496601709980117,5.2347282499176044,5.2259313429332375,5.2102389836239285,5.1777872776719969,5.1363671638550885 +1989,11,28,8,0,14,30,7.5,31.160239229770049,80.09811963511669,85.24620410269694,121.47183011101569,0.27709755312129514,8.8524186180572215,34.025235991237764,1.0,8.8524186180572215,19.144187300367737,1.5,13.9,6.7000000000000002,25.574205597490966,27.310268020506118,30.182436420325573,30.184078005860904,30.187810583050741,30.187030365791955,5.1786256581686123,5.1703876823744803,5.1617191064933872,5.1544835229881594,5.1326162164914555,5.0917682740609731 +1989,11,28,9,0,33,67,8.5,74.783595672660127,69.92205927611992,76.35729242787373,131.13770541303316,0.0,20.171902571799542,79.75830588574928,1.0,20.171902571799542,45.976914008955966,1.5,15.6,6.7000000000000002,72.474339779421442,73.343542687161744,73.853171893880855,73.866069405743957,73.882016032410277,73.88330230186547,11.797244167736922,11.771530169847766,11.749762047065023,11.739220681939752,11.698476559501888,11.609351915895532 +1989,11,28,10,0,7,125,9.5,127.59021294561127,60.43639720348743,68.2825065753661,143.08427739131494,0.0,38.133689664066964,129.26664732563751,1.0,38.133689664066964,77.916552678256792,1.5,17.800000000000001,9.3000000000000007,120.0431262646245,121.6746105254004,122.63098171256922,122.47170063416203,122.35304576036972,122.29382281494186,22.293014090197367,22.260888362829892,22.227632543358297,22.150861193871119,21.994269490061406,21.797061678531396 +1989,11,28,11,0,6,174,10.5,176.7850787818457,53.22286356220827,62.3428471738943,156.9959834706598,0.0,52.739514952203102,179.55313961010245,1.0,52.739514952203102,108.05423507911405,1.5,17.199999999999999,7.2000000000000002,167.35506784868568,169.57130702480072,170.87001279416913,170.68123503151423,170.54289511754985,170.47155544822039,30.93150839186875,30.830666318394858,30.718157394930426,30.578833259964906,30.365281824937021,30.115625835095329 +1989,11,28,12,0,353,221,11.5,401.63729755330962,49.3155878272039,59.221507874213735,172.59495256584998,0.0,87.670984247717556,473.16285680765395,1.0,87.670984247717556,250.04925675401458,1.4388680035810015,19.399999999999999,8.8000000000000007,451.94878122968254,454.03489196039641,455.24065473742507,456.32137494023675,457.22239026573686,457.57083778165986,53.143735864713022,52.386206909497901,51.239192333237106,50.583411408705068,50.185391530324999,49.951065199257322 +1989,11,28,13,0,277,202,12.5,343.09636904687102,49.51168131743891,59.377913842886414,188.83699409318044,0.0,76.441293474703386,401.75540720237814,1.0,76.441293474703386,213.92259459519508,1.4440567758915925,20.0,7.7000000000000002,382.71008774885945,384.63249955102799,385.74555894633113,386.78635387868309,387.65159480894101,387.98855857749851,46.256440698308566,45.656141260472999,44.717371084867338,44.206364318830317,43.903139645208626,43.689220216091869 +1989,11,28,14,0,299,176,13.5,312.73261894674187,53.765809450122795,62.78699926205724,204.30988617527333,0.0,67.477050658706347,370.13595048444949,1.0,67.477050658706347,194.91834319940406,1.5,20.0,6.7000000000000002,350.44196901024191,352.16399782848725,353.16105233042197,354.08351003314505,354.85090682466472,355.15040548925282,40.823525754463098,40.667187900701492,39.954518820578642,39.370576719764955,38.907744492956432,38.498429442407414 +1989,11,28,15,0,127,150,14.5,195.6049136611046,61.23055739875334,68.95544587552666,218.03556556321064,0.0,45.842211810730134,222.05170326958785,1.0,45.842211810730134,121.37382057312402,1.5,20.600000000000001,7.2000000000000002,205.46349325869107,207.10965914142747,208.07127751432716,208.47815420657446,208.81971237612908,208.94943188441621,26.917128276098921,27.124217674702798,27.136033865921789,27.072685736085582,26.868550548176788,26.493366958309768 +1989,11,28,16,0,138,92,15.5,122.58842165608208,70.87816446956894,77.19372880049484,229.80191122769546,0.0,24.891257627830857,144.9994302748855,1.0,24.891257627830857,76.023084086671318,1.5,19.399999999999999,5.2000000000000002,127.93334923602713,128.9871324811121,129.6048165700488,129.84634041804978,130.04868700737086,130.12602610652206,14.606654659712271,14.601568856610458,14.569285398460613,14.58713143588038,14.575868842349013,14.468993928646562 +1989,11,28,17,0,16,16,16.5,17.192325907030451,80.62993185443617,85.72633563651947,238.9090341112479,0.3134316702988901,5.0475648774300845,18.416911588836324,1.0,5.0475648774300845,10.552323075205706,1.5,17.800000000000001,4.5999999999999996,14.602602311228026,15.015740527956781,16.551274996097707,16.548779479008619,16.548129204380398,16.54653206857876,2.952232904447023,2.9470791367398239,2.9421400987270903,2.9374424226634606,2.9242780687341607,2.9010123173097795 +1989,11,29,8,0,102,27,7.5,35.292461319578088,80.16562501098853,85.33678447666651,121.61910383463912,0.28602181260813025,7.2187345991477763,49.058622492918772,1.0,7.2187345991477763,22.144535327260723,1.5,5.5999999999999996,3.6000000000000001,20.474825221866862,25.500855264149422,37.575832137936366,37.736759713569754,37.869024695594192,37.921976240537688,4.2497043541986423,4.2641534845487516,4.2570357338524794,4.2779505717452819,4.2929820290805392,4.2592796724047632 +1989,11,29,9,0,220,84,8.5,135.21151071337104,70.09565975754825,76.53922649363244,131.18624511730428,0.0,22.827399320256863,168.4282235011699,1.0,22.827399320256863,84.431400333460289,1.5,6.0999999999999996,6.7000000000000002,147.56231359140017,148.47093186209838,149.00302957653565,149.46623686129391,149.84760069998899,149.99966595199857,13.42563373492826,13.425280630576784,13.390571380421125,13.458619903182868,13.522914319857614,13.432685899168874 +1989,11,29,10,0,266,173,9.5,270.61917194243711,60.620398091909195,68.46993679019818,143.10295765064384,0.0,56.940862109991414,321.3294412847269,1.0,56.940862109991414,168.66182041096809,1.5,7.7999999999999998,6.2000000000000002,298.07222061596912,299.80615963999327,300.81520499003341,301.62171936987477,302.28965024096544,302.5518588548623,33.582868812531743,34.015038074444526,34.041575947675973,33.907158027477145,33.539845527481745,32.963140651896673 +1989,11,29,11,0,63,240,10.5,269.06095623695683,53.41098003053209,62.52994139929243,156.97341298026097,0.0,71.116876145088554,292.01112483746834,1.0,71.116876145088554,165.90587057259785,1.5,8.3000000000000007,5.7000000000000002,274.07523266061133,276.66906638776209,278.18477668054874,278.38322393587885,278.56415776018878,278.62005312157657,42.157662664013323,42.022360910213827,41.670024172875308,41.344922107748637,40.995969293100153,40.625544343241216 +1989,11,29,12,0,55,148,11.5,175.9981499947489,49.494787276146404,59.39894447197558,172.52268010196684,0.0,48.382958166360595,187.46961090464862,1.0,48.382958166360595,108.3853146659886,1.4523801601254527,7.2000000000000002,6.2000000000000002,176.09511092901636,177.91238803112174,178.97502564739966,179.06046662653821,179.14319483988078,179.16440644512272,28.624120740941859,28.452105834364922,28.212834983910589,28.043384188878356,27.860787813274808,27.661106965812401 +1989,11,29,13,0,201,196,12.5,297.90909886328433,49.66519335231855,59.535098838147505,188.71762513829185,0.0,70.922158329992129,339.57397425086185,1.0,70.922158329992129,184.78751952704675,1.4570104101604708,7.7999999999999998,3.6000000000000001,322.47028281613359,324.55182745637046,325.76205543978176,326.34066836805471,326.82977297517573,327.01273854506161,42.588510742868444,42.149479548463489,41.452850987929615,41.023313087930823,40.706664935695478,40.455135458028508 +1989,11,29,14,0,390,164,13.5,341.56134487473844,53.883027841171995,62.91669471636367,204.1575329520753,0.0,68.429091059619921,415.74706014430853,1.0,68.429091059619921,213.9511418462732,1.5,8.3000000000000007,4.0999999999999996,394.22140021925168,395.65344642925288,396.47708388069316,397.84517043583713,398.97424611252711,399.42333498558241,41.74763398199503,41.657544367766882,40.809129129940388,40.11097029943069,39.567261858385024,39.094052215227983 +1989,11,29,15,0,677,83,14.5,324.99549941701821,61.311274471851014,69.05615826890102,217.86629528301168,0.0,48.674003762689942,424.45828329104279,1.0,48.674003762689942,203.44566392846772,1.5,7.7999999999999998,5.7000000000000002,393.86611808740446,394.52724755111223,394.89953045347738,396.13771204000955,397.15182944563526,397.56039220862368,28.655917662423807,29.615321133912598,29.873645894222779,29.740551590035132,29.214956282537784,28.328751710396187 +1989,11,29,16,0,270,82,15.5,141.50488020640785,70.92778333647077,77.2681507329226,229.6258590877196,0.0,21.883988214145081,179.82595118340302,1.0,21.883988214145081,88.256865170843284,1.5,8.3000000000000007,5.2000000000000002,155.95187316909008,156.84152610487808,157.36267709241136,157.80901530052719,158.17639364447342,158.3229556314505,12.891793989750324,12.905402679784183,12.864531364672724,12.920205968213706,12.95813536373157,12.864700826669178 +1989,11,29,17,0,247,21,16.5,39.275436285006805,80.62981406420921,85.75682947651785,238.70745985653366,0.3183300365643402,4.9800112384808157,67.424236315116886,1.0,4.9800112384808157,25.089504738014739,1.5,6.0999999999999996,5.7000000000000002,13.566026641706166,16.622102154294474,45.545540372850624,45.877791822796354,46.14817217030852,46.25898863801789,2.9688614964126518,3.008176044257072,3.0031908323698882,3.054780014970095,3.1106780937264444,3.0868383612848413 +1989,11,30,8,0,216,22,7.5,39.226481296979841,80.23267308981771,85.42567604650418,121.75852791623588,0.29484191003294186,5.1620921480943416,65.762874506267281,1.0,5.1620921480943416,25.108799046945325,1.5,-1.1000000000000001,3.6000000000000001,14.104516683038097,21.474139513625943,45.424733104274196,45.77468022020328,46.059438424163659,46.176169461445156,3.0783662114946924,3.1198475817017348,3.1146904232126595,3.1691187521114035,3.2282520926220006,3.2036038310815314 +1989,11,30,9,0,600,45,8.5,182.85108417148385,70.26656117492047,76.7175399694829,131.22832018119348,0.0,14.171069607621755,257.9155591407881,1.0,14.171069607621755,114.92400331666252,1.5,2.2000000000000002,6.7000000000000002,220.44634617182135,220.85037765637998,221.0855557935333,221.9495206234441,222.65310299774509,222.94096975469762,8.4482874378955675,8.4585625983882426,8.400533871141354,8.5444326021562382,8.7348854925418706,8.6934166550773799 +1989,11,30,10,0,757,60,9.5,335.56207814634746,60.80054451418926,68.65280201741673,143.11561402543148,0.0,44.313984885701295,442.56256781238079,1.0,44.313984885701295,209.70712987028017,1.5,5.0,6.2000000000000002,412.43664775434632,412.90557627200224,413.16529349396245,414.31280259620735,415.25265425800205,415.63127127225783,26.241476385494042,27.120673175089806,27.298274915106045,27.089984979263555,26.537360476142947,25.691012177886638 +1989,11,30,11,0,829,71,10.5,451.07303586929049,53.59393002302542,62.71146727950389,156.94578629173725,0.0,74.143646773742162,578.50206869137696,1.0,74.143646773742162,281.27631122616333,1.5,6.7000000000000002,7.2000000000000002,555.33626796368662,555.84583225069809,556.11637609324976,557.4268551544219,558.51285486043287,558.94173800021645,46.176725297037855,45.921995417915106,44.491958853677183,43.137190576535588,42.08289973449822,41.46565590461497 +1989,11,30,12,0,864,77,11.5,514.60385832617396,49.66766935726314,59.56995738600643,172.4469862437903,0.0,88.670493800159349,652.92438204914686,1.0,88.670493800159349,320.60211446753925,1.4655059543816504,9.4000000000000004,5.7000000000000002,632.78044658170757,633.31005819092741,633.58564614283716,634.97534739577304,636.12923490973469,636.58072161054042,55.371638315533616,54.125950904016868,52.073327579436437,50.65500378892564,49.803262979516219,49.560676408821756 +1989,11,30,13,0,856,77,12.5,509.06452975611194,49.81179377187967,59.68535578343426,188.59685312965573,0.0,87.794082354587701,646.06933546998437,1.0,87.794082354587701,317.19242042220253,1.4695353494306542,10.6,6.2000000000000002,625.90137874482468,626.43236274082392,626.70917034098989,628.09875515517649,629.25225656713155,629.70385750698063,54.820287748522745,53.591333714782145,51.562829834142484,50.163898115841761,49.325199084771164,49.084702319057513 +1989,11,30,14,0,831,71,13.5,447.75749143389351,53.993350616099434,63.03935074494121,204.0056253891572,0.0,73.689499862377318,574.97697233571728,1.0,73.689499862377318,279.23028828161165,1.5,12.199999999999999,5.2000000000000002,551.30339246889696,551.81670518268606,552.08983524332666,553.39849918337575,554.48290502355951,554.91146044308664,45.821213315976841,45.67806030517032,44.342380095016757,42.956773667778158,41.90627308915451,41.219930420122431 +1989,11,30,15,0,755,60,14.5,328.72169742445215,61.38544797298685,69.14999008873086,217.6988364386565,0.0,43.639996187352423,434.7725304010844,1.0,43.639996187352423,205.48205298041916,1.5,12.800000000000001,7.2000000000000002,403.79641511387615,404.27151854110031,404.53499459013301,405.67742825797109,406.61259995936916,406.98976764791303,25.646902900533988,26.582040133112084,26.87527342772368,26.755006699737081,26.246396906660824,25.404351358685275 +1989,11,30,16,0,593,44,15.5,174.00552128154982,70.97131152908226,77.33597771404627,229.45254226660714,0.0,12.37827729943324,247.48021428778162,1.0,12.37827729943324,109.41379322202374,1.5,12.199999999999999,5.7000000000000002,209.41341460895538,209.81405851365304,210.04780433482875,210.88840527015839,211.5724470314961,211.8528312220098,7.4205021280000576,7.4744482367480938,7.4204477519772247,7.5480367738035943,7.6878917824383413,7.6453471583940997 +1989,11,30,17,0,194,21,16.5,35.261939203267652,80.62747799602377,85.78408884701898,238.5119964734954,0.32286865867779635,4.935905029212166,58.759695183586267,1.0,4.935905029212166,22.617586301074084,1.5,9.4000000000000004,4.0999999999999996,13.59151521016204,15.452847486187778,40.264811868418221,40.596226852116565,40.865917960790703,40.976460170274365,2.9429892501264781,2.9822175567351361,2.9773083847106867,3.0288506977402139,3.0848201869604672,3.0613940789367806 +1978,12,1,8,0,50,24,7.5,27.916069077231548,80.29589493528499,85.50791479728956,121.87974316724709,0.3030252494645634,6.9010053283751356,34.563724714640259,1.0,6.9010053283751356,17.357454464166061,1.5,4.4000000000000004,2.6000000000000001,19.800312090334998,21.566650815192581,28.332476855305707,28.405395969411494,28.466313102105488,28.489760397072267,4.0490930563987559,4.0521688815684866,4.0453965944657657,4.0518060189919494,4.049541457173139,4.0175686828791504 +1978,12,1,9,0,226,98,8.5,149.29165822673284,70.42550222436763,76.88217883909321,131.25875179035538,0.0,26.141504594353002,185.32707339368267,1.0,26.141504594353002,93.162699474267754,1.5,5.5999999999999996,4.0999999999999996,162.15587338840851,163.20534544277791,163.82002908288575,164.31143380665856,164.71650319799949,164.87752286042232,15.390026333070294,15.390560042993856,15.337830720981986,15.395037396912151,15.441699679984982,15.343412800097838 +1978,12,1,10,0,535,95,9.5,288.29185148663441,60.9665728712951,68.82036408893384,143.11864637598882,0.0,46.012588615106488,371.9361671558853,1.0,46.012588615106488,181.07666193060675,1.5,6.7000000000000002,4.0999999999999996,344.9173866194019,345.70833643588679,346.15933513033701,347.47878124323194,348.55825408259426,348.99448479017485,27.117107226441568,27.950111086056292,28.160352885934692,28.093194499679914,27.700911158713744,26.937078591779262 +1978,12,1,11,0,302,175,10.5,312.68598552293281,53.76067957971357,62.87625102488292,156.91177733867076,0.0,67.37241605856164,371.02380568378101,1.0,67.37241605856164,194.87907934118243,1.5,7.2000000000000002,5.2000000000000002,351.34603609635599,353.05953303633214,354.05167579611373,354.97009979555901,355.73424567746531,356.03260222599738,40.716477725084623,40.660165506622093,40.011476406141306,39.397278756610113,38.894784409653283,38.424996678167268 +1978,12,1,12,0,272,202,11.5,339.13552717529683,49.82306910837461,59.723415435900726,172.36945849659986,0.0,75.841381646429298,397.58858404323655,1.0,75.841381646429298,211.46869102248792,1.4773497101524375,8.3000000000000007,4.0999999999999996,378.48345869809197,380.40964240466587,381.52466564127712,382.55974930419802,383.42037907412629,383.75577262635954,45.915819435453493,45.413894013221537,44.51191480368027,43.958065748765065,43.596773870424123,43.318018699402906 +1978,12,1,13,0,603,157,12.5,460.15527279877841,49.941158952014135,59.81822132581888,188.47926393777973,0.0,84.791060755370054,567.71827123660034,1.0,84.791060755370054,287.15480658378573,1.4807549146515755,9.4000000000000004,3.6000000000000001,546.04342068367873,547.34376966523155,548.08082125130784,549.52064137292837,550.71291595639048,551.18237837836125,52.220041575537365,51.395490358618446,49.906352376293057,48.915528557829532,48.301516815508585,48.001519296853083 +1978,12,1,14,0,198,220,13.5,309.44124142792896,54.08806936130455,63.14568795271787,203.86111609579757,0.0,71.972596456892447,353.49325535237955,1.0,71.972596456892447,191.78846190185658,1.5,9.4000000000000004,3.1000000000000001,333.40776568110061,335.67766621302258,336.99977990369428,337.5515692038133,338.01948043992115,338.19405544522851,43.010062077483859,42.953855773300603,42.476149646061806,41.993374661053274,41.545032064893583,41.087631593966918 +1978,12,1,15,0,339,116,14.5,236.2204647721172,61.446207690024075,69.22906861375945,217.54161352392862,0.0,41.841958599354541,294.77306118890635,1.0,41.841958599354541,148.28681805999048,1.5,10.0,2.1000000000000001,272.22426523440947,273.28478219435823,273.8985176236983,274.96410155226761,275.83723244613685,276.18885366470994,24.56640884977195,25.12845905130624,25.297456041041169,25.321586728183554,25.101115209014882,24.561949227157026 +1978,12,1,16,0,504,45,15.5,155.02391896370267,71.003565979039,77.3907128309788,229.29119432986334,0.0,10.243262222007496,220.16509146919873,1.0,10.243262222007496,97.480083612504771,1.5,10.6,2.1000000000000001,186.33227453814786,186.71197976921763,186.93400873655793,187.68469070087781,188.29530797743558,188.54583639961663,6.1165772711334059,6.2066935616537995,6.1958067884010486,6.3121679552231056,6.4385000244660437,6.3853913662273758 +1978,12,1,17,0,317,16,16.5,39.187357823165478,80.62192873474706,85.80528297144048,238.33475752042523,0.3266617203705822,3.8768275137997601,72.770015202750685,1.0,3.8768275137997601,25.040073670182377,1.5,10.0,2.1000000000000001,10.22406956007927,11.867032427593866,47.621168413282632,47.953558240484945,48.223751093951861,48.334779968555438,2.323491346988972,2.3638957859815193,2.3599574644740429,2.4124485352713498,2.4710065208553154,2.4520439736005044 +1978,12,2,8,0,152,24,7.5,35.678660420868425,80.36194460237736,85.59343376722346,122.00393682672618,0.311626730473805,5.8520806104993754,55.657151451818777,1.0,5.8520806104993754,22.649733385110025,1.5,0.0,2.1000000000000001,16.339159193959564,19.601265094930739,39.868652720746354,40.122149516876959,40.328997971767294,40.413238536847473,3.4658072593708886,3.4938357069737673,3.4880349820286316,3.525675948614607,3.5632271956314878,3.5356486280036536 +1978,12,2,9,0,519,46,8.5,162.27917998532473,70.59096103683098,77.05329273234413,131.2884628164147,0.0,11.806938872543418,229.76691431979819,1.0,11.806938872543418,101.98996974957545,1.5,3.8999999999999999,3.6000000000000001,195.62624496870421,196.01242978918685,196.23778662915544,197.00434026916608,197.62828817423247,197.88387449068136,7.0620675569824698,7.1096839046719875,7.0643297797106372,7.1816778931106704,7.3111895445822856,7.2693254602696697 +1978,12,2,10,0,743,49,9.5,315.33731030691666,61.13906204623377,68.99422415574551,143.11984804150097,0.0,41.745051596765549,417.44626524681547,1.0,41.745051596765549,197.00212962307577,1.5,7.7999999999999998,3.1000000000000001,388.37020881783405,388.81785419259825,389.0657255819325,390.12144198755675,390.9857509680765,391.3341552307557,24.438905785514798,25.354638685445416,25.685099162549481,25.614846956509993,25.132656949808041,24.326271824578971 +1978,12,2,11,0,852,58,10.5,444.17877171856543,53.933484817737295,63.0468702258287,156.87459976922918,0.0,73.102845430404173,570.90885231978837,1.0,73.102845430404173,276.63384957548311,1.5,10.6,4.0999999999999996,547.85586481071095,548.36503271240315,548.63609620435454,549.80551896960844,550.77702207776167,551.15912053275895,45.353731706093491,45.304745468119563,44.061186471700388,42.668498545501414,41.555157951721156,40.801979333297666 +1978,12,2,12,0,879,62,11.5,503.067959607879,49.98364552186442,59.88191444746437,172.28736326055446,0.0,86.855635679668069,639.19396184065772,1.0,86.855635679668069,312.98806157841432,1.489682539108807,12.800000000000001,4.5999999999999996,619.47251924848649,620.0062424503875,620.28462954696022,621.49274803574974,622.499289174355,622.89040757577982,54.224864472747704,53.101004634158571,51.13095129470954,49.664339264647282,48.703816090107601,48.391578934236136 +1978,12,2,13,0,801,98,12.5,499.04433508637504,50.07435296053552,59.95502985694618,188.35595302306538,0.0,88.547211000353172,630.7190884664775,1.0,88.547211000353172,311.5553765707179,1.492405713274727,13.9,1.5,609.22837902903359,609.97404775683538,610.37818589432902,611.96209364624667,613.27317967542149,613.79029005475604,55.144710082001232,54.118723795638999,52.225226325147339,50.886853973420024,50.041505640212002,49.718236481326031 +1978,12,2,14,0,548,132,13.5,378.61370312685233,54.185045386060764,63.2547116982984,203.71021637870493,0.0,67.445950916796193,472.24634897282954,1.0,67.445950916796193,236.50863458254096,1.5,15.0,2.6000000000000001,449.83469763138714,450.95626867937642,451.59532571226072,452.86689988911758,453.91806905596752,454.33529462214847,41.274723480119135,41.323719686109918,40.494834266517813,39.59554912407124,38.895303717086655,38.279545670874363 +1978,12,2,15,0,573,110,14.5,312.45123020290976,61.50774410352558,69.3096046172874,217.3778029463126,0.0,49.292361721078152,401.18073021084723,1.0,49.292361721078152,196.02194308783245,1.5,15.0,3.1000000000000001,371.04969075988259,372.03721064997484,372.6039007937905,373.95810713891308,375.06631228504705,375.51386781919314,28.85254930453743,29.705239918530527,29.998589741057412,30.043409461087712,29.732986493836354,28.965346685369273 +1978,12,2,16,0,330,75,15.5,146.72964420390946,71.03537054277022,77.44582958385804,229.12332857092852,0.0,18.023958120127762,194.669466031685,1.0,18.023958120127762,92.158813583672128,1.5,15.0,2.6000000000000001,166.91703553247663,167.6607819163533,168.09652026733647,168.78133030299682,169.34072289501478,169.56796203114988,10.657519531560798,10.731323839376842,10.713106350885758,10.81225936468255,10.906602477322979,10.819465967526618 +1978,12,2,17,0,79,25,16.5,30.749620972357352,80.61534884858445,85.82632230362712,238.15129605169673,0.3304985068118067,6.6691742881887732,41.743548312774635,1.0,6.6691742881887732,19.315792555772557,1.5,13.9,2.1000000000000001,19.005026319860736,19.510556615741468,32.15173840263067,32.300153084388072,32.422137031556119,32.470969563933757,3.9261718120271096,3.9394760498321624,3.932919325141683,3.9522308966952409,3.9661419984886561,3.9351277864629339 +1978,12,3,8,0,48,29,7.5,32.618109410019471,80.42738342638481,85.67709981632267,122.12011638913367,0.32009850336732065,8.1205027486592627,40.080791124075141,1.0,8.1205027486592627,20.267151096434198,1.5,3.2999999999999998,0.0,23.315914296519118,24.388859565730595,32.915167647194139,32.99554349270047,33.062829524158474,33.088597268745879,4.7637112562787571,4.7666101215731089,4.7586435492074841,4.7652747672248186,4.761495330731182,4.7238910280876159 +1978,12,3,9,0,218,79,8.5,127.22163503381418,70.75338458058123,77.22046601942728,131.31179390436998,0.0,20.915510095504537,160.15199851047058,1.0,20.915510095504537,79.448421403672995,1.5,6.7000000000000002,2.1000000000000001,139.40632391875448,140.26537174468024,140.76866898185474,141.20708643630527,141.56777329893958,141.71183468553943,12.325631436724981,12.345136003887273,12.307537342170587,12.35659394909953,12.394946733193004,12.306663353243001 +1978,12,3,10,0,162,166,9.5,223.62454950038708,61.30737016960232,69.16321314167746,143.11518422946912,0.0,50.97639008715695,257.14682872050997,1.0,50.97639008715695,138.63387662285632,1.5,10.6,3.1000000000000001,238.14881918327444,239.93250363250445,240.97375527984045,241.39126943689803,241.7425056226528,241.8751310587229,29.806907194938436,30.098179984117099,30.183329528082357,30.154589799372953,29.928779962570438,29.480541541577988 +1978,12,3,11,0,3,171,10.5,172.35208814375275,54.1008385611018,63.21164956435026,156.83258137562567,0.0,51.436080050308085,174.88968559659963,1.0,51.436080050308085,105.33484632755346,1.5,11.699999999999999,4.0999999999999996,162.90915910452702,165.08483555870478,166.35995055942573,166.17299295126384,166.03574966218017,165.96525672773762,30.143151023579318,30.066261551591431,29.975054914254208,29.843366359270014,29.633306743188164,29.380266432214729 +1978,12,3,12,0,3,223,11.5,224.49846862196753,50.1376822799455,60.033765975910214,172.2020835201433,0.0,66.340729832599294,229.63991566017083,1.0,66.340729832599294,137.33333134863926,1.5,12.199999999999999,3.6000000000000001,214.51088602278276,217.24807756936184,218.85148808367904,218.64993440832444,218.50504497382423,218.42731632511465,38.965852161068803,38.812615660498338,38.637011077602956,38.446295486030856,38.175395960717005,37.871121075765537 +1978,12,3,13,0,9,207,12.5,211.48846804836722,50.200471230883245,60.08473583027426,188.23147237748427,0.0,62.508705626190526,216.28757099441043,1.0,62.508705626190526,129.34689041653468,1.5,12.199999999999999,3.6000000000000001,202.05475290650429,204.63445427528762,206.14561604225963,205.94597189159791,205.80156997630894,205.72506324452306,36.712831859024021,36.567355539973143,36.402238296875808,36.221209402492882,35.964130815671645,35.677421116721604 +1978,12,3,14,0,1,178,13.5,178.44843674815354,54.27501127014067,63.3565685105866,203.55999794088967,0.0,53.180054668644935,181.24422585208237,1.0,53.180054668644935,109.07351054577136,1.5,12.800000000000001,4.5999999999999996,168.83018478452604,171.07675309052055,172.39339180263323,172.20414029327532,172.06552565903561,171.9940103027624,31.165414176021688,31.09076998314686,30.998543434070186,30.861752078252653,30.641784355336767,30.377701362038227 +1978,12,3,15,0,0,177,14.5,177.0,61.562676059379996,69.38318069604404,217.2160574911146,0.0,50.965051369351968,182.99291267569799,1.0,50.965051369351968,108.23217823429266,1.5,13.300000000000001,4.0999999999999996,169.82517947291589,171.96534428926668,173.21943747544029,173.04476400901478,172.91699331372899,172.85070767865881,29.756408028131258,29.755461680779437,29.741900351387685,29.65951196097928,29.451624130421095,29.16665711436411 +1978,12,3,16,0,2,71,15.5,71.433072665509798,71.061083934777,77.49432381078523,228.95847723431538,0.0,21.354020386597366,72.201667357305737,1.0,21.354020386597366,43.573584683346652,1.5,13.300000000000001,2.6000000000000001,66.508696341627271,67.451291568286251,68.004142331947136,67.898732113631155,67.819177515476028,67.780570495366462,12.473600836462934,12.439237032340301,12.418333524453709,12.382456916547817,12.307078005258044,12.208643672324351 +1978,12,3,17,0,0,16,16.5,16.0,80.60658650875594,85.84413041779939,237.97427501375375,0.33396638114640603,5.0320646406386871,15.724656337337073,1.0,5.0320646406386871,9.7370252707770781,1.5,10.6,2.1000000000000001,14.602579084196158,14.825201036823428,14.955777881676239,14.924449966917651,14.900449511504668,14.889173186387659,2.9383173299436205,2.9293569835035052,2.9244368138758263,2.9148988058019203,2.89581502942971,2.8726588842266212 +1978,12,4,8,0,0,21,7.5,21.0,80.49216019088986,85.75885890120894,122.22823364086189,0.3284312790158296,6.5709858011577698,20.749452650734476,1.0,6.5709858011577698,12.789886312885637,1.5,19.399999999999999,6.2000000000000002,19.064841560904302,19.359304535179412,19.655580614889789,19.617961438469479,19.589284672180256,19.575664367747425,3.8374762671111653,3.8262114478711293,3.8197864939854473,3.8078858687531785,3.783647006135201,3.7534069902406637 +1978,12,4,9,0,0,45,8.5,45.0,70.9126599765022,77.38359160607901,131.32877989402562,0.0,14.152681801796309,44.255198793028747,1.0,14.152681801796309,27.414986403821697,1.5,20.600000000000001,6.2000000000000002,41.069753674301666,41.695877916065868,42.06312529221438,41.985468114768118,41.926430431630024,41.898225598125286,8.2657825903970803,8.2419651053153959,8.2281292946416933,8.2030692241788081,8.1515704631371229,8.0864523658113328 +1978,12,4,10,0,1,98,9.5,98.35303023248602,61.471389224284835,69.32722991817286,143.10471362433557,0.0,30.164594937411902,98.213443634358853,1.0,30.164594937411902,60.013649588572974,1.5,21.699999999999999,8.1999999999999993,91.120183405771044,92.435978106866457,93.20754924378366,93.069600915154211,92.966063742891706,92.915211043999903,17.617662600718504,17.582129608712119,17.55856397957966,17.508195453877615,17.396937672637964,17.249913917727081 +1978,12,4,11,0,1,211,10.5,211.44821939282366,54.26264807232556,63.37050068848575,156.78579893984443,0.0,61.873615812120143,216.96901749757029,1.0,61.873615812120143,129.33495392224563,1.5,22.800000000000001,7.2000000000000002,202.39246771197477,204.96286112772856,206.46882656388308,206.2735740528685,206.13256751856713,206.05774742853322,36.300623463593062,36.217600559694411,36.093831572057574,35.914363845605642,35.644072372600903,35.328869409788716 +1978,12,4,12,0,0,141,11.5,141.0,50.28510845929566,60.17889860625527,172.1137028523661,0.0,43.240645903176443,140.91016492058418,1.0,43.240645903176443,86.11495690430479,1.5,21.100000000000001,7.7000000000000002,131.03428099568757,132.90210742941699,133.99719260493376,133.82646166047388,133.70002945559216,133.63618196023126,25.309727023745815,25.232279081519515,25.164759455494767,25.076026896419211,24.917962797590569,24.718618514535631 +1978,12,4,13,0,1,135,12.5,135.49686361902141,50.31946315330662,60.207285264775145,188.1059046646834,0.0,41.588168143149495,135.33970615875583,1.0,41.588168143149495,82.746598157849888,1.5,21.100000000000001,7.2000000000000002,125.84583967817449,127.64376093036999,128.69787726189713,128.53131688846318,128.40780795615419,128.34561047122847,24.340657419685982,24.266298100941889,24.202183416865182,24.117208712988958,23.965171078572922,23.773457468629768 +1978,12,4,14,0,1,193,13.5,193.44695955481572,54.35793417567452,63.451221165698875,203.41054434757075,0.0,57.160745084490074,197.44742691331373,1.0,57.160745084490074,118.27935286273403,1.5,21.100000000000001,5.2000000000000002,184.03959561122329,186.43570765708358,187.83979331939008,187.64681441176893,187.50630912409792,187.43295125525643,33.515548851158414,33.436923207992734,33.330734246362994,33.174952226811584,32.932308680725029,32.64505020024383 +1978,12,4,15,0,1,89,14.5,89.351028297577628,61.61098976425978,69.44977671413821,217.05646623016062,0.0,27.585603757762655,88.885194648211822,1.0,27.585603757762655,54.507731432618513,1.5,21.699999999999999,6.2000000000000002,82.459649595881146,83.667491804010069,84.375809061195625,84.246292054517724,84.148889881372142,84.101255439987511,16.111170436271898,16.075542952675693,16.052947905809152,16.007209189343893,15.906649307563836,15.774305840812172 +1978,12,4,16,0,0,53,15.5,53.0,71.08071322455345,77.53619337568144,228.79673682836923,0.0015469564332059372,16.491090113839967,52.441420975521474,1.0,16.491090113839967,32.302510474560947,1.5,20.600000000000001,5.7000000000000002,48.575532426524731,49.311723597980631,49.739448351452737,49.652591794821411,49.586740111450943,49.555094548477939,9.6321180641317543,9.6048485337204621,9.5887226261604539,9.5601271126019167,9.5008552487155136,9.4249502230562658 +1978,12,4,17,0,0,16,16.5,16.0,80.59565640057815,85.85871140777041,237.80380340627212,0.337063554121272,5.0320646406386871,15.724718052822659,1.0,5.0320646406386871,9.7370869862324216,1.5,19.399999999999999,5.2000000000000002,14.602579084196158,14.825201036823428,14.955777881676239,14.924471758277226,14.900488947622895,14.889219939739172,2.9383210097927033,2.9293635476265458,2.9244433825153475,2.9149090552856212,2.8958298119806507,2.8726736846255037 +1978,12,5,8,0,0,15,7.5,15.0,80.5562243510192,85.83865801874195,122.32824446572938,0.33661551255876954,4.7175606005987705,14.740198613687678,1.0,4.7175606005987705,9.1267944896044622,1.5,11.1,3.1000000000000001,13.6899178914339,13.898625972021966,14.021041764071475,13.991083341528071,13.968106396177223,13.957337230498734,2.7545731179733854,2.746094899821419,2.7414821188223466,2.7324408305304981,2.7144273691274523,2.6927180009939446 +1978,12,5,9,0,0,88,8.5,88.0,71.06867540932649,77.54256357148485,131.33945853744734,0.0026605844729268,25.567433006394804,90.280402594647597,1.0,25.567433006394804,53.716840686720786,1.5,11.1,2.1000000000000001,82.694263181285493,83.963529974651436,84.624581281458205,84.50695587854517,84.418654373655897,84.375311960189634,14.936201971974226,14.896205098636822,14.871157849949729,14.829615977425201,14.741063739522819,14.623080083441039 +1978,12,5,10,0,0,152,9.5,152.0,61.631013030798975,69.48617512813789,143.0884971334229,0.0,44.524760616404834,155.48817105497304,1.0,44.524760616404834,92.882904046604352,1.5,11.699999999999999,1.5,144.27657315960565,146.17690885238721,147.29080817474522,147.12088991836663,146.99528029180749,146.93155672975689,25.994581271449395,25.973590180420373,25.954713424920293,25.886479992090528,25.714344184313443,25.479542013631136 +1978,12,5,11,0,1,199,10.5,199.4458332550023,54.4188229677964,63.52333748898548,156.73433080021064,0.0,58.723910433843827,204.00340179269443,1.0,58.723910433843827,121.96332705246139,1.5,11.699999999999999,1.5,190.19778729133537,192.65137135018168,194.08905754129552,193.89521317407707,193.75443408128757,193.68056217262662,34.435040353883551,34.361271277013756,34.253689485488998,34.090488565340479,33.836164067414451,33.536482054984639 +1978,12,5,12,0,1,220,11.5,220.49519722660051,50.42585567293123,60.31724347774341,172.02230614978734,0.0,65.074197055087012,225.28192803861933,1.0,65.074197055087012,134.87438022582933,1.5,12.199999999999999,2.6000000000000001,210.35639989295657,213.06057731476923,214.64487315237659,214.44400180306238,214.29931318705297,214.22203475575267,38.202688440347906,38.068340180834312,37.909850898461222,37.729067441947123,37.463919119833378,37.159442518539144 +1978,12,5,13,0,1,236,12.5,236.49511559313549,50.431280883915534,60.32262703240407,187.97933404545483,0.0,69.266883222237126,242.65372100395587,1.0,69.266883222237126,144.7060429859747,1.5,12.800000000000001,2.1000000000000001,226.75193049987632,229.60726436142252,231.2798631582659,231.07866190161221,230.93490187481871,230.85687398208606,40.688655567122879,40.541312145553142,40.360084033119797,40.157644377749797,39.87000254422798,39.545233725109959 +1978,12,5,14,0,0,198,13.5,198.0,54.43378445635393,63.53863564579327,203.26194072693778,0.0,58.396155318355156,202.34420377368832,1.0,58.396155318355156,121.07499799472319,1.5,12.800000000000001,3.1000000000000001,188.62254698060747,191.06621143870856,192.49812508352596,192.30447372319188,192.16375443884317,192.08999502669985,34.239665132632133,34.165979316067286,34.0603099613624,33.899984538941531,33.648654962255208,33.351418343025692 +1978,12,5,15,0,4,86,14.5,87.400216386801731,61.65267497726891,69.50937605468712,216.8991194461594,0.0,26.833994203227153,87.22430474988596,1.0,26.833994203227153,53.318965436188769,1.5,12.199999999999999,3.1000000000000001,80.928304224094248,82.09953048725842,82.78633615079795,82.659777707152273,82.564560483858628,82.518035022809585,15.670028057291708,15.637936362152887,15.61750484215308,15.573300167404916,15.474320059191049,15.344141994586495 +1978,12,5,16,0,156,84,15.5,117.57465415430653,71.09426912148021,77.57143978949576,228.63820440845737,0.003638197283361272,21.256343809938695,144.68080321637896,1.0,21.256343809938695,73.531867576164458,1.5,11.699999999999999,4.0999999999999996,124.69378835207178,127.0542191347559,127.58793031385912,128.03492910897847,128.40264064097983,128.54953973939348,12.508915657347513,12.547972329360174,12.526884142700379,12.583718112635838,12.621885820934935,12.521834413978649 +1978,12,5,17,0,89,26,16.5,32.4096430088386,80.58257439351055,85.87007080132035,237.6399882831566,0.33978892220659884,6.9271032969117794,44.642278204189211,1.0,6.9271032969117794,20.345344591773685,1.5,10.6,2.6000000000000001,19.72336746741755,20.024054834072277,33.66528585871675,34.359464405572723,34.484113287166792,34.533983133223856,4.0775800433163383,4.0910651926762869,4.0842507615794945,4.103874765488051,4.1177818101426551,4.0855430676394322 +1978,12,6,8,0,186,19,7.5,32.24527426399262,80.61952609127665,85.9164452633197,122.42010894629301,0.34464141731325365,4.3797459938041863,55.197528394189128,1.0,4.3797459938041863,20.707721314498372,1.5,5.0,3.1000000000000001,12.030954073902681,12.214365265507269,35.856968890748675,37.881752422141105,38.135355616163153,38.239372466417251,2.614353413594861,2.6515024913234608,2.6471438377138448,2.6958507761981902,2.7491619102839042,2.7283496892139012 +1978,12,6,9,0,578,41,8.5,164.15839952838346,71.22132023292636,77.69727727213282,131.34387047150008,0.007139190791880394,10.132485883390764,237.07003942791204,1.0,10.132485883390764,103.24720299904088,1.5,8.3000000000000007,3.6000000000000001,192.24787295428465,200.13684961823168,200.35261289768218,201.15475483253704,201.80700978596172,202.07483445147503,6.0602965884593463,6.1573731021184894,6.1465245875582069,6.2715324313022194,6.4085170841128152,6.3554454287792659 +1978,12,6,10,0,621,71,9.5,287.05733474230431,61.78613733277718,69.63995127555864,143.0665978433074,0.0,40.000271854849721,379.95909234963494,1.0,40.000271854849721,179.80318798619777,1.5,11.699999999999999,4.0999999999999996,351.6145743577606,352.15913154984588,352.46577497491114,353.59671156054463,354.52117550408491,354.89555298542354,23.092172676206772,23.997215556939317,24.419110930924464,24.611295420174191,24.348486262284915,23.647668705843149 +1978,12,6,11,0,637,115,10.5,397.53455811329775,54.56927528284417,63.67007617453373,156.6782568054843,0.0,67.299984302076339,505.13628293898813,1.0,67.299984302076339,248.9709906872163,1.5,15.6,5.7000000000000002,481.08515935852807,481.97977986664193,482.48384613621863,484.03677707635848,485.31556385630034,485.82773328526088,41.234457900915494,41.562991684733902,40.850312674191052,39.897652747582924,39.036447920741601,38.264908053493798 +1978,12,6,12,0,442,167,11.5,384.99533593942306,50.55985812397782,60.448734346841434,171.92797957084198,0.0,74.711371583292376,471.0986988303469,1.0,74.711371583292376,240.92447119631532,1.5,17.800000000000001,5.7000000000000002,450.67132946241475,452.07995604253477,452.88648029771366,454.3391644182949,455.53887874583052,456.01498632560578,45.795931787319972,45.422797494696866,44.320091576811159,43.504537239696923,42.95971759655729,42.56114933225723 +1978,12,6,13,0,429,122,12.5,333.70107975128462,50.53587938877527,60.430712908979665,187.85184611226336,0.0,61.986018735552328,413.53966683483122,1.0,61.986018735552328,208.90239712006061,1.5,18.300000000000001,4.5999999999999996,396.56325368063773,397.54824946531028,398.10774381908828,399.38607211598276,400.4409202141054,400.86042831058705,38.18686010713273,37.839111483493411,36.824473517819897,36.063521327200071,35.562733470457346,35.226655189238215 +1978,12,6,14,0,424,142,13.5,330.4008159086452,54.50253568625898,63.618781174843804,203.11427368639335,0.0,61.929929693612323,408.60297863775043,1.0,61.929929693612323,206.90598859454209,1.5,20.0,4.5999999999999996,387.5710545579613,388.79613947229365,389.49967260961193,390.79955585988102,391.87114691591603,392.29892526807072,37.613014812002348,37.862090629424223,37.331137849364126,36.656138582185889,36.032848596749552,35.412185652848407 +1978,12,6,15,0,605,64,14.5,275.26246774709165,61.687725019948275,69.56196563685941,216.74410853237296,0.0,35.270161585117798,365.44101800199519,1.0,35.270161585117798,172.36020817378707,1.5,20.0,4.0999999999999996,338.47490325135482,338.94866726331497,339.21523459917222,340.27937418201611,341.14873966071553,341.5013120310806,20.398114143346604,21.211783700701051,21.565391633803213,21.727842780047371,21.494846714701097,20.881139902357713 +1978,12,6,16,0,568,43,15.5,164.96900548636808,71.10176595825673,77.60006820181927,228.48297745880313,0.0055173267275686055,10.64253515567138,237.15299115915604,1.0,10.64253515567138,103.80885318162426,1.5,18.899999999999999,2.6000000000000001,194.50514786693606,200.67585811847246,200.90514660372821,201.73018995807428,202.40112698360062,202.67656490693406,6.3625420016022387,6.4621581028130262,6.4508231749868958,6.5792808508260769,6.7197838245722377,6.6644304021882128 +1978,12,6,17,0,198,20,16.5,34.231581995370647,80.56735750926629,85.87821553556803,237.48293457268187,0.3421420601078908,4.6700782843417565,58.521341409683558,1.0,4.6700782843417565,21.955063580330616,1.5,16.100000000000001,2.1000000000000001,12.830761140631392,13.026365363172088,38.544839035236905,40.283400899927969,40.544575685980313,40.65165610823216,2.7857323401432526,2.8238334040889694,2.8191839432924244,2.8691930227125106,2.9236663996130665,2.901468335666904 +1978,12,7,8,0,63,29,7.5,33.403246498467766,80.68201637925755,85.99216988022451,122.50379145997454,0.3524989803368061,8.0740865248080347,42.276616837843875,1.0,8.0740865248080347,20.743332844677759,1.5,1.7,0.0,23.15445818358091,23.507454660659363,32.869065280001465,34.136435606630769,34.201672451497998,34.226602616825915,4.7361222445612441,4.7387356965404024,4.730808148033848,4.7370437135447192,4.7328333989591629,4.6954035050579694 +1978,12,7,9,0,49,90,8.5,100.31509813555688,71.37048507469257,77.84762944517308,131.34205918737985,0.011517358037397429,24.82611307331231,111.14087898435329,1.0,24.82611307331231,61.721999811470745,1.5,5.5999999999999996,0.0,97.727026230731795,100.78156696725408,101.41813700536763,101.45025093712925,101.48299400537572,101.49004353067157,14.527575504509292,14.508173719672081,14.483756764063591,14.467918305634733,14.411857807164415,14.296608874841377 +1978,12,7,10,0,91,163,9.5,194.43933235277802,61.93665988145692,69.78846281439627,143.03908097356106,0.0,48.849779812951653,215.38718012834875,1.0,48.849779812951653,119.76074608190306,1.5,7.7999999999999998,0.0,199.47262928236464,201.33403030231307,202.42270174838887,202.52033341797645,202.61211257456796,202.63772120980525,28.452400958771928,28.614436784745124,28.685528633710991,28.680382202279365,28.489366459522774,28.138552457564483 +1978,12,7,11,0,8,137,10.5,140.53071435577485,54.71391953576283,63.81063534579322,156.6176582662172,0.0,42.161831945399577,142.03063803253059,1.0,42.161831945399577,85.836643492423164,1.5,12.800000000000001,1.5,132.2159689566696,134.01659854558574,135.07210308919909,134.90288308482337,134.77740439172743,134.71426743453648,24.683281458948763,24.627366788740272,24.567350060209716,24.467901786857752,24.295243904010352,24.086278557764071 +1978,12,7,12,0,1,232,11.5,232.49130957220081,50.6870526579617,60.57330764850018,171.83081048722858,0.0,68.176549730302995,238.47329799857766,1.0,68.176549730302995,142.24671250707451,1.5,14.4,3.6000000000000001,222.80375031032369,225.6177373905669,227.26616638218934,227.06525719895239,226.92142919424245,226.84368072915618,40.041476670947389,39.905761924119858,39.733776002563737,39.5335469412584,39.247918159131828,38.922139764096904 +1978,12,7,13,0,251,185,12.5,308.47819971792148,50.63321648589725,60.53149762270919,187.72352782137176,0.0,67.551015108995216,362.84504176763664,1.0,67.551015108995216,192.46175611774589,1.5,15.6,4.5999999999999996,344.82730576599886,346.61047540208727,347.6439232475999,348.62560402039804,349.44085849010798,349.76014324053637,40.838550088468551,40.642139962462593,39.948219164244101,39.408661397388698,39.005570634921568,38.622947451320293 +1978,12,7,14,0,559,131,13.5,378.74999879625477,54.564164686181314,63.691630251505856,202.96763122694122,0.0,67.436476610193367,474.78833081671814,1.0,67.436476610193367,236.55223890844337,1.5,17.199999999999999,4.5999999999999996,451.89883327909752,453.01757251398067,453.65525731810635,454.91280102553492,455.95212270273259,456.36499683155296,41.096498906404307,41.366186090258054,40.721087438129338,39.839686442107812,39.023094016151845,38.299212015677483 +1978,12,7,15,0,224,118,14.5,196.05252372360957,61.71613678331389,69.60753592950056,216.59152589079054,0.0,38.641840915552073,236.37320001181459,1.0,38.641840915552073,122.41399586678571,1.5,17.199999999999999,4.0999999999999996,218.22040104768411,219.44239973918332,220.15408643821584,220.81768276193583,221.36463490048712,221.58192591433303,22.501411571893666,22.871415828382862,23.020182972277414,23.118887670693191,23.013337970452238,22.631195905509838 +1978,12,7,16,0,108,98,15.5,121.15075108439682,71.10322167153822,77.62208738926775,228.33115377350825,0.007182013547871786,25.519901244033228,142.42300386230028,1.0,25.519901244033228,75.132059017151207,1.5,16.699999999999999,2.6000000000000001,123.52911564202424,126.9328807178378,127.58079439612945,127.82176316876183,128.02380702580317,128.10088281924686,14.968356305160613,14.976019158078017,14.950809789643419,14.969391094858231,14.954398455077897,14.835121455913812 +1978,12,7,17,0,17,20,16.5,21.220442037161224,80.55002389344558,85.88315393562122,237.33274489829049,0.3441232105508124,6.1625784633692335,22.984262863680712,1.0,6.1625784633692335,13.029464763286473,1.5,15.0,2.6000000000000001,17.822549899836364,18.094261072090692,20.372147253718939,20.517300802636989,20.51776586591177,20.516338019375073,3.6046448891567469,3.5985591137926467,3.592528108652822,3.5870531883932553,3.5712991549969555,3.5428872665879942 +1978,12,8,8,0,2,13,7.5,13.137222213594477,80.74364701491099,86.06578231467115,122.57926076943683,0.36017797963849585,4.0903364092956611,13.094964099139183,1.0,4.0903364092956611,7.992095103275183,1.5,15.0,1.5,11.864598179058307,12.045478515567963,12.315696721858963,12.320457198468674,12.299907716834667,12.290310170894609,2.3882051034507445,2.3807521424082485,2.3767513766593296,2.3687793571914741,2.3529951254084827,2.3341643636283385 +1978,12,8,9,0,7,43,8.5,44.456156409453236,71.51606193883215,77.99351831107936,131.33407099702768,0.015787621562662297,13.542603755039359,44.512784270908426,1.0,13.542603755039359,27.090855349984508,1.5,16.699999999999999,2.1000000000000001,40.931681819639735,41.706525199655609,42.057442677004573,41.982649304092142,41.925764836918226,41.898613394531615,7.9093637716263867,7.8865152944691035,7.8732639453606694,7.849181961350129,7.7997541321469566,7.7373669918275105 +1978,12,8,10,0,3,100,9.5,101.02942432932666,62.082480519097636,69.9316162366315,143.00601382777066,0.0,30.699896312088864,101.38024188487948,1.0,30.699896312088864,61.654638433995537,1.5,17.199999999999999,3.1000000000000001,94.045570473158492,95.38099957769866,96.164047794943144,96.024623443532107,95.920024058022136,95.868603040304123,17.923056750715471,17.88954335643604,17.869080810880455,17.822442748792533,17.710468944302782,17.560710932887488 +1978,12,8,11,0,4,166,10.5,167.75693890981876,54.85267279069594,63.94493606815022,156.5526179033052,0.0,50.037199859613921,170.42177165556515,1.0,50.037199859613921,102.51964228670907,1.5,19.399999999999999,4.0999999999999996,158.72109494737725,160.83651763496749,162.07632982477537,161.89189329979843,161.75626795163015,161.6868482813274,29.31130150979234,29.251101906991252,29.175328137585215,29.049350829561991,28.835688042059317,28.582217233434111 +1978,12,8,12,0,2,230,11.5,230.97904182610333,50.80737881350919,60.690902555545755,171.7308874284328,0.0,67.706187562081865,237.01122933842419,1.0,67.706187562081865,141.31836013642106,1.5,20.600000000000001,4.0999999999999996,221.44336001426291,224.23673507072422,225.87308688492141,225.67231324242147,225.52846990286312,225.45085342637628,39.763391904737006,39.637847039213973,39.468238115890763,39.268004891736254,38.979405365370482,38.652046125944352 +1978,12,8,13,0,76,247,12.5,284.27986180565148,50.723252885029225,60.624938900240075,187.59446742262102,0.0,74.432766862518434,309.71447111909481,1.0,74.432766862518434,175.29343782804116,1.5,21.100000000000001,4.0999999999999996,291.70466577833616,294.38509370655891,295.95094509844603,296.15978097939472,296.35012024407217,296.4089528280449,44.164406485599315,43.987840394767446,43.595981413063889,43.238954841275053,42.873622006566166,42.494596877923016 +1978,12,8,14,0,56,156,13.5,180.76189123678063,54.61865154736827,63.75715867897665,202.82210265584948,0.0,48.864752144657082,193.93493228048018,1.0,48.864752144657082,111.31963526425611,1.5,22.800000000000001,3.6000000000000001,181.43525977803299,183.3089204397034,184.40505588435724,184.49362036410639,184.57898160258594,184.601480469698,28.811048574069755,28.811449104475656,28.684936886188108,28.504407980457486,28.253185643858661,27.96026361758161 +1978,12,8,15,0,5,127,14.5,128.7390905601992,61.73791073189946,69.64608096129078,216.4414648290095,0.0,38.281926865886014,130.89945697435041,1.0,38.281926865886014,78.623954039246939,1.5,24.399999999999999,6.2000000000000002,121.45948784861304,123.09933110310465,124.0606069466175,123.90179280088167,123.78349585517454,123.72444143576317,22.34189463235321,22.319387503508942,22.303281287091554,22.247664708703621,22.102998131445219,21.904233118138396 +1978,12,8,16,0,242,83,15.5,134.81120408377205,71.09865777982944,77.63750974066967,228.18283133701374,0.008630438355857261,21.263156170219482,171.60813611381369,1.0,21.263156170219482,84.127640510360095,1.5,24.399999999999999,6.2000000000000002,144.15799184155446,149.70558696979023,150.23332121719622,150.676512550544,151.04114282956914,151.18676249218217,12.511949712404482,12.550574093695818,12.529332248056221,12.585264995806723,12.622026941231828,12.52100776110707 +1978,12,8,17,0,36,28,16.5,30.58337393230083,80.53059279092547,85.88489569672089,237.18951940074135,0.34573327150310873,7.8299844419269959,36.832226646751302,1.0,7.8299844419269959,19.007727527157918,1.5,23.300000000000001,5.7000000000000002,22.521291486795537,22.864635685543021,30.022800535372742,30.659368403667578,30.724150290781214,30.748955967817185,4.5932829562326809,4.5960577031212093,4.5883846528267087,4.5947731424299532,4.5911388492742153,4.5549342609049095 +1978,12,9,8,0,1,18,7.5,18.067366920878261,80.80437067505443,86.13723425624278,122.64649010662696,0.3676680030218338,5.6619484906899418,17.856027656893303,1.0,5.6619484906899418,11.001269767584619,1.5,22.199999999999999,6.7000000000000002,16.427902782057856,16.678352478763532,16.902115117908497,16.888814628975471,16.863434088155948,16.851419790384792,3.3064559387132868,3.2966397718972904,3.2911035919576861,3.2807095372974167,3.2596519847187873,3.2335954327059193 +1978,12,9,9,0,8,56,8.5,57.644872639376111,71.65794430841422,78.13484367540462,131.31995499632254,0.019942363140477516,17.27035520472538,58.276927225757063,1.0,17.27035520472538,35.14955111977666,1.5,23.300000000000001,7.2000000000000002,53.225600932177045,54.425137656453181,54.872308863191897,54.782586345367612,54.714625602334095,54.681900494200164,10.087442136562444,10.059057643975263,10.042151804113949,10.012382841800076,9.9504935691956646,9.8708867165152707 +1978,12,9,10,0,7,72,9.5,74.386180944374317,62.223501261224285,70.06932015931424,142.96746574177683,0.0,22.797651308957992,74.279782760630852,1.0,22.797651308957992,45.369125270602943,1.5,20.0,9.3000000000000007,68.915610640014336,69.911545862686651,70.495572384938683,70.384109520896047,70.300023486587847,70.259174240561222,13.309969210268275,13.28118001236404,13.264472637018308,13.228242036176503,13.145206530076981,13.035560862248134 +1978,12,9,11,0,6,90,10.5,92.623363113807557,54.98545471927641,64.07290194301949,156.48321979372798,0.0,28.514668809148063,92.345986214863146,1.0,28.514668809148063,56.51941147603447,1.5,16.100000000000001,5.2000000000000002,85.80745315108642,87.046740753136604,87.773415435051206,87.644120423454567,87.547196219369383,87.499499768802252,16.673773596901576,16.633165152049379,16.599806767865584,16.542371652552191,16.432534003031208,16.295589313159244 +1978,12,9,12,0,4,125,11.5,126.95134959825285,50.92077887134759,60.80146103607257,171.62830002342497,0.0,38.881798557166128,126.99445237203288,1.0,38.881798557166128,77.519062152926011,1.5,14.4,2.6000000000000001,118.12090467042174,119.79831583301029,120.78174639443226,120.62231196916876,120.50384475232072,120.44445745873603,22.758229652014407,22.692693960895216,22.632800783302539,22.549953669157436,22.403232873531639,22.220996758087679 +1978,12,9,13,0,6,121,12.5,123.93529033210501,50.80595222515704,60.710997510125615,187.46475438700062,0.0,37.869100319615121,124.14088691448158,1.0,37.869100319615121,75.676603080409606,1.5,14.4,2.6000000000000001,115.50593806304474,117.13592307775809,118.09150930008988,117.93532470300141,117.81921844023805,117.76107449946917,22.168863678542174,22.104282670902386,22.044035270590431,21.961173440215152,21.816647892613609,21.638861924568957 +1978,12,9,14,0,1,106,13.5,106.44126552326121,54.66597965263297,63.815345591773095,202.6777784977638,0.0,32.934371109421384,105.81328597167943,1.0,32.934371109421384,64.96071835002337,1.5,13.9,4.0999999999999996,98.264678911538041,99.702166388035963,100.54511846272707,100.4003458191533,100.29208894843345,100.23853025441343,19.255538838933386,19.207274471976511,19.169737162582951,19.107025045646832,18.984644326705528,18.828499144927669 +1978,12,9,15,0,2,79,14.5,79.694604647247616,61.753050904792005,69.67759832740367,216.29401945604695,0.0,24.694142365218685,79.087374262131078,1.0,24.694142365218685,48.605812042119084,1.5,14.4,3.1000000000000001,73.370118045468857,74.454763602867288,75.090871138666643,74.971670060845398,74.881841729537783,74.838106076687779,14.421425703366996,14.387068746264656,14.36607965105572,14.325776140270298,14.236976670246921,14.120269339418485 +1978,12,9,16,0,2,50,15.5,50.427890293904206,71.08809935870985,77.64635123911694,228.0381082042789,0.00986129858086226,15.64085906544438,49.989963629720506,1.0,15.64085906544438,30.733570321014096,1.5,14.4,2.6000000000000001,46.236728864445169,46.983351582778376,47.388966792144181,47.305801117928432,47.242707157264711,47.212428820947395,9.1353792032655079,9.1094121462246793,9.0941161163669744,9.0668595851250977,9.0104742897731889,8.9384733573860764 +1978,12,9,17,0,0,16,16.5,16.0,80.50908452515253,85.88345187001147,237.05335556230335,0.34697378100525494,5.0320646406386871,15.724823669962749,1.0,5.0320646406386871,9.7371926033207536,1.5,10.0,10.300000000000001,14.602579084196158,14.825201036823428,14.955777881676239,14.92450905104184,14.90055643684353,14.889299951347763,2.9383273073229326,2.9293747811750808,2.9244546237931877,2.9149265957966541,2.8958551101815595,2.8726990133705872 +1978,12,10,8,0,198,17,7.5,30.099892712223003,80.86414095287545,86.2064786784293,122.70545724991157,0.37495846853135006,3.8842511552588688,53.604233644936095,1.0,3.8842511552588688,19.317882210029065,1.5,-2.2000000000000002,2.6000000000000001,10.624401256600892,10.786369254524685,29.534683512324822,36.030670003648694,36.263663195380325,36.359263439342229,2.3202477736533913,2.3545202455708938,2.3506469534788583,2.3955123340220301,2.4448282066735496,2.4263160587869819 +1978,12,10,9,0,619,36,8.5,161.82675084319263,71.79602724599027,78.27150702941884,131.29976302495695,0.02397383061857513,8.970828239015038,238.94347419419077,1.0,8.970828239015038,101.62253336948287,1.5,-1.1000000000000001,4.0999999999999996,173.64046857394862,199.63786193524777,199.82299455175803,200.55646751065493,201.15280486907409,201.39774618050313,5.3691412288883038,5.4582462749914988,5.4485062875947037,5.5628753500463404,5.6884292658055378,5.6405672242208622 +1978,12,10,10,0,791,49,9.5,316.92240026168838,62.35962637762069,70.2014854104944,142.92350802905125,0.0,39.185877228108744,426.01502256751041,1.0,39.185877228108744,197.95837685803505,1.5,0.0,5.7000000000000002,393.53830723702356,393.99050979963528,394.24274563068167,395.29267768960011,396.15118173339209,396.49858140264075,22.312877689937547,23.199422265477555,23.744753268580812,24.121048173150328,23.981967925241033,23.328124977595195 +1978,12,10,11,0,860,58,10.5,432.37362035122982,55.112187660923816,64.19445917757862,156.4095493134514,0.0,63.568922987307609,561.3614244702643,1.0,63.568922987307609,269.37087058255509,1.5,0.59999999999999998,5.2000000000000002,536.71583240533289,537.22830738800417,537.5064687595177,538.68071285705025,539.6513341874745,540.03684303115881,38.92427016415926,39.454203952469221,38.86923742192959,37.836303260696504,36.706490693164412,35.795841889067013 +1978,12,10,12,0,894,63,11.5,497.71664295630706,51.02719790150333,60.904927908711336,171.5231389395775,0.0,77.090247630477037,637.56803984328292,1.0,77.090247630477037,309.73744946082576,1.5,1.7,5.2000000000000002,616.4932328059806,617.03902529194056,617.32976895888078,618.55643777498915,619.57547850960304,619.97567216726679,47.98324532799397,47.647887882924827,46.137370782147016,44.734225221657319,43.656783416334406,43.03380651858415 +1978,12,10,13,0,894,63,12.5,499.28767236891628,50.88128110963487,60.789637303599214,187.33447933211548,0.0,81.848778641638873,639.34036530676678,1.0,81.848778641638873,310.70335412025781,1.5,2.2000000000000002,5.2000000000000002,618.42105788558354,618.96662587108528,619.25500819609397,620.47959307895246,621.49861361702108,621.89725616836881,50.996999589955529,50.560051983843607,48.905223289730408,47.380571236704697,46.247148703962154,45.628690245301087 +1978,12,10,14,0,861,59,13.5,438.24404526689767,54.70613569476692,63.86617347934456,202.53475040440944,0.0,68.399747941746796,568.07053223521973,1.0,68.399747941746796,273.01763789801299,1.5,2.7999999999999998,4.0999999999999996,543.81580268858431,544.33634120607894,544.61707912383349,545.80205295915425,546.78305797640417,547.17154356625883,41.945795008752683,42.463743888365151,41.778420160540207,40.620404681002128,39.373459702422423,38.409679513167987 +1978,12,10,15,0,796,49,14.5,325.13355644975701,61.761564913640974,69.70208919262949,216.14928457728735,0.0,42.880619366929409,435.6830101484926,1.0,42.880619366929409,203.01945120332746,1.5,3.2999999999999998,3.6000000000000001,404.02977000312637,404.48012320777411,404.72926464629893,405.78117946881849,406.64196474044007,406.98958085805674,24.525297193821682,25.559220508005161,26.117004334345339,26.412584165746075,26.107651679255799,25.339088576522698 +1978,12,10,16,0,642,37,15.5,174.32782612759632,71.0715750134549,77.64863144092868,227.89708238096006,0.010873810265438617,9.2327530148584067,255.0195249362128,1.0,9.2327530148584067,109.37927304140936,1.5,3.2999999999999998,3.6000000000000001,202.55553973873808,215.54265729782037,215.730415606674,216.48690587765,217.10195167522454,217.35458253769195,5.5260375023263872,5.6179915105457914,5.607901424742777,5.7257663464206452,5.8550497771227343,5.805370000332748 +1978,12,10,17,0,246,19,16.5,36.679010314369371,80.48552048140495,85.87883485199177,236.92434803367348,0.3478468997871582,4.4278224414003766,65.752646560564671,1.0,4.4278224414003766,23.438642326962555,1.5,1.1000000000000001,2.6000000000000001,12.000607278558245,12.183554483650397,41.489969094584822,44.587940813530494,44.842354950035322,44.946695487996358,2.6425658369278686,2.6798189675340116,2.6753768908987028,2.7241464084119449,2.7773927720625249,2.7561262201190635 +1978,12,11,8,0,7,22,7.5,22.454960619664597,80.92291239215164,86.27346987298175,122.75614459379568,0.3820386464603552,6.6223722537887442,23.669274824295197,1.0,6.6223722537887442,13.790305761721227,1.5,-5.0,2.1000000000000001,19.172431116047086,19.464721871197899,20.870705971480923,21.380011276489203,21.381460476794363,21.380319822995951,3.8737968373582201,3.8674098721144872,3.8609334800659223,3.855255634719327,3.8385878401918081,3.8080848320428968 +1978,12,11,9,0,59,88,8.5,99.860155954907981,71.9302074926216,78.40341164942151,131.27354962290548,0.02787415977040596,24.215221666992285,112.12658931954101,1.0,24.215221666992285,61.442493081139972,1.5,-3.8999999999999999,2.6000000000000001,94.909281280972309,101.09580206956525,101.71598839951804,101.74740527067027,101.77941805258521,101.78632540313029,14.170077943889233,14.151175049382442,14.127341834471412,14.111879331326529,14.057147888888496,13.944625775605514 +1978,12,11,10,0,251,121,9.5,205.49531375327484,62.490762471961006,70.32802511387916,142.87421392318535,0.0,40.101691997646604,249.78499435845021,1.0,40.101691997646604,128.21888148182475,1.5,-2.7999999999999998,2.1000000000000001,229.96602879363542,231.22050717982864,231.95110636703407,232.61364239964462,233.16007010886486,233.37680936993078,23.223860320940123,23.585783269819043,23.797098080504092,23.988162865912777,23.927842616145753,23.563433325706228 +1978,12,11,11,0,685,87,10.5,383.95373207758735,55.23279668169051,64.30953665279269,156.3316930775082,0.0,58.59458448221153,496.00345704643883,1.0,58.59458448221153,240.05881842377352,1.5,-1.1000000000000001,2.6000000000000001,472.71815079001652,473.3362018126756,473.67947335955188,475.02932245423614,476.14006238662739,476.58510890674847,35.731906393006831,36.303450454289909,35.868346933678723,35.082007576892273,34.155821048396753,33.31966227884206 +1978,12,11,12,0,910,53,11.5,494.15937794724897,51.12658380859343,61.001250895647246,171.41549581887804,0.0,80.030117213822066,635.09265550518694,1.0,80.030117213822066,307.18252220163629,1.5,0.59999999999999998,1.5,614.65083329440552,615.10725323081749,615.34341874675863,616.43620728961957,617.34807661475872,617.70297631858955,49.87577664611814,49.546169652562419,47.956657163290288,46.388852118969062,45.14535927255244,44.46947211920174 +1978,12,11,13,0,661,121,12.5,442.86250777252798,50.94920913886077,60.86082525255331,187.20373394565962,0.0,77.402591098115707,559.94986413091078,1.0,77.402591098115707,277.13713125265718,1.5,1.7,1.5,538.42891708299032,539.32163518258017,539.81935847634873,541.46563091277176,542.82400149563398,543.36514968060987,47.916967969774298,47.734380361336555,46.418356436037705,45.248108751866717,44.354010699825686,43.745997910869121 +1978,12,11,14,0,133,161,13.5,219.49183799285672,54.73910969221755,63.90962820646183,202.3931110630875,0.0,52.965761266467851,248.82675861829142,1.0,52.965761266467851,136.27407038055082,1.5,2.7999999999999998,2.6000000000000001,233.68040623081311,235.44389854177575,236.4725712788541,236.95242853249459,237.35603693943585,237.50940256307058,31.465622922258202,31.577164449241945,31.38236544737158,31.117813230140388,30.779317471764617,30.385764589780564 +1978,12,11,15,0,187,146,14.5,210.81709416416612,61.76346393763176,69.71955829093943,216.00735558878125,0.0,46.013166871981817,245.85584126469888,1.0,46.013166871981817,130.69587600156026,1.5,2.7999999999999998,1.5,227.45733117144289,229.06320868191773,230.00067605708796,230.39276003678728,230.72196365782548,230.84694787788945,26.757370530149764,27.035504254287218,27.170912057440059,27.251548289391501,27.099177846676323,26.726924173734108 +1978,12,11,16,0,84,77,15.5,94.974224783283319,71.04911684908204,77.64437345155005,227.75985170383262,0.011667706682528704,20.838802398213449,110.48298287031646,1.0,20.838802398213449,58.979057194398365,1.5,2.2000000000000002,1.5,95.145819110556772,98.745619834653297,99.276100515025405,99.494578823670835,99.677141050138914,99.747368870601008,12.226457370571234,12.23557021825015,12.215023070863234,12.233921126721237,12.226331832368494,12.129165887053876 +1978,12,11,17,0,44,33,16.5,36.168055838738674,80.45992309403648,85.87105837764344,236.80258846435726,0.34835539185219055,9.0175646861833361,44.396528831880509,1.0,9.0175646861833361,22.456686839719943,1.5,1.7,1.5,25.904880974543534,26.299808807090571,35.580995976736233,36.560880548275193,36.630878484014737,36.657534929202654,5.2889740205893396,5.291419857786491,5.2825748887680053,5.2889587393187192,5.2835606165301421,5.2418157523786562 +1978,12,12,8,0,200,15,7.5,27.773520797621103,80.98064051600817,86.33816347887316,122.79853921066398,0.3888976828691413,3.3608648148948834,51.054748762357654,1.0,3.3608648148948834,17.823145157297052,1.5,-3.2999999999999998,0.0,9.1333262617038926,9.2725624645093063,25.45684604953636,33.773511217586062,33.987703226313442,34.075644312456198,2.0102036197436597,2.0419234953575471,2.03856249112222,2.0799874290609095,2.1258411817095784,2.1097542109338021 +1978,12,12,9,0,620,34,8.5,157.28508138755788,72.06038356515187,78.53046269452598,131.2413719834019,0.03163539834592615,8.4732129725810736,234.31643245252079,1.0,8.4732129725810736,98.746048218251246,1.5,-1.1000000000000001,0.0,161.2894775345313,194.81378845434335,194.98706636837011,195.69097847063753,196.26324492906178,196.49833494905045,5.0731122416994729,5.1587672485877913,5.149532179005023,5.2593713224847392,5.3801212598088348,5.3346828073760202 +1978,12,12,10,0,779,46,9.5,306.69093029490841,62.616818560003296,70.44885477209395,142.81965851742703,0.0,37.714491136643353,413.92521413366529,1.0,37.714491136643353,191.54802580294805,1.5,2.2000000000000002,0.0,381.77417458719623,382.19807563922075,382.43441110037497,383.44313008184793,384.26792966436261,384.60169047029825,21.358915004120973,22.174170489318488,22.759378892454635,23.196109992330136,23.129139794101029,22.540364658376223 +1978,12,12,11,0,862,55,10.5,427.21278060435361,55.347209631567154,64.41806598960632,156.24973887723957,0.0,62.537830781229893,556.22013944686159,1.0,62.537830781229893,266.08830294237185,1.5,4.4000000000000004,2.6000000000000001,531.54423305111663,532.029874302748,532.29249147002793,533.42847981023112,534.36741048006229,534.74014558209865,38.19332882227777,38.802574252963531,38.304795537251117,37.329025444743209,36.183641260946956,35.240905988119145 +1978,12,12,12,0,885,60,11.5,487.83498115748148,51.21888737510935,61.09038067326659,171.30546321152775,0.0,75.366974060855952,626.20680956329579,1.0,75.366974060855952,303.55604526137671,1.5,5.0,1.5,605.36243013549802,605.88164637420425,606.157469089345,607.34797924362806,608.33723366698132,608.72578086662952,46.874205209708819,46.654823925145458,45.244471932395307,43.819836627190803,42.719634763941485,42.062604213835989 +1978,12,12,13,0,894,60,12.5,494.44933582694199,51.00970894042588,60.924531484629775,187.07261090704768,0.0,80.806770490702945,634.41009756407857,1.0,80.806770490702945,307.62453571388374,1.5,6.7000000000000002,1.5,613.64648026164605,614.16530356030773,614.43835800792283,615.62633465988654,616.61544178801637,617.00218757084679,50.320018814452581,50.005883908437347,48.42937735962947,46.892315510477907,45.678240735847098,45.001670458813621 +1978,12,12,14,0,867,56,13.5,436.80613682880198,54.76489500197703,63.945699030313044,202.2529541041087,0.0,63.894066921827076,567.44395938329149,1.0,63.894066921827076,272.02730684652374,1.5,7.7999999999999998,0.0,543.29652895798415,543.78944057307945,544.05579620338608,545.20415915825504,546.15395026009492,546.53073111842593,39.13283179371745,39.665454726781284,39.072443373177286,38.017480205773857,36.863532510827724,35.94222492271286 +1978,12,12,15,0,801,47,14.5,324.50188318843004,61.7587627154358,69.73001392148744,215.8683283711358,0.0,39.633670857248191,435.8304918330906,1.0,39.633670857248191,202.55578885483601,1.5,8.9000000000000004,2.1000000000000001,404.25866123568295,404.68982566070508,404.92904496552785,405.95470646511006,406.79360694243667,407.1328132627433,22.664957722915904,23.594270720698642,24.110364047427858,24.413954700122595,24.162153826844555,23.48526320652207 +1978,12,12,16,0,651,35,15.5,174.41977010269738,71.02076043788045,77.63360389843406,227.62651372174545,0.012243233825003905,8.7410503415829854,256.27937914319847,1.0,8.7410503415829854,109.36507328184048,1.5,8.3000000000000007,1.5,201.93578992712489,216.69085934361317,216.86526674528096,217.59607857144039,218.19019867563401,218.43428103862797,5.2340402479336312,5.3230733882454802,5.3134440546869488,5.4273622118627562,5.5524745601431151,5.5049441727202542 +1978,12,12,17,0,259,18,16.5,36.697566906854675,80.43231583760519,85.86013751713244,236.68816533718407,0.3485026032089099,4.1562064500339142,67.102954939004945,1.0,4.1562064500339142,23.426726074212837,1.5,5.5999999999999996,1.5,11.176193451820017,11.346571864811882,41.88864510865541,45.240894321365019,45.488255001121601,45.589741930772313,2.482206486606525,2.5185827070121669,2.5143962499353147,2.5619254507679754,2.6140250892386483,2.5939500781862472 +1978,12,13,8,0,118,18,7.5,25.408219665719709,81.03728185003187,86.40051650566255,122.83263290407895,0.39552462454924886,4.3364410720309134,40.525579630862936,1.0,4.3364410720309134,16.191451253921876,1.5,0.0,2.6000000000000001,12.178137645134935,12.363794856188038,22.461446789390322,28.610060935544425,28.775245975484943,28.842607389689441,2.5707081116507782,2.5934158838602266,2.5891358102054181,2.6195386553059867,2.6504861393745873,2.6301596689713587 +1978,12,13,9,0,516,44,8.5,145.52706889709032,72.18645585156106,78.65256730271018,131.20328990236035,0.03524953230345849,10.25111108144703,213.14025426387121,1.0,10.25111108144703,91.533225678208026,1.5,2.2000000000000002,4.0999999999999996,145.04971342123372,177.55389013160581,177.77952647288603,178.49387488783515,179.07507461137652,179.31340151125218,6.1152034378427729,6.2004599214151375,6.1896388286373583,6.2999957379268539,6.4190801057662386,6.3664218552242877 +1978,12,13,10,0,704,61,9.5,295.25985957968999,62.737706146246886,70.5638923484048,142.7599187012434,0.0,35.223626187123266,396.82678836744924,1.0,35.223626187123266,184.86721021089912,1.5,6.0999999999999996,3.6000000000000001,365.23013996717486,365.73448989344365,366.01996128900259,367.15683802647993,368.08510067240638,368.4621500170735,20.044161169637555,20.749642866682819,21.245123011825385,21.666936976060285,21.68908278864307,21.178950121214193 +1978,12,13,11,0,786,73,10.5,411.1342906871792,55.45535720013692,64.51998161316381,156.16377561474604,0.0,61.277568068076057,534.43577668827265,1.0,61.277568068076057,256.72267507844356,1.5,9.4000000000000004,6.2000000000000002,509.67306988174784,510.22353259228043,510.52534531544427,511.85066122674601,512.94204669584781,513.37843562520277,37.315202881206986,37.999535604002737,37.578214048098289,36.741478184387191,35.718377268785289,34.773444361746193 +1978,12,13,12,0,825,80,11.5,477.79661761740607,51.304062302601494,61.17227092031971,171.19313450698758,0.0,78.981436512624441,612.91003799272471,1.0,78.981436512624441,298.01876884439088,1.5,12.199999999999999,7.2000000000000002,591.45400118041937,592.03140759150972,592.34040118174073,593.75746728509341,594.9313789933658,595.395551261523,49.08952711109238,48.940440073767462,47.521373254968573,46.054008444585229,44.942356055790974,44.210193036767315 +1978,12,13,13,0,830,80,12.5,482.6361205487807,51.06275619666674,60.98072931533222,186.9412038073362,0.0,75.324606414074466,618.80392027482264,1.0,75.324606414074466,301.00027072954254,1.5,13.9,7.2000000000000002,597.50741482069122,598.08219454722553,598.39119348085626,599.81091260427036,600.98565077250987,601.4511669311056,46.835368689366881,46.652585931385111,45.269602672482918,43.915592728557066,42.886837866877833,42.236547025985182 +1978,12,13,14,0,799,74,13.5,424.57964574159706,54.78348832965219,63.97437861425925,202.11437400736165,0.0,63.081863640114925,550.71924852416123,1.0,63.081863640114925,265.03887325069945,1.5,15.0,8.1999999999999993,526.41482176756745,526.96813059078181,527.27085096184044,528.61051126638347,529.71487062887161,530.15597614636238,38.625515658217694,39.166001834491524,38.595734823399106,37.623095008916508,36.561873577091397,35.670400008661247 +1978,12,13,15,0,721,62,14.5,311.74556582163166,61.74747953412513,69.73346794102986,215.73229918319177,0.0,39.452155388535807,416.91275682058233,1.0,39.452155388535807,195.07490485075812,1.5,15.6,6.7000000000000002,386.19629315665128,386.70051596863772,386.9835005102729,388.14181147951581,389.08821506021314,389.47194359337595,22.571940771052532,23.450248880233136,23.959232272518967,24.30163742298453,24.158038478999586,23.510326482186667 +1978,12,13,16,0,551,46,15.5,164.16556702421909,70.98654478443562,77.61635290091684,227.4971655773454,0.012601142851809848,10.668333404406255,237.14768675184175,1.0,10.668333404406255,103.11761118845607,1.5,15.0,6.7000000000000002,187.57991283344163,201.20292656389481,201.43320100950112,202.18877640736136,202.80347130049586,203.05557897278786,6.3659181805892864,6.4563108994862963,6.4449439032906941,6.5616587470544632,6.6876771703902946,6.6321962738254543 +1978,12,13,17,0,144,21,16.5,31.43077458369347,80.40272322173217,85.84608867592092,236.58116380765625,0.3482924389306543,5.0881837214443228,50.522766433468121,1.0,5.0881837214443228,19.976330401435689,1.5,12.199999999999999,4.0999999999999996,14.201674230444715,14.418179793436623,33.998360397245193,36.147990473624731,36.336773993523849,36.413723962722926,3.0152622175337855,3.0410932205512538,3.0360509686353985,3.0706408591241221,3.1055819617913589,3.0816059493132326 +1978,12,14,8,0,207,14,7.5,26.779530949703513,81.09279393963442,86.4604873511259,122.85842225317076,0.4019084453609729,3.1174274913933937,50.426442096834379,1.0,3.1174274913933937,17.174579950898782,1.5,1.7,4.0999999999999996,8.437619159021942,8.5662491230813504,22.810361590615884,32.965665901958708,33.168964713715631,33.25245244102247,1.8655469174446249,1.8957285975040683,1.8926048480568969,1.9319805830622867,1.9756701768946723,1.960706027494723 +1978,12,14,9,0,650,30,8.5,156.59023348253208,72.30832670425927,78.76963468494903,131.15936572417195,0.038708514178533895,8.3898365364608054,234.93093154912731,1.0,8.3898365364608054,98.328961151662298,1.5,2.7999999999999998,5.7000000000000002,153.51543298002844,194.42916219354905,194.60043019360822,195.30792990097163,195.88307865920598,196.1193858849789,5.0249530341314532,5.1111607003241852,5.1020114392728946,5.2125332326468028,5.334252585814319,5.289223620946145 +1978,12,14,10,0,818,42,9.5,312.72376732535946,62.85333929895478,70.67305834676124,142.6950730939002,0.0,34.938837877803472,424.34665987689556,1.0,34.938837877803472,195.09635644428175,1.5,3.2999999999999998,6.2000000000000002,391.00620680518199,391.39220704490856,391.60739133074082,392.55774927677589,393.33472289356047,393.64924480478334,19.732382310462711,20.444732562548204,21.00861965204874,21.460826088881262,21.458869422342634,20.90806027320977 +1978,12,14,11,0,433,110,10.5,295.62499745466323,55.55717297048224,64.61522081493186,156.07389323457645,0.0,51.100237087726683,372.23799215985667,1.0,51.100237087726683,185.09040807564313,1.5,5.0,6.7000000000000002,352.72880707755428,353.65956673994572,354.19253359692806,355.33798467934241,356.28034426709723,356.65764375389278,30.852458384569726,31.304545631769521,31.032194297262112,30.561507238663278,29.96686649071145,29.323959646700697 +1978,12,14,12,0,907,55,11.5,491.30013703174484,51.38206525066702,61.2468783634841,171.07860386260577,0.0,75.305013461142593,632.35358012237373,1.0,75.305013461142593,305.5046881794301,1.5,5.5999999999999996,6.2000000000000002,611.48485762867404,611.95952809120342,612.20895639468017,613.33298924481448,614.26851547614888,614.63498917361392,46.788022774245114,46.676046273685067,45.329202220334857,43.845406949322857,42.693109643989509,41.950945762567322 +1978,12,14,13,0,904,55,12.5,492.86219732174766,51.108329669557996,61.029395277079146,186.80960706758776,0.0,80.045037449364969,633.84842687487208,1.0,80.045037449364969,306.46370100920188,1.5,6.0999999999999996,6.7000000000000002,613.31925524279131,613.79336752747076,614.04024508221107,615.16170321284415,616.09680626963416,616.46156891920441,49.798300209798683,49.595611207280086,48.106257623985179,46.503523897224241,45.26539384257088,44.509013503884461 +1978,12,14,14,0,892,51,13.5,442.08774774460886,54.79488973669107,63.99566303820957,201.97746600821424,0.0,68.033305281538588,575.85758929971928,1.0,68.033305281538588,275.08573645780336,1.5,6.7000000000000002,5.2000000000000002,551.70397077409405,552.15120934374193,552.38853713402352,553.46625865498311,554.35995696499526,554.71242385411688,41.65423701382673,42.261540772414044,41.655177515521409,40.486520079248145,39.171291447685853,38.144482134238558 +1978,12,14,15,0,831,43,14.5,330.89627566945444,61.729636215072766,69.72993575277391,215.59936455572506,0.0,39.698910240780009,445.87266392340814,1.0,39.698910240780009,206.32922019055465,1.5,6.7000000000000002,5.2000000000000002,413.90299400141976,414.29577671770625,414.51213893323387,415.47953959542656,416.27120988602468,416.59086705694256,22.614842608752291,23.54283812949302,24.105491683528886,24.433190377046667,24.221064793262251,23.525993453512111 +1978,12,14,16,0,684,32,15.5,178.96461330311081,70.94651228818016,77.59265403711433,227.3719038898392,0.012742679607813077,9.0446504776246375,262.95047563508967,1.0,9.0446504776246375,112.22192319448337,1.5,6.7000000000000002,4.0999999999999996,206.85662369955841,222.60761693421023,222.78862289609552,223.54110175404438,224.15284834193358,224.40416054442966,5.4152320720507738,5.5068588526091684,5.4969071491066011,5.6141764862846735,5.7429137625532443,5.6938115162047547 +1978,12,14,17,0,295,17,16.5,38.456714977224365,80.37117078946004,85.82892959805173,236.48166554881274,0.3477293387202098,4.1555368920876266,71.746517011861812,1.0,4.1555368920876266,24.619515299253109,1.5,5.0,2.1000000000000001,11.097619504738311,11.266799424002937,44.696093847904621,48.190240636698128,48.469129444889575,48.583691195687052,2.4883552488788521,2.5298946883277833,2.5257004065483262,2.5797786851015219,2.6399123173828487,2.6197666411543703 +1978,12,15,8,0,1,17,7.5,17.06073433933021,81.14713536161442,86.51803581307452,122.8759086476913,0.4080380738627089,5.3473582270898969,16.867281876285997,1.0,5.3473582270898969,10.388609515652194,1.5,-0.59999999999999998,4.5999999999999996,15.515241460089999,15.751777284756475,15.940807890826795,15.950372275383737,15.926487414782891,15.915176106749799,3.1227598791865026,3.1135030806704198,3.1082745484269356,3.0984758830275583,3.0786103911089384,3.0540018348686178 +1978,12,15,9,0,167,72,8.5,104.20386196341194,72.42590053119052,78.88157621725446,131.10966428382,0.04200429351832001,18.465438715026238,131.72555510342573,1.0,18.465438715026238,65.161644712130112,1.5,1.7,4.0999999999999996,97.652196451703929,113.89289951699402,114.355797057158,114.74859704915181,115.07166539889496,115.20078504471937,10.867247544820298,10.901779983290101,10.883444002006655,10.933544114717822,10.967563097609254,10.880539832138252 +1978,12,15,10,0,176,127,9.5,184.94934651146514,62.96363472345771,70.77627589003144,142.6252019750415,0.0,39.823426407387011,216.52727858160054,1.0,39.823426407387011,114.69413543517054,1.5,5.5999999999999996,5.7000000000000002,199.40339923622369,200.8297106334384,201.66310296885649,202.02021603368411,202.31960001769141,202.43371484491109,23.094003699886596,23.27881911270444,23.414129384909369,23.538502474792448,23.492061402341548,23.201412520874257 +1978,12,15,11,0,773,82,10.5,412.30220711123195,55.65259347125062,64.70372381260168,155.98018265269434,0.0,62.728775179543476,534.68315953335195,1.0,62.728775179543476,257.66777406455918,1.5,8.3000000000000007,5.2000000000000002,509.08391307724838,509.73300257717182,510.09299486207033,511.50173268269987,512.66064496655531,513.12474519016394,38.063657077053698,38.822620005132173,38.473800262270473,37.693733194696236,36.702293673984087,35.724373617183588 +1978,12,15,12,0,924,50,11.5,493.52615652402824,51.452855873656915,61.314162820224986,170.96196612991145,0.0,75.066621700666289,636.40579973765568,1.0,75.066621700666289,306.67263477114136,1.5,10.6,7.2000000000000002,615.70055039809858,616.13082623170021,616.35387186165462,617.40506430762025,618.28160444549133,618.62365954144343,46.666447296921277,46.542821940598408,45.181106731418261,43.66613245013496,42.485083669572688,41.739253059721726 +1978,12,15,13,0,927,51,12.5,499.420427748424,51.1464112228872,61.07050914512267,186.67791585583643,0.0,80.619390614124995,643.30223614923909,1.0,80.619390614124995,310.33850654339528,1.5,11.699999999999999,6.2000000000000002,622.77997779976761,623.21860746737786,623.44405343119547,624.50728591739221,625.39550426446453,625.74063377699463,50.179737687413258,49.9633418818104,48.445394123572441,46.798101527706578,45.521181293552608,44.75438310129644 +1978,12,15,14,0,899,47,13.5,440.96095079656044,54.79910264473309,64.00955180557234,201.8423260029064,0.0,63.359597225440645,575.28011711833346,1.0,63.359597225440645,274.22530938807063,1.5,12.800000000000001,6.2000000000000002,551.40713486894106,551.81790538415817,552.03552381032182,553.05463120251784,553.89924859813743,554.23264686716391,38.723478369382548,39.341760164885315,38.821849026379731,37.771280685689888,36.539773895912447,35.561168785992393 +1978,12,15,15,0,846,39,14.5,332.23838309002895,61.705258096848176,69.71943629165978,215.4696211853813,0.0,39.253856664932066,448.70635691880017,1.0,39.253856664932066,206.97821490792558,1.5,13.300000000000001,6.2000000000000002,416.81353594837043,417.16826046454946,417.36211111319545,418.26582601658549,419.00577558608501,419.30412553230269,22.333355917664704,23.264636000381582,23.835810252168113,24.155791710181425,23.927296535729088,23.227302733797124 +1978,12,15,16,0,707,29,15.5,181.26924582479276,70.90070870346655,77.56254430784111,227.25082463902078,0.012669571363948067,8.41438267074275,267.487254407573,1.0,8.41438267074275,113.51187664155186,1.5,12.199999999999999,5.7000000000000002,210.43633396641377,226.51990432890506,226.68301531307765,227.38934248699081,227.96354827997899,228.19945820952856,5.0386736160075909,5.1248143240061674,5.1154318985707476,5.2253743102830059,5.3459357118484654,5.2994591650971028 +1978,12,15,17,0,324,15,16.5,38.680226710464538,80.33768511882164,85.80867937231369,236.38974860226332,0.3468182511539719,3.5970302777232526,74.655918449303599,1.0,3.5970302777232526,24.693769884524361,1.5,10.6,5.2000000000000002,9.3966148866035635,9.5398617018667107,45.974540166116874,49.494488680219163,49.75449974898455,49.861379853452028,2.1577036730710324,2.1967256331079956,2.193054590059675,2.2436678298749118,2.3003146444428895,2.2826066170743649 +1978,12,16,8,0,39,15,7.5,17.331210641482784,81.20026572992242,86.57312309533623,122.8850983133638,0.4139024221428159,4.0567149865938212,22.827684674856187,1.0,4.0567149865938212,10.928856736876551,1.5,-1.1000000000000001,2.6000000000000001,11.625819869860983,11.803058826652043,14.93605248432973,17.869518460093325,17.95070928855656,17.983312043776223,2.3896933865261079,2.3989212173960248,2.3949488313455576,2.4081783444140679,2.4184938070735926,2.3997258532172006 +1978,12,16,9,0,145,61,8.5,88.696355514852627,72.53908388460427,78.9883055304402,131.05425284529488,0.04512884928065623,15.792937756498382,112.2438058764217,1.0,15.792937756498382,55.525694865206532,1.5,3.8999999999999999,2.6000000000000001,82.169605209376073,96.900785424803132,97.296840166643619,97.652946954965245,97.945578811077979,98.062779318909037,9.2978434086393005,9.3300439483128326,9.3143695284033932,9.3606296314389823,9.3939328427395044,9.3195440557085067 +1978,12,16,10,0,421,106,9.5,243.94292170666125,63.06851183364861,70.87347079629744,142.55038721227945,0.0,38.149212030570524,313.00544621270859,1.0,38.149212030570524,152.81765965211207,1.5,5.5999999999999996,3.6000000000000001,287.10851500949121,288.09073136412229,288.66021981065529,289.64610205629606,290.45350694413264,290.77921599951293,21.907969719328669,22.364280442028083,22.6912619488525,23.037376480479622,23.134734789939383,22.734408983229162 +1978,12,16,11,0,524,136,10.5,359.22887853934571,55.74155822677834,64.78543380764393,155.88273568279737,0.0,62.825847091610015,451.14901537931502,1.0,62.825847091610015,224.50277388274469,1.5,8.9000000000000004,3.1000000000000001,427.4924045181055,428.67900191500684,429.35946228888207,430.60862625929548,431.63805291564404,432.04843033902733,37.809765977258998,38.388882691057653,38.112129247343965,37.54706737042455,36.80504733330207,35.999784401689659 +1978,12,16,12,0,443,177,11.5,389.23637746619158,51.51639685501618,61.37408723885055,170.84331677871975,0.0,76.763892592258088,476.93723085315582,1.0,76.763892592258088,243.47785036767311,1.5,12.800000000000001,2.1000000000000001,455.20721305756973,456.73522673929079,457.61255882661351,459.04921428356192,460.23659689865872,460.70774634487998,46.78788203151629,46.812849970452184,45.934445962811694,45.064464058393604,44.366755331563311,43.728444671580313 +1978,12,16,13,0,456,185,12.5,405.34851999824593,51.17698584166129,61.104053960266974,186.54622600282076,0.0,80.074008410078832,495.85283375382352,1.0,80.074008410078832,253.42919525852406,1.5,13.9,2.6000000000000001,473.6160209616333,475.21874228889891,476.13906577453253,477.59066527060537,478.79114391418841,479.26667380522792,48.847381594689608,48.789273003055328,47.818729467533807,46.905620415909276,46.203440858576137,45.590308117271405 +1978,12,16,14,0,122,175,13.5,228.45056538270143,54.79613383707973,64.01604784676555,201.70905045366226,0.0,54.879815717624176,258.00405542548117,1.0,54.879815717624176,141.828826422644,1.5,13.300000000000001,3.6000000000000001,242.09225920479568,243.98125051938402,245.08396851527732,245.58301790922445,246.00250704314044,246.16199014421531,32.522518349053087,32.658623803405568,32.50190488815111,32.276487615314643,31.953704418067588,31.546816348633165 +1978,12,16,15,0,1,106,14.5,106.34690304371796,61.67437401513022,69.70199200609473,215.34316582906237,0.0,32.324054506125329,106.72528137436461,1.0,32.324054506125329,64.906186233148802,1.5,12.199999999999999,4.0999999999999996,99.01574496061852,100.42200583482445,101.24659063224152,101.10213387781069,100.99389882214683,100.94054430223724,18.870764696532852,18.83533427935371,18.814224842407782,18.765996624785693,18.649742137880196,18.492090038653714 +1978,12,16,16,0,2,77,15.5,77.431990940576554,70.84918309717422,77.52606409756675,227.13402305081289,0.012384010951797654,22.879600247085371,78.831370571425609,1.0,22.879600247085371,47.245236075141733,1.5,11.1,4.0999999999999996,72.047467633236963,73.525411811143826,74.117439356151465,74.007167179024506,73.924089964579807,73.883620916622107,13.365177941833647,13.328716413237249,13.306312457519846,13.268310408145901,13.188070377137965,13.082557301511182 +1978,12,16,17,0,1,19,16.5,19.073493051879595,80.3022938272422,85.78535844091196,236.3054872360081,0.34556460677339496,5.97653217043288,18.847723967750973,1.0,5.97653217043288,11.61383560358861,1.5,9.4000000000000004,2.1000000000000001,17.340564094159834,17.604927662904711,17.857500698574235,17.830104271316568,17.803290148344651,17.790598614461636,3.4901611066129168,3.4797957266490802,3.4739519254616651,3.4629754487610502,3.440741822698524,3.4132373943148218 +1978,12,17,8,0,79,17,7.5,21.649813742287208,81.25214569572142,86.62571180796024,122.88600232719219,0.4194904157606641,4.0663124646551942,32.721677013171863,1.0,4.0663124646551942,13.850405809015346,1.5,6.0999999999999996,8.1999999999999993,11.513069301604697,11.688588225025342,17.378008047163078,23.548581044896697,23.705299713254167,23.769221163301886,2.4109946048003139,2.4325751124541428,2.4285823233128023,2.4575065379067671,2.4870771103559957,2.4681476190296663 +1978,12,17,9,0,459,47,8.5,133.87552858515369,72.64778554741311,79.0897385974825,130.99320103625834,0.048074224067371864,11.017044986616135,195.42684418004265,1.0,11.017044986616135,84.3960769798732,1.5,6.0999999999999996,7.7000000000000002,123.03852702770428,161.95918535864493,162.20973245363086,162.93668879742074,163.52830540091185,163.77075059960862,6.5656330235293447,6.6517615874189593,6.640314843490783,6.7523615538780879,6.8726441152175743,6.8172392353775466 +1978,12,17,10,0,231,105,9.5,180.34128417989973,63.16789282157208,70.96457165307477,142.47071218582175,0.0,34.193238837660026,220.47348774281426,1.0,34.193238837660026,112.58613196330192,1.5,6.7000000000000002,8.8000000000000007,202.29612668788059,203.39684935803595,204.0386013067486,204.6422553544848,205.13960451355018,205.33739467593091,19.768374459773145,20.027144651217888,20.2064632579863,20.403246733489475,20.436154041887711,20.147628600677276 +1978,12,17,11,0,621,97,10.5,360.81746289900769,55.82400980518727,64.86029704040398,155.78164496004422,0.0,56.9991172145848,465.1568553540497,1.0,56.9991172145848,226.0137352150237,1.5,7.7999999999999998,8.1999999999999993,441.65515889718682,442.3830532298752,442.79242018989999,444.2148973468806,445.38279476404728,445.85220252993992,34.443877924693126,35.164562725367794,34.950778361452201,34.354638121479013,33.551070329781275,32.693578059217288 +1978,12,17,12,0,739,91,11.5,444.45182003605413,51.57265393918005,61.426617735668245,170.72275181916254,0.0,75.313585294081278,568.30730460948257,1.0,75.313585294081278,277.77089973757217,1.5,9.4000000000000004,8.8000000000000007,546.95782737947354,547.65174808015365,548.03205677722383,549.54992732250707,550.80402167879583,551.30277818041566,46.62942508972256,46.628714543017843,45.420478741732644,44.133555232734864,43.124639656530221,42.374925631801418 +1978,12,17,13,0,793,88,12.5,470.87917791418158,51.20004164869886,61.13001604832657,186.41463391664837,0.0,74.697940064566382,602.82150251786652,1.0,74.697940064566382,293.97192298211706,1.5,10.6,7.7000000000000002,581.23797441018758,581.8955298422203,582.2543556334366,583.75007992274618,584.9860424883783,585.47738943776858,46.308675282074496,46.260330761737947,45.007655918623215,43.705365625297347,42.719861469238978,42.009934237028553 +1978,12,17,14,0,762,82,13.5,415.85761782788796,54.7859934572694,64.0151575192625,201.57773629368978,0.0,63.049281372640159,538.09969993179152,1.0,63.049281372640159,259.88171015994448,1.5,10.6,9.8000000000000007,513.76468777553669,514.40262223754814,514.75582929667496,516.1728924118047,517.33943108760104,517.80643089109458,38.459329475099445,39.075802369540455,38.602420510636414,37.737070719616995,36.718542398024347,35.810987851253252 +1978,12,17,15,0,686,69,14.5,307.24905146328956,61.637016279661204,69.67762883616336,215.2200951989749,0.0,39.307754177444828,410.39788334370337,1.0,39.307754177444828,192.17409732303094,1.5,10.6,8.1999999999999993,380.46224063868152,380.98697237941695,381.28226282332707,382.39400000295512,383.30270079169583,383.67079666295274,22.494818476880472,23.35057101327218,23.847825927156926,24.17858429734045,24.031856101760056,23.39489688152252 +1978,12,17,16,0,516,51,15.5,162.83004639870299,70.79198780382981,77.48325713240007,227.02159348452895,0.011888638490169827,11.848952799901623,232.97198474041829,1.0,11.848952799901623,102.42142229845973,1.5,10.0,8.1999999999999993,186.0120749168191,198.48594229150703,198.74867187110863,199.55025625659164,200.20252582594776,200.4699050761447,7.0644057597382064,7.1597356351499943,7.1472685594886158,7.2708332555811532,7.4036505053280122,7.3430563676585585 +1978,12,17,17,0,138,23,16.5,33.20538149695075,80.26502557840327,85.75898861026965,236.22895180967177,0.34397429019084863,5.5935185125741329,52.394385735113417,1.0,5.5935185125741329,21.103441975513007,1.5,7.7999999999999998,10.300000000000001,15.660180236444782,15.898921223825095,36.358620004649453,37.988968958607586,38.18849612758514,38.269768560520596,3.3130763748699792,3.340158642731204,3.3346239477032706,3.3709970510452751,3.407394036796803,3.3810949924124731 +1978,12,18,8,0,7,18,7.5,18.405903989433639,81.30273694188477,86.67576596175898,122.8786366224605,0.424791024697331,5.5105387063071829,19.229497672428415,1.0,5.5105387063071829,11.30059541073668,1.5,1.1000000000000001,5.2000000000000002,15.96298166273991,16.206343256389982,16.862679224509634,17.485921572730842,17.486350598054017,17.485079282195883,3.223265324241348,3.2178225923901427,3.2124353606365625,3.2075522209306779,3.1934915095553031,3.1681218669673945 +1978,12,18,9,0,87,82,8.5,98.323362966713191,72.75191661703346,79.18579381833311,130.9265807789593,0.050832560029506216,21.659652658219596,116.09607896110944,1.0,21.659652658219596,61.003867649051941,1.5,2.7999999999999998,5.7000000000000002,89.352265874782688,102.42957054383946,102.98108721350943,103.1879675530779,103.36136159751402,103.42757152551832,12.704658524153585,12.71145438695541,12.69009701929064,12.706332516609018,12.694255013538452,12.593266357919054 +1978,12,18,10,0,379,92,9.5,215.08062915320238,63.26170272502426,71.0495098893322,142.38626171017108,0.0,33.20774435051824,277.38639008125108,1.0,33.20774435051824,134.90778569838881,1.5,5.0,5.2000000000000002,254.01101687819587,254.850212186493,255.33661378335415,256.26532821046516,257.02523434020486,257.33244742065949,19.048047498610522,19.447106949819513,19.742975116440736,20.077582015744728,20.197174873223677,19.836552665166494 +1978,12,18,11,0,685,93,10.5,383.27058065254727,55.89989386435369,64.92826284261416,155.67700386230143,0.0,59.428030481726019,496.08628158180852,1.0,59.428030481726019,239.74526481372769,1.5,7.2000000000000002,5.7000000000000002,471.49201957823374,472.18023679348306,472.56489011849271,473.95549791404437,475.0983008531698,475.55666931325254,35.929951508488394,36.692237438504044,36.463080331140404,35.794846243666868,34.90007554229053,33.982452277362846 +1978,12,18,12,0,798,79,11.5,460.118744967297,51.621595960953805,61.47172362915513,170.6003677217853,0.0,72.103334585623642,591.41440335427785,1.0,72.103334585623642,287.10726733270394,1.5,8.9000000000000004,7.2000000000000002,570.15320638289677,570.72420702506588,571.03269797388703,572.43994950332149,573.60356216292882,574.06580546187092,44.674609772094044,44.714849676108379,43.571332051078819,42.261528675990149,41.254342573511074,40.492649161006177 +1978,12,18,13,0,94,262,12.5,307.35903262983652,51.215569918370974,61.148385036274725,186.28323649658606,0.0,77.989600292560283,338.360679347553,1.0,77.989600292560283,189.55467545351311,1.5,8.9000000000000004,6.7000000000000002,319.08977988073241,321.86650895906149,323.48833964547129,323.72101634043781,323.93175555743926,323.99824124388613,46.261408098481368,46.173103573811915,45.796725416452382,45.390589197443333,44.961749007542515,44.509862892881202 +1978,12,18,14,0,216,182,13.5,276.66481907960861,54.7686950047612,64.00689060416916,201.4484808322822,0.0,62.02292192275894,320.29805454613381,1.0,62.02292192275894,171.51421620600905,1.5,7.7999999999999998,5.2000000000000002,302.05079980494145,304.00107702606766,305.13725912076166,305.64300920737776,306.07010080618466,306.2308368382196,36.860585176736024,37.048669445365029,36.836182476488133,36.48136945261335,36.005286776299776,35.492291184605925 +1978,12,18,15,0,54,161,14.5,179.78191717800718,61.59322064827314,69.64637618834601,215.10050585854768,0.0,46.546718615910287,196.01367178089984,1.0,46.546718615910287,110.73571377169887,1.5,7.2000000000000002,4.0999999999999996,181.53877135349626,183.38629846629482,184.4677711950896,184.56328174024463,184.6528785409028,184.67807120406735,27.124816090270858,27.2230453330098,27.270972076442135,27.278540165547341,27.133370962592547,26.839772303542372 +1978,12,18,16,0,223,83,15.5,131.51614290753929,70.72917837824937,77.43417043511882,226.91362932209262,0.01118652092216679,21.214025797991351,166.88925253842001,1.0,21.214025797991351,82.110073699521635,1.5,7.7999999999999998,2.1000000000000001,139.56714256082574,146.26091532224225,146.78849671234337,147.23517251553642,147.6026109054815,147.74940797894055,12.483854486135225,12.522972812440692,12.501806323838935,12.55841511326604,12.596133400427345,12.49551308686819 +1978,12,18,17,0,61,22,16.5,26.54228413370997,80.22591009108046,85.72959306348204,236.16020864767862,0.3420536113668773,5.89682931700343,35.94504322184082,1.0,5.89682931700343,16.697694636019541,1.5,10.0,2.6000000000000001,16.8259642177917,17.082480281363694,27.519813131859731,28.224815499127107,28.337394068167789,28.382529324674255,3.472483579419213,3.4850163212744625,3.4792248515779396,3.4972930524145065,3.5108253648069989,3.4834377830707548 +1978,12,19,8,0,24,23,7.5,24.371813344880223,81.3520021722011,86.72325095742318,122.86302198318006,0.42979329521859233,6.7923284447405896,27.461636933176788,1.0,6.7923284447405896,14.97234518779824,1.5,-0.59999999999999998,0.0,19.62187205467707,19.921014365711581,21.620916547481002,23.716124784827539,23.71853090626281,23.717742396867653,3.97338617664591,3.9669905588941594,3.9603389930426434,3.9546914203908532,3.9377946088657056,3.9064509813084474 +1978,12,19,9,0,28,72,8.5,77.210001188442462,72.85139058664709,79.2763921020785,130.8544662173971,0.053396136250807656,20.357547348925472,84.188035758945801,1.0,20.357547348925472,47.48506244195783,1.5,1.1000000000000001,2.1000000000000001,70.051309850006746,76.349807033402143,76.873602725642485,76.892720468118227,76.913727229403278,76.917084871306855,11.911562510008366,11.894674932382445,11.8746942847515,11.860561820455967,11.813265865870409,11.719028944163854 +1978,12,19,10,0,4,89,9.5,90.293805617004054,63.349869493082096,71.12821984519219,142.29712195293598,0.0,27.438052128172984,90.540185815156818,1.0,27.438052128172984,55.090122042713539,1.5,5.0,3.6000000000000001,83.949257128750673,85.148128146987617,85.851177687125087,85.722190648753624,85.625171653998663,85.577741150847871,16.015847927781024,15.979716257253425,15.960354912767773,15.920604650247626,15.825550709308811,15.694489106954148 +1978,12,19,11,0,9,175,10.5,178.80508989014567,55.96915919567315,64.98928368722223,155.56890642898148,0.0,52.388417240018072,183.33978672826967,1.0,52.388417240018072,109.30561995418849,1.5,6.0999999999999996,3.1000000000000001,170.85463218324713,173.05016636857371,174.33673983242059,174.15039388032923,174.01377270039237,173.94334350221916,30.672822627614636,30.638014697687954,30.576030992014314,30.446658763946143,30.211877220122826,29.930280122397182 +1978,12,19,12,0,11,172,11.5,177.24716411839259,51.6631948723055,61.50937747105869,170.47626133587133,0.0,52.468967408227712,180.63993029345514,1.0,52.468967408227712,108.34088629937196,1.5,7.7999999999999998,2.6000000000000001,168.5492102167361,170.75230798422589,172.04332231796974,171.854963118668,171.71689722955125,171.6457821650697,30.762883318877225,30.684282628288106,30.584577059256958,30.441406430182095,30.220661554249045,29.95986195448674 +1978,12,19,13,0,14,221,12.5,227.75329578363542,51.223565087456805,61.15915386503797,186.1521310461288,0.0,65.80364356714955,235.12069781954816,1.0,65.80364356714955,139.34360848916319,1.5,9.4000000000000004,3.1000000000000001,219.90084051800423,222.60192500102147,224.18408932594224,223.98401640643488,223.84024310095401,223.76319106874413,38.646706272720024,38.543395933457525,38.385434186279539,38.177692471747193,37.88362440120293,37.551792936854255 +1978,12,19,14,0,0,101,13.5,101.0,54.74425532772731,63.99126029932813,201.3213816601991,0.0,31.378079263786013,100.12840331983577,1.0,31.378079263786013,61.63092286507456,1.5,8.9000000000000004,2.1000000000000001,92.946130973377265,94.322032809999712,95.128935556148363,94.988793607641156,94.883849226283203,94.832075815407535,18.339215411434584,18.293442930291071,18.260420666645707,18.204265775773127,18.090150231420683,17.942268105742787 +1978,12,19,15,0,12,108,14.5,112.18124169844393,61.54302629801695,69.6082669067823,214.98449411941388,0.0,33.278116250113335,114.07583587493991,1.0,33.278116250113335,68.489418730910941,1.5,8.3000000000000007,1.5,105.8844364485545,107.31424652623222,108.15245202265845,108.0062546011446,107.8968359396319,107.84276422238818,19.418014951170946,19.392908089695197,19.379094039605242,19.332473399149048,19.209174195151366,19.040109826630744 +1978,12,19,16,0,5,91,15.5,92.092517003987183,70.66081354566803,77.37885427722775,226.81022285939372,0.010281129597154723,26.347446600379548,95.294577353885714,1.0,26.347446600379548,56.225774755246064,1.5,8.3000000000000007,0.0,86.649261903245289,88.501416502898223,89.182131983919263,89.062272917567824,88.972374541083866,88.928164783991562,15.392080596390215,15.351049215710944,15.325226146625827,15.28262512860673,15.191604372813611,15.069946043141181 +1978,12,19,17,0,3,17,16.5,17.225082564509467,80.18497814950508,85.69719637397792,236.09931992091674,0.33980927621583107,5.3494947540172282,17.22108887674046,1.0,5.3494947540172282,10.485258417836404,1.5,7.2000000000000002,2.1000000000000001,15.515244661665545,15.751780486332018,16.199703521680213,16.179331859015107,16.154168149733607,16.142325946056207,3.1237400375232913,3.1142727709581162,3.1090404867407484,3.0989708096710498,3.0787658265394442,3.0541376131719939 +1978,12,20,8,0,0,12,7.5,12.0,81.39990509557188,86.76813356947041,122.83918402785214,0.434486382546657,3.7740484804790144,11.790746640800112,1.0,3.7740484804790144,7.3000233422256233,1.5,4.4000000000000004,2.1000000000000001,10.951934313147124,11.118900777617576,11.216833411257182,11.192368016353175,11.173582690859352,11.164799916325123,2.2035742875160409,2.1967257114668044,2.1930353833158365,2.1857181230486598,2.171203622669335,2.1538357197438214 +1978,12,20,9,0,4,81,8.5,81.738450130743672,72.94612342383739,79.36145694635702,130.77693364074702,0.05575740738422556,23.307119375624197,85.297258042091073,1.0,23.307119375624197,49.902579869064283,1.5,5.0,2.6000000000000001,74.20258005277023,78.681693189224447,79.283760923047979,79.176680120183647,79.096303048469281,79.056841331947652,13.615750057058811,13.579315339885975,13.556469552759218,13.51860260517117,13.437856621347228,13.330221232847618 +1978,12,20,10,0,4,137,9.5,138.28902056086361,63.43232404947081,71.20063883918549,142.2033803508302,0.0,40.289136751944476,142.04226726790614,1.0,40.289136751944476,84.488793063758678,1.5,5.5999999999999996,4.0999999999999996,131.58867876082337,133.3124979666018,134.32305122204033,134.16278827018169,134.04385696025543,133.98401653876391,23.488887552320737,23.457910094544069,23.448121964617396,23.408110846164462,23.276045554329073,23.071784264466064 +1978,12,20,11,0,4,111,10.5,112.68773191305769,56.03175776553226,65.04331523542635,155.45744727759768,0.0,34.392412313155205,112.8009101412629,1.0,34.392412313155205,68.785864293381834,1.5,5.5999999999999996,3.1000000000000001,104.82931309347987,106.32163717823443,107.19665979835385,107.04702714340871,106.93521114625131,106.87979842626834,20.10632527293215,20.063615613296189,20.028001349618915,19.961349850087732,19.828932477895457,19.660655572964 +1978,12,20,12,0,1,123,11.5,123.47655194089572,51.69742576651054,61.53955507435489,170.35052980614537,0.0,37.99399823758381,123.12628623273628,1.0,37.99399823758381,75.386540560347783,1.5,6.7000000000000002,3.1000000000000001,114.43195750390451,116.08254335018219,117.05037352936712,116.89217920210631,116.77445512205202,116.71562757000669,22.224768311499567,22.166592472987805,22.117042865427333,22.041063368237889,21.900316637569738,21.720552684655498 +1978,12,20,13,0,0,143,12.5,143.0,51.224024763090654,61.162318798903804,186.02141518556135,0.0,43.676173585512977,143.20382562675329,1.0,43.676173585512977,87.339025826546433,1.5,6.7000000000000002,3.6000000000000001,133.19362219467325,135.07907461888024,136.18449434317932,136.01197539936493,135.884223234237,135.81973064182012,25.561858970719626,25.494150495885613,25.430598561683809,25.338219267975326,25.173625637492659,24.96621761912688 +1978,12,20,14,0,0,125,13.5,125.0,54.71269461297299,63.96828320896387,201.19653655553842,0.0,38.300087357627383,124.92851863138877,1.0,38.300087357627383,76.316035554765008,1.5,6.0999999999999996,2.6000000000000001,116.09239032560849,117.75464192934243,118.72930668608544,118.56868290226635,118.44905193313284,118.38936593452547,22.397292160313956,22.346708649130417,22.303114028321961,22.227939713441341,22.081593687968226,21.896156701645733 +1978,12,20,15,0,1,96,14.5,96.349171729406123,61.48647579344067,69.56333724113178,214.87215593966152,0.0,29.54154793497505,96.212003357891646,1.0,29.54154793497505,58.788092026990668,1.5,5.5999999999999996,3.1000000000000001,89.26377477833897,90.554600052638932,91.311555979149375,91.175488181574877,91.073303972732631,91.023180419062584,17.248832944370466,17.212464704605374,17.19069459916555,17.14511961713615,17.039325395694803,16.897356020162508 +1978,12,20,16,0,1,55,15.5,55.219550581640618,70.58695514934801,77.3173621280533,226.71146519997774,0.009176316145240735,17.076628879886222,54.832679118191784,1.0,17.076628879886222,33.658888073543409,1.5,6.7000000000000002,3.1000000000000001,50.693477505293458,51.516867445827813,51.959658432890556,51.870289793996101,51.802563011448648,51.769985859878055,9.9742101521185607,9.9460496063566595,9.9293483764403003,9.8998291873967847,9.8385600516232028,9.75994207253685 +1978,12,20,17,0,0,24,16.5,24.0,80.14226161472335,85.66182451987284,236.04634353735085,0.3372483566882318,7.4139545418000719,24.036224230719505,1.0,7.4139545418000719,14.621446189499736,1.5,7.2000000000000002,4.0999999999999996,21.500122788832915,21.827900342664556,22.555251706597332,22.52656269586732,22.49492311166043,22.479852441489534,4.329917210026748,4.3173255208480334,4.3100742521256974,4.2967924004313378,4.2696187348873931,4.2354856104593051 +1978,12,21,8,0,0,11,7.5,11.0,81.44641040565563,86.81038192544797,122.80715318240604,0.4388595842454813,3.4595444404390974,10.806846240371202,1.0,3.4595444404390974,6.6903498840003692,1.5,14.4,5.2000000000000002,10.039273120384857,10.192325712816103,10.282097293652409,10.259198178375721,10.241595704373873,10.233386167734523,2.0198633065140514,2.0135229052603405,2.0101400065241743,2.003352705993541,1.9899494565593128,1.9740284918796613 +1978,12,21,9,0,1,84,8.5,84.183249396538145,73.03603364657333,79.44091451396659,130.6940614030817,0.05790904328508257,23.958980520173338,87.975610449330304,1.0,23.958980520173338,51.401363601917282,1.5,12.800000000000001,6.7000000000000002,76.277021481776998,81.094050581742053,81.712900409358838,81.604741413624481,81.523668288450608,81.483746488120801,13.996880636531856,13.959681310842063,13.936195614468197,13.897591017094584,13.81497991166281,13.704327106338663 +1978,12,21,10,0,241,151,9.5,228.40036262428177,63.50900035370161,71.26670723295574,142.1051255229171,0.0,44.544344337277501,275.33390527685674,1.0,44.544344337277501,142.41692752797786,1.5,13.9,6.2000000000000002,252.33423295542275,253.87821744641377,254.77991478019567,255.48873407106868,256.07403626490668,256.30558617005045,25.801183465437109,26.051581895703126,26.220437631178168,26.453867660062294,26.510007475243615,26.170964006345379 +1978,12,21,11,0,149,145,10.5,207.75717706278277,56.0876447544114,65.09031638082071,155.34272151814716,0.0,47.623642969230119,237.91280068202826,1.0,47.623642969230119,128.95817704994349,1.5,13.9,7.2000000000000002,223.14733778576189,224.76043019737924,225.7017369459823,226.14429431896298,226.51567364437483,226.65719372444289,28.153837328278396,28.335793361249053,28.255582267729206,28.081357844075814,27.794222905198446,27.405570630278074 +1978,12,21,12,0,688,105,11.5,432.62827947277771,51.72426689959265,61.56223553799798,170.22327048801225,0.0,70.383559863554837,552.26275603690942,1.0,70.383559863554837,270.52848712191263,1.5,13.9,9.3000000000000007,530.92556060110712,531.67030180657127,532.08321935531853,533.61640345201863,534.88108290654259,535.38581853868698,43.474397356131853,43.540300323095998,42.500883120960509,41.355619692305972,40.485751521441465,39.773220293666462 +1978,12,21,13,0,837,61,12.5,464.76692029819594,51.21694972778091,61.157879431515575,185.89118676417763,0.0,72.223412201132973,597.24354287216397,1.0,72.223412201132973,289.397788838282,1.5,13.9,9.3000000000000007,577.05772635480241,577.58589103140093,577.86862180988066,579.07311859505307,580.07263290328694,580.46656446693601,44.829727471236652,44.743888130957686,43.48469105633248,42.124072295540387,41.075814472116321,40.37425603945298 +1978,12,21,14,0,854,57,13.5,432.19960757266699,54.67403637299398,63.93797932987913,201.07404339026613,0.0,63.409523881160204,562.21409920519727,1.0,63.409523881160204,269.22890191207551,1.5,13.300000000000001,7.2000000000000002,538.33527530399726,538.83735418025003,539.10939703890949,540.27121052777784,541.2313094607274,541.61259189255338,38.72136615319156,39.338227449711688,38.83536446269796,37.852406532706169,36.698329975868489,35.745243773320276 +1978,12,21,15,0,784,48,14.5,322.4135622460222,61.42361505205376,69.51162681107962,214.76358682352833,0.0,39.55510356004595,432.98912255662094,1.0,39.55510356004595,201.31178442870061,1.5,13.300000000000001,7.7000000000000002,402.35783457271543,402.79772151242344,403.04226205777701,404.08271569241725,404.93359401588168,405.27777206179809,22.573296338359928,23.478241857198736,24.017476093291727,24.349879936547705,24.165631332742521,23.491411554982161 +1978,12,21,16,0,638,36,15.5,176.80767217446547,70.50766809565883,77.24975060088795,226.61744615125454,0.007876286900684891,8.9295169412825715,258.65621449954034,1.0,8.9295169412825715,110.88719083678173,1.5,12.199999999999999,5.2000000000000002,210.66260691019539,220.42208830322465,220.6007468382889,221.35043436992987,221.95988954047252,222.21028176297131,5.3474430694010335,5.4388024014865461,5.428977755277276,5.5458990080037154,5.6744052356984636,5.6259270234712755 +1978,12,21,17,0,260,20,16.5,39.84059815027625,80.09779343644689,85.62350489852123,236.00133304201276,0.33437826047608543,4.674810714941219,71.615856017907078,1.0,4.674810714941219,25.426828752160979,1.5,10.6,5.7000000000000002,12.613754608283218,12.806048665078338,48.667127317200681,49.220799627602453,49.487760931287525,49.597239810756442,2.7896022352058814,2.8286710961657899,2.8239686660782248,2.8750946152227539,2.9308391020721878,2.9083070668411612 +1978,12,22,8,0,229,11,7.5,23.583728957826139,81.49148375642879,86.84996548083608,122.76696464229765,0.4429023742212615,2.5227532742007153,48.072042540093491,1.0,2.5227532742007153,15.196238847725711,1.5,-1.7,2.1000000000000001,6.7609184288078916,6.8639868291259942,14.843838614038575,30.286169196066961,30.485261416310426,30.567161066864664,1.5168589146390454,1.5469425875128247,1.5444090652506659,1.5834610222275216,1.6276396794244752,1.6154724584043287 +1978,12,22,9,0,678,24,8.5,147.38471827047977,73.12104239653941,79.51469370662116,130.60592983943354,0.05984396935505119,6.9846902611284527,227.26740675229522,1.0,6.9846902611284527,92.374565135958463,1.5,0.59999999999999998,2.1000000000000001,123.90454039247098,184.95509075678495,185.09159022953986,185.69481931775888,186.1851572957506,186.38666322764868,4.1854612772509538,4.2591905208403018,4.2514319769135209,4.3455962882016799,4.4492985154690894,4.4108999359822496 +1978,12,22,10,0,840,34,9.5,302.94870885445516,63.57983545988365,71.32636849328813,142.00244718121687,0.0,30.078038555474919,415.66891487285761,1.0,30.078038555474919,188.71009082852217,1.5,4.4000000000000004,2.6000000000000001,381.35124290375745,381.66242876156309,381.83560385214082,382.65336748276411,383.32193895228608,383.59257735013148,16.835366117661394,17.390762599217798,17.868584780176295,18.342812479364188,18.485436808705717,18.025602137693149 +1978,12,22,11,0,911,42,10.5,425.12731866537837,56.13677859353714,65.13024929055369,155.22482466546862,0.0,60.72804306316506,558.94809940798086,1.0,60.72804306316506,264.26489525947994,1.5,4.4000000000000004,3.1000000000000001,533.60613967688982,533.97506681115351,534.16859458175406,535.11123458591078,535.89124803250456,536.19893868779195,36.655275632301723,37.568958860868612,37.385079941460489,36.540439621451299,35.3650156110984,34.25094385101103 +1978,12,22,12,0,941,46,11.5,493.88882867656457,51.743699709009896,61.577401268401964,170.09458086150758,0.0,74.686621167802514,638.72074278174466,1.0,74.686621167802514,306.72420763831644,1.5,6.7000000000000002,2.1000000000000001,617.84603331066853,618.24140552151425,618.44395805637782,619.43335207035238,620.25982669637108,620.58143193745218,46.365230104753145,46.339162686647491,45.074209254250547,43.527069456342041,42.302539507131236,41.480871468591928 +1978,12,22,13,0,940,46,12.5,499.62691596417608,51.20234394149026,61.14583868843812,185.76154377236517,0.0,75.479949472210052,645.05870575497852,1.0,75.479949472210052,310.24946388721872,1.5,7.2000000000000002,3.6000000000000001,624.7886246623533,625.18289210327407,625.38426648518566,626.37144864081858,627.19636481772261,627.51687093432997,46.94582813778765,46.809748619188909,45.423413111382985,43.866678018960151,42.648512702882385,41.893186070764116 +1978,12,22,14,0,923,43,13.5,449.0584716698217,54.62830743020945,63.90037203423899,200.95400003762614,0.0,63.942803897047874,586.83204932598176,1.0,63.942803897047874,279.02695930220881,1.5,8.3000000000000007,3.6000000000000001,563.14664463716724,563.52085601917463,563.71642326187225,564.67013348204023,565.46201438422759,565.77338440404606,39.092379103201012,39.715627817862512,39.183188255783115,38.090602456355384,36.810531768675311,35.811252873412108 +1978,12,22,15,0,863,36,14.5,338.88944153303885,61.35449330702219,69.45317856754596,214.6588817227124,0.0,39.487101885107059,457.97321055151559,1.0,39.487101885107059,210.92772280304263,1.5,8.3000000000000007,4.0999999999999996,426.53835084002799,426.86407880210385,427.04043185619309,427.89258583474924,428.59077912860249,428.87180332400442,22.498076417294751,23.466788374805038,24.024491472496003,24.311155344556777,23.99622381106056,23.282779916346225 +1978,12,22,16,0,736,27,15.5,190.35931911044284,70.42302029659395,77.1760793961753,226.5282541233629,0.006385576135050481,8.0764734698602592,280.41217928934401,1.0,8.0764734698602592,119.01902102660797,1.5,8.3000000000000007,3.6000000000000001,230.39225411025203,239.15387194891991,239.30458109924959,239.97990390005003,240.52891320389665,240.75446317058174,4.835589327336562,4.9179957532103575,4.9088505271595952,5.0136920462506964,5.1282954299858714,5.0827956404899304 +1978,12,22,17,0,376,14,16.5,42.962386242234103,80.05160766486148,85.58226634074983,235.96433752673508,0.33120670048114575,3.6536242659244742,83.630404938341343,1.0,3.6536242659244742,27.410784730615198,1.5,5.5999999999999996,3.1000000000000001,9.3866148213647058,10.114638478636937,55.455155526103638,55.804079486559083,56.087599611002169,56.204214009673869,2.1956298692480956,2.2384581737478992,2.2347002561083023,2.2901017925862712,2.3524894307087969,2.3343048532491877 +1978,12,23,8,0,120,15,7.5,21.516947944543354,81.5350917342611,86.88685499022215,122.71865832377816,0.44660443724705506,3.6036149204477561,35.773288871974358,1.0,3.6036149204477561,13.719840047727439,1.5,-2.7999999999999998,0.0,10.119716283297066,10.273992603388528,14.8464146383839,24.528606266849863,24.670722665672614,24.728710291646486,2.1372881822438692,2.1569507665485923,2.1533951459858165,2.1796709845580406,2.2066332909563702,2.1897461833091474 +1978,12,23,9,0,542,36,8.5,134.00209214341527,73.2010735098341,79.58272623584001,130.51262117825823,0.06155540728336,8.9568777382859892,202.11056400017776,1.0,8.9568777382859892,84.424859106914056,1.5,0.59999999999999998,0.0,111.89361885186787,164.9629062283249,165.15760730508026,165.86434770435901,166.43903580086919,166.67500266054091,5.3569634033719939,5.4424173543153733,5.4329214056000303,5.5431939794212708,5.6641847362910909,5.6178710914803869 +1978,12,23,10,0,716,56,9.5,284.61682949957878,63.64476957315296,71.37956925137149,141.89543603875512,0.0,33.530305286602157,386.66616182681014,1.0,33.530305286602157,178.13711002977027,1.5,4.4000000000000004,0.0,353.77874977388603,354.23809823143745,354.49810564372956,355.56974046035936,356.44476905272478,356.80014854455408,18.864363712582495,19.443962104981495,19.934523897490781,20.460501178560115,20.672260948480954,20.200323300569632 +1978,12,23,11,0,800,69,10.5,405.0295630078927,56.179120999024846,65.16307944342093,155.10385254969063,0.0,60.049094122801044,529.57606989787155,1.0,60.049094122801044,252.8308064113302,1.5,8.3000000000000007,2.1000000000000001,503.99563490876938,504.51371072564081,504.7964878419607,506.07399428538662,507.12494936249448,507.54516246506938,36.239512150545679,37.132683927144548,36.959183887014945,36.245327886375932,35.235567084443659,34.18949941298667 +1978,12,23,12,0,750,80,11.5,436.89042570528557,51.75570882954175,61.585037997603116,169.96455844413816,0.0,68.96406143791387,561.22596602580461,1.0,68.96406143791387,272.84088133392123,1.5,10.0,2.6000000000000001,540.5154089981512,541.09779861980803,541.41448588997241,542.83246870842413,544.00365632300623,544.4699434892575,42.710438149869013,42.759522441116772,41.68066431540003,40.460627385558851,39.527770907587318,38.80527090115465 +1978,12,23,13,0,540,150,12.5,410.75625861459793,51.18021454077194,61.126202826285805,185.63258425373002,0.0,73.670421941408421,510.77060946658776,1.0,73.670421941408421,256.60554232295436,1.5,11.699999999999999,2.1000000000000001,489.60430376985312,490.86132355777295,491.57830286669605,492.96570249940902,494.11255973216674,494.56760481420298,45.11433944570863,45.095240983742372,44.131041967942494,43.174794717162357,42.439776845262138,41.82408995181359 +1978,12,23,14,0,536,135,13.5,371.1812694737439,54.57553789839041,63.85548804896714,200.83650428058203,0.0,64.047101803399528,465.99161582813434,1.0,64.047101803399528,231.92176166082447,1.5,12.800000000000001,0.0,443.23189330775978,444.39191872925005,445.0560114447602,446.32628231107981,447.37378659293108,447.79120051083748,38.720973294686523,39.208378016353748,38.825543706642499,38.168154356516581,37.373376477556072,36.598607348727391 +1978,12,23,15,0,243,146,14.5,231.54500448765737,61.27916306716049,69.3880387506771,214.5581349394886,0.0,46.331246123355065,278.46258202743661,1.0,46.331246123355065,144.45140455748665,1.5,11.699999999999999,2.1000000000000001,257.5889522134662,259.07755343424549,259.94487494176286,260.68632239090817,261.29826307059898,261.54058676939235,26.933617373254208,27.340283685142925,27.530543551216304,27.686193540825318,27.569328676714083,27.146672860346904 +1978,12,23,16,0,0,49,15.5,49.0,70.3330826097385,77.09641124177345,226.44397603086395,0.004709018362836792,15.4002900246746,48.213679651530896,1.0,15.4002900246746,29.858530035282488,1.5,10.0,2.6000000000000001,44.732222812875072,45.414782047042941,45.814391729631907,45.732167322575243,45.669770211089599,45.639844118880241,8.9948243076816325,8.969208960459385,8.9541536660209076,8.9272688497989172,8.8717031273714984,8.8008447148094877 +1978,12,23,17,0,25,27,16.5,28.944886927224324,80.00373946187923,85.53813912427579,235.93540154993983,0.32774166418289286,8.0533568556843136,32.578318503413911,1.0,8.0533568556843136,17.781303722178198,1.5,7.7999999999999998,2.6000000000000001,23.245248419837939,23.757151998297868,28.502604805680598,28.503252151410994,28.505962735574538,28.504968851015946,4.7110258673608483,4.7034218748646026,4.6955311623637641,4.6887981436380164,4.6687106133190319,4.6315208410174638 +1978,12,24,8,0,2,12,7.5,12.107424869705628,81.57720182716719,86.92102247538493,122.66227880442324,0.4499557039234785,3.7754450037851903,12.084743029584791,1.0,3.7754450037851903,7.3666579916254706,1.5,2.2000000000000002,2.6000000000000001,10.951936405830724,11.118902870301175,11.267380840236255,11.360895971233894,11.342264221769494,11.333544768374395,2.2044213190125719,2.197596916924677,2.193904389602535,2.1866163996196879,2.1721341995045571,2.1547544487382089 +1978,12,24,9,0,2,34,8.5,34.359495019381825,73.27605358506848,79.64494669096574,130.41421945038618,0.06303691584624678,10.697810796609174,34.003666206176398,1.0,10.697810796609174,20.923929323160564,1.5,3.2999999999999998,2.6000000000000001,31.320419598757059,31.96985393901911,32.247327810352537,32.184835060351347,32.137138235667138,32.114545037690782,6.247340801406625,6.2288370593978284,6.2183750536608953,6.1987867988029022,6.1590586899655717,6.1098150551981005 +1978,12,24,10,0,6,66,9.5,67.911149411497334,63.70374610363929,71.4262593591875,141.78418371518026,0.0,20.874840412633429,67.67036390240078,1.0,20.874840412633429,41.411544119171822,1.5,3.2999999999999998,2.6000000000000001,62.757017481263809,63.672975139171356,64.210152008962368,64.105662594251157,64.026710550396857,63.988488995244545,12.186728154681608,12.156245461270542,12.139585442848816,12.107042042775985,12.033826981895393,11.935388549267888 +1978,12,24,11,0,6,91,10.5,93.517779456770711,56.21463700343421,65.18877566480418,154.97990122494824,0.0,28.720629775736072,93.346196952263782,1.0,28.720629775736072,57.064393095932623,1.5,3.8999999999999999,3.6000000000000001,86.728432127663368,87.97710327853305,88.709283265111026,88.578399177737566,88.480220512898072,88.431954562419662,16.787813895659994,16.751036476648267,16.72178279494295,16.666417454764563,16.555912786552355,16.415873644327835 +1978,12,24,12,0,1,114,11.5,114.47585241499502,51.760282106340085,61.585134798061404,169.83330070278697,0.0,35.376478292451836,113.86174230991092,1.0,35.376478292451836,69.878763104893551,1.5,4.4000000000000004,4.0999999999999996,105.77533727788668,107.31781372194413,108.22231093763322,108.0716292335598,107.95926417130414,107.90335131909137,20.688232418167825,20.633781215552819,20.589941582122091,20.521806045479096,20.392447912389049,20.225988878234006 +1978,12,24,13,0,2,117,12.5,117.96659589337219,51.150571834964715,61.09898142841411,185.50440621746154,0.0,36.342222724537528,117.53494314615612,1.0,36.342222724537528,72.017002610859493,1.5,5.0,3.1000000000000001,109.2306923534593,110.81113138978039,111.7378456265963,111.58487789164971,111.47093187100793,111.41410487937395,21.257681661116017,21.200861330173918,21.153143344658364,21.081214647844234,20.947158313833935,20.776179470837626 +1978,12,24,14,0,6,127,13.5,129.64871964563832,54.515761161327625,63.80335743180211,200.72165372148336,0.0,39.311626987632835,130.47761612664954,1.0,39.311626987632835,79.170195992826876,1.5,6.0999999999999996,5.2000000000000002,121.39021084943124,123.07656852160815,124.06517083261828,123.90292772421353,123.78228341247602,123.72190857583863,23.003248226875897,22.955085238566692,22.905532252786607,22.818299342694562,22.658148071281573,22.462579044919909 +1978,12,24,15,0,0,91,14.5,91.0,61.197680074260376,69.31625684467923,214.46144003176087,0.0,28.106460587228973,90.484813907202181,1.0,28.106460587228973,55.514692083563261,1.5,7.7999999999999998,7.2000000000000002,83.94813886076318,85.180712736457508,85.90355504871674,85.772094161415836,85.673259926264279,85.624896124796095,16.413543286805833,16.376094320203883,16.353183071138993,16.308607023867122,16.208056582631404,16.074678516568802 +1978,12,24,16,0,0,62,15.5,62.0,70.23792877566714,77.01081183030759,226.3646971973756,0.0028517199791987984,19.039104147873889,61.795631208932583,1.0,19.039104147873889,37.800742916678601,1.5,10.0,4.5999999999999996,57.129063848969075,58.004207167161859,58.497729121445921,58.400325722346807,58.326625883534575,58.291055607517613,11.120833117523073,11.089734192817849,11.071110401766733,11.038570075795279,10.970709784687068,10.883035165994103 +1978,12,24,17,0,0,20,16.5,20.0,79.95422511133087,85.49115498582607,235.91456506673885,0.3239913830385431,6.2900808007983589,19.662327530420075,1.0,6.2900808007983589,12.177788694031232,1.5,11.699999999999999,5.7000000000000002,18.253223855245192,18.531501296029287,18.694722352095301,18.657860078850312,18.62971992374603,18.616396026028578,3.6732846554580654,3.6623883322131663,3.6562385963837358,3.644704184240092,3.6213274177472337,3.5923841180806138 +1978,12,25,8,0,179,12,7.5,21.516509646089943,81.61778239197199,86.95244119100491,122.59787525307377,0.4529463859919414,2.6320486705937789,41.4618520178308,1.0,2.6320486705937789,13.848251578442955,1.5,5.5999999999999996,5.7000000000000002,7.1841772507158295,7.2936992307417885,12.695400112248549,26.482093432324724,26.65963964368251,26.732575456698132,1.5763420670672741,1.6027820946099365,1.6001592369854292,1.6346576329034128,1.6731138849705181,1.6605686987239088 +1978,12,25,9,0,628,27,8.5,139.27385157150445,73.34591204892992,79.70129260434132,130.31081039455142,0.06428243140414512,7.5554429940047774,213.95776338122295,1.0,7.5554429940047774,87.513063654193928,1.5,6.7000000000000002,5.2000000000000002,113.15965822008985,173.55279054280265,173.70764851480277,174.35742011402948,174.8855992354365,175.10264759942189,4.5273716914516928,4.6066701628538347,4.5984482457364617,4.7001380566900206,4.8124407909469458,4.771994937378687 +1978,12,25,10,0,795,38,9.5,290.69938463749293,63.75671171789724,71.46639194292801,141.66878264008756,0.0,29.718661110666609,398.02911832401395,1.0,29.718661110666609,181.36212155541895,1.5,8.9000000000000004,8.1999999999999993,364.42593816798103,364.77590705525159,364.97229344821642,365.85828585395751,366.58209920998252,366.87567145777814,16.668122725675538,17.180293768607722,17.629475217007982,18.101393962187299,18.294830588587889,17.852748994030467 +1978,12,25,11,0,739,89,10.5,398.88949542543702,56.24329498468583,65.20731015839057,154.8530668765073,0.0,61.018023333575613,518.30949458591419,1.0,61.018023333575613,249.25500411678652,1.5,10.0,7.2000000000000002,492.49579104964471,493.14883704200156,493.51168821971174,494.86530693295128,495.97814396279716,496.42375687804935,36.780533247561962,37.649192820029207,37.479720860263413,36.815759752076147,35.867887955140581,34.850638749402663 +1978,12,25,12,0,720,88,11.5,430.69608435019859,51.757410605113314,61.5776840940664,169.70090496486978,0.0,69.108651515882855,551.34574463716228,1.0,69.108651515882855,269.23453643901723,1.5,10.6,7.7000000000000002,530.39082859300731,531.05510012065542,531.42057609499761,532.91403545671972,534.14624508789143,534.63783854273936,42.742662316215245,42.803818963404467,41.755774211145535,40.591214634032674,39.705975657078405,38.995307598670074 +1978,12,25,13,0,819,73,12.5,469.25635723970038,51.113429299455746,61.06418739718414,185.37710755112263,0.0,72.610326600643774,603.53225411809012,1.0,72.610326600643774,292.55422313498616,1.5,10.6,7.2000000000000002,583.00898446576707,583.5172969896156,583.78800858669274,585.13075736319706,586.24238510788257,586.68268628928081,45.112366986812248,45.042014306382093,43.7659877265327,42.407559292685313,41.371591067701296,40.663230802501666 +1978,12,25,14,0,841,48,13.5,420.04359511005373,54.44901384878679,63.74401354406711,200.6095456931412,0.0,64.566467365353233,547.08068260551647,1.0,64.566467365353233,261.39635821254086,1.5,11.1,8.1999999999999993,524.67628770377019,525.09524525711345,525.3172052601966,526.3506710713923,527.20746766838477,527.54555572377456,39.537011417766323,40.115914558033268,39.539295201724194,38.42922022292526,37.18029669910419,36.204288319426844 +1978,12,25,15,0,843,41,14.5,339.83401846739525,61.1101032578268,69.23788552958392,214.36888972021373,0.0,40.293617450639047,457.29147614007024,1.0,40.293617450639047,211.74469384969794,1.5,11.1,6.7000000000000002,426.23260285762211,426.60482313280653,426.80852491804808,427.74539616155209,428.51242432968348,428.82176785095379,23.048543721976355,24.041309025567131,24.56861181968203,24.813263142949214,24.487859062833671,23.745710751843344 +1978,12,25,16,0,708,31,15.5,191.23623538511606,70.13763535279028,76.91934975365835,226.2905012632791,0.0008190304841044306,8.9411316967134944,279.01950487528359,1.0,8.9411316967134944,119.75153065476925,1.5,10.0,7.7000000000000002,237.6520186103777,239.02702909657714,239.20084453000902,239.9454860361144,240.55085840013984,240.79955455886187,5.3531277442229852,5.4438734358807608,5.433914164412541,5.5497623174952722,5.6766910033708182,5.6273749974595049 +1978,12,25,17,0,354,17,16.5,45.13577288815042,79.90310202759632,85.44134713148104,235.90186336951993,0.3199643020420719,4.1514002533041587,85.296613414500115,1.0,4.1514002533041587,28.757744052237566,1.5,8.3000000000000007,5.7000000000000002,10.808765741191014,14.687085406645862,57.365382142592502,57.718376734516553,58.00532804315575,58.123234437285589,2.4874911917762375,2.5303846719653755,2.5261367068753708,2.5817974478594858,2.6437690399978666,2.6232689030965264 +1978,12,26,8,0,42,15,7.5,17.211956028264289,81.65680262020088,86.98108558879277,122.52550134939746,0.4555670119215727,4.050127528793424,22.750563965292429,1.0,4.050127528793424,10.849508727191289,1.5,-1.1000000000000001,2.6000000000000001,11.617960030930556,11.795079250105264,13.402756397969219,17.636484290752136,17.715964113717241,17.747859049706356,2.3854885800064842,2.3944420179681423,2.3904780577378126,2.403360767337599,2.4132634906442529,2.3945396045736667 +1978,12,26,9,0,232,67,8.5,108.2761108252015,73.41058121929288,79.75170451369424,130.2024813596033,0.0652863077180817,17.416317317572545,142.32154163795548,1.0,17.416317317572545,67.592291951873634,1.5,1.7,1.5,91.967781649632087,120.72446906170128,121.1574948821501,121.52226602796154,121.8223541462221,121.94221992667542,10.248677141987093,10.280536984700714,10.263156711589046,10.309299099690437,10.339850740519681,10.257225287734054 +1978,12,26,10,0,156,125,9.5,174.49972404363294,63.80361638774374,71.49992345335762,141.54932595418194,0.0,37.776427385636985,203.44918631316051,1.0,37.776427385636985,108.2353074754168,1.5,5.0,4.0999999999999996,186.70524854406503,188.10907301192202,188.93001056359913,189.27655772162711,189.56695897444783,189.67779207108879,21.916553679078991,22.04362578141518,22.139309591681386,22.262246313614522,22.263097332027442,22.004862459787113 +1978,12,26,11,0,122,188,10.5,239.13708566483692,56.265066692276235,65.2186585346007,154.72344572648186,0.0,57.694217506847664,270.42163964615276,1.0,57.694217506847664,148.38789682003218,1.5,7.2000000000000002,2.6000000000000001,253.13953313860054,255.13567701980833,256.30100926822178,256.79768312208409,257.21557221473216,257.37374261699193,34.066561676916315,34.280403743897487,34.194221998445713,34.00078878259594,33.66724136742085,33.20186951478366 +1978,12,26,12,0,241,200,11.5,314.76348848498537,51.747088619419934,61.56268166972289,169.5674683289271,0.0,68.433410918596707,369.80535900545925,1.0,68.433410918596707,196.3663003031551,1.5,11.1,3.1000000000000001,350.46957285423906,352.39477634218554,353.51286425422131,354.51282505691427,355.34300823601814,355.66872093925781,41.151074824571744,41.185532974859598,40.667104538752994,40.152503368311528,39.718247895720964,39.222915288346996 +1978,12,26,13,0,73,210,12.5,245.36676583032997,51.06880356602789,61.021836942818894,185.25078593405797,0.0,65.070461598680609,266.17292683628904,1.0,65.070461598680609,151.22093270532491,1.5,12.199999999999999,5.2000000000000002,250.3913902466202,252.77513687502355,254.1682645274629,254.32342812379628,254.46758972352774,254.50994196279285,38.539954066631587,38.453932378665293,38.162630670159515,37.85558859401786,37.520147232378051,37.158329730699791 +1978,12,26,14,0,523,130,13.5,361.91039386982862,54.37533580979061,63.67749302020364,200.50027717144846,0.0,62.147112495285725,454.42443208933724,1.0,62.147112495285725,226.18165256552513,1.5,13.9,5.2000000000000002,432.47734563465622,433.58558821362539,434.2196142881852,435.4757789688793,436.51161293025052,436.92462138077008,37.665321487380616,38.082783222710681,37.649046139594276,36.968419379590223,36.207262949809909,35.480612725921283 +1978,12,26,15,0,325,101,14.5,216.65905023576863,61.016494687281735,69.15298063002837,214.28057579769055,0.0,37.396183745907017,274.31426409896426,1.0,37.396183745907017,136.11510096674596,1.5,13.9,4.5999999999999996,253.8699267010536,254.77527293586726,255.29850807902611,256.3117968759006,257.14108139568947,257.47613623595754,21.697521075330485,22.285293109578266,22.545806244205632,22.734349489837143,22.628502873480421,22.14167934926968 +1978,12,26,16,0,65,115,15.5,129.81840015785434,70.03228164964914,76.82209643462278,226.22147009658642,0.0,30.319795960858915,146.38912341047077,1.0,30.319795960858915,79.923308658197428,1.5,12.800000000000001,4.0999999999999996,131.63018014491101,132.95150295470066,133.72632607868786,133.78247631987966,133.83617331682876,133.8504676747468,17.745059592695949,17.723638450699646,17.693759816393413,17.677169128067391,17.611971776867165,17.470837629748978 +1978,12,26,17,0,101,25,16.5,33.119858195349238,79.85040876223843,85.3887502448288,235.89732703916542,0.3156690495674772,6.7113010414202217,47.290508415356157,1.0,6.7113010414202217,20.785791796187773,1.5,11.699999999999999,3.6000000000000001,19.024900855996368,21.094733513837966,36.27777148514118,36.43028460916333,36.555598535129079,36.605800943180967,3.9514602265432779,3.9652784488703396,3.9586593300850437,3.9785894791718879,3.9931577158149452,3.9618121002669002 +1978,12,27,8,0,177,11,7.5,20.242081192083173,81.6942325035473,87.00693128087347,122.44521519334977,0.45780846269268777,2.3805745156821292,39.699264934971154,1.0,2.3805745156821292,13.027425056817926,1.5,-0.59999999999999998,3.1000000000000001,6.4714144668675786,6.5700702370649751,11.249742391990981,25.090472078099282,25.257200062881203,25.325715719392171,1.4270029990319999,1.451924407135023,1.4495480250598853,1.482022429745709,1.5183599372282284,1.5069832308294953 +1978,12,27,9,0,646,27,8.5,141.43973010805024,73.46999636594573,79.79612602177019,130.08932120355044,0.06604335469275396,7.589450817109805,217.79391023548283,1.0,7.589450817109805,88.84179938922307,1.5,1.1000000000000001,4.5999999999999996,113.11858661118914,176.2015725418384,176.35657741077154,177.00496768253961,177.5320375395406,177.74861696785095,4.5469951735109939,4.6260876260832022,4.6178147370979428,4.7192123629184319,4.8310714943482944,4.7903566233845618 +1978,12,27,10,0,647,55,9.5,260.00894923609076,63.844413436438565,71.52681371303716,141.4259074084352,0.0,28.874780145989178,352.7546904567277,1.0,28.874780145989178,162.95929433525129,1.5,1.7,5.7000000000000002,322.07408477738244,322.5244401172011,322.78097548213282,323.84062047546138,324.70504983481266,325.05698227992502,16.327421447193746,16.80295597330208,17.184763231724553,17.637145312880289,17.856915173649359,17.462563356639201 +1978,12,27,11,0,867,52,10.5,415.35173691293289,56.279927270746775,65.22279983567259,154.59113393830663,0.0,56.883808749828695,544.00074687009862,1.0,56.883808749828695,258.67726910961477,1.5,2.7999999999999998,4.5999999999999996,518.30718846780076,518.76829182727374,519.01861102276791,520.11665580946885,521.02163845991686,521.38211709958512,34.379390539472453,35.173510878167555,34.977502677968658,34.245887015089927,33.248905209147253,32.280263980836821 +1978,12,27,12,0,899,58,11.5,486.41231006012447,51.72931367505247,61.54012667349778,169.43308757484965,0.0,74.965521990653343,626.4937689926503,1.0,74.965521990653343,302.61235296312134,1.5,3.8999999999999999,4.5999999999999996,605.08715090176599,605.58973687546245,605.85613192048129,607.02199541237837,607.99127005670812,608.37206930605282,46.476353653573291,46.476167821849245,45.249864819675764,43.786155032097589,42.63820705480358,41.831030419857505 +1978,12,27,13,0,918,54,12.5,499.44825613470033,51.01671441031404,60.97194956887804,185.12553875159972,0.0,80.933120506161899,642.68485979479919,1.0,80.933120506161899,310.47628700353664,1.5,4.4000000000000004,5.2000000000000002,622.13433594099081,622.59932363874861,622.84035663099223,623.94708970841759,624.87059463980768,625.23028291120795,50.359275715288561,50.149454450152724,48.63695163260558,47.003758584148159,45.7402769679465,44.973656398634311 +1978,12,27,14,0,886,55,13.5,448.8936393371759,54.29477008329631,63.60383573414537,200.39394468973768,0.0,69.431774238789615,583.26733217515823,1.0,69.431774238789615,279.42712393212884,1.5,5.0,5.2000000000000002,559.43919736631267,559.92176849991631,560.17941663802844,561.31203290270355,562.25102178602856,562.62180044146714,42.598528759007458,43.122796776840545,42.41580185922966,41.204667198458907,39.900108935739141,38.909835937169063 +1978,12,27,15,0,830,46,14.5,342.61212971458423,60.91691952170352,69.06160106114353,214.19658904092242,0.0,41.293067733556342,459.18254859485523,1.0,41.293067733556342,213.66724459367916,1.5,5.5999999999999996,5.2000000000000002,428.21788511632383,428.6370052378353,428.86821084382365,429.88178635360225,430.71121453717234,431.04614696293015,23.705670473136276,24.721790191906337,25.21977471660211,25.411638312169515,25.094659885217673,24.31358771803508 +1978,12,27,16,0,673,39,15.5,193.60483411900017,69.9219496546955,76.71912605581657,226.15768370706604,0.0,11.428514389040499,280.2306299667481,1.0,11.428514389040499,121.35257874857467,1.5,5.5999999999999996,4.5999999999999996,240.54207881254158,240.87606302976255,241.07047164064036,241.86634114672202,242.51391131681112,242.77938348429569,6.8780713935758824,6.9192120331880931,6.8612322073240408,6.9576299934963526,7.0924651798831553,7.0539927174751549 +1978,12,27,17,0,172,27,16.5,40.993491101636991,79.7961850081894,85.33340049250913,235.90098190694536,0.31111440761388653,6.6337126169839706,65.073668950386676,1.0,6.6337126169839706,25.975522526733574,1.5,3.8999999999999999,3.6000000000000001,18.485340526831138,22.553749923046325,47.336043204036329,47.610147360249499,47.833894055768354,47.924936736567645,3.9264630402852969,3.9564854072380617,3.9498993553517479,3.9903161076796354,4.0300945481290746,3.9987717621685612 +1978,12,28,8,0,38,18,7.5,19.968926382709963,81.73004279981399,87.0299550033096,122.35707920487444,0.4596620077010248,5.1778010619165675,24.523655054393704,1.0,5.1778010619165675,12.419965489112357,1.5,-5.5999999999999996,4.0999999999999996,14.914071207794029,15.141441100423794,16.402833988482676,19.989460994575435,20.034478819587484,20.051785882881852,3.0379037494204826,3.040092357692886,3.0350234748209046,3.0397105022727633,3.0378857133541985,3.0139758542654227 +1978,12,28,9,0,322,65,8.5,121.83043040708567,73.52409576905467,79.83450385330651,129.971420189559,0.06654887564636654,15.954577777579594,168.2596397576996,1.0,15.954577777579594,76.525861494107829,1.5,-3.8999999999999999,5.2000000000000002,101.17907451929648,140.18040910347088,140.56899771208469,141.1410620983348,141.60860134484835,141.79829323110263,9.4282825285942486,9.4890604199026196,9.4729958573664579,9.5551194478325705,9.6318120624908765,9.555088587636309 +1978,12,28,10,0,584,79,9.5,263.85130403594246,63.87905958214406,71.54702596032618,141.29862126141245,0.0,32.773673203928908,352.04787430977569,1.0,32.773673203928908,165.57156570570402,1.5,-2.2000000000000002,6.2000000000000002,321.14300510026135,321.80791578036565,322.19068396430868,323.34464295088048,324.2865703218726,324.66956220160353,18.661842763703671,19.127673400608714,19.484851400357883,19.934730113753403,20.160748275230834,19.761902434861302 +1978,12,28,11,0,370,160,10.5,315.08167948414382,56.28785528036429,65.21971655735273,154.4562275201431,0.0,60.396865032421758,382.13020986647825,1.0,60.396865032421758,196.1467294971809,1.5,-1.7,5.7000000000000002,360.53293512937728,362.12634000723233,363.05037031207826,363.89490053742782,364.59535498627713,364.87002356602892,35.955023550555957,36.378026025384045,36.245399091843147,35.881038418601236,35.337412600042754,34.688930436013777 +1978,12,28,12,0,612,140,11.5,431.92708376848117,51.70408653150389,61.51002161932222,169.29785907391826,0.0,78.423398295192726,542.71398155300119,1.0,78.423398295192726,270.54654237850218,1.5,-0.59999999999999998,5.2000000000000002,519.83563253278521,520.95556983069162,521.58867441071243,523.29197677176455,524.696558377781,525.2570683346022,48.226558169269211,48.261582832642326,47.174449404494048,46.078018629272279,45.224182822992958,44.504583074953842 +1978,12,28,13,0,600,124,12.5,415.66810238651766,50.95718473638781,60.914548054386486,185.00146301025111,0.0,70.230789698707952,524.62548007589021,1.0,70.230789698707952,260.44193823760384,1.5,-0.59999999999999998,4.0999999999999996,503.79071893703701,504.71599999550966,505.23645699618208,506.89986998010374,508.26956133243618,508.81764680337591,43.36784735888282,43.284554561905153,42.180095674508756,41.191098943518931,40.462975429860514,39.900034258854284 +1978,12,28,14,0,477,118,13.5,330.66434596075942,54.20736286632011,63.52308476259811,200.290644255,0.0,59.058650219736315,415.40796260060847,1.0,59.058650219736315,206.82117336596414,1.5,0.59999999999999998,3.6000000000000001,395.42974677359427,396.42091333552679,396.98636469968153,398.19142149714844,399.18511280575842,399.58143800894231,35.873251594933031,36.252321325052968,35.794413349291041,35.106441402917646,34.353592713974187,33.662191831742398 +1978,12,28,15,0,650,76,14.5,309.32242685712515,60.811445957175096,68.96380877165002,214.11701912471787,0.0,43.078589447725854,409.32435860618148,1.0,43.078589447725854,193.65794473969018,1.5,1.1000000000000001,4.0999999999999996,380.94374198759226,381.52887430933623,381.85832072339372,383.04466469786723,384.01466221980877,384.40723176339509,24.863404487834625,25.8347743428568,26.289632289258055,26.491302633457508,26.201256247995843,25.445916356893193 +1978,12,28,16,0,517,47,15.5,166.72136231516265,69.80672396357386,76.61051548587524,226.09922016368253,0.0,10.647323499886587,237.27336933917815,1.0,10.647323499886587,104.77457847018857,1.5,1.7,3.6000000000000001,204.19820124445073,204.58953557152273,204.81832734704275,205.60362083709043,206.24237314469525,206.50446290841472,6.3585995043610053,6.4529576769913941,6.4415950802703774,6.5633089824837088,6.6954709651096138,6.6399687937000467 +1978,12,28,17,0,312,20,16.5,45.698669286774376,79.74047160111287,85.27533552679584,235.91284902709359,0.30630928256770457,4.9754268803022281,82.342785177204277,1.0,4.9754268803022281,29.203990607631741,1.5,0.0,3.1000000000000001,13.274846962015937,20.452880189332969,56.617072980112127,57.006477803203012,57.323134704290368,57.453143196902147,2.9757047110295649,3.0226204691325984,3.017591570985108,3.0787350075753155,3.1462887598446376,3.1221338636920146 +1978,12,29,8,0,127,14,7.5,20.535689493042771,81.76420500026293,87.0501345806876,122.26116001422072,0.4611193407069732,3.1487337535347888,35.615427581563083,1.0,3.1487337535347888,13.298916962085341,1.5,-6.7000000000000002,2.1000000000000001,8.793720477139841,8.9277814324739317,12.35987678049997,23.619858700993106,23.813634116479108,23.893164227947512,1.8819929072796993,1.9105558857120604,1.9074564091073674,1.9449161394034797,1.9863124919244897,1.971560444546959 +1978,12,29,9,0,525,35,8.5,127.36712137006872,73.57282077545632,79.86678790941463,129.84886987907993,0.06679870270374713,8.6833453680826302,192.74141357929923,1.0,8.6833453680826302,80.294143915965165,1.5,-4.4000000000000004,4.0999999999999996,101.92541003926173,156.19458317624571,156.38424724057984,157.07370690869956,157.63432835066899,157.86453369648643,5.1941401356700023,5.2775423213764032,5.2683588562429327,5.3760278200315899,5.494306766369828,5.4495488669026857 +1978,12,29,10,0,784,36,9.5,283.98129843731658,63.90751497860725,71.56052689009229,141.1675621749443,0.0,31.418719430424961,388.95106568385756,1.0,31.418719430424961,177.1352317333621,1.5,-2.2000000000000002,4.5999999999999996,355.74559368044748,356.07655459272945,356.26093583216755,357.11280740251658,357.80925624498559,358.09117980854899,17.560252158786415,18.128826965410205,18.639267355260387,19.142651717199051,19.316447724800984,18.843153598068724 +1978,12,29,11,0,873,51,10.5,417.05172019613593,56.28883271496499,65.20939466714479,154.31882222742942,0.0,60.75732982213448,546.07247210552271,1.0,60.75732982213448,259.68428065944192,1.5,-1.1000000000000001,3.1000000000000001,520.34803541495364,520.7998526072214,521.04295568751695,522.12540246522849,523.01914675861656,523.37389390889314,36.797192440960139,37.614012747616165,37.3574218697985,36.506277837794009,35.386566005364202,34.364386742383147 +1978,12,29,12,0,848,49,11.5,453.98992956314493,51.671411180512756,61.47237238424956,169.1618786988449,0.0,69.37592062909377,585.18103183239771,1.0,69.37592062909377,282.30556127937331,1.5,0.59999999999999998,2.6000000000000001,565.56982706772362,565.99156189105895,566.21206552526098,567.25067574288585,568.11506259915041,568.45371755502799,43.118591787611152,43.014810995975772,41.767072898562141,40.391852071560322,39.324393948121774,38.638504093213754 +1978,12,29,13,0,932,50,12.5,503.97991368984742,50.890240558529065,60.849658432662565,184.8786552540434,0.0,81.19507089291497,648.53959566191702,1.0,81.19507089291497,313.09928476433168,1.5,2.2000000000000002,2.6000000000000001,628.31113029654227,628.74038803600797,628.95981690566691,630.00672637061155,630.88189820287585,631.22121697598573,50.62288119362907,50.275939242702925,48.646707503352069,47.027176310059033,45.738798682937627,45.049636354854911 +1978,12,29,14,0,918,47,13.5,457.53724375601553,54.11316347958382,63.43528634531324,200.1904712661282,0.0,65.512415906032928,595.21366842597683,1.0,65.512415906032928,284.42041304714309,1.5,2.7999999999999998,2.6000000000000001,571.83687730314443,572.24596126915071,572.46148334610609,573.477787981554,574.32171194120588,574.65404193873951,40.276038731793371,40.706102232312588,39.982736917384237,38.798239795455977,37.544311106058863,36.634767738568826 +1978,12,29,15,0,858,40,14.5,349.44064994676012,60.70014517181446,68.85966868426387,214.04195453871066,0.0,44.302042748961078,468.74607657558317,1.0,44.302042748961078,217.61140180574725,1.5,4.4000000000000004,1.5,438.04775284387165,438.40942071972216,438.60487068229781,439.52461083601179,440.27871176265484,440.58159396716229,25.50013459254766,26.616019224498825,27.154691012862433,27.254259531545415,26.769101838552913,25.891017057664932 +1978,12,29,16,0,736,30,15.5,201.86145090265558,69.68669170397169,76.49634420305573,226.0461555154262,0.0,10.625566086876818,292.76621533751813,1.0,10.625566086876818,126.2543292357575,1.5,3.8999999999999999,2.6000000000000001,252.09116471376598,252.37777694722433,252.54432866954224,253.27567352995101,253.87078204847214,254.11473920787654,6.3861108428184581,6.4159830486543443,6.3532223102062906,6.4628539330559969,6.5833418886510477,6.5521569611535959 +1978,12,29,17,0,399,16,16.5,49.286180848502568,79.68331051758861,85.21459448489416,235.93294466000037,0.30126267659070827,4.1874861913198211,93.049784384345827,1.0,4.1874861913198211,31.404976026605674,1.5,2.7999999999999998,2.1000000000000001,10.744011755734565,20.882748915646438,62.84207706594394,63.228045875053482,63.541706613252948,63.670679880391916,2.5140915607890659,2.5613345089198987,2.5570215430358139,2.61815844593277,2.6867499009888047,2.6658772840780065 +1978,12,30,8,0,32,19,7.5,20.637130506088013,81.79669129929988,87.06744889268666,122.15752834332676,0.46217261574833446,5.4233039813150157,24.73069504807393,1.0,5.4233039813150157,12.834798739937519,1.5,-4.4000000000000004,0.0,15.634823174293329,15.873181274335035,16.991404650967745,20.379416841302046,20.425824808581183,20.443643792582122,3.1817954316196926,3.1839645649020891,3.1786580916935132,3.1834171445825055,3.1813265962539008,3.1563010689882738 +1978,12,30,9,0,26,66,8.5,70.562692800549101,73.61611585288941,79.89293131945905,129.72176302227794,0.06678922991291511,18.807389409749863,76.786063301859755,1.0,18.807389409749863,43.390531597004717,1.5,-2.2000000000000002,0.0,62.847048372687695,69.485804116901988,69.969989093063219,69.985499067260349,70.003163724341391,70.005543072372063,11.004187905003779,10.988297933142729,10.969844821190287,10.956436250360197,10.912320678353941,10.825299455211825 +1978,12,30,10,0,12,96,9.5,99.794289011092715,63.929743253019915,71.5672866910678,141.03282510832256,0.0,29.613034843798921,101.48483750807898,1.0,29.613034843798921,60.912382832337556,1.5,-0.59999999999999998,1.5,94.028829215740757,95.306503705552146,96.055613592404484,95.920648414044408,95.81934833695864,95.769593407558858,17.270475864755163,17.239160427603355,17.226779254585697,17.19081195219551,17.091079793775798,16.944758240467308 +1978,12,30,11,0,80,147,10.5,180.56652978791755,56.28284501694216,65.19182361909236,154.17901346473752,0.0,47.099302939171828,196.64951806439436,1.0,47.099302939171828,111.17774219400773,1.5,1.7,1.5,183.99211919654957,185.76808286000843,186.80674312910264,186.88473562070996,186.96078138386864,186.97994327847044,27.712549974624949,27.778510733644605,27.705357000599175,27.543542731664086,27.277938375521856,26.959142825227588 +1978,12,30,12,0,81,202,11.5,240.74028961013551,51.63129484168988,61.4271882026782,169.02524173401744,0.0,62.786976115875412,261.8037492066008,1.0,62.786976115875412,148.34900026416739,1.5,2.7999999999999998,2.1000000000000001,246.30186300670454,248.61337377625154,249.9644387638827,250.10875048937811,250.24345364530603,250.2825276425678,37.168538028209845,37.096777987732693,36.827662123366359,36.536292995488118,36.213994155294621,35.860726537787045 +1978,12,30,13,0,116,256,12.5,312.6318161683692,50.81591098020313,60.7773099668947,184.75721148220003,0.0,79.449246464496568,345.51910871655622,1.0,79.449246464496568,192.77363050732782,1.5,3.2999999999999998,2.6000000000000001,326.35517980065276,329.09786182038533,330.69865880572047,330.92052383345288,331.12306699869185,331.18561495837122,47.232992090937984,47.086782125818004,46.630779209398952,46.179360953718493,45.708881881360007,45.266520421129663 +1978,12,30,14,0,69,158,13.5,188.95944149030882,54.01222433074716,63.34048984243558,200.09352043429413,0.0,50.300308745033561,204.20201617160262,1.0,50.300308745033561,116.36877327693861,1.5,5.0,2.6000000000000001,191.40671982380496,193.30266111776416,194.41145829386323,194.50220575373754,194.5897791053427,194.61281076478983,29.681461675730393,29.685846400981429,29.546655667124554,29.343212906020447,29.067738661636184,28.758435399902851 +1978,12,30,15,0,2,154,14.5,154.72490052086999,60.58309126856386,68.74924863352055,213.97148250674522,0.0,45.278962254770683,158.3419630441164,1.0,45.278962254770683,94.549930850200653,1.5,5.0,1.5,147.05559249887511,148.98711739702259,150.11928773807006,149.94690786775499,149.81950626691685,149.75484361399072,26.434649613030395,26.413993081951009,26.395151441187146,26.325804357282109,26.150470829705739,25.911259677088967 +1978,12,30,16,0,25,102,15.5,107.88843627702239,69.56194245807377,76.37669421631752,225.9985637155534,0.0,28.030031130637457,116.84180121386282,1.0,28.030031130637457,66.395180450069518,1.5,5.0,1.5,106.01690286819019,107.23648802990539,107.95165047628281,107.99244650259757,108.03309766540637,108.04257513908802,16.407518838360716,16.379703688680276,16.347229490573934,16.330140938778737,16.268556723448508,16.141518788623205 +1978,12,30,17,0,6,26,16.5,26.507157402083852,79.62474486982214,85.1512179846845,235.96128026589483,0.2959836597382744,8.0437563112594503,27.154460988769664,1.0,8.0437563112594503,16.152313219947569,1.5,5.0,0.0,23.306152292342695,23.957846938330398,25.192424958153911,25.147533398001809,25.113367927056792,25.097084149156338,4.6977601815664221,4.684127658400822,4.6762560510229116,4.6618721017281368,4.6324137128052802,4.5953531315648322 +1978,12,31,8,0,1,6,7.5,6.0509088237824251,81.82747456740331,87.08187784353818,122.04625887877788,0.46281448292753574,1.8876860549486785,6.0332231269967895,1.0,1.8876860549486785,3.6767911326661546,1.5,3.8999999999999999,2.1000000000000001,5.4759681482997884,5.5594513805350143,5.6263050868253552,5.6747530266574246,5.6640611401850443,5.6591307947348106,1.1019024193290909,1.0982653148682588,1.0964187574138555,1.0924877870819214,1.0848933662900599,1.0762024123133138 +1978,12,31,9,0,3,56,8.5,56.525435679955159,73.65392864226897,79.91289049051805,129.59019344595185,0.06651744369472741,16.970605324618177,57.28751771007375,1.0,16.970605324618177,34.46939712974126,1.5,4.4000000000000004,1.5,51.221607159147034,53.349311405663876,53.788763878659388,53.701693015999048,53.635797974837082,53.604008338608239,9.9125481595475726,9.88480063083761,9.868189451222225,9.8391237708008763,9.778540450004062,9.7003226242522604 +1978,12,31,10,0,4,110,9.5,111.26476350780392,63.94571154099477,71.56727907978404,140.89450521123302,0.0,33.106434913402929,112.84746878209877,1.0,33.106434913402929,67.927026088533466,1.5,5.5999999999999996,2.1000000000000001,104.54664244068162,105.9817915193067,106.82329440560279,106.67787435232023,106.56906339498987,106.51527044628136,19.31574793270681,19.278602293047054,19.260916909471611,19.218877159250329,19.107326098075287,18.94570407624871 +1978,12,31,11,0,6,174,10.5,176.51984947628767,56.26988108934357,65.16699636506416,154.03689618715285,0.0,51.924209711987224,180.58036444989744,1.0,51.924209711987224,107.90215673223106,1.5,5.5999999999999996,1.5,168.20518319943949,170.38826375380376,171.66761184260577,171.48188156852663,171.34563007197119,171.27547592934215,30.397499691667573,30.360572458715836,30.299756050084572,30.174431882058279,29.945250745324252,29.668476603042425 +1978,12,31,12,0,1,243,11.5,243.4790828457198,51.58374795523698,61.37448165715759,168.88804278613063,0.0,70.844813415410329,251.07763320089018,1.0,70.844813415410329,149.00773935722859,1.5,6.7000000000000002,2.1000000000000001,234.6892606728947,237.58902178189661,239.28746412327791,239.088971684233,238.9478897123079,238.87060101201939,41.621473591336219,41.506441607707437,41.329328661114381,41.104183045999044,40.788768343845582,40.433195032907491 +1978,12,31,13,0,1,230,12.5,230.48941996791447,50.7342281703072,60.69753512253065,184.63722706831726,0.0,67.337253380221512,236.44733436759907,1.0,67.337253380221512,141.01714106199589,1.5,7.7999999999999998,0.0,220.89924026182752,223.69248361321348,225.32892871116169,225.12830493675307,224.98445415081861,224.90695248637402,39.530264532746422,39.411795238721957,39.252896508977955,39.061960410693018,38.778115926109187,38.450940254011194 +1978,12,31,14,0,1,216,13.5,216.45027380437941,53.90460087531081,63.23874768902633,199.99988570560285,0.0,63.189520654205744,222.5356090294257,1.0,63.189520654205744,132.40753917566616,1.5,8.3000000000000007,1.5,207.66489211999058,210.28418867784904,211.81876407715222,211.62311400496978,211.4821102851154,211.40698070097199,37.066657218083151,36.996168121911985,36.879649590243261,36.695270646380933,36.410772236959481,36.080934509891122 +1978,12,31,15,0,40,164,14.5,178.57386647733605,60.46036121582472,68.63261930113552,213.9056889089816,0.0,47.071457044663113,192.56962345878253,1.0,47.071457044663113,109.99653224260983,1.5,10.6,2.1000000000000001,178.64390011739351,180.53382685486977,181.64033201747597,181.73869408158899,181.8308230330569,181.85683650173152,27.500523037998963,27.587468453824538,27.606143850456146,27.569913470819998,27.400768787345839,27.099870419821269 +1978,12,31,16,0,69,88,15.5,104.39839647001902,69.43256818269768,76.25164998400044,225.95651654927235,0.0,25.222207428683475,116.16836199319647,1.0,25.222207428683475,64.221972733881131,1.5,10.6,1.5,104.98548666235192,106.07491602615731,106.71368638785937,106.74141889122193,106.7707351316016,106.77624404159377,14.761833082802362,14.733998664619383,14.704903458978325,14.687219992526886,14.630366361021888,14.518542751438842 +1978,12,31,17,0,3,11,16.5,11.25702034479724,79.56481889660085,85.085248116665,235.99786250882653,0.29048134290383404,3.4628857049214625,11.348125926322261,1.0,3.4628857049214625,6.8451921129624642,1.5,10.0,0.0,10.039278127253956,10.283261989810416,10.635765049690978,10.611699633297718,10.593153694505071,10.584552028905364,2.0216164876801663,2.0151196390206936,2.0117311430889453,2.0047404078009952,1.9910776577227725,1.9751270203843763 diff --git a/bifacialvf/loadVFresults.py b/bifacialvf/loadVFresults.py index a3fa29c..76e0e4b 100644 --- a/bifacialvf/loadVFresults.py +++ b/bifacialvf/loadVFresults.py @@ -5,7 +5,7 @@ """ - +from __future__ import division, print_function, unicode_literals import io try: from urllib2 import urlopen @@ -56,7 +56,7 @@ def loadVFresults(filename=None): try: - csvdata = open(filename, 'rb') + csvdata = open(filename, 'r') except IOError: response = urlopen(filename) csvdata = io.StringIO(response.read().decode(errors='ignore')) diff --git a/bifacialvf/sun.py b/bifacialvf/sun.py index dfc0cb5..5069fdf 100644 --- a/bifacialvf/sun.py +++ b/bifacialvf/sun.py @@ -8,7 +8,7 @@ """ - +from __future__ import division, print_function # ensure python3 compatible division and printing import math @@ -101,20 +101,20 @@ def hrSolarPos( year, month, day, hour, lat, lng, tz ): # Nighttime hour, sun never rises suntime = 0.0; # Fraction of hour with sunup minute = 30.0; # For determining solar position at midpoint of sunup period - azm, zen, elv, dec, sunrise, sunset, Eo, tst = solarPos( year, month, day, hour-1, minute, lat, lng, tz ) + azm, zen, elv, dec, sunrise, sunset, Eo, tst = solarPos( year, month, day, hour-1, minute, lat, lng, tz ) elif( hour == int(pSunrise + 1.0) and int(sunset+50) - int(sunrise+50) == 24 ): # Apply offset to deal with negative numbers in if statement # Sun sets and rises same hour, summer suntime = pSunset + 1.0 - pSunrise; minute = 60.0*( 1.0 - 0.5*( float(hour) - pSunrise ) ); - azm, zen, elv, dec, sunrise, sunset, Eo, tst = solarPos( year, month, day, hour-1, minute, lat, lng, tz ) + azm, zen, elv, dec, sunrise, sunset, Eo, tst = solarPos( year, month, day, hour-1, minute, lat, lng, tz ) tmp = zen; if( azm/DTOR < 180.0 ): azm += 360.0*DTOR; tmp2 = azm; minute = 60.0*0.5*( pSunset - float(hour) + 1.0 ); - azm, zen, elv, dec, sunrise, sunset, Eo, tst = solarPos( year, month, day, hour-1, minute, lat, lng, tz ) + azm, zen, elv, dec, sunrise, sunset, Eo, tst = solarPos( year, month, day, hour-1, minute, lat, lng, tz ) tmp += zen; tmp2 += azm; zen = tmp/2.0; # Zenith angle @@ -127,7 +127,7 @@ def hrSolarPos( year, month, day, hour, lat, lng, tz ): # For zenith at mid-height suntime = sunset - sunrise; minute = 60.0*( pSunrise + 0.25*suntime - float(hour) + 1.0 ); - azm, zen, elv, dec, sunrise, sunset, Eo, tst = solarPos( year, month, day, hour-1, minute, lat, lng, tz ) + azm, zen, elv, dec, sunrise, sunset, Eo, tst = solarPos( year, month, day, hour-1, minute, lat, lng, tz ) tmp = zen; # Save zenith # For azimuth at midpoint minute = 60.0*( pSunrise + 0.5*suntime - float(hour) + 1.0 ); diff --git a/bifacialvf/vf.py b/bifacialvf/vf.py index cc6b3a1..4d6a162 100644 --- a/bifacialvf/vf.py +++ b/bifacialvf/vf.py @@ -8,7 +8,7 @@ """ - +from __future__ import division, print_function # ensure python3 compatible division and printing import math import numpy from sun import solarPos, sunIncident, perezComp, aOIcorrection @@ -510,11 +510,11 @@ def getFrontSurfaceIrradiances(rowType, maxShadow, PVfrontSurface, beta, sazm, d # Console.WriteLine("ElvDown = 0", elvDOWN / dtor); if math.isnan(beta): - print "Beta is Nan" + print( "Beta is Nan") if math.isnan(elvUP): - print "elvUP is Nan" + print( "elvUP is Nan") if math.isnan((math.pi - beta - elvUP) / dtor): - print "division is Nan" + print( "division is Nan") iStopIso = int(round(numpy.float64((math.pi - beta - elvUP)) / dtor)) # Last whole degree in arc range that sees sky, first is 0 @@ -1089,12 +1089,12 @@ def getSkyConfigurationFactors(rowType, beta, C, D): # Sanity check if ff3 < 0 : - print "Ff3 less 0 in i", i + print( "Ff3 less 0 in i", i) if ff2 < 0 : - print "Ff2 less 0 in i", i + print( "Ff2 less 0 in i", i) if ff1 < 0 : - print "Ff1 less 0 in i", i + print( "Ff1 less 0 in i", i) ffpanel = ff1 + ff2 + ff3; ffConfigFactors.append(ffpanel) diff --git a/setup.py b/setup.py index 4506603..68a1b8b 100644 --- a/setup.py +++ b/setup.py @@ -26,7 +26,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # https://packaging.python.org/en/latest/single_source_version.html - version='0.1.4', + version='0.1.5', description='Bifacial PV system evaluation using view factor method', long_description=long_description, @@ -57,8 +57,8 @@ # Specify the Python versions you support here. In particular, ensure # that you indicate whether you support Python 2, Python 3 or both. - 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.6', ], From 74d0e67ec239cfb753967180f25f877876b6c6b3 Mon Sep 17 00:00:00 2001 From: cdeline Date: Fri, 9 Mar 2018 15:01:45 -0700 Subject: [PATCH 2/2] Cleanup --- bifacialvf/bifacialvf.py | 4 ++-- bifacialvf/loadVFresults.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bifacialvf/bifacialvf.py b/bifacialvf/bifacialvf.py index 8b29aaa..e01f2c0 100644 --- a/bifacialvf/bifacialvf.py +++ b/bifacialvf/bifacialvf.py @@ -25,14 +25,14 @@ import math import csv import pvlib -import os, sys +import os from vf import getBackSurfaceIrradiances, getFrontSurfaceIrradiances, getGroundShadeFactors from vf import getSkyConfigurationFactors, trackingBFvaluescalculator, rowSpacing from sun import hrSolarPos, perezComp, solarPos, sunIncident import pandas as pd -#from builtins import str, range + def simulate(TMYtoread, writefiletitle, beta = 0, sazm = 180, C = 0.5, D = None, rowType = 'interior', transFactor = 0.01, cellRows = 6, diff --git a/bifacialvf/loadVFresults.py b/bifacialvf/loadVFresults.py index 76e0e4b..18a07aa 100644 --- a/bifacialvf/loadVFresults.py +++ b/bifacialvf/loadVFresults.py @@ -5,7 +5,7 @@ """ -from __future__ import division, print_function, unicode_literals +from __future__ import division, print_function # ensure python3 compatible division and printing import io try: from urllib2 import urlopen