first pass straightforward testing workviews
This commit is contained in:
@@ -132,6 +132,19 @@ def mocked_read_df_sql(id):
|
||||
|
||||
return df
|
||||
|
||||
def mocked_getrowdata_db(*args, **kwargs):
|
||||
df = pd.read_csv('rowers/tests/testdata/getrowdata_mock.csv')
|
||||
|
||||
id = kwargs['id']
|
||||
|
||||
row = Workout.objects.get(id=id)
|
||||
|
||||
return df,row
|
||||
|
||||
def mocked_getsmallrowdata_forfusion(*args, **kwargs):
|
||||
df = pd.read_csv('rowers/tests/testdata/getrowdata_mock.csv')
|
||||
|
||||
return df
|
||||
|
||||
def mocked_getsmallrowdata_db(*args, **kwargs):
|
||||
df = pd.read_csv('rowers/tests/testdata/colsfromdb.csv')
|
||||
|
||||
@@ -18,6 +18,7 @@ from parameterized import parameterized
|
||||
from django.test import TestCase, Client,override_settings, RequestFactory, TransactionTestCase
|
||||
|
||||
from django.core.management import call_command
|
||||
from django.core.files.uploadedfile import SimpleUploadedFile
|
||||
from django.utils.six import StringIO
|
||||
from django.test.client import RequestFactory
|
||||
from rowers.views import checkworkoutuser,c2_open, multi_compare_view
|
||||
|
||||
@@ -2,6 +2,28 @@ from statements import *
|
||||
|
||||
nu = datetime.datetime.now()
|
||||
|
||||
from django.core.files import File
|
||||
from django.utils.six import BytesIO
|
||||
|
||||
from PIL import Image
|
||||
from io import StringIO
|
||||
|
||||
|
||||
def create_image(storage, filename, size=(100, 100), image_mode='RGB', image_format='PNG'):
|
||||
"""
|
||||
Generate a test image, returning the filename that it was saved as.
|
||||
|
||||
If ``storage`` is ``None``, the BytesIO containing the image data
|
||||
will be passed instead.
|
||||
"""
|
||||
data = BytesIO()
|
||||
Image.new(image_mode, size).save(data, image_format)
|
||||
data.seek(0)
|
||||
if not storage:
|
||||
return data
|
||||
image_file = ContentFile(data.read())
|
||||
return storage.save(filename, image_file)
|
||||
|
||||
@override_settings(TESTING=True)
|
||||
class WorkoutViewTest(TestCase):
|
||||
def setUp(self):
|
||||
@@ -69,6 +91,18 @@ class WorkoutViewTest(TestCase):
|
||||
workouttype = 'rower',
|
||||
)
|
||||
|
||||
result = get_random_file(filename='rowers/tests/testdata/erg2.csv')
|
||||
|
||||
self.werg2copy = WorkoutFactory(user=self.r,
|
||||
csvfilename=result['filename'],
|
||||
starttime=result['starttime'],
|
||||
startdatetime=result['startdatetime'],
|
||||
duration=result['duration'],
|
||||
distance=result['totaldist'],
|
||||
workouttype = 'rower',
|
||||
)
|
||||
|
||||
|
||||
result = get_random_file(filename='rowers/tests/testdata/erg3.csv')
|
||||
|
||||
self.werg3 = WorkoutFactory(user=self.r,
|
||||
@@ -152,7 +186,7 @@ class WorkoutViewTest(TestCase):
|
||||
|
||||
expected_url = reverse(self.r.defaultlandingpage,
|
||||
kwargs = {
|
||||
'id':11
|
||||
'id':12
|
||||
})
|
||||
|
||||
self.assertRedirects(response,
|
||||
@@ -390,6 +424,10 @@ class WorkoutViewTest(TestCase):
|
||||
|
||||
response = self.c.post(url,form_data,follow=True)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
url = reverse('workout_unsubscribe_view',kwargs={'id':self.wwater.id})
|
||||
response = self.c.get(url)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
@patch('rowers.dataprep.create_engine')
|
||||
@patch('rowers.dataprep.getsmallrowdata_db')
|
||||
@@ -402,3 +440,165 @@ class WorkoutViewTest(TestCase):
|
||||
|
||||
response = self.c.get(url)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
@patch('rowers.dataprep.create_engine')
|
||||
@patch('rowers.dataprep.getsmallrowdata_db')
|
||||
def notworking_test_workout_image(self, mocked_sqlalchemy,
|
||||
mocked_getsmallrowdata_db):
|
||||
login = self.c.login(username=self.u.username, password=self.password)
|
||||
self.assertTrue(login)
|
||||
|
||||
url = reverse('workout_uploadimage_view',kwargs={'id':self.werg1.id})
|
||||
|
||||
response = self.c.get(url)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
with open('rowers/tests/testdata/lofoten.jpg','rb') as screenshot_file:
|
||||
file_data = {'file':screenshot_file}
|
||||
form_data = {
|
||||
'file':screenshot_file,
|
||||
}
|
||||
|
||||
#form = ImageForm(form_data, file_data)
|
||||
#if not form.is_valid():
|
||||
# print form.errors
|
||||
#self.assertTrue(form.is_valid())
|
||||
|
||||
response = self.c.post(url,form_data,format='multipart',follow=True)
|
||||
|
||||
expected_url = reverse(self.r.defaultlandingpage,kwargs={'id':self.werg1.id})
|
||||
|
||||
self.assertRedirects(response,
|
||||
expected_url=expected_url,
|
||||
status_code=302,target_status_code=200)
|
||||
|
||||
@patch('rowers.dataprep.create_engine')
|
||||
@patch('rowers.dataprep.getsmallrowdata_db')
|
||||
@patch('rowers.dataprep.getrowdata_db',side_effect=mocked_getrowdata_db)
|
||||
def test_workout_split(self, mocked_sqlalchemy, mocked_getsmallrowdata_db,
|
||||
mocked_getrowdata_db):
|
||||
login = self.c.login(username=self.u.username, password=self.password)
|
||||
self.assertTrue(login)
|
||||
|
||||
url = reverse('workout_split_view',kwargs={'id':self.werg1.id})
|
||||
|
||||
response = self.c.get(url)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
form_data = {
|
||||
'splittime': '2:00',
|
||||
'splitmode': ['keep original','keep first','keep second']
|
||||
}
|
||||
|
||||
form = WorkoutSplitForm(form_data)
|
||||
|
||||
self.assertTrue(form.is_valid())
|
||||
|
||||
response = self.c.post(url, form_data,follow=True)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
@patch('rowers.dataprep.create_engine')
|
||||
@patch('rowers.dataprep.getrowdata_db',side_effect=mocked_getrowdata_db)
|
||||
@patch('rowers.dataprep.getsmallrowdata_db',side_effect=mocked_getsmallrowdata_forfusion)
|
||||
def test_workout_fusion(self, mocked_sqlalchemy, mocked_getrowdata_db,
|
||||
mocked_getsmallrowdata_db):
|
||||
login = self.c.login(username=self.u.username, password=self.password)
|
||||
self.assertTrue(login)
|
||||
|
||||
url = reverse('workout_fusion_view',kwargs={'id1':self.werg2.id,
|
||||
'id2':self.werg2copy.id})
|
||||
|
||||
|
||||
response = self.c.get(url)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
form_data = {
|
||||
'posneg':'pos',
|
||||
'offset': datetime.timedelta(seconds=0),
|
||||
'columns': ['power','hr'
|
||||
]
|
||||
}
|
||||
|
||||
form = FusionMetricChoiceForm(form_data,instance=self.werg2copy)
|
||||
|
||||
self.assertTrue(form.is_valid())
|
||||
|
||||
response = self.c.post(url,form_data,follow=True)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
|
||||
@patch('rowers.dataprep.create_engine')
|
||||
@patch('rowers.dataprep.getsmallrowdata_db')
|
||||
def test_editsummaryview(self, mocked_sqlalchemy, mocked_getsmallrowdata_db):
|
||||
login = self.c.login(username=self.u.username, password=self.password)
|
||||
self.assertTrue(login)
|
||||
|
||||
|
||||
url = reverse('workout_summary_edit_view',kwargs={'id':self.wwater.id})
|
||||
|
||||
response = self.c.get(url)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
form_data = {
|
||||
'intervalstring':'4x2min/1min',
|
||||
}
|
||||
|
||||
form = SummaryStringForm(form_data)
|
||||
self.assertTrue(form.is_valid())
|
||||
|
||||
response = self.c.post(url,form_data)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
form_data = {
|
||||
'powerorpace':'power',
|
||||
'value_pace':'2:23',
|
||||
'value_power':'200',
|
||||
'value_work':'400',
|
||||
'savepowerpaceform':True,
|
||||
}
|
||||
|
||||
response = self.c.post(url,form_data)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
form_data = {
|
||||
'savestringform':'4x2min/1min',
|
||||
}
|
||||
|
||||
response = self.c.post(url,form_data)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
form_data = {
|
||||
'selector':'power',
|
||||
'power': 200,
|
||||
'pace': '2:30',
|
||||
'work': 400,
|
||||
}
|
||||
|
||||
form = PowerIntervalUpdateForm(form_data)
|
||||
self.assertTrue(form.is_valid())
|
||||
|
||||
response = self.c.post(url,form_data)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
|
||||
@patch('rowers.dataprep.create_engine')
|
||||
@patch('rowers.dataprep.getsmallrowdata_db')
|
||||
def test_workout_delete(self, mocked_sqlalchemy, mocked_getsmallrowdata_db):
|
||||
login = self.c.login(username=self.u.username, password=self.password)
|
||||
self.assertTrue(login)
|
||||
|
||||
url = reverse('workout_delete',kwargs={'pk':self.wwater.id})
|
||||
|
||||
response = self.c.get(url)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
post_data = {}
|
||||
|
||||
response = self.c.post(url,follow=True)
|
||||
|
||||
expected_url = reverse('workouts_view')
|
||||
|
||||
self.assertRedirects(response,
|
||||
expected_url=expected_url,
|
||||
status_code=302,target_status_code=200)
|
||||
|
||||
|
||||
@@ -112,9 +112,16 @@ class WorkoutViewTest(TestCase):
|
||||
form_data = {
|
||||
'xaxis':'time',
|
||||
'yaxis1':'hr',
|
||||
'yaxis2': 'spm'
|
||||
'yaxis2': 'spm',
|
||||
'includereststrokes': True,
|
||||
'plottype': 'line'
|
||||
}
|
||||
|
||||
form = FlexOptionsForm(form_data)
|
||||
if not form.is_valid():
|
||||
print form.errors
|
||||
self.assertTrue(form.is_valid())
|
||||
|
||||
response = self.c.post(url,form_data)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
@@ -133,6 +140,7 @@ class WorkoutViewTest(TestCase):
|
||||
'savefavorite':True
|
||||
}
|
||||
|
||||
|
||||
response = self.c.post(url,form_data)
|
||||
self.assertEqual(response.status_code,200)
|
||||
|
||||
@@ -151,7 +159,9 @@ class WorkoutViewTest(TestCase):
|
||||
form_data = {
|
||||
'xaxis':'time',
|
||||
'yaxis1':'hr',
|
||||
'yaxis2': 'spm'
|
||||
'yaxis2': 'spm',
|
||||
'includereststrokes': True,
|
||||
'plottype': 'line'
|
||||
}
|
||||
|
||||
response = self.c.post(url,form_data)
|
||||
|
||||
768
rowers/tests/testdata/getrowdata_mock.csv
vendored
Normal file
768
rowers/tests/testdata/getrowdata_mock.csv
vendored
Normal file
@@ -0,0 +1,768 @@
|
||||
,id,workoutid,time,hr,pace,workoutstate,spm,cumdist,ftime,fpace,driveenergy,power,averageforce,drivelength,peakforce,forceratio,distance,drivespeed,hr_ut2,hr_ut1,hr_at,hr_tr,hr_an,hr_max,hr_bottom,x_right,ergpace,nowindpace,equivergpower,fergpace,fnowindpace,catch,finish,peakforceangle,slip,wash,rhythm,effectiveangle,totalangle,efficiency,distanceperstroke,velo,deltat
|
||||
0,28826885,16054,0.0,-10,3000000.0,4,4.52380952380959,5.1,05:50.0,50:00.0,1795.90038777581,142.0,0.0,0,0.0,0.0,5.1,0.0,0,0,0,0,0,0,0,352000.0,191293.118277239,3000000.0,50.0,03:11.2,50:00.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.00912884715701617,2.21052631578944,0.166666666666667,
|
||||
1,28826886,16054,2000.0,34,165708.488332769,4,37.3571428571429,11.4,00:02.0,02:45.7,634.711514578289,249.0,0.0,0,0.0,0.0,11.4,0.0,1,0,0,0,0,0,0,4000.0,191293.118277239,165708.488332769,50.0,03:11.2,02:45.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,30.8911752119447,4.84621688063372,3.01734693877552,2000.0
|
||||
2,28826887,16054,3000.0,67,108973.646169243,4,47.0714285714285,18.9,00:03.0,01:48.9,235.368899908701,285.0,0.0,0,0.0,0.0,18.9,0.0,94,0,0,0,0,0,0,4000.0,191293.118277239,108973.646169243,50.0,03:11.2,01:48.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.8983666289061,5.84847171038371,4.58826530612246,1000.0
|
||||
3,28826888,16054,4000.0,90,96570.7528577059,4,42.6666666666667,25.3,00:04.0,01:36.5,313.897125662487,285.0,0.0,0,0.0,0.0,25.3,0.0,94,0,0,0,0,0,0,5000.0,191293.118277239,96570.7528577059,50.0,03:11.2,01:36.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136.359792884962,7.28093112244898,5.17755102040817,1000.0
|
||||
4,28826889,16054,6000.0,104,96063.7811227045,4,34.2380952380953,34.1,00:06.0,01:36.0,536.837575208299,339.0,0.0,0,0.0,0.0,34.1,0.0,96,0,0,0,0,0,0,8000.0,191293.118277239,96063.7811227045,50.0,03:11.2,01:36.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.463360150038,9.12120007947547,5.20487528344672,2000.0
|
||||
5,28826890,16054,8000.0,96,99458.7280108253,4,33.3333333333334,44.8,00:08.0,01:39.4,617.207644183227,350.0,0.0,0,0.0,0.0,44.8,0.0,96,0,0,0,0,0,0,10000.0,191293.118277239,99458.7280108253,50.0,03:11.2,01:39.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.641554366205,9.04897959183674,5.02721088435375,2000.0
|
||||
6,28826891,16054,10000.0,98,104685.942173479,4,31.7619047619048,53.4,00:10.0,01:44.6,652.677253689755,339.0,0.0,0,0.0,0.0,53.4,0.0,96,0,0,0,0,0,0,12000.0,191293.118277239,104685.942173479,50.0,03:11.2,01:44.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.9918641150334,9.0224887556222,4.77619047619048,2000.0
|
||||
7,28826892,16054,12000.0,100,108051.158916058,4,31.7619047619048,62.2,00:12.0,01:48.0,639.823505873588,339.0,0.0,0,0.0,0.0,62.2,0.0,101,0,0,0,0,0,0,14000.0,191293.118277239,108051.158916058,50.0,03:11.2,01:48.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.8427206940821,8.74148639965732,4.62743764172336,2000.0
|
||||
8,28826893,16054,14000.0,103,107744.930368922,4,31.5238095238095,71.2,00:14.0,01:47.7,632.493065641848,329.0,0.0,0,0.0,0.0,71.2,0.0,104,0,0,0,0,0,0,16000.0,191293.118277239,107744.930368922,50.0,03:11.2,01:47.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.0514284283481,8.83254208027622,4.640589569161,2000.0
|
||||
9,28826894,16054,16000.0,106,104532.094434436,4,31.3809523809524,81.8,00:16.0,01:44.5,624.728348705208,329.0,0.0,0,0.0,0.0,81.8,0.0,0,107,0,0,0,0,0,18000.0,191293.118277239,104532.094434436,50.0,03:11.2,01:44.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.1372026786615,9.1454584868849,4.78321995464853,2000.0
|
||||
10,28826895,16054,18000.0,109,101913.477537437,4,31.0952380952381,90.8,00:18.0,01:41.9,620.650666797155,320.0,0.0,0,0.0,0.0,90.8,0.0,0,107,0,0,0,0,0,20000.0,191293.118277239,101913.477537437,50.0,03:11.2,01:41.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.329232343667,9.46663749726537,4.9061224489796,2000.0
|
||||
11,28826896,16054,19000.0,111,101077.240430896,4,31.1904761904762,99.6,00:19.0,01:41.0,616.976990424097,320.0,0.0,0,0.0,0.0,99.6,0.0,0,112,0,0,0,0,0,20000.0,191293.118277239,101077.240430896,50.0,03:11.2,01:41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.915113656337,9.51581243184297,4.9467120181406,1000.0
|
||||
12,28826897,16054,22000.0,114,103681.760473974,4,31.1428571428572,110.1,00:22.0,01:43.6,610.193116589015,320.0,0.0,0,0.0,0.0,110.1,0.0,0,114,0,0,0,0,0,25000.0,191293.118277239,103681.760473974,50.0,03:11.2,01:43.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.1320740390913,9.29095674967235,4.82244897959184,3000.0
|
||||
13,28826898,16054,24000.0,116,105795.988868631,4,31.9047619047619,120.3,00:24.0,01:45.7,605.072487356094,320.0,0.0,0,0.0,0.0,120.3,0.0,0,117,0,0,0,0,0,26000.0,191293.118277239,105795.988868631,50.0,03:11.2,01:45.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.3656432966933,8.88784648187634,4.72607709750568,2000.0
|
||||
14,28826899,16054,25000.0,120,104910.077076791,4,32.0952380952381,128.0,00:25.0,01:44.9,601.179594407837,320.0,0.0,0,0.0,0.0,128.0,0.0,0,120,0,0,0,0,0,26000.0,191293.118277239,104910.077076791,50.0,03:11.2,01:44.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.7253999700305,8.90970750317932,4.76598639455783,1000.0
|
||||
15,28826900,16054,27000.0,125,102567.680714485,4,32.1428571428572,136.4,00:27.0,01:42.5,595.716334444153,320.0,0.0,0,0.0,0.0,136.4,0.0,0,122,0,0,0,0,0,29000.0,191293.118277239,102567.680714485,50.0,03:11.2,01:42.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.364634856729,9.09968253968255,4.8748299319728,2000.0
|
||||
16,28826901,16054,29000.0,131,102391.455769677,4,32.0476190476191,146.5,00:29.0,01:42.3,594.221644672837,320.0,0.0,0,0.0,0.0,146.5,0.0,0,135,0,0,0,0,0,31000.0,191293.118277239,102391.455769677,50.0,03:11.2,01:42.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.888909225627,9.14243260454256,4.88321995464853,2000.0
|
||||
17,28826902,16054,31000.0,138,103482.260183968,4,31.8095238095238,154.7,00:31.0,01:43.4,592.808062401965,311.0,0.0,0,0.0,0.0,154.7,0.0,0,135,0,0,0,0,0,33000.0,191293.118277239,103482.260183968,50.0,03:11.2,01:43.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.557017525336,9.11377245508983,4.83174603174604,2000.0
|
||||
18,28826903,16054,33000.0,144,105295.831144644,4,31.4285714285715,164.8,00:33.0,01:45.2,591.203586999654,311.0,0.0,0,0.0,0.0,164.8,0.0,0,144,0,0,0,0,0,35000.0,191293.118277239,105295.831144644,50.0,03:11.2,01:45.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.399354158728,9.06536796536797,4.74852607709751,2000.0
|
||||
19,28826904,16054,35000.0,147,105250.596658711,4,31.3333333333334,175.1,00:35.0,01:45.2,593.76167667151,311.0,0.0,0,0.0,0.0,175.1,0.0,0,0,149,0,0,0,0,37000.0,191293.118277239,105250.596658711,50.0,03:11.2,01:45.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.5236988100614,9.09683022145029,4.75056689342404,2000.0
|
||||
20,28826905,16054,37000.0,151,103424.015009381,4,31.1904761904762,183.2,00:37.0,01:43.4,606.129497731135,311.0,0.0,0,0.0,0.0,183.2,0.0,0,0,150,0,0,0,0,39000.0,191293.118277239,103424.015009381,50.0,03:11.2,01:43.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.728695392431,9.29989094874592,4.83446712018141,2000.0
|
||||
21,28826906,16054,38000.0,152,100763.149476763,4,31.1904761904762,191.5,00:38.0,01:40.7,613.071654918185,320.0,0.0,0,0.0,0.0,191.5,0.0,0,0,152,0,0,0,0,39000.0,191293.118277239,100763.149476763,50.0,03:11.2,01:40.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.908654972733,9.54547437295529,4.96213151927438,1000.0
|
||||
22,28826907,16054,41000.0,153,99422.851474434,4,31.3333333333334,201.9,00:41.0,01:39.4,618.195705351475,329.0,0.0,0,0.0,0.0,201.9,0.0,0,0,153,0,0,0,0,44000.0,191293.118277239,99422.851474434,50.0,03:11.2,01:39.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.246410136425,9.63004776378637,5.02902494331066,3000.0
|
||||
23,28826908,16054,42000.0,153,98117.7412895473,4,31.3809523809524,210.6,00:42.0,01:38.1,623.495511935699,320.0,0.0,0,0.0,0.0,210.6,0.0,0,0,153,0,0,0,0,43000.0,191293.118277239,98117.7412895473,50.0,03:11.2,01:38.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.791169401143,9.7433340559289,5.09591836734695,1000.0
|
||||
24,28826909,16054,44000.0,153,98266.4111591424,4,31.0,220.5,00:44.0,01:38.2,622.535583321472,320.0,0.0,0,0.0,0.0,220.5,0.0,0,0,153,0,0,0,0,46000.0,191293.118277239,98266.4111591424,50.0,03:11.2,01:38.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.266413490989,9.84814570989687,5.08820861678005,2000.0
|
||||
25,28826910,16054,46000.0,154,99096.6698125926,4,30.6190476190476,228.9,00:46.0,01:39.0,615.587977925872,320.0,0.0,0,0.0,0.0,228.9,0.0,0,0,154,0,0,0,0,48000.0,191293.118277239,99096.6698125926,50.0,03:11.2,01:39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.393419825349,9.88713619195735,5.04557823129252,2000.0
|
||||
26,28826911,16054,48000.0,155,101580.13544018,4,30.6666666666667,239.3,00:48.0,01:41.5,607.490850493505,311.0,0.0,0,0.0,0.0,239.3,0.0,0,0,155,0,0,0,0,50000.0,191293.118277239,101580.13544018,50.0,03:11.2,01:41.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.369589491838,9.6304347826087,4.92222222222223,2000.0
|
||||
27,28826912,16054,50000.0,156,104210.974053594,4,30.7142857142857,248.1,00:50.0,01:44.2,597.274013447662,302.0,0.0,0,0.0,0.0,248.1,0.0,0,0,155,0,0,0,0,52000.0,191293.118277239,104210.974053594,50.0,03:11.2,01:44.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.404899495914,9.37275747508306,4.79795918367348,2000.0
|
||||
28,28826913,16054,52000.0,158,105907.780979827,4,30.8571428571429,258.2,00:52.0,01:45.9,591.622702265521,302.0,0.0,0,0.0,0.0,258.2,0.0,0,0,159,0,0,0,0,54000.0,191293.118277239,105907.780979827,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.5612813254418,9.17989417989419,4.72108843537416,2000.0
|
||||
29,28826914,16054,54000.0,160,106244.579358196,4,31.0952380952381,266.7,00:54.0,01:46.2,594.782326147899,311.0,0.0,0,0.0,0.0,266.7,0.0,0,0,0,161,0,0,0,56000.0,191293.118277239,106244.579358196,50.0,03:11.2,01:46.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.8398513404597,9.08072631809233,4.7061224489796,2000.0
|
||||
30,28826915,16054,56000.0,162,106040.203904972,4,31.0,277.0,00:56.0,01:46.0,602.106975022761,311.0,0.0,0,0.0,0.0,277.0,0.0,0,0,0,162,0,0,0,58000.0,191293.118277239,106040.203904972,50.0,03:11.2,01:46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.3834814576512,9.1261795040597,4.71519274376418,2000.0
|
||||
31,28826916,16054,58000.0,163,105537.739912889,4,31.0,285.8,00:58.0,01:45.5,602.072331630413,311.0,0.0,0,0.0,0.0,285.8,0.0,0,0,0,163,0,0,0,60000.0,191293.118277239,105537.739912889,50.0,03:11.2,01:45.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.7379858976122,9.16962914197938,4.73764172335602,2000.0
|
||||
32,28826917,16054,60000.0,164,106106.539627544,4,31.0,296.1,01:00.0,01:46.1,596.817298016033,311.0,0.0,0,0.0,0.0,296.1,0.0,0,0,0,164,0,0,0,62000.0,191293.118277239,106106.539627544,50.0,03:11.2,01:46.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.2065720128483,9.12047399605004,4.71224489795919,2000.0
|
||||
33,28826918,16054,62000.0,164,107341.057345925,4,31.0,304.9,01:02.0,01:47.3,590.962580071806,302.0,0.0,0,0.0,0.0,304.9,0.0,0,0,0,164,0,0,0,64000.0,191293.118277239,107341.057345925,50.0,03:11.2,01:47.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.7051574278414,9.01558042571868,4.65804988662132,2000.0
|
||||
34,28826919,16054,64000.0,165,109396.705695574,4,30.9047619047619,313.2,01:04.0,01:49.3,583.368272808555,302.0,0.0,0,0.0,0.0,313.2,0.0,0,0,0,165,0,0,0,66000.0,191293.118277239,109396.705695574,50.0,03:11.2,01:49.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.5214194021675,8.87343165309268,4.57052154195012,2000.0
|
||||
35,28826920,16054,66000.0,166,110261.02610261,4,31.1428571428572,323.4,01:06.0,01:50.2,579.924663411622,302.0,0.0,0,0.0,0.0,323.4,0.0,0,0,0,166,0,0,0,68000.0,191293.118277239,110261.02610261,50.0,03:11.2,01:50.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.455974848071,8.73656618610748,4.53469387755103,2000.0
|
||||
36,28826921,16054,68000.0,166,109228.711547035,4,31.2857142857143,331.6,01:08.0,01:49.2,585.960280177021,302.0,0.0,0,0.0,0.0,331.6,0.0,0,0,0,166,0,0,0,70000.0,191293.118277239,109228.711547035,50.0,03:11.2,01:49.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.9304866822681,8.7788649706458,4.57755102040817,2000.0
|
||||
37,28826922,16054,70000.0,167,105740.181268882,4,31.3333333333334,342.0,01:10.0,01:45.7,595.024300557365,311.0,0.0,0,0.0,0.0,342.0,0.0,0,0,0,167,0,0,0,72000.0,191293.118277239,105740.181268882,50.0,03:11.2,01:45.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.1891620185055,9.05471124620061,4.72857142857143,2000.0
|
||||
38,28826923,16054,72000.0,167,102021.931245084,4,31.3809523809524,351.0,01:12.0,01:42.0,609.644644918238,320.0,0.0,0,0.0,0.0,351.0,0.0,0,0,0,167,0,0,0,74000.0,191293.118277239,102021.931245084,50.0,03:11.2,01:42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.000052249331,9.37047474528507,4.90090702947846,2000.0
|
||||
39,28826924,16054,73000.0,167,98235.7658380111,4,31.0,360.0,01:13.0,01:38.2,618.164161126169,320.0,0.0,0,0.0,0.0,360.0,0.0,0,0,0,167,0,0,0,74000.0,191293.118277239,98235.7658380111,50.0,03:11.2,01:38.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.374321592194,9.85121790651745,5.08979591836735,1000.0
|
||||
40,28826925,16054,76000.0,168,96604.6002190579,4,30.7142857142857,370.1,01:16.0,01:36.6,617.686185829243,320.0,0.0,0,0.0,0.0,370.1,0.0,0,0,0,0,168,0,0,79000.0,191293.118277239,96604.6002190579,50.0,03:11.2,01:36.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.317832713012,10.1107419712071,5.17573696145126,3000.0
|
||||
41,28826926,16054,77000.0,168,94863.1905007742,4,30.6190476190476,378.6,01:17.0,01:34.8,618.701728986188,311.0,0.0,0,0.0,0.0,378.6,0.0,0,0,0,0,168,0,0,78000.0,191293.118277239,94863.1905007742,50.0,03:11.2,01:34.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,131.830067428749,10.328371473006,5.27074829931974,1000.0
|
||||
42,28826927,16054,79000.0,169,95297.7785461145,4,30.2857142857143,389.1,01:19.0,01:35.2,623.101297046265,311.0,0.0,0,0.0,0.0,389.1,0.0,0,0,0,0,169,0,0,81000.0,191293.118277239,95297.7785461145,50.0,03:11.2,01:35.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130.034719182586,10.3944294699012,5.2467120181406,2000.0
|
||||
43,28826928,16054,81000.0,169,97012.6270403448,4,30.2380952380953,398.1,01:21.0,01:37.0,624.997925690252,320.0,0.0,0,0.0,0.0,398.1,0.0,0,0,0,0,169,0,0,83000.0,191293.118277239,97012.6270403448,50.0,03:11.2,01:37.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.793504601635,10.2267716535433,5.15396825396826,2000.0
|
||||
44,28826929,16054,83000.0,170,102854.743912678,4,30.4761904761905,408.3,01:23.0,01:42.8,624.759747624703,320.0,0.0,0,0.0,0.0,408.3,0.0,0,0,0,0,170,0,0,85000.0,191293.118277239,102854.743912678,50.0,03:11.2,01:42.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.518288272744,9.57053571428572,4.86122448979592,2000.0
|
||||
45,28826930,16054,85000.0,170,109142.20660298,4,30.5714285714286,416.3,01:25.0,01:49.1,617.792723085584,311.0,0.0,0,0.0,0.0,416.3,0.0,0,0,0,0,170,0,0,87000.0,191293.118277239,109142.20660298,50.0,03:11.2,01:49.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.5624351583334,8.9910992434357,4.581179138322,2000.0
|
||||
46,28826931,16054,88000.0,170,114688.442733798,4,30.952380952381,428.8,01:28.0,01:54.6,604.333353701008,311.0,0.0,0,0.0,0.0,428.8,0.0,0,0,0,0,170,0,0,91000.0,191293.118277239,114688.442733798,50.0,03:11.2,01:54.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.6016937626123,8.45098901098902,4.35963718820862,3000.0
|
||||
47,28826932,16054,89000.0,171,113871.101012187,4,31.0952380952381,434.9,01:29.0,01:53.8,592.13161346657,311.0,0.0,0,0.0,0.0,434.9,0.0,0,0,0,0,171,0,0,90000.0,191293.118277239,113871.101012187,50.0,03:11.2,01:53.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.2196755626679,8.47254430102823,4.39092970521543,1000.0
|
||||
48,28826933,16054,92000.0,171,110620.578939447,4,31.0,447.2,01:32.0,01:50.6,589.486159567717,302.0,0.0,0,0.0,0.0,447.2,0.0,0,0,0,0,171,0,0,95000.0,191293.118277239,110620.578939447,50.0,03:11.2,01:50.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.6156819432344,8.7482993197279,4.51995464852608,3000.0
|
||||
49,28826934,16054,93000.0,171,105386.416861827,4,31.0952380952381,455.5,01:33.0,01:45.3,592.322123247787,302.0,0.0,0,0.0,0.0,455.5,0.0,0,0,0,0,171,0,0,94000.0,191293.118277239,105386.416861827,50.0,03:11.2,01:45.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.0164120313597,9.15467075038286,4.74444444444445,1000.0
|
||||
50,28826935,16054,96000.0,171,102543.831093336,4,30.8571428571429,465.5,01:36.0,01:42.5,593.863937574949,311.0,0.0,0,0.0,0.0,465.5,0.0,0,0,0,0,171,0,0,99000.0,191293.118277239,102543.831093336,50.0,03:11.2,01:42.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.37080632728,9.4810405643739,4.87596371882087,3000.0
|
||||
51,28826936,16054,97000.0,171,100350.430073272,4,30.8095238095238,473.2,01:37.0,01:40.3,601.235844684308,311.0,0.0,0,0.0,0.0,473.2,0.0,0,0,0,0,171,0,0,98000.0,191293.118277239,100350.430073272,50.0,03:11.2,01:40.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.365312752971,9.70324574961361,4.98253968253969,1000.0
|
||||
52,28826937,16054,99000.0,172,101017.042330951,4,30.5238095238095,483.2,01:39.0,01:41.0,606.676276846924,302.0,0.0,0,0.0,0.0,483.2,0.0,0,0,0,0,171,0,0,101000.0,191293.118277239,101017.042330951,50.0,03:11.2,01:41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.428691280639,9.72944060619568,4.94965986394558,2000.0
|
||||
53,28826938,16054,101000.0,172,102687.095422158,4,30.4285714285714,492.8,01:41.0,01:42.6,606.547353594129,311.0,0.0,0,0.0,0.0,492.8,0.0,0,0,0,0,173,0,0,103000.0,191293.118277239,102687.095422158,50.0,03:11.2,01:42.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.934575407818,9.60116253074,4.86916099773243,2000.0
|
||||
54,28826939,16054,103000.0,173,106790.003874467,4,30.5238095238095,501.0,01:43.0,01:46.7,606.738201529118,311.0,0.0,0,0.0,0.0,501.0,0.0,0,0,0,0,173,0,0,105000.0,191293.118277239,106790.003874467,50.0,03:11.2,01:46.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.4093357558645,9.203476710497,4.68208616780046,2000.0
|
||||
55,28826940,16054,106000.0,173,109207.072458026,4,30.8095238095238,513.5,01:46.0,01:49.2,609.619057073657,311.0,0.0,0,0.0,0.0,513.5,0.0,0,0,0,0,173,0,0,109000.0,191293.118277239,109207.072458026,50.0,03:11.2,01:49.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.4082799798534,8.91631706778539,4.57845804988663,3000.0
|
||||
56,28826941,16054,107000.0,173,109380.42561635,4,30.8571428571429,520.3,01:47.0,01:49.3,611.291627513931,311.0,0.0,0,0.0,0.0,520.3,0.0,0,0,0,0,173,0,0,108000.0,191293.118277239,109380.42561635,50.0,03:11.2,01:49.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.9980944980496,8.88844797178131,4.57120181405896,1000.0
|
||||
57,28826942,16054,109000.0,173,106460.023174971,4,31.0952380952381,530.2,01:49.0,01:46.4,611.991300301766,320.0,0.0,0,0.0,0.0,530.2,0.0,0,0,0,0,173,0,0,111000.0,191293.118277239,106460.023174971,50.0,03:11.2,01:46.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.6480355583766,9.06234959527456,4.69659863945579,2000.0
|
||||
58,28826943,16054,111000.0,174,102730.152814014,4,31.0,538.5,01:51.0,01:42.7,616.781628571958,320.0,0.0,0,0.0,0.0,538.5,0.0,0,0,0,0,174,0,0,113000.0,191293.118277239,102730.152814014,50.0,03:11.2,01:42.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.884457654043,9.42023260917271,4.8671201814059,2000.0
|
||||
59,28826944,16054,113000.0,174,99751.187514137,4,31.0952380952381,548.9,01:53.0,01:39.7,600.123198098627,311.0,0.0,0,0.0,0.0,548.9,0.0,0,0,0,0,174,0,0,115000.0,191293.118277239,99751.187514137,50.0,03:11.2,01:39.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.38443274036,9.67184423539707,5.0124716553288,2000.0
|
||||
60,28826945,16054,115000.0,174,99535.0516860018,4,30.8571428571429,558.4,01:55.0,01:39.5,556.176130453445,311.0,0.0,0,0.0,0.0,558.4,0.0,0,0,0,0,174,0,0,117000.0,191293.118277239,99535.0516860018,50.0,03:11.2,01:39.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,114.124665180593,9.76763668430336,5.0233560090703,2000.0
|
||||
61,28826946,16054,116000.0,174,101538.036470805,4,33.7619047619048,566.6,01:56.0,01:41.5,651.469855770414,311.0,0.0,0,0.0,0.0,566.6,0.0,0,0,0,0,174,0,0,117000.0,191293.118277239,101538.036470805,50.0,03:11.2,01:41.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.503195288869,8.75115857344348,4.92426303854876,1000.0
|
||||
62,28826947,16054,119000.0,174,108300.589390963,4,29.1428571428572,576.7,01:59.0,01:48.3,680.875896555649,302.0,0.0,0,0.0,0.0,576.7,0.0,0,0,0,0,174,0,0,122000.0,191293.118277239,108300.589390963,50.0,03:11.2,01:48.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.2365051231974,9.50513538748833,4.61678004535148,3000.0
|
||||
63,28826948,16054,121000.0,174,119131.233453995,4,17.952380952381,585.7,02:01.0,01:59.1,747.658541505495,293.0,0.0,0,0.0,0.0,585.7,0.0,0,0,0,0,174,0,0,123000.0,191293.118277239,119131.233453995,50.0,03:11.2,01:59.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.6518452232899,14.0272830617658,4.19705215419502,2000.0
|
||||
64,28826949,16054,124000.0,174,133111.983096891,4,10.6666666666667,595.9,02:04.0,02:13.1,723.895178497639,93.0,0.0,0,0.0,0.0,595.9,0.0,0,0,0,0,174,0,0,127000.0,191293.118277239,133111.983096891,50.0,03:11.2,02:13.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,159.563529802722,21.1288265306123,3.7562358276644,3000.0
|
||||
65,28826950,16054,126000.0,175,150717.703349282,4,7.80952380952381,603.0,02:06.0,02:30.7,565.307539872547,93.0,0.0,0,0.0,0.0,603.0,0.0,0,0,0,0,175,0,0,128000.0,191293.118277239,150717.703349282,50.0,03:11.2,02:30.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.923941610805,25.4878048780488,3.31746031746032,2000.0
|
||||
66,28826951,16054,129000.0,175,170520.454721212,4,10.3333333333333,610.8,02:09.0,02:50.5,337.078174592082,53.0,0.0,0,0.0,0.0,610.8,0.0,0,0,0,0,175,0,0,132000.0,191293.118277239,170520.454721212,50.0,03:11.2,02:50.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,133.187273491298,17.0256747860435,2.93219954648526,3000.0
|
||||
67,28826952,16054,133000.0,175,186943.620178041,4,19.6190476190476,620.2,02:13.0,03:06.9,237.164503502078,50.0,0.0,0,0.0,0.0,620.2,0.0,0,0,0,0,175,0,0,137000.0,191293.118277239,186943.620178041,50.0,03:11.2,03:06.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.143565409703,8.17961165048544,2.67460317460318,4000.0
|
||||
68,28826953,16054,136000.0,175,195270.988310308,4,22.8095238095238,627.9,02:16.0,03:15.2,111.115182580879,51.0,0.0,0,0.0,0.0,627.9,0.0,0,0,0,0,175,0,0,139000.0,191293.118277239,195270.988310308,50.0,03:11.2,03:15.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.1689617326256,6.7354607813898,2.56054421768708,3000.0
|
||||
69,28826954,16054,138000.0,174,192677.385529535,4,20.8571428571429,633.5,02:18.0,03:12.6,127.751393553498,51.0,0.0,0,0.0,0.0,633.5,0.0,0,0,0,0,175,0,0,140000.0,191293.118277239,192677.385529535,50.0,03:11.2,03:12.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.9413078206208,7.46510110893673,2.59501133786848,2000.0
|
||||
70,28826955,16054,141000.0,173,185325.264750378,4,21.0952380952381,641.3,02:21.0,03:05.3,145.465397826049,49.0,0.0,0,0.0,0.0,641.3,0.0,0,0,0,0,172,0,0,144000.0,191293.118277239,185325.264750378,50.0,03:11.2,03:05.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.219434710756,7.67365366010965,2.69795918367347,3000.0
|
||||
71,28826956,16054,143000.0,171,178282.664941785,4,20.9047619047619,648.7,02:23.0,02:58.2,147.413023226583,55.0,0.0,0,0.0,0.0,648.7,0.0,0,0,0,0,172,0,0,145000.0,191293.118277239,178282.664941785,50.0,03:11.2,02:58.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.299546685268,8.0494630654084,2.80453514739229,2000.0
|
||||
72,28826957,16054,147000.0,169,175333.969465649,4,21.0476190476191,657.9,02:27.0,02:55.3,153.056033599733,53.0,0.0,0,0.0,0.0,657.9,0.0,0,0,0,0,168,0,0,151000.0,191293.118277239,175333.969465649,50.0,03:11.2,02:55.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.516330132154,8.12928248222367,2.85170068027211,4000.0
|
||||
73,28826958,16054,149000.0,167,173799.952707496,4,21.3333333333333,664.3,02:29.0,02:53.7,163.459717996501,53.0,0.0,0,0.0,0.0,664.3,0.0,0,0,0,167,0,0,0,151000.0,191293.118277239,173799.952707496,50.0,03:11.2,02:53.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125.78915882816,8.09119897959184,2.87687074829932,2000.0
|
||||
74,28826959,16054,152000.0,166,170191.417104044,4,21.6666666666667,673.5,02:32.0,02:50.1,172.228436410613,67.0,0.0,0,0.0,0.0,673.5,0.0,0,0,0,167,0,0,0,155000.0,191293.118277239,170191.417104044,50.0,03:11.2,02:50.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.969351904565,8.13563579277865,2.93786848072563,3000.0
|
||||
75,28826960,16054,154000.0,165,170112.636938744,4,21.952380952381,679.9,02:34.0,02:50.1,182.517564975351,67.0,0.0,0,0.0,0.0,679.9,0.0,0,0,0,164,0,0,0,156000.0,191293.118277239,170112.636938744,50.0,03:11.2,02:50.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.116645191167,8.03346761698172,2.93922902494331,2000.0
|
||||
76,28826961,16054,157000.0,163,174404.808985209,4,22.0952380952381,687.5,02:37.0,02:54.4,189.745273734792,69.0,0.0,0,0.0,0.0,687.5,0.0,0,0,0,163,0,0,0,160000.0,191293.118277239,174404.808985209,50.0,03:11.2,02:54.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.6188653785739,7.78509852216749,2.86689342403628,3000.0
|
||||
77,28826962,16054,160000.0,162,176909.499358151,4,22.0952380952381,696.5,02:40.0,02:56.9,189.818485950774,69.0,0.0,0,0.0,0.0,696.5,0.0,0,0,0,162,0,0,0,163000.0,191293.118277239,176909.499358151,50.0,03:11.2,02:56.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.6147694830949,7.67487684729064,2.82630385487529,3000.0
|
||||
78,28826963,16054,163000.0,161,176414.11312905,4,21.952380952381,704.1,02:43.0,02:56.4,192.170310111603,72.0,0.0,0,0.0,0.0,704.1,0.0,0,0,0,162,0,0,0,166000.0,191293.118277239,176414.11312905,50.0,03:11.2,02:56.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.5391953341799,7.74651378989774,2.83424036281179,3000.0
|
||||
79,28826964,16054,166000.0,160,171715.598473639,4,21.6666666666667,712.8,02:46.0,02:51.7,201.377346649097,72.0,0.0,0,0.0,0.0,712.8,0.0,0,0,160,0,0,0,0,169000.0,191293.118277239,171715.598473639,50.0,03:11.2,02:51.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.0077527792579,8.06342229199372,2.91179138321996,3000.0
|
||||
80,28826965,16054,168000.0,159,161822.985468956,4,21.2380952380953,720.4,02:48.0,02:41.8,210.442872900687,72.0,0.0,0,0.0,0.0,720.4,0.0,0,0,158,0,0,0,0,170000.0,191293.118277239,161822.985468956,50.0,03:11.2,02:41.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,114.713602929996,8.72901985906471,3.08979591836735,2000.0
|
||||
81,28826966,16054,171000.0,157,154889.013767912,4,21.0,729.9,02:51.0,02:34.8,223.379199508587,82.0,0.0,0,0.0,0.0,729.9,0.0,0,0,158,0,0,0,0,174000.0,191293.118277239,154889.013767912,50.0,03:11.2,02:34.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,114.866225010565,9.22319403952057,3.2281179138322,3000.0
|
||||
82,28826967,16054,174000.0,156,152785.476718403,4,21.4761904761905,738.1,02:54.0,02:32.7,237.480154655063,82.0,0.0,0,0.0,0.0,738.1,0.0,0,0,156,0,0,0,0,177000.0,191293.118277239,152785.476718403,50.0,03:11.2,02:32.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.676249678122,9.14285714285715,3.27256235827665,3000.0
|
||||
83,28826968,16054,177000.0,155,153220.76297686,4,21.9047619047619,749.4,02:57.0,02:33.2,250.155379201233,93.0,0.0,0,0.0,0.0,749.4,0.0,0,0,154,0,0,0,0,180000.0,191293.118277239,153220.76297686,50.0,03:11.2,02:33.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.6242201694,8.93850931677019,3.26326530612245,3000.0
|
||||
84,28826969,16054,179000.0,153,155117.83327471,4,21.7619047619048,755.6,02:59.0,02:35.1,256.464704175758,93.0,0.0,0,0.0,0.0,755.6,0.0,0,0,154,0,0,0,0,181000.0,191293.118277239,155117.83327471,50.0,03:11.2,02:35.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.832354059461,8.88715223507347,3.2233560090703,2000.0
|
||||
85,28826970,16054,183000.0,151,157680.205949657,4,21.9047619047619,767.1,03:03.0,02:37.6,266.114936064416,97.0,0.0,0,0.0,0.0,767.1,0.0,0,0,150,0,0,0,0,187000.0,191293.118277239,157680.205949657,50.0,03:11.2,02:37.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.0374917473945,8.68571428571429,3.17097505668935,4000.0
|
||||
86,28826971,16054,185000.0,149,156405.163853029,4,21.7142857142857,773.5,03:05.0,02:36.4,269.796044740195,97.0,0.0,0,0.0,0.0,773.5,0.0,0,0,149,0,0,0,0,187000.0,191293.118277239,156405.163853029,50.0,03:11.2,02:36.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.3068083950736,8.83333333333334,3.1968253968254,2000.0
|
||||
87,28826972,16054,187000.0,148,152163.411772824,4,21.8571428571429,782.3,03:07.0,02:32.1,273.14862727748,101.0,0.0,0,0.0,0.0,782.3,0.0,0,0,148,0,0,0,0,189000.0,191293.118277239,152163.411772824,50.0,03:11.2,02:32.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.3594198542769,9.02023031434797,3.2859410430839,2000.0
|
||||
88,28826973,16054,190000.0,148,148354.975442374,4,22.6666666666667,792.2,03:10.0,02:28.3,277.397732256172,105.0,0.0,0,0.0,0.0,792.2,0.0,0,0,148,0,0,0,0,193000.0,191293.118277239,148354.975442374,50.0,03:11.2,02:28.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.087459721522,8.92136854741897,3.3702947845805,3000.0
|
||||
89,28826974,16054,193000.0,147,147570.606344532,4,22.8571428571429,801.4,03:13.0,02:27.5,288.887953160513,107.0,0.0,0,0.0,0.0,801.4,0.0,0,0,147,0,0,0,0,196000.0,191293.118277239,147570.606344532,50.0,03:11.2,02:27.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.785211048658,8.89404761904762,3.38820861678005,3000.0
|
||||
90,28826975,16054,196000.0,146,146696.826558446,4,22.5238095238095,812.4,03:16.0,02:26.6,302.965999529022,114.0,0.0,0,0.0,0.0,812.4,0.0,0,146,0,0,0,0,0,199000.0,191293.118277239,146696.826558446,50.0,03:11.2,02:26.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.2525586182569,9.07943219571127,3.40839002267574,3000.0
|
||||
91,28826976,16054,199000.0,146,145823.688909463,4,22.4285714285714,822.4,03:19.0,02:25.8,320.802784062714,122.0,0.0,0,0.0,0.0,822.4,0.0,0,146,0,0,0,0,0,202000.0,191293.118277239,145823.688909463,50.0,03:11.2,02:25.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.5175178223674,9.17258113436458,3.42879818594105,3000.0
|
||||
92,28826977,16054,201000.0,145,143507.972665148,4,22.0476190476191,829.1,03:21.0,02:23.5,334.086536363571,122.0,0.0,0,0.0,0.0,829.1,0.0,0,144,0,0,0,0,0,203000.0,191293.118277239,143507.972665148,50.0,03:11.2,02:23.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.0689039968686,9.48164146868251,3.48412698412699,2000.0
|
||||
93,28826978,16054,204000.0,143,139565.7953035,4,21.8095238095238,840.4,03:24.0,02:19.5,335.447421000086,124.0,0.0,0,0.0,0.0,840.4,0.0,0,144,0,0,0,0,0,207000.0,191293.118277239,139565.7953035,50.0,03:11.2,02:19.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.826777534856,9.85589519650655,3.58253968253969,3000.0
|
||||
94,28826979,16054,206000.0,141,137271.991533337,4,22.1428571428572,848.6,03:26.0,02:17.2,339.335455038523,124.0,0.0,0,0.0,0.0,848.6,0.0,0,141,0,0,0,0,0,208000.0,191293.118277239,137271.991533337,50.0,03:11.2,02:17.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.119044857145,9.86973886328726,3.64240362811792,2000.0
|
||||
95,28826980,16054,209000.0,140,139213.334175137,4,22.1904761904762,857.8,03:29.0,02:19.2,345.757918594502,124.0,0.0,0,0.0,0.0,857.8,0.0,0,140,0,0,0,0,0,212000.0,191293.118277239,139213.334175137,50.0,03:11.2,02:19.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.617383537399,9.71122011036175,3.59160997732427,3000.0
|
||||
96,28826981,16054,212000.0,140,140912.576687116,4,22.3809523809524,869.4,03:32.0,02:20.9,353.39432801031,136.0,0.0,0,0.0,0.0,869.4,0.0,0,140,0,0,0,0,0,215000.0,191293.118277239,140912.576687116,50.0,03:11.2,02:20.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.9771327358286,9.51246200607903,3.54829931972789,3000.0
|
||||
97,28826982,16054,215000.0,140,141056.806550665,4,22.6190476190476,879.0,03:35.0,02:21.0,361.778460353083,136.0,0.0,0,0.0,0.0,879.0,0.0,0,140,0,0,0,0,0,218000.0,191293.118277239,141056.806550665,50.0,03:11.2,02:21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.6952826786455,9.4027067669173,3.54467120181406,3000.0
|
||||
98,28826983,16054,217000.0,140,138227.181544634,4,22.8095238095238,887.4,03:37.0,02:18.2,366.631210028052,139.0,0.0,0,0.0,0.0,887.4,0.0,0,140,0,0,0,0,0,219000.0,191293.118277239,138227.181544634,50.0,03:11.2,02:18.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.3395034271043,9.51506113927826,3.61723356009071,2000.0
|
||||
99,28826984,16054,220000.0,140,133450.341947588,4,22.8571428571429,897.5,03:40.0,02:13.4,366.094736668052,139.0,0.0,0,0.0,0.0,897.5,0.0,0,140,0,0,0,0,0,223000.0,191293.118277239,133450.341947588,50.0,03:11.2,02:13.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.948343585833,9.83511904761905,3.74671201814059,3000.0
|
||||
100,28826985,16054,222000.0,140,129614.389842464,4,23.0952380952381,907.2,03:42.0,02:09.6,368.964747935409,142.0,0.0,0,0.0,0.0,907.2,0.0,0,140,0,0,0,0,0,224000.0,191293.118277239,129614.389842464,50.0,03:11.2,02:09.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.193122584084,10.0217967599411,3.85759637188209,2000.0
|
||||
101,28826986,16054,225000.0,141,128496.503496503,4,22.9047619047619,917.1,03:45.0,02:08.4,368.711112971392,142.0,0.0,0,0.0,0.0,917.1,0.0,0,141,0,0,0,0,0,228000.0,191293.118277239,128496.503496503,50.0,03:11.2,02:08.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.1731510199,10.1930501930502,3.89115646258504,3000.0
|
||||
102,28826987,16054,227000.0,141,128608.923884514,4,22.952380952381,926.8,03:47.0,02:08.6,370.771344280125,142.0,0.0,0,0.0,0.0,926.8,0.0,0,141,0,0,0,0,0,229000.0,191293.118277239,128608.923884514,50.0,03:11.2,02:08.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.868767373085,10.1630112625963,3.88775510204082,2000.0
|
||||
103,28826988,16054,230000.0,142,130396.215257244,4,23.3809523809524,935.7,03:50.0,02:10.3,376.249472899749,145.0,0.0,0,0.0,0.0,935.7,0.0,0,142,0,0,0,0,0,233000.0,191293.118277239,130396.215257244,50.0,03:11.2,02:10.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.869213004564,9.83997672388712,3.83446712018141,3000.0
|
||||
104,28826989,16054,232000.0,142,130481.093555832,4,23.8095238095238,946.3,03:52.0,02:10.4,386.485380658896,155.0,0.0,0,0.0,0.0,946.3,0.0,0,142,0,0,0,0,0,234000.0,191293.118277239,130481.093555832,50.0,03:11.2,02:10.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.646769974308,9.65657142857144,3.83197278911565,2000.0
|
||||
105,28826990,16054,235000.0,142,129751.677062492,4,24.7142857142857,955.5,03:55.0,02:09.7,421.592603673968,170.0,0.0,0,0.0,0.0,955.5,0.0,0,142,0,0,0,0,0,238000.0,191293.118277239,129751.677062492,50.0,03:11.2,02:09.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.2497448805486,9.35535370217452,3.85351473922903,3000.0
|
||||
106,28826991,16054,237000.0,142,126100.880704563,4,25.3333333333333,965.2,03:57.0,02:06.1,438.810462981835,188.0,0.0,0,0.0,0.0,965.2,0.0,0,142,0,0,0,0,0,239000.0,191293.118277239,126100.880704563,50.0,03:11.2,02:06.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.8444260513069,9.39097744360903,3.96507936507937,2000.0
|
||||
107,28826992,16054,240000.0,143,119421.57712305,4,26.6190476190476,975.7,04:00.0,01:59.4,494.502517555929,229.0,0.0,0,0.0,0.0,975.7,0.0,0,142,0,0,0,0,0,243000.0,191293.118277239,119421.57712305,50.0,03:11.2,01:59.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.7396052945525,9.43726041400461,4.18684807256236,3000.0
|
||||
108,28826993,16054,241000.0,144,110748.367654445,4,28.2380952380953,984.0,04:01.0,01:50.7,563.198218849391,229.0,0.0,0,0.0,0.0,984.0,0.0,0,145,0,0,0,0,0,242000.0,191293.118277239,110748.367654445,50.0,03:11.2,01:50.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.517626060688,9.59286918814744,4.51473922902495,1000.0
|
||||
109,28826994,16054,244000.0,145,103730.535823493,4,29.8571428571429,996.6,04:04.0,01:43.7,614.91355327516,339.0,0.0,0,0.0,0.0,996.6,0.0,0,145,0,0,0,0,0,247000.0,191293.118277239,103730.535823493,50.0,03:11.2,01:43.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.5014376061304,9.68648894964685,4.8201814058957,3000.0
|
||||
110,28826995,16054,245000.0,145,98074.100431437,4,30.8095238095238,1003.3,04:05.0,01:38.0,644.041120918944,339.0,0.0,0,0.0,0.0,1003.3,0.0,0,145,0,0,0,0,0,246000.0,191293.118277239,98074.100431437,50.0,03:11.2,01:38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.447374072106,9.92846102892472,5.09818594104309,1000.0
|
||||
111,28826996,16054,247000.0,145,97200.793475865,4,31.4761904761905,1013.6,04:07.0,01:37.2,660.84513677001,329.0,0.0,0,0.0,0.0,1013.6,0.0,0,145,0,0,0,0,0,249000.0,191293.118277239,97200.793475865,50.0,03:11.2,01:37.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.841111459781,9.80548951804626,5.14399092970522,2000.0
|
||||
112,28826997,16054,249000.0,146,99096.6698125926,4,30.952380952381,1023.3,04:09.0,01:39.0,635.313279524039,329.0,0.0,0,0.0,0.0,1023.3,0.0,0,146,0,0,0,0,0,251000.0,191293.118277239,99096.6698125926,50.0,03:11.2,01:39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.318827793652,9.78065934065935,5.04557823129252,2000.0
|
||||
113,28826998,16054,251000.0,146,103457.983390419,4,30.6666666666667,1032.2,04:11.0,01:43.4,640.81453698177,329.0,0.0,0,0.0,0.0,1032.2,0.0,0,146,0,0,0,0,0,253000.0,191293.118277239,103457.983390419,50.0,03:11.2,01:43.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.0683031443401,9.45563442768412,4.83287981859411,2000.0
|
||||
114,28826999,16054,253000.0,148,106640.22827296,4,30.3333333333334,1041.3,04:13.0,01:46.6,654.570561353775,329.0,0.0,0,0.0,0.0,1041.3,0.0,0,0,148,0,0,0,0,255000.0,191293.118277239,106640.22827296,50.0,03:11.2,01:46.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.722085544443,9.2742767436645,4.68866213151928,2000.0
|
||||
115,28827000,16054,256000.0,150,106702.153399468,4,29.952380952381,1054.3,04:16.0,01:46.7,653.874204345717,329.0,0.0,0,0.0,0.0,1054.3,0.0,0,0,148,0,0,0,0,259000.0,191293.118277239,106702.153399468,50.0,03:11.2,01:46.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.56944431622,9.38678173972292,4.68594104308391,3000.0
|
||||
116,28827001,16054,257000.0,152,102572.451970042,4,29.952380952381,1061.9,04:17.0,01:42.5,652.304768608976,329.0,0.0,0,0.0,0.0,1061.9,0.0,0,0,154,0,0,0,0,258000.0,191293.118277239,102572.451970042,50.0,03:11.2,01:42.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.5779844827474,9.76470588235295,4.87460317460318,1000.0
|
||||
117,28827002,16054,259000.0,155,99665.5216054962,4,30.4285714285714,1071.5,04:19.0,01:39.6,644.484210676266,320.0,0.0,0,0.0,0.0,1071.5,0.0,0,0,155,0,0,0,0,261000.0,191293.118277239,99665.5216054962,50.0,03:11.2,01:39.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.479890215579,9.89224234294658,5.01678004535148,2000.0
|
||||
118,28827003,16054,261000.0,157,98923.2839838492,4,30.6190476190476,1081.2,04:21.0,01:38.9,635.008996574134,329.0,0.0,0,0.0,0.0,1081.2,0.0,0,0,156,0,0,0,0,263000.0,191293.118277239,98923.2839838492,50.0,03:11.2,01:38.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.894655122746,9.9044656742946,5.05442176870749,2000.0
|
||||
119,28827004,16054,263000.0,158,102324.933871641,4,30.6190476190476,1091.0,04:23.0,01:42.3,631.012703995575,320.0,0.0,0,0.0,0.0,1091.0,0.0,0,0,158,0,0,0,0,265000.0,191293.118277239,102324.933871641,50.0,03:11.2,01:42.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.087753748714,9.5752055098867,4.88639455782313,2000.0
|
||||
120,28827005,16054,265000.0,160,107513.774440489,4,30.4285714285714,1099.1,04:25.0,01:47.5,636.543465238371,320.0,0.0,0,0.0,0.0,1099.1,0.0,0,0,160,0,0,0,0,267000.0,191293.118277239,107513.774440489,50.0,03:11.2,01:47.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.0087271371455,9.17013190252627,4.65056689342404,2000.0
|
||||
121,28827006,16054,268000.0,162,112511.480763343,4,30.0476190476191,1111.9,04:28.0,01:52.5,634.327221847917,320.0,0.0,0,0.0,0.0,1111.9,0.0,0,0,0,162,0,0,0,271000.0,191293.118277239,112511.480763343,50.0,03:11.2,01:52.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.7940451194362,8.87389630971248,4.44399092970522,3000.0
|
||||
122,28827007,16054,269000.0,163,113525.202080008,4,29.9047619047619,1118.5,04:29.0,01:53.5,634.711072694735,320.0,0.0,0,0.0,0.0,1118.5,0.0,0,0,0,163,0,0,0,270000.0,191293.118277239,113525.202080008,50.0,03:11.2,01:53.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.7551668446233,8.83666969972703,4.40430839002268,1000.0
|
||||
123,28827008,16054,272000.0,165,111645.569620253,4,30.0,1130.8,04:32.0,01:51.6,630.372054684093,311.0,0.0,0,0.0,0.0,1130.8,0.0,0,0,0,165,0,0,0,275000.0,191293.118277239,111645.569620253,50.0,03:11.2,01:51.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.8692050152072,8.95691609977325,4.47845804988663,3000.0
|
||||
124,28827009,16054,274000.0,166,107179.312691392,4,29.9047619047619,1140.9,04:34.0,01:47.1,622.257885179364,311.0,0.0,0,0.0,0.0,1140.9,0.0,0,0,0,166,0,0,0,276000.0,191293.118277239,107179.312691392,50.0,03:11.2,01:47.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.4060100793658,9.35987261146497,4.66507936507937,2000.0
|
||||
125,28827010,16054,275000.0,166,102400.965959225,4,30.0476190476191,1147.2,04:35.0,01:42.4,619.302324920103,311.0,0.0,0,0.0,0.0,1147.2,0.0,0,0,0,166,0,0,0,276000.0,191293.118277239,102400.965959225,50.0,03:11.2,01:42.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.808256165298,9.75005659950193,4.8827664399093,1000.0
|
||||
126,28827011,16054,277000.0,166,99225.9922599225,4,30.3333333333334,1157.5,04:37.0,01:39.2,620.719464136471,311.0,0.0,0,0.0,0.0,1157.5,0.0,0,0,0,166,0,0,0,279000.0,191293.118277239,99225.9922599225,50.0,03:11.2,01:39.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.194383196604,9.96725723256336,5.0390022675737,2000.0
|
||||
127,28827012,16054,279000.0,167,98763.7731792528,4,30.6666666666667,1166.5,04:39.0,01:38.7,618.964196088055,320.0,0.0,0,0.0,0.0,1166.5,0.0,0,0,0,166,0,0,0,281000.0,191293.118277239,98763.7731792528,50.0,03:11.2,01:38.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.53376648839,9.90505767524402,5.06258503401361,2000.0
|
||||
128,28827013,16054,281000.0,167,100583.888331357,4,31.0476190476191,1177.2,04:41.0,01:40.5,621.664877036722,320.0,0.0,0,0.0,0.0,1177.2,0.0,0,0,0,0,168,0,0,283000.0,191293.118277239,100583.888331357,50.0,03:11.2,01:40.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.481273821012,9.60648553900088,4.97097505668935,2000.0
|
||||
129,28827014,16054,283000.0,168,102883.538633818,4,31.0476190476191,1185.8,04:43.0,01:42.8,622.545651564747,320.0,0.0,0,0.0,0.0,1185.8,0.0,0,0,0,0,168,0,0,285000.0,191293.118277239,102883.538633818,50.0,03:11.2,01:42.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.433913664721,9.39176161262051,4.85986394557824,2000.0
|
||||
130,28827015,16054,285000.0,168,104029.062087186,4,30.5714285714286,1194.5,04:45.0,01:44.0,617.79738720768,320.0,0.0,0,0.0,0.0,1194.5,0.0,0,0,0,0,168,0,0,287000.0,191293.118277239,104029.062087186,50.0,03:11.2,01:44.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.1525081604662,9.43302180685359,4.80634920634921,2000.0
|
||||
131,28827016,16054,287000.0,169,103220.672221702,4,30.3809523809524,1207.3,04:47.0,01:43.2,618.511345544859,311.0,0.0,0,0.0,0.0,1207.3,0.0,0,0,0,0,168,0,0,289000.0,191293.118277239,103220.672221702,50.0,03:11.2,01:43.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.331091408236,9.56650246305419,4.84399092970522,2000.0
|
||||
132,28827017,16054,289000.0,169,102396.210643633,4,30.4761904761905,1213.8,04:49.0,01:42.3,621.669847215006,311.0,0.0,0,0.0,0.0,1213.8,0.0,0,0,0,0,170,0,0,291000.0,191293.118277239,102396.210643633,50.0,03:11.2,01:42.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.822858838902,9.61339285714286,4.88299319727892,2000.0
|
||||
133,28827018,16054,291000.0,170,102941.176470588,4,30.5238095238095,1226.0,04:51.0,01:42.9,623.102688259341,320.0,0.0,0,0.0,0.0,1226.0,0.0,0,0,0,0,170,0,0,293000.0,191293.118277239,102941.176470588,50.0,03:11.2,01:42.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.265306122449,9.54758190327614,4.85714285714286,2000.0
|
||||
134,28827019,16054,293000.0,171,105190.344432783,4,30.5238095238095,1233.7,04:53.0,01:45.1,620.018498996229,320.0,0.0,0,0.0,0.0,1233.7,0.0,0,0,0,0,171,0,0,295000.0,191293.118277239,105190.344432783,50.0,03:11.2,01:45.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.9702613166688,9.34343659460665,4.75328798185942,2000.0
|
||||
135,28827020,16054,295000.0,171,106352.19215743,4,30.4761904761905,1243.2,04:55.0,01:46.3,614.526890984271,311.0,0.0,0,0.0,0.0,1243.2,0.0,0,0,0,0,171,0,0,297000.0,191293.118277239,106352.19215743,50.0,03:11.2,01:46.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.555283032338,9.25580357142858,4.70136054421769,2000.0
|
||||
136,28827021,16054,297000.0,172,105125.148986889,4,30.4761904761905,1253.3,04:57.0,01:45.1,606.399682031024,302.0,0.0,0,0.0,0.0,1253.3,0.0,0,0,0,0,172,0,0,299000.0,191293.118277239,105125.148986889,50.0,03:11.2,01:45.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.7565057782656,9.36383928571429,4.7562358276644,2000.0
|
||||
137,28827022,16054,299000.0,172,101664.438194476,4,30.5238095238095,1262.2,04:59.0,01:41.6,603.795429406465,311.0,0.0,0,0.0,0.0,1262.2,0.0,0,0,0,0,172,0,0,301000.0,191293.118277239,101664.438194476,50.0,03:11.2,01:41.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.102710082134,9.66748384221084,4.91814058956917,2000.0
|
||||
138,28827023,16054,300000.0,173,97510.2816963692,4,30.6190476190476,1270.7,05:00.0,01:37.5,609.120606353111,311.0,0.0,0,0.0,0.0,1270.7,0.0,0,0,0,0,173,0,0,301000.0,191293.118277239,97510.2816963692,50.0,03:11.2,01:37.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.382596179506,10.0479893357032,5.12766439909298,1000.0
|
||||
139,28827024,16054,303000.0,173,95649.1562920226,4,30.4285714285714,1283.0,05:03.0,01:35.6,616.199261207931,311.0,0.0,0,0.0,0.0,1283.0,0.0,0,0,0,0,173,0,0,306000.0,191293.118277239,95649.1562920226,50.0,03:11.2,01:35.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,128.606886619557,10.3076235188911,5.22743764172336,3000.0
|
||||
140,28827025,16054,304000.0,173,96422.9490991778,4,30.0476190476191,1289.7,05:04.0,01:36.4,617.6712238225,311.0,0.0,0,0.0,0.0,1289.7,0.0,0,0,0,0,173,0,0,305000.0,191293.118277239,96422.9490991778,50.0,03:11.2,01:36.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125.535461802184,10.3545392800543,5.18548752834468,1000.0
|
||||
141,28827026,16054,307000.0,173,100652.759391975,4,30.0,1302.9,05:07.0,01:40.6,623.737107679568,311.0,0.0,0,0.0,0.0,1302.9,0.0,0,0,0,0,173,0,0,310000.0,191293.118277239,100652.759391975,50.0,03:11.2,01:40.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.36480458577,9.93514739229025,4.96757369614513,3000.0
|
||||
142,28827027,16054,308000.0,173,105320.978219335,4,29.952380952381,1309.1,05:08.0,01:45.3,625.347574527531,311.0,0.0,0,0.0,0.0,1309.1,0.0,0,0,0,0,173,0,0,309000.0,191293.118277239,105320.978219335,50.0,03:11.2,01:45.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.3303199633002,9.50987962752669,4.74739229024944,1000.0
|
||||
143,28827028,16054,311000.0,173,110343.79222339,4,29.5714285714286,1319.4,05:11.0,01:50.3,625.740737583532,311.0,0.0,0,0.0,0.0,1319.4,0.0,0,0,0,0,173,0,0,314000.0,191293.118277239,110343.79222339,50.0,03:11.2,01:50.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.7652596522776,9.19392684610076,4.53129251700681,3000.0
|
||||
144,28827029,16054,313000.0,173,111358.012221605,4,29.3809523809524,1331.3,05:13.0,01:51.3,620.862275146009,302.0,0.0,0,0.0,0.0,1331.3,0.0,0,0,0,0,173,0,0,315000.0,191293.118277239,111358.012221605,50.0,03:11.2,01:51.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.9260321981595,9.16925214169947,4.49002267573697,2000.0
|
||||
145,28827030,16054,315000.0,173,110029.94011976,4,29.3809523809524,1340.7,05:15.0,01:50.0,607.247290524485,302.0,0.0,0,0.0,0.0,1340.7,0.0,0,0,0,0,173,0,0,317000.0,191293.118277239,110029.94011976,50.0,03:11.2,01:50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.0018468045784,9.27992590877519,4.54421768707484,2000.0
|
||||
146,28827031,16054,317000.0,174,105948.491255045,4,29.5714285714286,1350.2,05:17.0,01:45.9,597.697137986302,293.0,0.0,0,0.0,0.0,1350.2,0.0,0,0,0,0,174,0,0,319000.0,191293.118277239,105948.491255045,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.442171714128,9.57533931446976,4.71927437641724,2000.0
|
||||
147,28827032,16054,319000.0,174,102206.359506814,4,29.952380952381,1358.4,05:19.0,01:42.2,602.494950085676,293.0,0.0,0,0.0,0.0,1358.4,0.0,0,0,0,0,174,0,0,321000.0,191293.118277239,102206.359506814,50.0,03:11.2,01:42.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.883660247847,9.79968203497616,4.8920634920635,2000.0
|
||||
148,28827033,16054,320000.0,174,98932.16080402,4,30.0952380952381,1366.7,05:20.0,01:38.9,617.325591284269,311.0,0.0,0,0.0,0.0,1366.7,0.0,0,0,0,0,174,0,0,321000.0,191293.118277239,98932.16080402,50.0,03:11.2,01:38.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.223826848141,10.0759493670886,5.05396825396826,1000.0
|
||||
149,28827034,16054,323000.0,173,99306.4312736443,4,30.0,1379.6,05:23.0,01:39.3,629.333298987189,320.0,0.0,0,0.0,0.0,1379.6,0.0,0,0,0,0,174,0,0,326000.0,191293.118277239,99306.4312736443,50.0,03:11.2,01:39.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.682709218667,10.0698412698413,5.03492063492064,3000.0
|
||||
150,28827035,16054,324000.0,172,100827.655585532,4,30.0,1386.1,05:24.0,01:40.8,628.487221984244,320.0,0.0,0,0.0,0.0,1386.1,0.0,0,0,0,0,172,0,0,325000.0,191293.118277239,100827.655585532,50.0,03:11.2,01:40.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.703596641271,9.91791383219955,4.95895691609978,1000.0
|
||||
151,28827036,16054,327000.0,172,105643.924875431,4,30.0,1398.3,05:27.0,01:45.6,620.473176612417,302.0,0.0,0,0.0,0.0,1398.3,0.0,0,0,0,0,172,0,0,330000.0,191293.118277239,105643.924875431,50.0,03:11.2,01:45.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.2941153255704,9.46575963718821,4.73287981859411,3000.0
|
||||
152,28827037,16054,329000.0,172,111223.203026482,4,30.0,1406.1,05:29.0,01:51.2,611.039180229053,302.0,0.0,0,0.0,0.0,1406.1,0.0,0,0,0,0,172,0,0,331000.0,191293.118277239,111223.203026482,50.0,03:11.2,01:51.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.2315723911376,8.99092970521543,4.49546485260772,2000.0
|
||||
153,28827038,16054,330000.0,173,115005.476451259,4,30.0,1414.7,05:30.0,01:55.0,606.206919716227,311.0,0.0,0,0.0,0.0,1414.7,0.0,0,0,0,0,174,0,0,331000.0,191293.118277239,115005.476451259,50.0,03:11.2,01:55.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,73.9864331527541,8.6952380952381,4.34761904761905,1000.0
|
||||
154,28827039,16054,333000.0,174,116095.403569736,4,30.0,1425.1,05:33.0,01:56.0,605.966942147583,302.0,0.0,0,0.0,0.0,1425.1,0.0,0,0,0,0,174,0,0,336000.0,191293.118277239,116095.403569736,50.0,03:11.2,01:56.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.0655112039047,8.61360544217687,4.30680272108844,3000.0
|
||||
155,28827040,16054,335000.0,174,115263.983272347,4,30.0952380952381,1433.9,05:35.0,01:55.2,607.494589284309,302.0,0.0,0,0.0,0.0,1433.9,0.0,0,0,0,0,174,0,0,337000.0,191293.118277239,115263.983272347,50.0,03:11.2,01:55.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.6798443287447,8.64828209764919,4.33786848072563,2000.0
|
||||
156,28827041,16054,337000.0,174,110893.18044659,4,29.952380952381,1446.2,05:37.0,01:50.8,612.373560389535,302.0,0.0,0,0.0,0.0,1446.2,0.0,0,0,0,0,174,0,0,339000.0,191293.118277239,110893.18044659,50.0,03:11.2,01:50.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.9858423573149,9.03202362025892,4.50884353741497,2000.0
|
||||
157,28827042,16054,339000.0,174,107477.091050887,4,29.4761904761905,1455.0,05:39.0,01:47.4,624.457339727132,311.0,0.0,0,0.0,0.0,1455.0,0.0,0,0,0,0,174,0,0,341000.0,191293.118277239,107477.091050887,50.0,03:11.2,01:47.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.6483587054114,9.46965151165475,4.65215419501135,2000.0
|
||||
158,28827043,16054,341000.0,174,106132.075471698,4,29.4285714285714,1463.3,05:41.0,01:46.1,631.566087726796,311.0,0.0,0,0.0,0.0,1463.3,0.0,0,0,0,0,174,0,0,343000.0,191293.118277239,106132.075471698,50.0,03:11.2,01:46.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.1385888258156,9.60517799352751,4.71111111111112,2000.0
|
||||
159,28827044,16054,343000.0,174,105431.768193554,4,29.7142857142857,1472.1,05:43.0,01:45.4,630.035818652668,311.0,0.0,0,0.0,0.0,1472.1,0.0,0,0,0,0,174,0,0,345000.0,191293.118277239,105431.768193554,50.0,03:11.2,01:45.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.0269610340256,9.57600732600733,4.74240362811792,2000.0
|
||||
160,28827045,16054,345000.0,175,105295.831144644,4,30.2380952380953,1484.5,05:45.0,01:45.2,614.931643479381,311.0,0.0,0,0.0,0.0,1484.5,0.0,0,0,0,0,174,0,0,347000.0,191293.118277239,105295.831144644,50.0,03:11.2,01:45.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.399354158728,9.42227221597301,4.74852607709751,2000.0
|
||||
161,28827046,16054,347000.0,175,104735.667125825,4,31.0,1492.2,05:47.0,01:44.7,598.296109519553,311.0,0.0,0,0.0,0.0,1492.2,0.0,0,0,0,0,176,0,0,349000.0,191293.118277239,104735.667125825,50.0,03:11.2,01:44.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.9543766593671,9.23985077902129,4.77392290249434,2000.0
|
||||
162,28827047,16054,349000.0,176,102491.40094822,4,31.0476190476191,1501.1,05:49.0,01:42.4,589.469932128234,302.0,0.0,0,0.0,0.0,1501.1,0.0,0,0,0,0,176,0,0,351000.0,191293.118277239,102491.40094822,50.0,03:11.2,01:42.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.646227109861,9.42769500438212,4.87845804988663,2000.0
|
||||
163,28827048,16054,350000.0,176,100250.056831098,4,30.9047619047619,1509.8,05:50.0,01:40.2,600.186394801674,302.0,0.0,0,0.0,0.0,1509.8,0.0,0,0,0,0,176,0,0,351000.0,191293.118277239,100250.056831098,50.0,03:11.2,01:40.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.028966795086,9.68302883557121,4.98752834467121,1000.0
|
||||
164,28827049,16054,353000.0,176,99638.4997740622,4,30.3809523809524,1520.4,05:53.0,01:39.6,604.335217879531,311.0,0.0,0,0.0,0.0,1520.4,0.0,0,0,0,0,176,0,0,356000.0,191293.118277239,99638.4997740622,50.0,03:11.2,01:39.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.76956975123,9.91043439319302,5.01814058956917,3000.0
|
||||
165,28827050,16054,354000.0,177,99886.7497168741,4,30.1428571428572,1528.8,05:54.0,01:39.8,603.714174132282,320.0,0.0,0,0.0,0.0,1528.8,0.0,0,0,0,0,177,0,0,355000.0,191293.118277239,99886.7497168741,50.0,03:11.2,01:39.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.747445764636,9.96389076957798,5.00566893424037,1000.0
|
||||
166,28827051,16054,357000.0,177,103921.198981996,4,31.9047619047619,1541.3,05:57.0,01:43.9,645.09283542691,311.0,0.0,0,0.0,0.0,1541.3,0.0,0,0,0,0,177,0,0,360000.0,191293.118277239,103921.198981996,50.0,03:11.2,01:43.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.275586115995,9.04818763326227,4.81133786848073,3000.0
|
||||
167,28827052,16054,359000.0,177,111815.415821501,4,29.0,1551.1,05:59.0,01:51.8,668.826117394646,302.0,0.0,0,0.0,0.0,1551.1,0.0,0,0,0,0,177,0,0,361000.0,191293.118277239,111815.415821501,50.0,03:11.2,01:51.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.9002903826567,9.25170068027212,4.47165532879819,2000.0
|
||||
168,28827053,16054,363000.0,177,125562.325607881,4,25.1428571428572,1566.4,06:03.0,02:05.5,586.27912671157,302.0,0.0,0,0.0,0.0,1566.4,0.0,0,0,0,0,177,0,0,367000.0,191293.118277239,125562.325607881,50.0,03:11.2,02:05.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,58.5440885023444,9.50270562770563,3.98208616780046,4000.0
|
||||
169,28827054,16054,366000.0,176,148926.111036066,4,21.4761904761905,1575.1,06:06.0,02:28.9,442.45021744715,170.0,0.0,0,0.0,0.0,1575.1,0.0,0,0,0,0,176,0,0,369000.0,191293.118277239,148926.111036066,50.0,03:11.2,02:28.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.3313562522709,9.37979094076656,3.35736961451248,3000.0
|
||||
170,28827055,16054,370000.0,176,181990.756025091,4,18.2857142857143,1583.9,06:10.0,03:01.9,261.408361245099,41.0,0.0,0,0.0,0.0,1583.9,0.0,0,0,0,0,176,0,0,374000.0,191293.118277239,181990.756025091,50.0,03:11.2,03:01.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,141.623786029053,9.01488095238096,2.74739229024944,4000.0
|
||||
171,28827056,16054,372000.0,177,213414.634146341,4,17.2380952380952,1589.4,06:12.0,03:33.4,104.766516694706,31.0,0.0,0,0.0,0.0,1589.4,0.0,0,0,0,0,176,0,0,374000.0,191293.118277239,213414.634146341,50.0,03:11.2,03:33.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.153890717578,8.15469613259669,2.34285714285715,2000.0
|
||||
172,28827057,16054,376000.0,177,239179.954441913,4,19.2857142857143,1596.0,06:16.0,03:59.1,61.2859959126936,31.0,0.0,0,0.0,0.0,1596.0,0.0,0,0,0,0,178,0,0,380000.0,191293.118277239,239179.954441913,50.0,03:11.2,03:59.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.5148309072736,6.50370370370371,2.09047619047619,4000.0
|
||||
173,28827058,16054,380000.0,177,246644.295302013,4,18.2857142857143,1604.5,06:20.0,04:06.6,81.259959701959,23.0,0.0,0,0.0,0.0,1604.5,0.0,0,0,0,0,178,0,0,384000.0,191293.118277239,246644.295302013,50.0,03:11.2,04:06.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.420788650385,6.65178571428572,2.02721088435374,4000.0
|
||||
174,28827059,16054,382000.0,177,241036.292085702,4,18.2857142857143,1610.4,06:22.0,04:01.0,77.2015006936365,23.0,0.0,0,0.0,0.0,1610.4,0.0,0,0,0,0,176,0,0,384000.0,191293.118277239,241036.292085702,50.0,03:11.2,04:01.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.665803275054,6.80654761904762,2.07437641723356,2000.0
|
||||
175,28827060,16054,386000.0,175,236233.126205271,4,18.5238095238095,1616.9,06:26.0,03:56.2,77.4208592565336,26.0,0.0,0,0.0,0.0,1616.9,0.0,0,0,0,0,176,0,0,390000.0,191293.118277239,236233.126205271,50.0,03:11.2,03:56.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.110947154996,6.85567388909292,2.11655328798186,4000.0
|
||||
176,28827061,16054,389000.0,174,230841.708542713,4,19.4285714285714,1623.5,06:29.0,03:50.8,84.298711303958,26.0,0.0,0,0.0,0.0,1623.5,0.0,0,0,0,0,174,0,0,392000.0,191293.118277239,230841.708542713,50.0,03:11.2,03:50.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.433894824383,6.68907563025211,2.16598639455783,3000.0
|
||||
177,28827062,16054,392000.0,175,223994.311255587,4,20.0476190476191,1630.6,06:32.0,03:43.9,91.5160827936821,30.0,0.0,0,0.0,0.0,1630.6,0.0,0,0,0,0,174,0,0,395000.0,191293.118277239,223994.311255587,50.0,03:11.2,03:43.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.809195009733,6.68069222938582,2.23219954648526,3000.0
|
||||
178,28827063,16054,395000.0,174,221119.133574007,4,20.2857142857143,1638.8,06:35.0,03:41.1,97.1681115175261,34.0,0.0,0,0.0,0.0,1638.8,0.0,0,0,0,0,174,0,0,398000.0,191293.118277239,221119.133574007,50.0,03:11.2,03:41.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.2160487751956,6.68812877263582,2.26122448979592,3000.0
|
||||
179,28827064,16054,398000.0,172,217455.621301775,4,20.2857142857143,1644.4,06:38.0,03:37.4,105.247549644849,36.0,0.0,0,0.0,0.0,1644.4,0.0,0,0,0,0,174,0,0,401000.0,191293.118277239,217455.621301775,50.0,03:11.2,03:37.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.5482788011368,6.80080482897385,2.29931972789116,3000.0
|
||||
180,28827065,16054,401000.0,170,208727.754638394,4,20.2857142857143,1651.5,06:41.0,03:28.7,108.857676102492,36.0,0.0,0,0.0,0.0,1651.5,0.0,0,0,0,0,168,0,0,404000.0,191293.118277239,208727.754638394,50.0,03:11.2,03:28.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.911627248454,7.08517773306506,2.39546485260771,3000.0
|
||||
181,28827066,16054,404000.0,167,198630.753986127,4,20.0952380952381,1658.7,06:44.0,03:18.6,115.579318479182,39.0,0.0,0,0.0,0.0,1658.7,0.0,0,0,0,167,0,0,0,407000.0,191293.118277239,198630.753986127,50.0,03:11.2,03:18.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,114.515418316511,7.51591062965471,2.51723356009071,3000.0
|
||||
182,28827067,16054,406000.0,165,192542.787286063,4,20.3809523809524,1666.0,06:46.0,03:12.5,122.538432219233,40.0,0.0,0,0.0,0.0,1666.0,0.0,0,0,0,165,0,0,0,408000.0,191293.118277239,192542.787286063,50.0,03:11.2,03:12.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.581883373926,7.64485981308412,2.5968253968254,2000.0
|
||||
183,28827068,16054,410000.0,163,196261.68224299,4,20.7142857142857,1675.3,06:50.0,03:16.2,135.004162726375,47.0,0.0,0,0.0,0.0,1675.3,0.0,0,0,0,162,0,0,0,414000.0,191293.118277239,196261.68224299,50.0,03:11.2,03:16.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.5062157250611,7.37931034482759,2.54761904761905,4000.0
|
||||
184,28827069,16054,413000.0,160,210440.923840427,4,20.7619047619048,1681.7,06:53.0,03:30.4,127.05256823256,45.0,0.0,0,0.0,0.0,1681.7,0.0,0,0,0,162,0,0,0,416000.0,191293.118277239,210440.923840427,50.0,03:11.2,03:30.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.457415518953,6.86631716906947,2.37596371882086,3000.0
|
||||
185,28827070,16054,416000.0,157,224496.02932193,4,20.5238095238095,1687.5,06:56.0,03:44.4,112.696769974106,45.0,0.0,0,0.0,0.0,1687.5,0.0,0,0,156,0,0,0,0,419000.0,191293.118277239,224496.02932193,50.0,03:11.2,03:44.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.7431673682901,6.5111037454425,2.22721088435374,3000.0
|
||||
186,28827071,16054,419000.0,155,226061.103137174,4,20.3333333333333,1694.8,06:59.0,03:46.0,91.5997786750772,23.0,0.0,0,0.0,0.0,1694.8,0.0,0,0,154,0,0,0,0,422000.0,191293.118277239,226061.103137174,50.0,03:11.2,03:46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,131.723323761575,6.52659752425561,2.21179138321996,3000.0
|
||||
187,28827072,16054,422000.0,153,216070.553650171,4,20.1904761904762,1701.7,07:02.0,03:36.0,82.2306516426844,29.0,0.0,0,0.0,0.0,1701.7,0.0,0,0,153,0,0,0,0,425000.0,191293.118277239,216070.553650171,50.0,03:11.2,03:36.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.641897485131,6.8766846361186,2.3140589569161,3000.0
|
||||
188,28827073,16054,424000.0,152,205020.920502092,4,20.0952380952381,1707.3,07:04.0,03:25.0,87.860871275047,29.0,0.0,0,0.0,0.0,1707.3,0.0,0,0,153,0,0,0,0,426000.0,191293.118277239,205020.920502092,50.0,03:11.2,03:25.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,140.047547922356,7.28165199729181,2.43877551020408,2000.0
|
||||
189,28827074,16054,427000.0,152,198523.453677861,4,20.3809523809524,1714.9,07:07.0,03:18.5,115.547803496423,40.0,0.0,0,0.0,0.0,1714.9,0.0,0,0,151,0,0,0,0,430000.0,191293.118277239,198523.453677861,50.0,03:11.2,03:18.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.833672579188,7.41455273698265,2.51859410430839,3000.0
|
||||
190,28827075,16054,430000.0,151,195236.40871259,4,20.6190476190476,1722.1,07:10.0,03:15.2,147.006437933885,50.0,0.0,0,0.0,0.0,1722.1,0.0,0,0,150,0,0,0,0,433000.0,191293.118277239,195236.40871259,50.0,03:11.2,03:15.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.0623032377835,7.45232596502805,2.56099773242631,3000.0
|
||||
191,28827076,16054,434000.0,149,189808.039941465,4,20.9047619047619,1732.6,07:14.0,03:09.8,186.360796117243,63.0,0.0,0,0.0,0.0,1732.6,0.0,0,0,150,0,0,0,0,438000.0,191293.118277239,189808.039941465,50.0,03:11.2,03:09.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.2425752905913,7.56068987959649,2.63424036281179,4000.0
|
||||
192,28827077,16054,437000.0,147,179794.520547945,4,20.8095238095238,1741.7,07:17.0,02:59.7,219.86308386798,79.0,0.0,0,0.0,0.0,1741.7,0.0,0,0,147,0,0,0,0,440000.0,191293.118277239,179794.520547945,50.0,03:11.2,02:59.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.2274860549004,8.01830663615561,2.78095238095238,3000.0
|
||||
193,28827078,16054,440000.0,145,167667.85795757,4,20.6666666666667,1751.0,07:20.0,02:47.6,244.912466669531,85.0,0.0,0,0.0,0.0,1751.0,0.0,0,144,0,0,0,0,0,443000.0,191293.118277239,167667.85795757,50.0,03:11.2,02:47.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.357394123749,8.65766951942068,2.98208616780046,3000.0
|
||||
194,28827079,16054,443000.0,143,158155.214459905,4,20.3809523809524,1760.1,07:23.0,02:38.1,255.263766994691,87.0,0.0,0,0.0,0.0,1760.1,0.0,0,144,0,0,0,0,0,446000.0,191293.118277239,158155.214459905,50.0,03:11.2,02:38.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.694682680933,9.30707610146863,3.16145124716554,3000.0
|
||||
195,28827080,16054,445000.0,142,151995.588336665,4,20.3809523809524,1767.0,07:25.0,02:31.9,255.83979303521,87.0,0.0,0,0.0,0.0,1767.0,0.0,0,142,0,0,0,0,0,447000.0,191293.118277239,151995.588336665,50.0,03:11.2,02:31.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,114.566024593448,9.68424566088118,3.28956916099774,2000.0
|
||||
196,28827081,16054,447000.0,141,150010.204775835,4,20.5714285714286,1775.4,07:27.0,02:30.0,259.681033853997,87.0,0.0,0,0.0,0.0,1775.4,0.0,0,141,0,0,0,0,0,449000.0,191293.118277239,150010.204775835,50.0,03:11.2,02:30.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.175334623261,9.72156084656086,3.33310657596372,2000.0
|
||||
197,28827082,16054,451000.0,141,151995.588336665,4,20.952380952381,1787.2,07:31.0,02:31.9,267.661952822233,93.0,0.0,0,0.0,0.0,1787.2,0.0,0,141,0,0,0,0,0,455000.0,191293.118277239,151995.588336665,50.0,03:11.2,02:31.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.174668168064,9.42012987012988,3.28956916099774,4000.0
|
||||
198,28827083,16054,454000.0,141,155753.337571519,4,21.0952380952381,1796.7,07:34.0,02:35.7,277.998907063626,99.0,0.0,0,0.0,0.0,1796.7,0.0,0,141,0,0,0,0,0,457000.0,191293.118277239,155753.337571519,50.0,03:11.2,02:35.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.5665819136211,9.13060303128024,3.21020408163266,3000.0
|
||||
199,28827084,16054,457000.0,141,157219.251336898,4,21.0,1806.5,07:37.0,02:37.2,285.91044786523,101.0,0.0,0,0.0,0.0,1806.5,0.0,0,141,0,0,0,0,0,460000.0,191293.118277239,157219.251336898,50.0,03:11.2,02:37.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.1722035990516,9.08649173955297,3.18027210884354,3000.0
|
||||
200,28827085,16054,460000.0,141,155052.387314535,4,21.0,1816.1,07:40.0,02:35.0,290.47548473454,101.0,0.0,0,0.0,0.0,1816.1,0.0,0,141,0,0,0,0,0,463000.0,191293.118277239,155052.387314535,50.0,03:11.2,02:35.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.9632500332131,9.2134758665371,3.22471655328799,3000.0
|
||||
201,28827086,16054,462000.0,140,148855.734827516,4,21.0,1823.4,07:42.0,02:28.8,292.056756512306,101.0,0.0,0,0.0,0.0,1823.4,0.0,0,141,0,0,0,0,0,464000.0,191293.118277239,148855.734827516,50.0,03:11.2,02:28.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.063038718032,9.59701976028507,3.35895691609978,2000.0
|
||||
202,28827087,16054,465000.0,139,143079.618454351,4,20.8095238095238,1833.0,07:45.0,02:23.0,281.028855962959,103.0,0.0,0,0.0,0.0,1833.0,0.0,0,138,0,0,0,0,0,468000.0,191293.118277239,143079.618454351,50.0,03:11.2,02:23.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.010553686397,10.0758417783589,3.49455782312925,3000.0
|
||||
203,28827088,16054,467000.0,138,139151.836425596,4,21.0952380952381,1841.8,07:47.0,02:19.1,299.985168964037,103.0,0.0,0,0.0,0.0,1841.8,0.0,0,138,0,0,0,0,0,469000.0,191293.118277239,139151.836425596,50.0,03:11.2,02:19.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,126.114201074633,10.2199290551435,3.59319727891157,2000.0
|
||||
204,28827089,16054,470000.0,137,138045.451699743,4,21.6666666666667,1851.8,07:50.0,02:18.0,332.518117858687,105.0,0.0,0,0.0,0.0,1851.8,0.0,0,137,0,0,0,0,0,473000.0,191293.118277239,138045.451699743,50.0,03:11.2,02:18.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,126.710451626683,10.0301412872842,3.62199546485261,3000.0
|
||||
205,28827090,16054,473000.0,137,137434.554973822,4,22.0476190476191,1862.8,07:53.0,02:17.4,358.497342855964,152.0,0.0,0,0.0,0.0,1862.8,0.0,0,137,0,0,0,0,0,476000.0,191293.118277239,137434.554973822,50.0,03:11.2,02:17.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.7026582328841,9.90064794816415,3.63809523809524,3000.0
|
||||
206,28827091,16054,476000.0,137,134426.629275132,4,23.0476190476191,1873.0,07:56.0,02:14.4,411.851951853419,155.0,0.0,0,0.0,0.0,1873.0,0.0,0,138,0,0,0,0,0,479000.0,191293.118277239,134426.629275132,50.0,03:11.2,02:14.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.9566404455163,9.68299881936246,3.71950113378685,3000.0
|
||||
207,28827092,16054,478000.0,138,127685.447912444,4,23.8095238095238,1883.1,07:58.0,02:07.6,442.786752838111,162.0,0.0,0,0.0,0.0,1883.1,0.0,0,138,0,0,0,0,0,480000.0,191293.118277239,127685.447912444,50.0,03:11.2,02:07.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.783620472932,9.86800000000001,3.91587301587302,2000.0
|
||||
208,28827093,16054,480000.0,139,120071.879764757,4,25.0952380952381,1891.5,08:00.0,02:00.0,470.584517175767,218.0,0.0,0,0.0,0.0,1891.5,0.0,0,138,0,0,0,0,0,482000.0,191293.118277239,120071.879764757,50.0,03:11.2,02:00.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.7443841275911,9.95608566007049,4.16417233560091,2000.0
|
||||
209,28827094,16054,482000.0,139,112465.571763746,4,27.3333333333333,1900.2,08:02.0,01:52.4,531.480311543528,218.0,0.0,0,0.0,0.0,1900.2,0.0,0,140,0,0,0,0,0,484000.0,191293.118277239,112465.571763746,50.0,03:11.2,01:52.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.863305151409,9.75908412145347,4.44580498866214,2000.0
|
||||
210,28827095,16054,484000.0,140,107096.022147749,4,29.2380952380953,1910.7,08:04.0,01:47.0,583.49540248757,293.0,0.0,0,0.0,0.0,1910.7,0.0,0,140,0,0,0,0,0,486000.0,191293.118277239,107096.022147749,50.0,03:11.2,01:47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.2479384250523,9.58073522568637,4.6687074829932,2000.0
|
||||
211,28827096,16054,486000.0,141,104058.518168947,4,30.1428571428572,1920.7,08:06.0,01:44.0,613.287203122209,320.0,0.0,0,0.0,0.0,1920.7,0.0,0,141,0,0,0,0,0,488000.0,191293.118277239,104058.518168947,50.0,03:11.2,01:44.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.0700279673956,9.56443240803431,4.80498866213153,2000.0
|
||||
212,28827097,16054,488000.0,142,102883.538633818,4,30.6666666666667,1929.5,08:08.0,01:42.8,642.899579558708,320.0,0.0,0,0.0,0.0,1929.5,0.0,0,141,0,0,0,0,0,490000.0,191293.118277239,102883.538633818,50.0,03:11.2,01:42.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.433913664721,9.50842945874002,4.85986394557824,2000.0
|
||||
213,28827098,16054,490000.0,143,102553.369610716,4,30.1428571428572,1939.6,08:10.0,01:42.5,632.834981870573,320.0,0.0,0,0.0,0.0,1939.6,0.0,0,143,0,0,0,0,0,492000.0,191293.118277239,102553.369610716,50.0,03:11.2,01:42.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.407076433927,9.70480704129994,4.87551020408164,2000.0
|
||||
214,28827099,16054,492000.0,144,103293.202791961,4,29.9047619047619,1949.5,08:12.0,01:43.2,626.094971913411,311.0,0.0,0,0.0,0.0,1949.5,0.0,0,144,0,0,0,0,0,494000.0,191293.118277239,103293.202791961,50.0,03:11.2,01:43.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.11567775804,9.71201091901729,4.840589569161,2000.0
|
||||
215,28827100,16054,494000.0,145,104840.24343857,4,30.0,1958.2,08:14.0,01:44.8,622.600567200411,311.0,0.0,0,0.0,0.0,1958.2,0.0,0,145,0,0,0,0,0,496000.0,191293.118277239,104840.24343857,50.0,03:11.2,01:44.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.6615456050733,9.53832199546486,4.76916099773243,2000.0
|
||||
216,28827101,16054,496000.0,146,107200.155573922,4,30.0,1968.5,08:16.0,01:47.2,621.714715517626,311.0,0.0,0,0.0,0.0,1968.5,0.0,0,146,0,0,0,0,0,498000.0,191293.118277239,107200.155573922,50.0,03:11.2,01:47.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.3527043451329,9.32834467120182,4.66417233560091,2000.0
|
||||
217,28827102,16054,498000.0,147,109158.415841584,4,30.0,1976.9,08:18.0,01:49.1,628.004230927233,311.0,0.0,0,0.0,0.0,1976.9,0.0,0,0,147,0,0,0,0,500000.0,191293.118277239,109158.415841584,50.0,03:11.2,01:49.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.523879189563,9.16099773242631,4.58049886621316,2000.0
|
||||
218,28827103,16054,501000.0,149,108948.070556846,4,30.0,1990.1,08:21.0,01:48.9,634.951050030139,320.0,0.0,0,0.0,0.0,1990.1,0.0,0,0,150,0,0,0,0,504000.0,191293.118277239,108948.070556846,50.0,03:11.2,01:48.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.5783942814571,9.17868480725624,4.58934240362812,3000.0
|
||||
219,28827104,16054,502000.0,151,105907.780979827,4,30.0,1996.7,08:22.0,01:45.9,638.134473721704,320.0,0.0,0,0.0,0.0,1996.7,0.0,0,0,150,0,0,0,0,503000.0,191293.118277239,105907.780979827,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.0734592508857,9.4421768707483,4.72108843537416,1000.0
|
||||
220,28827105,16054,504000.0,154,102059.708400833,4,30.0952380952381,2007.1,08:24.0,01:42.0,636.791870096518,320.0,0.0,0,0.0,0.0,2007.1,0.0,0,0,155,0,0,0,0,506000.0,191293.118277239,102059.708400833,50.0,03:11.2,01:42.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.885718914691,9.76717902350814,4.89909297052155,2000.0
|
||||
221,28827106,16054,506000.0,156,99932.0190346702,4,29.7619047619048,2016.0,08:26.0,01:39.9,629.977401515244,311.0,0.0,0,0.0,0.0,2016.0,0.0,0,0,155,0,0,0,0,508000.0,191293.118277239,99932.0190346702,50.0,03:11.2,01:39.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.770023065312,10.0868571428572,5.00340136054422,2000.0
|
||||
222,28827107,16054,508000.0,159,100204.498977505,4,29.8571428571429,2026.6,08:28.0,01:40.2,625.779095617962,311.0,0.0,0,0.0,0.0,2026.6,0.0,0,0,160,0,0,0,0,510000.0,191293.118277239,100204.498977505,50.0,03:11.2,01:40.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.852576546635,10.0273410799727,4.98979591836735,2000.0
|
||||
223,28827108,16054,510000.0,160,101908.767389194,4,29.952380952381,2035.0,08:30.0,01:41.9,623.198565901992,311.0,0.0,0,0.0,0.0,2035.0,0.0,0,0,0,161,0,0,0,512000.0,191293.118277239,101908.767389194,50.0,03:11.2,01:41.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.334210067286,9.82829888712242,4.90634920634921,2000.0
|
||||
224,28827109,16054,512000.0,162,103254.507141185,4,29.952380952381,2045.3,08:32.0,01:43.2,622.746103768887,311.0,0.0,0,0.0,0.0,2045.3,0.0,0,0,0,161,0,0,0,514000.0,191293.118277239,103254.507141185,50.0,03:11.2,01:43.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.23052737783,9.70020440608676,4.84240362811792,2000.0
|
||||
225,28827110,16054,514000.0,163,104092.904687721,4,30.1904761904762,2054.8,08:34.0,01:44.0,616.461643803036,311.0,0.0,0,0.0,0.0,2054.8,0.0,0,0,0,163,0,0,0,516000.0,191293.118277239,104092.904687721,50.0,03:11.2,01:44.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.780177587387,9.54619197836864,4.80340136054422,2000.0
|
||||
226,28827111,16054,516000.0,164,104611.443210931,4,30.5714285714286,2064.8,08:36.0,01:44.6,606.197575356378,311.0,0.0,0,0.0,0.0,2064.8,0.0,0,0,0,165,0,0,0,518000.0,191293.118277239,104611.443210931,50.0,03:11.2,01:44.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.3037475619277,9.38050734312417,4.7795918367347,2000.0
|
||||
227,28827112,16054,518000.0,165,105608.506154509,4,30.6666666666667,2073.4,08:38.0,01:45.6,593.209515290605,302.0,0.0,0,0.0,0.0,2073.4,0.0,0,0,0,165,0,0,0,520000.0,191293.118277239,105608.506154509,50.0,03:11.2,01:45.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.3930454126554,9.26308784383319,4.73446712018141,2000.0
|
||||
228,28827113,16054,520000.0,166,106516.593401285,4,30.9047619047619,2082.3,08:40.0,01:46.5,591.703843065743,302.0,0.0,0,0.0,0.0,2082.3,0.0,0,0,0,166,0,0,0,522000.0,191293.118277239,106516.593401285,50.0,03:11.2,01:46.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.8979439623268,9.11336121505614,4.69410430839003,2000.0
|
||||
229,28827114,16054,522000.0,167,106604.138464513,4,30.7619047619048,2092.6,08:42.0,01:46.6,595.401859109363,302.0,0.0,0,0.0,0.0,2092.6,0.0,0,0,0,167,0,0,0,524000.0,191293.118277239,106604.138464513,50.0,03:11.2,01:46.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.6618790456315,9.14816452896949,4.69024943310658,2000.0
|
||||
230,28827115,16054,524000.0,167,105902.694395082,4,30.2380952380953,2102.3,08:44.0,01:45.9,601.165644407997,311.0,0.0,0,0.0,0.0,2102.3,0.0,0,0,0,167,0,0,0,526000.0,191293.118277239,105902.694395082,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.7516161617279,9.36827896512936,4.72131519274377,2000.0
|
||||
231,28827116,16054,526000.0,168,105320.978219335,4,30.0952380952381,2111.7,08:46.0,01:45.3,606.218816965865,302.0,0.0,0,0.0,0.0,2111.7,0.0,0,0,0,0,168,0,0,528000.0,191293.118277239,105320.978219335,50.0,03:11.2,01:45.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.2010910880343,9.46473779385172,4.74739229024944,2000.0
|
||||
232,28827117,16054,528000.0,168,105603.448275862,4,30.2380952380953,2120.1,08:48.0,01:45.6,606.302320638149,302.0,0.0,0,0.0,0.0,2120.1,0.0,0,0,0,0,168,0,0,530000.0,191293.118277239,105603.448275862,50.0,03:11.2,01:45.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.4071836986879,9.39482564679416,4.73469387755103,2000.0
|
||||
233,28827118,16054,530000.0,168,106810.695601627,4,30.6666666666667,2130.6,08:50.0,01:46.8,600.725536061329,311.0,0.0,0,0.0,0.0,2130.6,0.0,0,0,0,0,168,0,0,532000.0,191293.118277239,106810.695601627,50.0,03:11.2,01:46.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.3556406173148,9.15882874889087,4.681179138322,2000.0
|
||||
234,28827119,16054,532000.0,169,107075.219734861,4,31.0476190476191,2139.7,08:52.0,01:47.0,602.871637338245,311.0,0.0,0,0.0,0.0,2139.7,0.0,0,0,0,0,168,0,0,534000.0,191293.118277239,107075.219734861,50.0,03:11.2,01:47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.6728498179769,9.02410166520596,4.66961451247166,2000.0
|
||||
235,28827120,16054,534000.0,170,104656.129859034,4,31.0476190476191,2148.6,08:54.0,01:44.6,605.732784493653,311.0,0.0,0,0.0,0.0,2148.6,0.0,0,0,0,0,171,0,0,536000.0,191293.118277239,104656.129859034,50.0,03:11.2,01:44.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.1778785022397,9.23269062226118,4.77755102040817,2000.0
|
||||
236,28827121,16054,536000.0,171,101528.685882678,4,30.5714285714286,2158.1,08:56.0,01:41.5,609.678155190544,311.0,0.0,0,0.0,0.0,2158.1,0.0,0,0,0,0,171,0,0,538000.0,191293.118277239,101528.685882678,50.0,03:11.2,01:41.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.532900509837,9.66533155318203,4.92471655328799,2000.0
|
||||
237,28827122,16054,538000.0,171,99007.6781464684,4,30.3809523809524,2170.1,08:58.0,01:39.0,610.421902812849,311.0,0.0,0,0.0,0.0,2170.1,0.0,0,0,0,0,171,0,0,540000.0,191293.118277239,99007.6781464684,50.0,03:11.2,01:39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.958083164161,9.97357814599195,5.05011337868481,2000.0
|
||||
238,28827123,16054,539000.0,172,99977.3294037632,4,30.4761904761905,2176.6,08:59.0,01:39.9,606.661945897746,311.0,0.0,0,0.0,0.0,2176.6,0.0,0,0,0,0,171,0,0,540000.0,191293.118277239,99977.3294037632,50.0,03:11.2,01:39.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.616768241809,9.84598214285715,5.00113378684808,1000.0
|
||||
239,28827124,16054,542000.0,172,104289.835879487,4,30.6190476190476,2186.6,09:02.0,01:44.2,600.710099667068,302.0,0.0,0,0.0,0.0,2186.6,0.0,0,0,0,0,173,0,0,545000.0,191293.118277239,104289.835879487,50.0,03:11.2,01:44.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.172765691771,9.39480115529883,4.79433106575964,3000.0
|
||||
240,28827125,16054,544000.0,173,107676.530911222,4,30.3809523809524,2196.5,09:04.0,01:47.6,593.751641899926,302.0,0.0,0,0.0,0.0,2196.5,0.0,0,0,0,0,173,0,0,546000.0,191293.118277239,107676.530911222,50.0,03:11.2,01:47.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.8320489166286,9.17062248096732,4.64353741496599,2000.0
|
||||
241,28827126,16054,545000.0,173,106702.153399468,4,30.1904761904762,2205.0,09:05.0,01:46.7,598.973456202783,302.0,0.0,0,0.0,0.0,2205.0,0.0,0,0,0,0,173,0,0,546000.0,191293.118277239,106702.153399468,50.0,03:11.2,01:46.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.398500596147,9.31275349256422,4.68594104308391,1000.0
|
||||
242,28827127,16054,548000.0,173,103994.717728623,4,30.1428571428572,2215.2,09:08.0,01:43.9,615.955606173259,302.0,0.0,0,0.0,0.0,2215.2,0.0,0,0,0,0,173,0,0,551000.0,191293.118277239,103994.717728623,50.0,03:11.2,01:43.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.045079828569,9.57030015797789,4.80793650793651,3000.0
|
||||
243,28827128,16054,549000.0,174,101645.692158761,4,30.2380952380953,2224.1,09:09.0,01:41.6,620.780567575756,320.0,0.0,0,0.0,0.0,2224.1,0.0,0,0,0,0,174,0,0,550000.0,191293.118277239,101645.692158761,50.0,03:11.2,01:41.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.14804771353,9.76062992125985,4.91904761904763,1000.0
|
||||
244,28827129,16054,551000.0,174,102864.340362008,4,30.3809523809524,2234.0,09:11.0,01:42.8,618.892482032273,320.0,0.0,0,0.0,0.0,2234.0,0.0,0,0,0,0,174,0,0,553000.0,191293.118277239,102864.340362008,50.0,03:11.2,01:42.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.49015815492,9.59964173757278,4.8607709750567,2000.0
|
||||
245,28827130,16054,554000.0,174,105714.833636974,4,30.5714285714286,2245.8,09:14.0,01:45.7,610.918407917415,302.0,0.0,0,0.0,0.0,2245.8,0.0,0,0,0,0,174,0,0,557000.0,191293.118277239,105714.833636974,50.0,03:11.2,01:45.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.0964541359781,9.28259902091678,4.72970521541951,3000.0
|
||||
246,28827131,16054,555000.0,175,106857.281318149,4,30.3809523809524,2252.2,09:15.0,01:46.8,593.963726925202,302.0,0.0,0,0.0,0.0,2252.2,0.0,0,0,0,0,175,0,0,556000.0,191293.118277239,106857.281318149,50.0,03:11.2,01:46.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.9836248774151,9.2409314823108,4.67913832199547,1000.0
|
||||
247,28827132,16054,557000.0,175,105573.11117495,4,30.5714285714286,2262.5,09:17.0,01:45.5,589.435767553537,302.0,0.0,0,0.0,0.0,2262.5,0.0,0,0,0,0,175,0,0,559000.0,191293.118277239,105573.11117495,50.0,03:11.2,01:45.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.4920418575961,9.29506008010681,4.73605442176871,2000.0
|
||||
248,28827133,16054,559000.0,175,103960.396039604,4,30.952380952381,2271.0,09:19.0,01:43.9,589.670645374827,302.0,0.0,0,0.0,0.0,2271.0,0.0,0,0,0,0,175,0,0,561000.0,191293.118277239,103960.396039604,50.0,03:11.2,01:43.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.147172040266,9.32307692307693,4.80952380952382,2000.0
|
||||
249,28827134,16054,561000.0,175,103346.456692913,4,31.1904761904762,2281.0,09:21.0,01:43.3,592.384575292835,311.0,0.0,0,0.0,0.0,2281.0,0.0,0,0,0,0,175,0,0,563000.0,191293.118277239,103346.456692913,50.0,03:11.2,01:43.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.957900027464,9.30687022900764,4.83809523809524,2000.0
|
||||
250,28827135,16054,563000.0,175,104063.42913776,4,30.952380952381,2290.3,09:23.0,01:44.0,595.690273963977,302.0,0.0,0,0.0,0.0,2290.3,0.0,0,0,0,0,175,0,0,565000.0,191293.118277239,104063.42913776,50.0,03:11.2,01:44.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.841097545715,9.31384615384616,4.80476190476191,2000.0
|
||||
251,28827136,16054,565000.0,175,105391.453971895,4,30.5714285714286,2300.4,09:25.0,01:45.3,598.572938569389,311.0,0.0,0,0.0,0.0,2300.4,0.0,0,0,0,0,175,0,0,567000.0,191293.118277239,105391.453971895,50.0,03:11.2,01:45.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.1371995703292,9.31108144192257,4.74421768707484,2000.0
|
||||
252,28827137,16054,567000.0,176,107629.228291111,4,30.4761904761905,2308.6,09:27.0,01:47.6,600.232012949756,302.0,0.0,0,0.0,0.0,2308.6,0.0,0,0,0,0,175,0,0,569000.0,191293.118277239,107629.228291111,50.0,03:11.2,01:47.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.9545006728413,9.14598214285715,4.64557823129252,2000.0
|
||||
253,28827138,16054,569000.0,176,110531.856233395,4,30.3333333333334,2318.6,09:29.0,01:50.5,599.030397679677,302.0,0.0,0,0.0,0.0,2318.6,0.0,0,0,0,0,177,0,0,571000.0,191293.118277239,110531.856233395,50.0,03:11.2,01:50.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.8220157770122,8.94774613141961,4.52358276643992,2000.0
|
||||
254,28827139,16054,571000.0,177,112482.783247462,4,30.2380952380953,2326.9,09:31.0,01:52.4,588.504947967916,302.0,0.0,0,0.0,0.0,2326.9,0.0,0,0,0,0,177,0,0,573000.0,191293.118277239,112482.783247462,50.0,03:11.2,01:52.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.4334697397693,8.82024746906637,4.44512471655329,2000.0
|
||||
255,28827140,16054,574000.0,177,112396.778468753,4,30.2857142857143,2339.1,09:34.0,01:52.3,589.455169286379,293.0,0.0,0,0.0,0.0,2339.1,0.0,0,0,0,0,177,0,0,577000.0,191293.118277239,112396.778468753,50.0,03:11.2,01:52.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.1276646374215,8.81311769991016,4.44852607709751,3000.0
|
||||
256,28827141,16054,575000.0,177,109217.890930705,4,30.1428571428572,2346.8,09:35.0,01:49.2,591.723484159021,293.0,0.0,0,0.0,0.0,2346.8,0.0,0,0,0,0,177,0,0,576000.0,191293.118277239,109217.890930705,50.0,03:11.2,01:49.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.6893864674375,9.1126156623787,4.5780045351474,1000.0
|
||||
257,28827142,16054,577000.0,177,105948.491255045,4,29.8095238095238,2355.8,09:37.0,01:45.9,598.501152640663,302.0,0.0,0,0.0,0.0,2355.8,0.0,0,0,0,0,177,0,0,579000.0,191293.118277239,105948.491255045,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.448861961058,9.49885896850753,4.71927437641724,2000.0
|
||||
258,28827143,16054,579000.0,177,104137.149334089,4,30.0476190476191,2364.6,09:39.0,01:44.1,602.349375433892,302.0,0.0,0,0.0,0.0,2364.6,0.0,0,0,0,0,177,0,0,581000.0,191293.118277239,104137.149334089,50.0,03:11.2,01:44.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.622844016005,9.5875028299751,4.80136054421769,2000.0
|
||||
259,28827144,16054,581000.0,177,104467.712133415,4,30.2380952380953,2373.2,09:41.0,01:44.4,590.867204978937,302.0,0.0,0,0.0,0.0,2373.2,0.0,0,0,0,0,177,0,0,583000.0,191293.118277239,104467.712133415,50.0,03:11.2,01:44.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.651747825706,9.49696287964005,4.78616780045352,2000.0
|
||||
260,28827145,16054,583000.0,177,106254.818812644,4,30.7142857142857,2384.9,09:43.0,01:46.2,578.170824991023,293.0,0.0,0,0.0,0.0,2384.9,0.0,0,0,0,0,177,0,0,585000.0,191293.118277239,106254.818812644,50.0,03:11.2,01:46.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.5759638339546,9.19246954595793,4.70566893424037,2000.0
|
||||
261,28827146,16054,585000.0,177,108258.051846033,4,31.3809523809524,2392.8,09:45.0,01:48.2,577.588627123729,293.0,0.0,0,0.0,0.0,2392.8,0.0,0,0,0,0,177,0,0,587000.0,191293.118277239,108258.051846033,50.0,03:11.2,01:48.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.1498866545698,8.83069585952743,4.6185941043084,2000.0
|
||||
262,28827147,16054,587000.0,177,109185.441941074,4,31.7142857142857,2401.3,09:47.0,01:49.1,575.645480722681,311.0,0.0,0,0.0,0.0,2401.3,0.0,0,0,0,0,177,0,0,589000.0,191293.118277239,109185.441941074,50.0,03:11.2,01:49.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.4596446864777,8.66366366366367,4.57936507936509,2000.0
|
||||
263,28827148,16054,589000.0,177,107744.930368922,4,31.6190476190476,2411.3,09:49.0,01:47.7,576.544821078453,311.0,0.0,0,0.0,0.0,2411.3,0.0,0,0,0,0,177,0,0,591000.0,191293.118277239,107744.930368922,50.0,03:11.2,01:47.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.9740191412427,8.80593803786575,4.640589569161,2000.0
|
||||
264,28827149,16054,591000.0,177,103652.517275419,4,31.4285714285715,2420.1,09:51.0,01:43.6,577.039275117504,293.0,0.0,0,0.0,0.0,2420.1,0.0,0,0,0,0,177,0,0,593000.0,191293.118277239,103652.517275419,50.0,03:11.2,01:43.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.265697930291,9.20909090909091,4.82380952380953,2000.0
|
||||
265,28827150,16054,592000.0,177,99212.5984251967,4,31.1428571428572,2428.6,09:52.0,01:39.2,563.625397656588,293.0,0.0,0,0.0,0.0,2428.6,0.0,0,0,0,0,177,0,0,593000.0,191293.118277239,99212.5984251967,50.0,03:11.2,01:39.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.320698247979,9.70948012232416,5.03968253968255,1000.0
|
||||
266,28827151,16054,595000.0,177,98109.0100111233,4,30.8571428571429,2440.6,09:55.0,01:38.1,551.046089769556,293.0,0.0,0,0.0,0.0,2440.6,0.0,0,0,0,0,177,0,0,598000.0,191293.118277239,98109.0100111233,50.0,03:11.2,01:38.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,126.495111967638,9.90961199294533,5.09637188208617,3000.0
|
||||
267,28827152,16054,596000.0,177,101575.456053068,4,32.5714285714286,2446.7,09:56.0,01:41.5,589.645851469518,293.0,0.0,0,0.0,0.0,2446.7,0.0,0,0,0,0,177,0,0,597000.0,191293.118277239,101575.456053068,50.0,03:11.2,01:41.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.981424755775,9.06766917293234,4.92244897959184,1000.0
|
||||
268,28827153,16054,599000.0,177,112770.418861556,4,29.3809523809524,2458.0,09:59.0,01:52.7,542.647280114248,270.0,0.0,0,0.0,0.0,2458.0,0.0,0,0,0,0,177,0,0,602000.0,191293.118277239,112770.418861556,50.0,03:11.2,01:52.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.3896489274321,9.05441074322761,4.43378684807257,3000.0
|
||||
269,28827154,16054,601000.0,177,131437.768240343,4,22.5238095238095,2466.4,10:01.0,02:11.4,479.574163004897,224.0,0.0,0,0.0,0.0,2466.4,0.0,0,0,0,0,177,0,0,603000.0,191293.118277239,131437.768240343,50.0,03:11.2,02:11.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.811257894245,10.1334944125642,3.80408163265307,2000.0
|
||||
270,28827155,16054,607000.0,177,158598.863554628,4,17.0,2482.8,10:07.0,02:38.5,375.740993303022,69.0,0.0,0,0.0,0.0,2482.8,0.0,0,0,0,0,177,0,0,613000.0,191293.118277239,158598.863554628,50.0,03:11.2,02:38.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,127.150695625544,11.1268507402961,3.15260770975057,6000.0
|
||||
271,28827156,16054,610000.0,177,192274.15416812,4,13.952380952381,2488.8,10:10.0,03:12.2,239.368830752293,69.0,0.0,0,0.0,0.0,2488.8,0.0,0,0,0,0,177,0,0,613000.0,191293.118277239,192274.15416812,50.0,03:11.2,03:12.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.3602273524192,11.1828376401755,2.60045351473923,3000.0
|
||||
272,28827157,16054,613000.0,177,229687.5,4,14.1904761904762,2495.8,10:13.0,03:49.6,123.316124344011,29.0,0.0,0,0.0,0.0,2495.8,0.0,0,0,0,0,177,0,0,616000.0,191293.118277239,229687.5,50.0,03:11.2,03:49.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.5996848299772,9.20421860019176,2.17687074829932,3000.0
|
||||
273,28827158,16054,617000.0,177,258378.251699086,4,18.4285714285714,2502.6,10:17.0,04:18.3,91.1866374814785,18.0,0.0,0,0.0,0.0,2502.6,0.0,0,0,0,0,177,0,0,621000.0,191293.118277239,258378.251699086,50.0,03:11.2,04:18.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.726928390343,6.30047988187524,1.93514739229025,4000.0
|
||||
274,28827159,16054,620000.0,177,275418.43617287,4,19.5714285714286,2507.6,10:20.0,04:35.4,42.0721495456059,18.0,0.0,0,0.0,0.0,2507.6,0.0,0,0,0,0,177,0,0,623000.0,191293.118277239,275418.43617287,50.0,03:11.2,04:35.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.0714575258041,5.56551963851234,1.81541950113379,3000.0
|
||||
275,28827160,16054,623000.0,177,271618.625277161,4,18.5714285714286,2513.4,10:23.0,04:31.6,48.7894998617931,16.0,0.0,0,0.0,0.0,2513.4,0.0,0,0,0,0,177,0,0,626000.0,191293.118277239,271618.625277161,50.0,03:11.2,04:31.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.161481525555,5.94725274725275,1.84081632653062,3000.0
|
||||
276,28827161,16054,626000.0,176,259625.574002119,4,18.952380952381,2519.3,10:26.0,04:19.6,56.7565282185509,19.0,0.0,0,0.0,0.0,2519.3,0.0,0,0,0,0,177,0,0,629000.0,191293.118277239,259625.574002119,50.0,03:11.2,04:19.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.262101020519,6.09691313711415,1.92585034013606,3000.0
|
||||
277,28827162,16054,629000.0,174,248815.165876777,4,19.0952380952381,2525.8,10:29.0,04:08.8,62.6817532085538,19.0,0.0,0,0.0,0.0,2525.8,0.0,0,0,0,0,174,0,0,632000.0,191293.118277239,248815.165876777,50.0,03:11.2,04:08.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.586980148785,6.3142144638404,2.00952380952381,3000.0
|
||||
278,28827163,16054,633000.0,172,242921.670155337,4,19.0,2533.1,10:33.0,04:02.9,68.3266908180435,22.0,0.0,0,0.0,0.0,2533.1,0.0,0,0,0,0,172,0,0,637000.0,191293.118277239,242921.670155337,50.0,03:11.2,04:02.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.980477344916,6.49982098102399,2.05827664399093,4000.0
|
||||
279,28827164,16054,636000.0,171,238455.715367146,4,18.6666666666667,2540.3,10:36.0,03:58.4,74.6091802054376,24.0,0.0,0,0.0,0.0,2540.3,0.0,0,0,0,0,170,0,0,639000.0,191293.118277239,238455.715367146,50.0,03:11.2,03:58.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.555740367478,6.73979591836735,2.0968253968254,3000.0
|
||||
280,28827165,16054,639000.0,170,235828.877005347,4,18.5238095238095,2545.7,10:39.0,03:55.8,83.0167340334816,24.0,0.0,0,0.0,0.0,2545.7,0.0,0,0,0,0,170,0,0,642000.0,191293.118277239,235828.877005347,50.0,03:11.2,03:55.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.1900316482,6.86742563349248,2.12018140589569,3000.0
|
||||
281,28827166,16054,642000.0,167,234524.569240587,4,18.3809523809524,2552.7,10:42.0,03:54.5,90.991696443171,28.0,0.0,0,0.0,0.0,2552.7,0.0,0,0,0,0,170,0,0,645000.0,191293.118277239,234524.569240587,50.0,03:11.2,03:54.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.9047291771542,6.95928941524797,2.13197278911565,3000.0
|
||||
282,28827167,16054,651000.0,166,234474.691620587,4,19.0,2571.9,10:51.0,03:54.4,91.2096466566117,30.0,0.0,0,0.0,0.0,2571.9,0.0,0,0,0,163,0,0,0,660000.0,191293.118277239,234474.691620587,50.0,03:11.2,03:54.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.502144373892,6.73397780164698,2.13242630385488,9000.0
|
||||
283,28827168,16054,652000.0,163,238378.378378378,4,19.4285714285714,2574.2,10:52.0,03:58.3,83.6598188232328,30.0,0.0,0,0.0,0.0,2574.2,0.0,0,0,0,163,0,0,0,653000.0,191293.118277239,238378.378378378,50.0,03:11.2,03:58.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.1283656903798,6.47759103641457,2.09750566893424,1000.0
|
||||
284,28827169,16054,656000.0,162,243996.901626646,4,19.6666666666667,2581.2,10:56.0,04:03.9,76.3107916512427,22.0,0.0,0,0.0,0.0,2581.2,0.0,0,0,0,163,0,0,0,660000.0,191293.118277239,243996.901626646,50.0,03:11.2,04:03.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.519746265884,6.25181598062954,2.04920634920635,4000.0
|
||||
285,28827170,16054,658000.0,161,244728.079911209,4,19.952380952381,2586.0,10:58.0,04:04.7,75.0477852790513,22.0,0.0,0,0.0,0.0,2586.0,0.0,0,0,0,161,0,0,0,660000.0,191293.118277239,244728.079911209,50.0,03:11.2,04:04.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.54103413716,6.14387998636209,2.04308390022676,2000.0
|
||||
286,28827171,16054,662000.0,159,239413.680781759,4,20.0,2594.1,11:02.0,03:59.4,80.9074173086749,30.0,0.0,0,0.0,0.0,2594.1,0.0,0,0,0,161,0,0,0,666000.0,191293.118277239,239413.680781759,50.0,03:11.2,03:59.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.0158495100884,6.26530612244898,2.08843537414966,4000.0
|
||||
287,28827172,16054,665000.0,156,231229.026845637,4,20.0476190476191,2600.9,11:05.0,03:51.2,95.4718847973069,32.0,0.0,0,0.0,0.0,2600.9,0.0,0,0,155,0,0,0,0,668000.0,191293.118277239,231229.026845637,50.0,03:11.2,03:51.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.4689783071806,6.47166610111979,2.16235827664399,3000.0
|
||||
288,28827173,16054,668000.0,154,220964.024451348,4,20.4285714285714,2607.7,11:08.0,03:40.9,102.490442261688,35.0,0.0,0,0.0,0.0,2607.7,0.0,0,0,154,0,0,0,0,671000.0,191293.118277239,220964.024451348,50.0,03:11.2,03:40.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.6905131446021,6.64602064602065,2.26281179138322,3000.0
|
||||
289,28827174,16054,671000.0,152,210682.209057902,4,20.6190476190476,2615.0,11:11.0,03:30.6,111.799819359078,39.0,0.0,0,0.0,0.0,2615.0,0.0,0,0,152,0,0,0,0,674000.0,191293.118277239,210682.209057902,50.0,03:11.2,03:30.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.9665422520454,6.9059716265259,2.37324263038549,3000.0
|
||||
290,28827175,16054,673000.0,152,201057.718610376,4,20.6190476190476,2620.6,11:13.0,03:21.0,126.032855324936,39.0,0.0,0,0.0,0.0,2620.6,0.0,0,0,151,0,0,0,0,675000.0,191293.118277239,201057.718610376,50.0,03:11.2,03:21.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.418333017485,7.2365555922138,2.48684807256236,2000.0
|
||||
291,28827176,16054,677000.0,151,192660.550458715,4,20.3333333333333,2630.1,11:17.0,03:12.6,138.226263301585,51.0,0.0,0,0.0,0.0,2630.1,0.0,0,0,151,0,0,0,0,681000.0,191293.118277239,192660.550458715,50.0,03:11.2,03:12.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.9664606583378,7.65807962529274,2.5952380952381,4000.0
|
||||
292,28827177,16054,679000.0,149,183979.974968711,4,20.1904761904762,2636.5,11:19.0,03:03.9,150.263089481686,51.0,0.0,0,0.0,0.0,2636.5,0.0,0,0,151,0,0,0,0,681000.0,191293.118277239,183979.974968711,50.0,03:11.2,03:03.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.201169118982,8.07614555256065,2.71768707482994,2000.0
|
||||
293,28827178,16054,682000.0,147,178716.161452423,4,20.1904761904762,2644.5,11:22.0,02:58.7,160.073441026906,51.0,0.0,0,0.0,0.0,2644.5,0.0,0,146,0,0,0,0,0,685000.0,191293.118277239,178716.161452423,50.0,03:11.2,02:58.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.228210924086,8.31401617250674,2.79773242630386,3000.0
|
||||
294,28827179,16054,685000.0,146,179180.887372013,4,20.3333333333333,2652.5,11:25.0,02:59.1,159.93565203378,56.0,0.0,0,0.0,0.0,2652.5,0.0,0,145,0,0,0,0,0,688000.0,191293.118277239,179180.887372013,50.0,03:11.2,02:59.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.643805204622,8.23419203747073,2.79047619047619,3000.0
|
||||
295,28827180,16054,688000.0,145,182457.592056268,4,20.1904761904762,2662.2,11:28.0,03:02.4,160.945442748478,55.0,0.0,0,0.0,0.0,2662.2,0.0,0,145,0,0,0,0,0,691000.0,191293.118277239,182457.592056268,50.0,03:11.2,03:02.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.765800971904,8.14353099730459,2.74036281179139,3000.0
|
||||
296,28827181,16054,691000.0,145,186091.653304076,4,20.1904761904762,2668.7,11:31.0,03:06.0,159.63351994017,53.0,0.0,0,0.0,0.0,2668.7,0.0,0,145,0,0,0,0,0,694000.0,191293.118277239,186091.653304076,50.0,03:11.2,03:06.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.473481573004,7.9845013477089,2.68684807256236,3000.0
|
||||
297,28827182,16054,694000.0,145,187007.039267238,4,20.2380952380953,2676.6,11:34.0,03:07.0,159.601640425258,53.0,0.0,0,0.0,0.0,2676.6,0.0,0,145,0,0,0,0,0,697000.0,191293.118277239,187007.039267238,50.0,03:11.2,03:07.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.976034552235,7.92672268907563,2.67369614512472,3000.0
|
||||
298,28827183,16054,697000.0,144,182306.73832162,4,20.7619047619048,2685.1,11:37.0,03:02.3,162.901760484092,56.0,0.0,0,0.0,0.0,2685.1,0.0,0,145,0,0,0,0,0,700000.0,191293.118277239,182306.73832162,50.0,03:11.2,03:02.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.150622690223,7.9259501965924,2.74263038548753,3000.0
|
||||
299,28827184,16054,699000.0,144,177322.074788902,4,20.8095238095238,2692.3,11:39.0,02:57.3,173.937581358491,61.0,0.0,0,0.0,0.0,2692.3,0.0,0,143,0,0,0,0,0,701000.0,191293.118277239,177322.074788902,50.0,03:11.2,02:57.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.908156130482,8.13010787839164,2.81972789115647,2000.0
|
||||
300,28827185,16054,703000.0,143,177879.961277831,4,20.8095238095238,2702.7,11:43.0,02:57.8,179.81651973467,61.0,0.0,0,0.0,0.0,2702.7,0.0,0,143,0,0,0,0,0,707000.0,191293.118277239,177879.961277831,50.0,03:11.2,02:57.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.942934434503,8.10460934946062,2.8108843537415,4000.0
|
||||
301,28827186,16054,706000.0,141,180619.266055046,4,20.6666666666667,2710.8,11:46.0,03:00.6,177.615514589709,66.0,0.0,0,0.0,0.0,2710.8,0.0,0,143,0,0,0,0,0,709000.0,191293.118277239,180619.266055046,50.0,03:11.2,03:00.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.9977991725438,8.03686635944701,2.76825396825397,3000.0
|
||||
302,28827187,16054,709000.0,139,180132.342128911,4,20.7142857142857,2719.0,11:49.0,03:00.1,174.529714769161,58.0,0.0,0,0.0,0.0,2719.0,0.0,0,137,0,0,0,0,0,712000.0,191293.118277239,180132.342128911,50.0,03:11.2,03:00.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.244033528931,8.04006568144499,2.77573696145125,3000.0
|
||||
303,28827188,16054,711000.0,137,173991.951392724,4,20.7619047619048,2725.3,11:51.0,02:53.9,176.224018431475,58.0,0.0,0,0.0,0.0,2725.3,0.0,0,136,0,0,0,0,0,713000.0,191293.118277239,173991.951392724,50.0,03:11.2,02:53.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,114.565162113605,8.30471821756226,2.87369614512472,2000.0
|
||||
304,28827189,16054,714000.0,135,164282.521233795,4,20.7619047619048,2734.1,11:54.0,02:44.2,179.676371537086,66.0,0.0,0,0.0,0.0,2734.1,0.0,0,136,0,0,0,0,0,717000.0,191293.118277239,164282.521233795,50.0,03:11.2,02:44.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.60519152507,8.79554390563566,3.04353741496599,3000.0
|
||||
305,28827190,16054,716000.0,135,155205.180544802,4,21.1428571428572,2742.4,11:56.0,02:35.2,198.934334497627,73.0,0.0,0,0.0,0.0,2742.4,0.0,0,135,0,0,0,0,0,718000.0,191293.118277239,155205.180544802,50.0,03:11.2,02:35.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,128.240896145934,9.14221364221365,3.22154195011338,2000.0
|
||||
306,28827191,16054,719000.0,135,145862.274260766,4,23.0,2751.4,11:59.0,02:25.8,253.115713240773,90.0,0.0,0,0.0,0.0,2751.4,0.0,0,135,0,0,0,0,0,722000.0,191293.118277239,145862.274260766,50.0,03:11.2,02:25.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125.313134341193,8.94232475598936,3.42789115646259,3000.0
|
||||
307,28827192,16054,721000.0,136,133458.419077593,4,26.2380952380953,2759.8,12:01.0,02:13.4,343.907056029117,139.0,0.0,0,0.0,0.0,2759.8,0.0,0,136,0,0,0,0,0,723000.0,191293.118277239,133458.419077593,50.0,03:11.2,02:13.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.929108229383,8.56728026963962,3.74648526077098,2000.0
|
||||
308,28827193,16054,723000.0,136,119369.857080987,4,29.0476190476191,2770.0,12:03.0,01:59.3,451.272267493354,229.0,0.0,0,0.0,0.0,2770.0,0.0,0,136,0,0,0,0,0,725000.0,191293.118277239,119369.857080987,50.0,03:11.2,01:59.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.8563017757763,8.65199063231851,4.18866213151928,2000.0
|
||||
309,28827194,16054,725000.0,137,108797.552671831,4,31.0,2779.6,12:05.0,01:48.7,546.218648501696,293.0,0.0,0,0.0,0.0,2779.6,0.0,0,137,0,0,0,0,0,727000.0,191293.118277239,108797.552671831,50.0,03:11.2,01:48.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.7562206635642,8.89488698705289,4.59569160997733,2000.0
|
||||
310,28827195,16054,726000.0,137,104146.986586057,4,31.3333333333334,2787.5,12:06.0,01:44.1,601.411093580199,311.0,0.0,0,0.0,0.0,2787.5,0.0,0,137,0,0,0,0,0,727000.0,191293.118277239,104146.986586057,50.0,03:11.2,01:44.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.6248154439219,9.19322622666088,4.80090702947846,1000.0
|
||||
311,28827196,16054,729000.0,137,106290.672451193,4,30.5714285714286,2797.8,12:09.0,01:46.2,614.106336741299,311.0,0.0,0,0.0,0.0,2797.8,0.0,0,137,0,0,0,0,0,732000.0,191293.118277239,106290.672451193,50.0,03:11.2,01:46.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.7178229404878,9.23230974632845,4.70408163265307,3000.0
|
||||
312,28827197,16054,731000.0,138,110893.18044659,4,29.5714285714286,2808.1,12:11.0,01:50.8,613.033997417236,302.0,0.0,0,0.0,0.0,2808.1,0.0,0,138,0,0,0,0,0,733000.0,191293.118277239,110893.18044659,50.0,03:11.2,01:50.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.985842357315,9.14837819185646,4.50884353741497,2000.0
|
||||
313,28827198,16054,733000.0,139,113449.269396995,4,29.5714285714286,2816.7,12:13.0,01:53.4,614.379596592081,302.0,0.0,0,0.0,0.0,2816.7,0.0,0,138,0,0,0,0,0,735000.0,191293.118277239,113449.269396995,50.0,03:11.2,01:53.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.3699288802501,8.94225902921555,4.40725623582767,2000.0
|
||||
314,28827199,16054,735000.0,141,111487.511376277,4,29.7142857142857,2826.8,12:15.0,01:51.4,614.463103238337,302.0,0.0,0,0.0,0.0,2826.8,0.0,0,143,0,0,0,0,0,737000.0,191293.118277239,111487.511376277,50.0,03:11.2,01:51.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.6339170339183,9.05586080586081,4.48480725623583,2000.0
|
||||
315,28827200,16054,737000.0,144,107961.222091657,4,30.1904761904762,2835.4,12:17.0,01:47.9,612.052846106932,311.0,0.0,0,0.0,0.0,2835.4,0.0,0,143,0,0,0,0,0,739000.0,191293.118277239,107961.222091657,50.0,03:11.2,01:47.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.434334425963,9.204146011717,4.63129251700681,2000.0
|
||||
316,28827201,16054,739000.0,148,104690.912543918,4,30.6666666666667,2845.3,12:19.0,01:44.6,606.712131573502,311.0,0.0,0,0.0,0.0,2845.3,0.0,0,0,148,0,0,0,0,741000.0,191293.118277239,104690.912543918,50.0,03:11.2,01:44.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.0800546601043,9.34427684117126,4.77596371882087,2000.0
|
||||
317,28827202,16054,741000.0,150,104995.000238084,4,30.3809523809524,2855.2,12:21.0,01:44.9,601.435080418164,302.0,0.0,0,0.0,0.0,2855.2,0.0,0,0,151,0,0,0,0,743000.0,191293.118277239,104995.000238084,50.0,03:11.2,01:44.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.127931596932,9.40483654276759,4.76213151927438,2000.0
|
||||
318,28827203,16054,743000.0,153,105963.765678312,4,29.6666666666667,2864.8,12:23.0,01:45.9,590.583755038974,293.0,0.0,0,0.0,0.0,2864.8,0.0,0,0,153,0,0,0,0,745000.0,191293.118277239,105963.765678312,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.398742478822,9.54322403118551,4.7185941043084,2000.0
|
||||
319,28827204,16054,745000.0,155,105638.863603698,4,29.6190476190476,2873.2,12:25.0,01:45.6,590.652257666498,293.0,0.0,0,0.0,0.0,2873.2,0.0,0,0,155,0,0,0,0,747000.0,191293.118277239,105638.863603698,50.0,03:11.2,01:45.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.327951290949,9.58796508957281,4.73310657596373,2000.0
|
||||
320,28827205,16054,747000.0,156,103720.777082647,4,30.1428571428572,2883.6,12:27.0,01:43.7,596.678482262257,293.0,0.0,0,0.0,0.0,2883.6,0.0,0,0,157,0,0,0,0,749000.0,191293.118277239,103720.777082647,50.0,03:11.2,01:43.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.054058995135,9.59557661927331,4.82063492063493,2000.0
|
||||
321,28827206,16054,749000.0,158,102529.526643727,4,30.4761904761905,2892.7,12:29.0,01:42.5,602.369224343525,311.0,0.0,0,0.0,0.0,2892.7,0.0,0,0,157,0,0,0,0,751000.0,191293.118277239,102529.526643727,50.0,03:11.2,01:42.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.414496431687,9.60089285714286,4.87664399092971,2000.0
|
||||
322,28827207,16054,750000.0,159,102644.074108556,4,30.7142857142857,2901.4,12:30.0,01:42.6,603.167506258276,311.0,0.0,0,0.0,0.0,2901.4,0.0,0,0,160,0,0,0,0,751000.0,191293.118277239,102644.074108556,50.0,03:11.2,01:42.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.065316798392,9.51583610188262,4.87120181405896,1000.0
|
||||
323,28827208,16054,753000.0,161,106702.153399468,4,30.3333333333334,2911.7,12:33.0,01:46.7,597.958274749707,302.0,0.0,0,0.0,0.0,2911.7,0.0,0,0,0,161,0,0,0,756000.0,191293.118277239,106702.153399468,50.0,03:11.2,01:46.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.398500596147,9.26889437093519,4.68594104308391,3000.0
|
||||
324,28827209,16054,755000.0,162,111526.983966415,4,30.0952380952381,2921.4,12:35.0,01:51.5,587.461675408878,293.0,0.0,0,0.0,0.0,2921.4,0.0,0,0,0,161,0,0,0,757000.0,191293.118277239,111526.983966415,50.0,03:11.2,01:51.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.1113803411091,8.93806509945751,4.48321995464853,2000.0
|
||||
325,28827210,16054,757000.0,162,113001.588684467,4,30.3333333333334,2931.4,12:37.0,01:53.0,586.512520198198,293.0,0.0,0,0.0,0.0,2931.4,0.0,0,0,0,162,0,0,0,759000.0,191293.118277239,113001.588684467,50.0,03:11.2,01:53.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.7840703756096,8.75218658892129,4.42471655328799,2000.0
|
||||
326,28827211,16054,759000.0,162,111055.149836313,4,30.6190476190476,2940.1,12:39.0,01:51.0,586.315731370206,302.0,0.0,0,0.0,0.0,2940.1,0.0,0,0,0,162,0,0,0,761000.0,191293.118277239,111055.149836313,50.0,03:11.2,01:51.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.6145392986165,8.82248389246835,4.50226757369615,2000.0
|
||||
327,28827212,16054,761000.0,163,107934.798570659,4,30.5238095238095,2950.1,12:41.0,01:47.9,586.832900038683,302.0,0.0,0,0.0,0.0,2950.1,0.0,0,0,0,162,0,0,0,763000.0,191293.118277239,107934.798570659,50.0,03:11.2,01:47.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.1672533223062,9.10586137731224,4.63242630385488,2000.0
|
||||
328,28827213,16054,763000.0,164,105735.110770116,4,30.4761904761905,2959.1,12:43.0,01:45.7,584.788521071248,293.0,0.0,0,0.0,0.0,2959.1,0.0,0,0,0,164,0,0,0,765000.0,191293.118277239,105735.110770116,50.0,03:11.2,01:45.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.051496665513,9.30982142857144,4.72879818594105,2000.0
|
||||
329,28827214,16054,765000.0,165,105426.727229261,4,30.3809523809524,2969.2,12:45.0,01:45.4,575.746509916516,293.0,0.0,0,0.0,0.0,2969.2,0.0,0,0,0,165,0,0,0,767000.0,191293.118277239,105426.727229261,50.0,03:11.2,01:45.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.940849729153,9.36632333184058,4.74263038548754,2000.0
|
||||
330,28827215,16054,767000.0,165,106306.045704368,4,30.5714285714286,2977.9,12:47.0,01:46.3,571.761067436874,293.0,0.0,0,0.0,0.0,2977.9,0.0,0,0,0,165,0,0,0,769000.0,191293.118277239,106306.045704368,50.0,03:11.2,01:46.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.4320818161971,9.2309746328438,4.70340136054422,2000.0
|
||||
331,28827216,16054,769000.0,166,106357.322014277,4,31.0476190476191,2988.1,12:49.0,01:46.3,574.856011515547,293.0,0.0,0,0.0,0.0,2988.1,0.0,0,0,0,166,0,0,0,771000.0,191293.118277239,106357.322014277,50.0,03:11.2,01:46.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.2883384665262,9.08501314636285,4.70113378684808,2000.0
|
||||
332,28827217,16054,771000.0,166,107262.73288904,4,31.0476190476191,2996.5,12:51.0,01:47.2,582.327594986634,302.0,0.0,0,0.0,0.0,2996.5,0.0,0,0,0,166,0,0,0,773000.0,191293.118277239,107262.73288904,50.0,03:11.2,01:47.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.910581044774,9.00832602979843,4.66145124716554,2000.0
|
||||
333,28827218,16054,773000.0,167,107539.992196644,4,30.6666666666667,3006.5,12:53.0,01:47.5,588.769508458562,302.0,0.0,0,0.0,0.0,3006.5,0.0,0,0,0,167,0,0,0,775000.0,191293.118277239,107539.992196644,50.0,03:11.2,01:47.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.1860921411976,9.09671694764863,4.64943310657597,2000.0
|
||||
334,28827219,16054,775000.0,167,107262.73288904,4,30.2380952380953,3015.1,12:55.0,01:47.2,590.322934820525,302.0,0.0,0,0.0,0.0,3015.1,0.0,0,0,0,167,0,0,0,777000.0,191293.118277239,107262.73288904,50.0,03:11.2,01:47.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.910581044774,9.24949381327335,4.66145124716554,2000.0
|
||||
335,28827220,16054,777000.0,168,104319.439844822,4,30.1904761904762,3025.3,12:57.0,01:44.3,593.118649561181,293.0,0.0,0,0.0,0.0,3025.3,0.0,0,0,0,0,168,0,0,779000.0,191293.118277239,104319.439844822,50.0,03:11.2,01:44.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.221547522047,9.52546191978369,4.79297052154196,2000.0
|
||||
336,28827221,16054,779000.0,169,100758.545055748,4,30.1904761904762,3034.7,12:59.0,01:40.7,588.443034151497,293.0,0.0,0,0.0,0.0,3034.7,0.0,0,0,0,0,169,0,0,781000.0,191293.118277239,100758.545055748,50.0,03:11.2,01:40.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.77631349171,9.86210004506535,4.962358276644,2000.0
|
||||
337,28827222,16054,780000.0,169,97256.5278757938,4,30.1428571428572,3042.9,13:00.0,01:37.2,577.448253092043,302.0,0.0,0,0.0,0.0,3042.9,0.0,0,0,0,0,169,0,0,781000.0,191293.118277239,97256.5278757938,50.0,03:11.2,01:37.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125.980932516143,10.2333559016024,5.14104308390023,1000.0
|
||||
338,28827223,16054,783000.0,169,96528.4769951406,4,30.5714285714286,3055.2,13:03.0,01:36.5,572.38380426977,285.0,0.0,0,0.0,0.0,3055.2,0.0,0,0,0,0,169,0,0,786000.0,191293.118277239,96528.4769951406,50.0,03:11.2,01:36.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,136.5390328299,10.1659991099243,5.17981859410432,3000.0
|
||||
339,28827224,16054,784000.0,169,97549.1063528578,4,30.7142857142857,3061.1,13:04.0,01:37.5,566.629530201396,285.0,0.0,0,0.0,0.0,3061.1,0.0,0,0,0,0,169,0,0,785000.0,191293.118277239,97549.1063528578,50.0,03:11.2,01:37.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,132.298006082858,10.01284606866,5.12562358276645,1000.0
|
||||
340,28827225,16054,786000.0,169,100068.073519401,4,30.5714285714286,3071.2,13:06.0,01:40.0,566.69720143752,293.0,0.0,0,0.0,0.0,3071.2,0.0,0,0,0,0,169,0,0,788000.0,191293.118277239,100068.073519401,50.0,03:11.2,01:40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.210307195966,9.80640854472631,4.99659863945579,2000.0
|
||||
341,28827226,16054,788000.0,170,102605.863192182,4,30.5714285714286,3080.2,13:08.0,01:42.6,579.535500064853,293.0,0.0,0,0.0,0.0,3080.2,0.0,0,0,0,0,169,0,0,790000.0,191293.118277239,102605.863192182,50.0,03:11.2,01:42.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.581859620631,9.56386292834892,4.87301587301588,2000.0
|
||||
342,28827227,16054,790000.0,171,105780.762772847,4,30.0952380952381,3089.9,13:10.0,01:45.7,573.216870374069,293.0,0.0,0,0.0,0.0,3089.9,0.0,0,0,0,0,172,0,0,792000.0,191293.118277239,105780.762772847,50.0,03:11.2,01:45.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.920720167825,9.42359855334539,4.72675736961452,2000.0
|
||||
343,28827228,16054,792000.0,172,109402.133465641,4,29.9047619047619,3098.3,13:12.0,01:49.4,566.397847397111,285.0,0.0,0,0.0,0.0,3098.3,0.0,0,0,0,0,172,0,0,794000.0,191293.118277239,109402.133465641,50.0,03:11.2,01:49.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.7876837636447,9.16969972702457,4.5702947845805,2000.0
|
||||
344,28827229,16054,794000.0,172,112002.844516686,4,30.8571428571429,3108.3,13:14.0,01:52.0,564.267480213485,277.0,0.0,0,0.0,0.0,3108.3,0.0,0,0,0,0,172,0,0,796000.0,191293.118277239,112002.844516686,50.0,03:11.2,01:52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.9292802924674,8.68033509700177,4.46417233560091,2000.0
|
||||
345,28827230,16054,797000.0,172,111911.891590113,4,31.2380952380953,3118.4,13:17.0,01:51.9,568.80420627757,302.0,0.0,0,0.0,0.0,3118.4,0.0,0,0,0,0,172,0,0,800000.0,191293.118277239,111911.891590113,50.0,03:11.2,01:51.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.6860778520931,8.58144599303136,4.46780045351474,3000.0
|
||||
346,28827231,16054,798000.0,173,108497.761157309,4,31.2380952380953,3126.4,13:18.0,01:48.4,575.887287566291,302.0,0.0,0,0.0,0.0,3126.4,0.0,0,0,0,0,173,0,0,799000.0,191293.118277239,108497.761157309,50.0,03:11.2,01:48.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.7399992746982,8.85148083623694,4.60839002267574,1000.0
|
||||
347,28827232,16054,800000.0,173,105401.529636711,4,30.8571428571429,3136.3,13:20.0,01:45.4,581.345398214593,302.0,0.0,0,0.0,0.0,3136.3,0.0,0,0,0,0,173,0,0,802000.0,191293.118277239,105401.529636711,50.0,03:11.2,01:45.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.9738263630013,9.22398589065257,4.74376417233561,2000.0
|
||||
348,28827233,16054,802000.0,173,104507.322621925,4,30.0952380952381,3144.8,13:22.0,01:44.5,576.956040818008,285.0,0.0,0,0.0,0.0,3144.8,0.0,0,0,0,0,173,0,0,804000.0,191293.118277239,104507.322621925,50.0,03:11.2,01:44.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.592752822251,9.53842676311032,4.78435374149661,2000.0
|
||||
349,28827234,16054,804000.0,173,107860.881475321,4,29.8095238095238,3153.4,13:24.0,01:47.8,578.547983691926,285.0,0.0,0,0.0,0.0,3153.4,0.0,0,0,0,0,173,0,0,806000.0,191293.118277239,107860.881475321,50.0,03:11.2,01:47.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.865876226306,9.33044272021908,4.63560090702948,2000.0
|
||||
350,28827235,16054,807000.0,173,111296.18413083,4,29.9047619047619,3165.7,13:27.0,01:51.2,581.950129151109,293.0,0.0,0,0.0,0.0,3165.7,0.0,0,0,0,0,173,0,0,810000.0,191293.118277239,111296.18413083,50.0,03:11.2,01:51.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.648211024569,9.01364877161056,4.49251700680273,3000.0
|
||||
351,28827236,16054,809000.0,173,112637.923988557,4,30.0476190476191,3175.2,13:29.0,01:52.6,583.452210463855,293.0,0.0,0,0.0,0.0,3175.2,0.0,0,0,0,0,173,0,0,811000.0,191293.118277239,112637.923988557,50.0,03:11.2,01:52.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.5884961028709,8.86393479737379,4.4390022675737,2000.0
|
||||
352,28827237,16054,810000.0,173,109942.16194655,4,30.3333333333334,3181.4,13:30.0,01:49.9,575.564537089468,293.0,0.0,0,0.0,0.0,3181.4,0.0,0,0,0,0,173,0,0,811000.0,191293.118277239,109942.16194655,50.0,03:11.2,01:49.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.8892186578156,8.99573895492263,4.54784580498867,1000.0
|
||||
353,28827238,16054,813000.0,174,105968.858131488,4,30.6666666666667,3193.3,13:33.0,01:45.9,562.924699250052,285.0,0.0,0,0.0,0.0,3193.3,0.0,0,0,0,0,173,0,0,816000.0,191293.118277239,105968.858131488,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.202072887342,9.23158828748892,4.71836734693878,3000.0
|
||||
354,28827239,16054,814000.0,175,101993.616726028,4,30.952380952381,3200.6,13:34.0,01:41.9,553.932148392174,285.0,0.0,0,0.0,0.0,3200.6,0.0,0,0,0,0,176,0,0,815000.0,191293.118277239,101993.616726028,50.0,03:11.2,01:41.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.745524563577,9.50285714285715,4.90226757369615,1000.0
|
||||
355,28827240,16054,816000.0,176,101169.993117687,4,31.0952380952381,3209.3,13:36.0,01:41.1,552.252061407891,285.0,0.0,0,0.0,0.0,3209.3,0.0,0,0,0,0,176,0,0,818000.0,191293.118277239,101169.993117687,50.0,03:11.2,01:41.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118.595448816096,9.5362065193612,4.94217687074831,2000.0
|
||||
356,28827241,16054,818000.0,176,101659.751037344,4,31.0,3219.1,13:38.0,01:41.6,549.297913957457,285.0,0.0,0,0.0,0.0,3219.1,0.0,0,0,0,0,176,0,0,820000.0,191293.118277239,101659.751037344,50.0,03:11.2,01:41.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.889650197965,9.51942067149441,4.91836734693878,2000.0
|
||||
357,28827242,16054,820000.0,176,105210.420841683,4,31.0,3228.6,13:40.0,01:45.2,540.479371243784,285.0,0.0,0,0.0,0.0,3228.6,0.0,0,0,0,0,176,0,0,822000.0,191293.118277239,105210.420841683,50.0,03:11.2,01:45.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.45007937834,9.19815668202766,4.75238095238096,2000.0
|
||||
358,28827243,16054,822000.0,176,109023.48578492,4,31.0,3237.1,13:42.0,01:49.0,529.630198119306,270.0,0.0,0,0.0,0.0,3237.1,0.0,0,0,0,0,176,0,0,824000.0,191293.118277239,109023.48578492,50.0,03:11.2,01:49.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.033183368481,8.87645380732939,4.58616780045352,2000.0
|
||||
359,28827244,16054,824000.0,177,110156.367087975,4,31.0,3245.5,13:44.0,01:50.1,529.357412850989,270.0,0.0,0,0.0,0.0,3245.5,0.0,0,0,0,0,177,0,0,826000.0,191293.118277239,110156.367087975,50.0,03:11.2,01:50.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.9785008601365,8.7851656791749,4.5390022675737,2000.0
|
||||
360,28827245,16054,826000.0,177,108615.339145855,4,31.0952380952381,3255.5,13:46.0,01:48.6,541.19494231445,277.0,0.0,0,0.0,0.0,3255.5,0.0,0,0,0,0,177,0,0,828000.0,191293.118277239,108615.339145855,50.0,03:11.2,01:48.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.6085987634343,8.88252023627216,4.60340136054422,2000.0
|
||||
361,28827246,16054,828000.0,177,107080.419580419,4,30.8571428571429,3263.8,13:48.0,01:47.0,557.178387039185,293.0,0.0,0,0.0,0.0,3263.8,0.0,0,0,0,0,177,0,0,830000.0,191293.118277239,107080.419580419,50.0,03:11.2,01:47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.2904542821122,9.07936507936509,4.66938775510205,2000.0
|
||||
362,28827247,16054,829000.0,177,105714.833636974,4,30.7142857142857,3272.5,13:49.0,01:45.7,565.613216937007,293.0,0.0,0,0.0,0.0,3272.5,0.0,0,0,0,0,177,0,0,830000.0,191293.118277239,105714.833636974,50.0,03:11.2,01:45.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.109655798858,9.23942414174973,4.72970521541951,1000.0
|
||||
363,28827248,16054,832000.0,177,107940.082240063,4,30.7619047619048,3282.9,13:52.0,01:47.9,569.716486801498,285.0,0.0,0,0.0,0.0,3282.9,0.0,0,0,0,0,177,0,0,835000.0,191293.118277239,107940.082240063,50.0,03:11.2,01:47.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.6506077323145,9.03494029190624,4.63219954648527,3000.0
|
||||
364,28827249,16054,834000.0,177,110509.697789806,4,30.5714285714286,3291.6,13:54.0,01:50.5,559.216248093542,285.0,0.0,0,0.0,0.0,3291.6,0.0,0,0,0,0,177,0,0,836000.0,191293.118277239,110509.697789806,50.0,03:11.2,01:50.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.9959389352184,8.87983978638185,4.52448979591837,2000.0
|
||||
365,28827250,16054,835000.0,177,111358.012221605,4,30.5714285714286,3300.3,13:55.0,01:51.3,535.618904786857,285.0,0.0,0,0.0,0.0,3300.3,0.0,0,0,0,0,177,0,0,836000.0,191293.118277239,111358.012221605,50.0,03:11.2,01:51.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.9321463994532,8.81219403649311,4.49002267573697,1000.0
|
||||
366,28827251,16054,838000.0,177,115209.781075291,4,32.0952380952381,3312.0,13:58.0,01:55.2,575.378006691225,277.0,0.0,0,0.0,0.0,3312.0,0.0,0,0,0,0,177,0,0,841000.0,191293.118277239,115209.781075291,50.0,03:11.2,01:55.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.6266644644728,8.1131835523527,4.33990929705216,3000.0
|
||||
367,28827252,16054,840000.0,177,126064.833342862,4,30.0476190476191,3320.4,14:00.0,02:06.0,506.168187613997,249.0,0.0,0,0.0,0.0,3320.4,0.0,0,0,0,0,177,0,0,842000.0,191293.118277239,126064.833342862,50.0,03:11.2,02:06.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,70.1595565227871,7.91985510527508,3.96621315192744,2000.0
|
||||
368,28827253,16054,845000.0,177,146152.316563929,4,26.0952380952381,3335.7,14:05.0,02:26.1,384.474286782465,249.0,0.0,0,0.0,0.0,3335.7,0.0,0,0,0,0,177,0,0,850000.0,191293.118277239,146152.316563929,50.0,03:11.2,02:26.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,45.0247786954682,7.86600625651721,3.42108843537415,5000.0
|
||||
369,28827254,16054,849000.0,177,180915.654742369,4,21.8095238095238,3343.5,14:09.0,03:00.9,246.427218276546,30.0,0.0,0,0.0,0.0,3343.5,0.0,0,0,0,0,177,0,0,853000.0,191293.118277239,180915.654742369,50.0,03:11.2,03:00.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,197.023642947997,7.6032439176544,2.76371882086168,4000.0
|
||||
370,28827255,16054,852000.0,177,224176.494509963,4,18.0,3350.1,14:12.0,03:44.1,115.487232051429,30.0,0.0,0,0.0,0.0,3350.1,0.0,0,0,0,0,177,0,0,855000.0,191293.118277239,224176.494509963,50.0,03:11.2,03:44.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.556310358524,7.43461829176116,2.23038548752835,3000.0
|
||||
371,28827256,16054,855000.0,177,257082.896117523,4,16.3333333333333,3355.8,14:15.0,04:17.0,29.1130207241243,20.0,0.0,0,0.0,0.0,3355.8,0.0,0,0,0,0,177,0,0,858000.0,191293.118277239,257082.896117523,50.0,03:11.2,04:17.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.995558636283,7.1445231153686,1.94489795918368,3000.0
|
||||
372,28827257,16054,859000.0,177,275762.88144072,4,17.8571428571429,3362.3,14:19.0,04:35.7,63.5505211053864,17.0,0.0,0,0.0,0.0,3362.3,0.0,0,0,0,0,177,0,0,863000.0,191293.118277239,275762.88144072,50.0,03:11.2,04:35.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.1774387156635,6.09219047619048,1.81315192743764,4000.0
|
||||
373,28827258,16054,862000.0,177,280071.129175663,4,18.2380952380952,3368.1,14:22.0,04:40.0,51.9182125903466,16.0,0.0,0,0.0,0.0,3368.1,0.0,0,0,0,0,177,0,0,865000.0,191293.118277239,280071.129175663,50.0,03:11.2,04:40.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.5733307479014,5.87318164863857,1.78526077097506,3000.0
|
||||
374,28827259,16054,866000.0,177,276766.662482741,4,18.0952380952381,3375.7,14:26.0,04:36.7,53.6570279872057,16.0,0.0,0,0.0,0.0,3375.7,0.0,0,0,0,0,177,0,0,870000.0,191293.118277239,276766.662482741,50.0,03:11.2,04:36.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.182662896723,5.99022556390978,1.80657596371882,4000.0
|
||||
375,28827260,16054,869000.0,177,272794.754422862,4,18.6190476190476,3380.5,14:29.0,04:32.7,57.704315535179,18.0,0.0,0,0.0,0.0,3380.5,0.0,0,0,0,0,177,0,0,872000.0,191293.118277239,272794.754422862,50.0,03:11.2,04:32.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.7827924335716,5.90646693459993,1.83287981859411,3000.0
|
||||
376,28827261,16054,872000.0,178,266015.200868621,4,18.8571428571429,3386.9,14:32.0,04:26.0,64.0560625968583,21.0,0.0,0,0.0,0.0,3386.9,0.0,0,0,0,0,177,0,0,875000.0,191293.118277239,266015.200868621,50.0,03:11.2,04:26.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.5379347040777,5.98051948051948,1.8795918367347,3000.0
|
||||
377,28827262,16054,876000.0,177,254266.605166051,4,18.9047619047619,3394.1,14:36.0,04:14.2,69.5831392053585,21.0,0.0,0,0.0,0.0,3394.1,0.0,0,0,0,0,177,0,0,880000.0,191293.118277239,254266.605166051,50.0,03:11.2,04:14.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.386650555255,6.24109391867579,1.96643990929705,4000.0
|
||||
378,28827263,16054,879000.0,174,240196.078431372,4,18.3333333333333,3401.5,14:39.0,04:00.1,73.9940955285517,24.0,0.0,0,0.0,0.0,3401.5,0.0,0,0,0,0,177,0,0,882000.0,191293.118277239,240196.078431372,50.0,03:11.2,04:00.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.234723627061,6.8126159554731,2.08163265306123,3000.0
|
||||
379,28827264,16054,882000.0,171,226875.192921082,4,18.0,3407.4,14:42.0,03:46.8,85.6818861287852,24.0,0.0,0,0.0,0.0,3407.4,0.0,0,0,0,0,169,0,0,885000.0,191293.118277239,226875.192921082,50.0,03:11.2,03:46.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124.880827432878,7.34618291761149,2.20385487528345,3000.0
|
||||
380,28827265,16054,885000.0,168,216750.221173695,4,17.4761904761905,3415.5,14:45.0,03:36.7,94.4217878592094,27.0,0.0,0,0.0,0.0,3415.5,0.0,0,0,0,167,0,0,0,888000.0,191293.118277239,216750.221173695,50.0,03:11.2,03:36.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,127.299187658027,7.91981315687038,2.30680272108844,3000.0
|
||||
381,28827266,16054,888000.0,166,210260.322303804,4,17.6190476190476,3422.5,14:48.0,03:30.2,97.9187392318722,35.0,0.0,0,0.0,0.0,3422.5,0.0,0,0,0,167,0,0,0,891000.0,191293.118277239,210260.322303804,50.0,03:11.2,03:30.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.579128714752,8.0980694980695,2.3780045351474,3000.0
|
||||
382,28827267,16054,892000.0,165,211348.605386753,4,19.8095238095238,3430.9,14:52.0,03:31.3,137.020386467225,35.0,0.0,0,0.0,0.0,3430.9,0.0,0,0,0,164,0,0,0,896000.0,191293.118277239,211348.605386753,50.0,03:11.2,03:31.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.925821477878,7.16552197802198,2.36575963718821,4000.0
|
||||
383,28827268,16054,895000.0,161,219730.941704036,4,17.4761904761905,3438.6,14:55.0,03:39.7,159.507198549112,41.0,0.0,0,0.0,0.0,3438.6,0.0,0,0,0,164,0,0,0,898000.0,191293.118277239,219730.941704036,50.0,03:11.2,03:39.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.4656523777117,7.81237835733749,2.27551020408164,3000.0
|
||||
384,28827269,16054,904000.0,158,238894.907908992,4,10.0952380952381,3457.9,15:04.0,03:58.8,168.800238764143,40.0,0.0,0,0.0,0.0,3457.9,0.0,0,0,156,0,0,0,0,913000.0,191293.118277239,238894.907908992,50.0,03:11.2,03:58.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,64.178176706861,12.4393530997305,2.09297052154195,9000.0
|
||||
385,28827270,16054,907000.0,155,269526.952695269,4,6.57142857142857,3461.1,15:07.0,04:29.5,165.15326902499,14.0,0.0,0,0.0,0.0,3461.1,0.0,0,0,154,0,0,0,0,910000.0,191293.118277239,269526.952695269,50.0,03:11.2,04:29.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,127.683096158914,16.9378881987578,1.85510204081633,3000.0
|
||||
386,28827271,16054,909000.0,153,301229.508196721,4,6.61904761904762,3465.1,15:09.0,05:01.2,128.049655920607,14.0,0.0,0,0.0,0.0,3465.1,0.0,0,0,153,0,0,0,0,911000.0,191293.118277239,301229.508196721,50.0,03:11.2,05:01.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.4634271497487,15.0462487153135,1.65986394557823,2000.0
|
||||
387,28827272,16054,913000.0,151,307017.543859649,4,10.6666666666667,3470.9,15:13.0,05:07.0,79.5455515419065,17.0,0.0,0,0.0,0.0,3470.9,0.0,0,0,153,0,0,0,0,917000.0,191293.118277239,307017.543859649,50.0,03:11.2,05:07.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.1425690276113,9.16071428571429,1.62857142857143,4000.0
|
||||
388,28827273,16054,916000.0,149,281250.0,4,18.2857142857143,3477.6,15:16.0,04:41.2,76.8473347131391,17.0,0.0,0,0.0,0.0,3477.6,0.0,0,0,148,0,0,0,0,919000.0,191293.118277239,281250.0,50.0,03:11.2,04:41.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.5425643508436,5.83333333333334,1.77777777777778,3000.0
|
||||
389,28827274,16054,920000.0,147,243619.489559164,4,20.7142857142857,3485.4,15:20.0,04:03.6,72.24993844052,24.0,0.0,0,0.0,0.0,3485.4,0.0,0,146,0,0,0,0,0,924000.0,191293.118277239,243619.489559164,50.0,03:11.2,04:03.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.860406903503,5.9448275862069,2.05238095238096,4000.0
|
||||
390,28827275,16054,922000.0,145,215859.030837004,4,18.7142857142857,3491.0,15:22.0,03:35.8,89.5218724088655,33.0,0.0,0,0.0,0.0,3491.0,0.0,0,146,0,0,0,0,0,924000.0,191293.118277239,215859.030837004,50.0,03:11.2,03:35.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.449235617916,7.42639040348965,2.31632653061225,2000.0
|
||||
391,28827276,16054,925000.0,144,199367.088607595,4,18.8571428571429,3498.7,15:25.0,03:19.3,118.031885730564,33.0,0.0,0,0.0,0.0,3498.7,0.0,0,143,0,0,0,0,0,928000.0,191293.118277239,199367.088607595,50.0,03:11.2,03:19.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,133.842396417353,7.97979797979798,2.50793650793651,3000.0
|
||||
392,28827277,16054,928000.0,142,195444.070200319,4,19.2380952380952,3507.0,15:28.0,03:15.4,137.965977527427,46.0,0.0,0,0.0,0.0,3507.0,0.0,0,143,0,0,0,0,0,931000.0,191293.118277239,195444.070200319,50.0,03:11.2,03:15.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.91608149934,7.97878359264498,2.55827664399093,3000.0
|
||||
393,28827278,16054,932000.0,140,197882.078434892,4,19.8571428571429,3515.1,15:32.0,03:17.8,152.102961027453,52.0,0.0,0,0.0,0.0,3515.1,0.0,0,139,0,0,0,0,0,936000.0,191293.118277239,197882.078434892,50.0,03:11.2,03:17.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.8650973809705,7.63480644056184,2.52675736961452,4000.0
|
||||
394,28827279,16054,935000.0,139,197882.078434892,4,19.8571428571429,3524.7,15:35.0,03:17.8,164.663408466327,53.0,0.0,0,0.0,0.0,3524.7,0.0,0,139,0,0,0,0,0,938000.0,191293.118277239,197882.078434892,50.0,03:11.2,03:17.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.2261332794428,7.63480644056184,2.52675736961452,3000.0
|
||||
395,28827280,16054,938000.0,138,193812.076997451,4,19.1428571428572,3531.3,15:38.0,03:13.8,168.748283800201,54.0,0.0,0,0.0,0.0,3531.3,0.0,0,139,0,0,0,0,0,941000.0,191293.118277239,193812.076997451,50.0,03:11.2,03:13.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.0290578286176,8.0859985785359,2.57981859410431,3000.0
|
||||
396,28827281,16054,941000.0,137,187149.889662196,4,19.1428571428572,3539.9,15:41.0,03:07.1,168.456367959517,54.0,0.0,0,0.0,0.0,3539.9,0.0,0,136,0,0,0,0,0,944000.0,191293.118277239,187149.889662196,50.0,03:11.2,03:07.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.8793398613098,8.37384506041223,2.67165532879819,3000.0
|
||||
397,28827282,16054,944000.0,136,177808.241270865,4,19.5714285714286,3548.6,15:44.0,02:57.8,171.006446232805,57.0,0.0,0,0.0,0.0,3548.6,0.0,0,136,0,0,0,0,0,947000.0,191293.118277239,177808.241270865,50.0,03:11.2,02:57.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.228892376812,8.62078554049358,2.81201814058957,3000.0
|
||||
398,28827283,16054,947000.0,135,173526.402770127,4,20.2380952380953,3558.2,15:47.0,02:53.5,169.734199598122,55.0,0.0,0,0.0,0.0,3558.2,0.0,0,136,0,0,0,0,0,950000.0,191293.118277239,173526.402770127,50.0,03:11.2,02:53.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.789167888341,8.54252100840337,2.88140589569161,3000.0
|
||||
399,28827284,16054,950000.0,135,170560.024752475,4,20.952380952381,3566.2,15:50.0,02:50.5,169.351095524496,64.0,0.0,0,0.0,0.0,3566.2,0.0,0,135,0,0,0,0,0,953000.0,191293.118277239,170560.024752475,50.0,03:11.2,02:50.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.2189626489,8.3948051948052,2.93151927437642,3000.0
|
||||
400,28827285,16054,952000.0,135,164970.821487356,4,21.1428571428572,3573.2,15:52.0,02:44.9,190.856705837692,64.0,0.0,0,0.0,0.0,3573.2,0.0,0,135,0,0,0,0,0,954000.0,191293.118277239,164970.821487356,50.0,03:11.2,02:44.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.805432818222,8.60102960102961,3.03083900226758,2000.0
|
||||
401,28827286,16054,955000.0,135,155566.530266685,4,21.8571428571429,3581.5,15:55.0,02:35.5,248.600275801798,80.0,0.0,0,0.0,0.0,3581.5,0.0,0,135,0,0,0,0,0,958000.0,191293.118277239,155566.530266685,50.0,03:11.2,02:35.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.206269956922,8.822906940554,3.2140589569161,3000.0
|
||||
402,28827287,16054,958000.0,136,143395.9810106,4,22.9047619047619,3593.7,15:58.0,02:23.3,284.154595948697,122.0,0.0,0,0.0,0.0,3593.7,0.0,0,135,0,0,0,0,0,961000.0,191293.118277239,143395.9810106,50.0,03:11.2,02:23.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.2965128760682,9.13394713394714,3.48684807256236,3000.0
|
||||
403,28827288,16054,960000.0,136,129166.422588015,4,24.952380952381,3602.7,16:00.0,02:09.1,365.659240259282,162.0,0.0,0,0.0,0.0,3602.7,0.0,0,136,0,0,0,0,0,962000.0,191293.118277239,129166.422588015,50.0,03:11.2,02:09.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.254560032077,9.30806979280263,3.87097505668935,2000.0
|
||||
404,28827289,16054,962000.0,135,118650.452001722,4,27.1428571428572,3608.8,16:02.0,01:58.6,452.387364643574,162.0,0.0,0,0.0,0.0,3608.8,0.0,0,136,0,0,0,0,0,964000.0,191293.118277239,118650.452001722,50.0,03:11.2,01:58.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,129.343568532906,9.31528822055139,4.21405895691611,2000.0
|
||||
405,28827290,16054,964000.0,135,111414.279217826,4,29.0476190476191,3621.1,16:04.0,01:51.4,518.077097033017,285.0,0.0,0,0.0,0.0,3621.1,0.0,0,134,0,0,0,0,0,966000.0,191293.118277239,111414.279217826,50.0,03:11.2,01:51.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.7974755631272,9.26978922716628,4.48775510204082,2000.0
|
||||
406,28827291,16054,966000.0,134,107096.022147749,4,29.9047619047619,3630.8,16:06.0,01:47.0,571.376464025313,293.0,0.0,0,0.0,0.0,3630.8,0.0,0,134,0,0,0,0,0,968000.0,191293.118277239,107096.022147749,50.0,03:11.2,01:47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.2479384250523,9.36715195632394,4.6687074829932,2000.0
|
||||
407,28827292,16054,968000.0,134,105225.483178239,4,30.3333333333334,3638.6,16:08.0,01:45.2,608.429024310998,293.0,0.0,0,0.0,0.0,3638.6,0.0,0,134,0,0,0,0,0,970000.0,191293.118277239,105225.483178239,50.0,03:11.2,01:45.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.52685557872,9.39896837856022,4.75170068027212,2000.0
|
||||
408,28827293,16054,970000.0,136,106408.647813917,4,29.6666666666667,3646.6,16:10.0,01:46.4,592.382218618109,293.0,0.0,0,0.0,0.0,3646.6,0.0,0,135,0,0,0,0,0,972000.0,191293.118277239,106408.647813917,50.0,03:11.2,01:46.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.1447337180881,9.50332492547582,4.69886621315193,2000.0
|
||||
409,28827294,16054,972000.0,138,109309.93456276,4,29.3333333333333,3658.6,16:12.0,01:49.3,596.978973185644,293.0,0.0,0,0.0,0.0,3658.6,0.0,0,138,0,0,0,0,0,974000.0,191293.118277239,109309.93456276,50.0,03:11.2,01:49.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.4579623112269,9.35621521335808,4.57414965986395,2000.0
|
||||
410,28827295,16054,974000.0,139,113484.302624807,4,29.0476190476191,3668.3,16:14.0,01:53.4,599.72214436352,293.0,0.0,0,0.0,0.0,3668.3,0.0,0,140,0,0,0,0,0,976000.0,191293.118277239,113484.302624807,50.0,03:11.2,01:53.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.7321727731948,9.10070257611242,4.40589569160998,2000.0
|
||||
411,28827296,16054,977000.0,140,116457.167001162,4,28.9047619047619,3678.2,16:17.0,01:56.4,597.628202636101,285.0,0.0,0,0.0,0.0,3678.2,0.0,0,140,0,0,0,0,0,980000.0,191293.118277239,116457.167001162,50.0,03:11.2,01:56.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.7543188669391,8.91221463873853,4.29342403628118,3000.0
|
||||
412,28827297,16054,979000.0,142,113847.583643123,4,28.9047619047619,3688.3,16:19.0,01:53.8,590.801003393594,285.0,0.0,0,0.0,0.0,3688.3,0.0,0,140,0,0,0,0,0,981000.0,191293.118277239,113847.583643123,50.0,03:11.2,01:53.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.2246030152435,9.11649799952931,4.39183673469388,2000.0
|
||||
413,28827298,16054,980000.0,144,107189.73311944,4,28.952380952381,3696.1,16:20.0,01:47.1,586.434734395163,285.0,0.0,0,0.0,0.0,3696.1,0.0,0,146,0,0,0,0,0,981000.0,191293.118277239,107189.73311944,50.0,03:11.2,01:47.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.7157167968903,9.66682330827068,4.66462585034014,1000.0
|
||||
414,28827299,16054,982000.0,148,101444.608023555,4,29.5714285714286,3705.6,16:22.0,01:41.4,586.166568235716,285.0,0.0,0,0.0,0.0,3705.6,0.0,0,0,148,0,0,0,0,984000.0,191293.118277239,101444.608023555,50.0,03:11.2,01:41.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,117.634924791745,10.0004600874166,4.92879818594105,2000.0
|
||||
415,28827300,16054,984000.0,151,99535.0516860018,4,29.8095238095238,3713.8,16:24.0,01:39.5,586.29592545454,293.0,0.0,0,0.0,0.0,3713.8,0.0,0,0,150,0,0,0,0,986000.0,191293.118277239,99535.0516860018,50.0,03:11.2,01:39.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.135736761654,10.110908261068,5.0233560090703,2000.0
|
||||
416,28827301,16054,986000.0,154,101221.079691517,4,30.0,3724.0,16:26.0,01:41.2,584.45184632315,293.0,0.0,0,0.0,0.0,3724.0,0.0,0,0,154,0,0,0,0,988000.0,191293.118277239,101221.079691517,50.0,03:11.2,01:41.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.182772394285,9.87936507936509,4.93968253968255,2000.0
|
||||
417,28827302,16054,988000.0,156,104705.826487487,4,30.0476190476191,3733.5,16:28.0,01:44.7,583.402226699968,293.0,0.0,0,0.0,0.0,3733.5,0.0,0,0,157,0,0,0,0,990000.0,191293.118277239,104705.826487487,50.0,03:11.2,01:44.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.060971561422,9.53543128820467,4.77528344671202,2000.0
|
||||
418,28827303,16054,990000.0,158,106857.281318149,4,29.8571428571429,3742.2,16:30.0,01:46.8,574.618746876122,285.0,0.0,0,0.0,0.0,3742.2,0.0,0,0,157,0,0,0,0,992000.0,191293.118277239,106857.281318149,50.0,03:11.2,01:46.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.649314782384,9.40305308726362,4.67913832199547,2000.0
|
||||
419,28827304,16054,992000.0,159,106992.090834101,4,29.7619047619048,3752.0,16:32.0,01:46.9,572.526787995192,285.0,0.0,0,0.0,0.0,3752.0,0.0,0,0,159,0,0,0,0,994000.0,191293.118277239,106992.090834101,50.0,03:11.2,01:46.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.269341003322,9.42125714285715,4.67324263038549,2000.0
|
||||
420,28827305,16054,994000.0,160,105968.858131488,4,30.1904761904762,3761.5,16:34.0,01:45.9,576.911595702698,285.0,0.0,0,0.0,0.0,3761.5,0.0,0,0,160,0,0,0,0,996000.0,191293.118277239,105968.858131488,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.202072887342,9.37719693555656,4.71836734693878,2000.0
|
||||
421,28827306,16054,996000.0,161,105593.333971842,4,29.8571428571429,3771.2,16:36.0,01:45.5,582.206409463324,293.0,0.0,0,0.0,0.0,3771.2,0.0,0,0,0,161,0,0,0,998000.0,191293.118277239,105593.333971842,50.0,03:11.2,01:45.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.459079279143,9.51560719981773,4.73514739229026,2000.0
|
||||
422,28827307,16054,998000.0,161,105532.688810185,4,29.7142857142857,3779.9,16:38.0,01:45.5,583.989112342679,293.0,0.0,0,0.0,0.0,3779.9,0.0,0,0,0,161,0,0,0,1000000.0,191293.118277239,105532.688810185,50.0,03:11.2,01:45.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.634092506249,9.56684981684982,4.73786848072563,2000.0
|
||||
423,28827308,16054,1000000.0,162,105563.002680965,4,29.6666666666667,3789.9,16:40.0,01:45.5,583.472242560032,285.0,0.0,0,0.0,0.0,3789.9,0.0,0,0,0,162,0,0,0,1002000.0,191293.118277239,105563.002680965,50.0,03:11.2,01:45.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.396990532377,9.57945425361156,4.73650793650794,2000.0
|
||||
424,28827309,16054,1002000.0,163,105492.29738781,4,29.7142857142857,3799.7,16:42.0,01:45.4,572.240037405597,285.0,0.0,0,0.0,0.0,3799.7,0.0,0,0,0,163,0,0,0,1004000.0,191293.118277239,105492.29738781,50.0,03:11.2,01:45.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.607044776354,9.57051282051283,4.73968253968255,2000.0
|
||||
425,28827310,16054,1004000.0,163,105633.802816901,4,29.8571428571429,3808.2,16:44.0,01:45.6,572.433190097249,285.0,0.0,0,0.0,0.0,3808.2,0.0,0,0,0,163,0,0,0,1006000.0,191293.118277239,105633.802816901,50.0,03:11.2,01:45.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.187217673815,9.51196172248804,4.73333333333334,2000.0
|
||||
426,28827311,16054,1006000.0,163,105436.809639937,4,30.0952380952381,3818.5,16:46.0,01:45.4,583.220851854142,285.0,0.0,0,0.0,0.0,3818.5,0.0,0,0,0,163,0,0,0,1008000.0,191293.118277239,105436.809639937,50.0,03:11.2,01:45.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.772284919961,9.45433996383364,4.74217687074831,2000.0
|
||||
427,28827312,16054,1008000.0,164,105346.137308299,4,30.0,3827.1,16:48.0,01:45.3,589.805268694185,302.0,0.0,0,0.0,0.0,3827.1,0.0,0,0,0,163,0,0,0,1010000.0,191293.118277239,105346.137308299,50.0,03:11.2,01:45.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.1300335306233,9.49251700680273,4.74625850340137,2000.0
|
||||
428,28827313,16054,1010000.0,165,104870.160753353,4,30.0,3837.3,16:50.0,01:44.8,599.617472585408,302.0,0.0,0,0.0,0.0,3837.3,0.0,0,0,0,165,0,0,0,1012000.0,191293.118277239,104870.160753353,50.0,03:11.2,01:44.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.485940167249,9.53560090702948,4.76780045351475,2000.0
|
||||
429,28827314,16054,1012000.0,166,105255.620793355,4,29.9047619047619,3846.8,16:52.0,01:45.2,600.679989793221,293.0,0.0,0,0.0,0.0,3846.8,0.0,0,0,0,166,0,0,0,1014000.0,191293.118277239,105255.620793355,50.0,03:11.2,01:45.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.438811911931,9.5309372156506,4.75034013605443,2000.0
|
||||
430,28827315,16054,1014000.0,167,105785.837651122,4,30.0476190476191,3856.2,16:54.0,01:45.7,590.658820336692,302.0,0.0,0,0.0,0.0,3856.2,0.0,0,0,0,167,0,0,0,1016000.0,191293.118277239,105785.837651122,50.0,03:11.2,01:45.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.8990581108396,9.43808014489473,4.7265306122449,2000.0
|
||||
431,28827316,16054,1016000.0,167,106805.52191814,4,30.4285714285714,3864.8,16:56.0,01:46.8,582.852248727268,293.0,0.0,0,0.0,0.0,3864.8,0.0,0,0,0,167,0,0,0,1018000.0,191293.118277239,106805.52191814,50.0,03:11.2,01:46.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.0436123631106,9.2309412027722,4.68140589569162,2000.0
|
||||
432,28827317,16054,1018000.0,168,107519.016968988,4,30.5238095238095,3875.1,16:58.0,01:47.5,577.493443036023,293.0,0.0,0,0.0,0.0,3875.1,0.0,0,0,0,0,168,0,0,1020000.0,191293.118277239,107519.016968988,50.0,03:11.2,01:47.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.1046870616008,9.14107421439715,4.65034013605443,2000.0
|
||||
433,28827318,16054,1020000.0,168,108375.110586847,4,30.7619047619048,3883.1,17:00.0,01:48.3,570.37125136446,293.0,0.0,0,0.0,0.0,3883.1,0.0,0,0,0,0,168,0,0,1022000.0,191293.118277239,108375.110586847,50.0,03:11.2,01:48.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.8451349287843,8.99867315347192,4.61360544217688,2000.0
|
||||
434,28827319,16054,1022000.0,169,107934.798570659,4,30.6190476190476,3893.5,17:02.0,01:47.9,575.432651925391,293.0,0.0,0,0.0,0.0,3893.5,0.0,0,0,0,0,168,0,0,1024000.0,191293.118277239,107934.798570659,50.0,03:11.2,01:47.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.9983293629232,9.07753832481671,4.63242630385488,2000.0
|
||||
435,28827320,16054,1024000.0,169,108380.43745392,4,30.4285714285714,3902.1,17:04.0,01:48.3,580.109149776623,293.0,0.0,0,0.0,0.0,3902.1,0.0,0,0,0,0,170,0,0,1026000.0,191293.118277239,108380.43745392,50.0,03:11.2,01:48.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.8312982253719,9.09680304046502,4.61337868480726,2000.0
|
||||
436,28827321,16054,1026000.0,170,108883.511925337,4,30.6190476190476,3910.8,17:06.0,01:48.8,586.138307447786,302.0,0.0,0,0.0,0.0,3910.8,0.0,0,0,0,0,170,0,0,1028000.0,191293.118277239,108883.511925337,50.0,03:11.2,01:48.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.7789952966991,8.99844479004666,4.5920634920635,2000.0
|
||||
437,28827322,16054,1028000.0,171,110040.922247729,4,30.7619047619048,3921.3,17:08.0,01:50.0,590.888936532286,302.0,0.0,0,0.0,0.0,3921.3,0.0,0,0,0,0,171,0,0,1030000.0,191293.118277239,110040.922247729,50.0,03:11.2,01:50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.9758009470112,8.8624502432552,4.54376417233561,2000.0
|
||||
438,28827323,16054,1030000.0,171,110068.387161184,4,30.5238095238095,3930.0,17:10.0,01:50.0,595.48928536575,302.0,0.0,0,0.0,0.0,3930.0,0.0,0,0,0,0,171,0,0,1032000.0,191293.118277239,110068.387161184,50.0,03:11.2,01:50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.9107090465942,8.92935145977268,4.54263038548753,2000.0
|
||||
439,28827324,16054,1033000.0,171,108953.453898606,4,30.3333333333334,3942.4,17:13.0,01:48.9,597.520688991979,302.0,0.0,0,0.0,0.0,3942.4,0.0,0,0,0,0,171,0,0,1036000.0,191293.118277239,108953.453898606,50.0,03:11.2,01:48.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.6062071080417,9.07737160798386,4.58911564625851,3000.0
|
||||
440,28827325,16054,1034000.0,172,105714.833636974,4,30.0952380952381,3949.9,17:14.0,01:45.7,598.932606371427,302.0,0.0,0,0.0,0.0,3949.9,0.0,0,0,0,0,171,0,0,1035000.0,191293.118277239,105714.833636974,50.0,03:11.2,01:45.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.0964541359781,9.42947558770344,4.72970521541951,1000.0
|
||||
441,28827326,16054,1036000.0,172,103511.407379589,4,30.3333333333334,3959.6,17:16.0,01:43.5,596.857077901167,302.0,0.0,0,0.0,0.0,3959.6,0.0,0,0,0,0,173,0,0,1038000.0,191293.118277239,103511.407379589,50.0,03:11.2,01:43.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.495228751386,9.55460865664948,4.83038548752835,2000.0
|
||||
442,28827327,16054,1038000.0,173,103138.593947331,4,30.6190476190476,3968.4,17:18.0,01:43.1,593.779050277637,302.0,0.0,0,0.0,0.0,3968.4,0.0,0,0,0,0,173,0,0,1040000.0,191293.118277239,103138.593947331,50.0,03:11.2,01:43.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.632481387474,9.49966674072429,4.84784580498867,2000.0
|
||||
443,28827328,16054,1040000.0,174,104765.524777878,4,30.6190476190476,3977.0,17:20.0,01:44.7,592.923812671038,302.0,0.0,0,0.0,0.0,3977.0,0.0,0,0,0,0,174,0,0,1042000.0,191293.118277239,104765.524777878,50.0,03:11.2,01:44.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.787326028638,9.35214396800711,4.77256235827665,2000.0
|
||||
444,28827329,16054,1042000.0,174,106722.811093364,4,30.4285714285714,3987.2,17:22.0,01:46.7,596.381054987471,302.0,0.0,0,0.0,0.0,3987.2,0.0,0,0,0,0,174,0,0,1044000.0,191293.118277239,106722.811093364,50.0,03:11.2,01:46.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.3431141730708,9.23809523809524,4.68503401360545,2000.0
|
||||
445,28827330,16054,1044000.0,175,106465.163439718,4,30.0476190476191,3996.8,17:24.0,01:46.4,601.584394569206,302.0,0.0,0,0.0,0.0,3996.8,0.0,0,0,0,0,175,0,0,1046000.0,191293.118277239,106465.163439718,50.0,03:11.2,01:46.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.0369869216422,9.37785827484719,4.69637188208617,2000.0
|
||||
446,28827331,16054,1046000.0,175,104556.877993267,4,29.9047619047619,4005.5,17:26.0,01:44.5,606.881986154347,302.0,0.0,0,0.0,0.0,4005.5,0.0,0,0,0,0,175,0,0,1048000.0,191293.118277239,104556.877993267,50.0,03:11.2,01:44.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.391904430566,9.59463148316652,4.78208616780046,2000.0
|
||||
447,28827332,16054,1048000.0,176,102234.792284866,4,29.9047619047619,4017.3,17:28.0,01:42.2,607.024603305154,302.0,0.0,0,0.0,0.0,4017.3,0.0,0,0,0,0,176,0,0,1050000.0,191293.118277239,102234.792284866,50.0,03:11.2,01:42.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.45883733617,9.81255686988172,4.89070294784581,2000.0
|
||||
448,28827333,16054,1050000.0,176,101402.621292251,4,30.0476190476191,4025.0,17:30.0,01:41.4,595.227757183857,302.0,0.0,0,0.0,0.0,4025.0,0.0,0,0,0,0,176,0,0,1052000.0,191293.118277239,101402.621292251,50.0,03:11.2,01:41.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.151046499596,9.84604935476569,4.93083900226758,2000.0
|
||||
449,28827334,16054,1051000.0,176,100377.839486502,4,30.2380952380953,4033.1,17:31.0,01:40.3,580.323180778412,293.0,0.0,0,0.0,0.0,4033.1,0.0,0,0,0,0,176,0,0,1052000.0,191293.118277239,100377.839486502,50.0,03:11.2,01:40.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118.11006069064,9.88391451068617,4.981179138322,1000.0
|
||||
450,28827335,16054,1054000.0,176,100781.571369807,4,30.8095238095238,4043.2,17:34.0,01:40.7,565.63496883756,285.0,0.0,0,0.0,0.0,4043.2,0.0,0,0,0,0,176,0,0,1057000.0,191293.118277239,100781.571369807,50.0,03:11.2,01:40.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.971974843398,9.66173548244646,4.96122448979592,3000.0
|
||||
451,28827336,16054,1055000.0,176,100487.627033678,4,31.3333333333334,4051.6,17:35.0,01:40.4,557.819593507943,293.0,0.0,0,0.0,0.0,4051.6,0.0,0,0,0,0,176,0,0,1056000.0,191293.118277239,100487.627033678,50.0,03:11.2,01:40.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,117.723360785851,9.52800694745984,4.97573696145125,1000.0
|
||||
452,28827337,16054,1057000.0,176,102324.933871641,4,31.3809523809524,4061.6,17:37.0,01:42.3,560.90613095169,293.0,0.0,0,0.0,0.0,4061.6,0.0,0,0,0,0,176,0,0,1059000.0,191293.118277239,102324.933871641,50.0,03:11.2,01:42.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.495157677776,9.34272707565576,4.88639455782314,2000.0
|
||||
453,28827338,16054,1059000.0,177,104770.502708353,4,30.8571428571429,4069.8,17:39.0,01:44.7,569.284456947242,293.0,0.0,0,0.0,0.0,4069.8,0.0,0,0,0,0,177,0,0,1061000.0,191293.118277239,104770.502708353,50.0,03:11.2,01:44.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.868375848619,9.27954144620812,4.77233560090704,2000.0
|
||||
454,28827339,16054,1062000.0,178,108056.453984122,4,30.5238095238095,4081.8,17:42.0,01:48.0,574.966629793351,293.0,0.0,0,0.0,0.0,4081.8,0.0,0,0,0,0,178,0,0,1065000.0,191293.118277239,108056.453984122,50.0,03:11.2,01:48.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.6778287179931,9.09560953866727,4.62721088435375,3000.0
|
||||
455,28827340,16054,1063000.0,178,107866.157910185,4,30.3809523809524,4089.0,17:43.0,01:47.8,579.151467199014,293.0,0.0,0,0.0,0.0,4089.0,0.0,0,0,0,0,178,0,0,1064000.0,191293.118277239,107866.157910185,50.0,03:11.2,01:47.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.1798014360349,9.15450067174206,4.63537414965987,1000.0
|
||||
456,28827341,16054,1065000.0,178,106784.832195264,4,30.3333333333334,4098.7,17:45.0,01:46.7,577.315639057883,293.0,0.0,0,0.0,0.0,4098.7,0.0,0,0,0,0,178,0,0,1067000.0,191293.118277239,106784.832195264,50.0,03:11.2,01:46.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.1006117002992,9.26171787396278,4.68231292517007,2000.0
|
||||
457,28827342,16054,1067000.0,178,105125.148986889,4,30.7142857142857,4106.9,17:47.0,01:45.1,571.704785814527,293.0,0.0,0,0.0,0.0,4106.9,0.0,0,0,0,0,178,0,0,1069000.0,191293.118277239,105125.148986889,50.0,03:11.2,01:45.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.82069878852,9.29125138427465,4.75623582766441,2000.0
|
||||
458,28827343,16054,1069000.0,179,105135.173794879,4,31.1904761904762,4117.1,17:49.0,01:45.1,563.823632019694,293.0,0.0,0,0.0,0.0,4117.1,0.0,0,0,0,0,179,0,0,1071000.0,191293.118277239,105135.173794879,50.0,03:11.2,01:45.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.791289235724,9.1485278080698,4.75578231292518,2000.0
|
||||
459,28827344,16054,1071000.0,179,105704.697986577,4,31.4285714285714,4125.9,17:51.0,01:45.7,563.063324353726,293.0,0.0,0,0.0,0.0,4125.9,0.0,0,0,0,0,179,0,0,1073000.0,191293.118277239,105704.697986577,50.0,03:11.2,01:45.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.138743731878,9.03030303030304,4.73015873015874,2000.0
|
||||
460,28827345,16054,1073000.0,179,107257.515322502,4,31.3333333333334,4134.8,17:53.0,01:47.2,568.649393051432,293.0,0.0,0,0.0,0.0,4134.8,0.0,0,0,0,0,179,0,0,1075000.0,191293.118277239,107257.515322502,50.0,03:11.2,01:47.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.8093329635979,8.92661745549284,4.66167800453515,2000.0
|
||||
461,28827346,16054,1075000.0,179,108953.453898606,4,31.2380952380953,4144.9,17:55.0,01:48.9,561.626927976954,302.0,0.0,0,0.0,0.0,4144.9,0.0,0,0,0,0,179,0,0,1077000.0,191293.118277239,108953.453898606,50.0,03:11.2,01:48.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.6062071080417,8.81445993031359,4.58911564625851,2000.0
|
||||
462,28827347,16054,1077000.0,179,113906.395288769,4,31.8571428571429,4153.2,17:57.0,01:53.9,613.549574006441,302.0,0.0,0,0.0,0.0,4153.2,0.0,0,0,0,0,179,0,0,1079000.0,191293.118277239,113906.395288769,50.0,03:11.2,01:53.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.418183244094,8.26734998932309,4.38956916099774,2000.0
|
||||
463,28827348,16054,1080000.0,179,124978.745111375,4,30.1428571428572,4164.2,18:00.0,02:04.9,550.191610035737,270.0,0.0,0,0.0,0.0,4164.2,0.0,0,0,0,0,179,0,0,1083000.0,191293.118277239,124978.745111375,50.0,03:11.2,02:04.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.4042385634768,7.9634394041977,4.00068027210885,3000.0
|
||||
464,28827349,16054,1085000.0,179,144164.7597254,4,26.8095238095238,4181.3,18:05.0,02:24.1,409.016678049953,270.0,0.0,0,0.0,0.0,4181.3,0.0,0,0,0,0,179,0,0,1090000.0,191293.118277239,144164.7597254,50.0,03:11.2,02:24.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,43.2640271777056,7.7619893428064,3.46825396825397,5000.0
|
||||
465,28827350,16054,1088000.0,179,173485.444531864,4,22.7619047619048,4187.9,18:08.0,02:53.4,249.684879639978,34.0,0.0,0,0.0,0.0,4187.9,0.0,0,0,0,0,179,0,0,1091000.0,191293.118277239,173485.444531864,50.0,03:11.2,02:53.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,197.151459991309,7.59713090257024,2.88208616780046,3000.0
|
||||
466,28827351,16054,1092000.0,179,211876.621504756,4,18.9047619047619,4195.8,18:12.0,03:31.8,106.971049748857,21.0,0.0,0,0.0,0.0,4195.8,0.0,0,0,0,0,178,0,0,1096000.0,191293.118277239,211876.621504756,50.0,03:11.2,03:31.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,175.226437665754,7.48974451241454,2.35986394557823,4000.0
|
||||
467,28827352,16054,1094000.0,179,249237.029501526,4,16.9047619047619,4200.3,18:14.0,04:09.2,17.3119405052867,21.0,0.0,0,0.0,0.0,4200.3,0.0,0,0,0,0,179,0,0,1096000.0,191293.118277239,249237.029501526,50.0,03:11.2,04:09.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.649260313872,7.12032193158954,2.00612244897959,2000.0
|
||||
468,28827353,16054,1099000.0,178,277742.788764328,4,17.8095238095238,4207.9,18:19.0,04:37.7,57.3471297511276,16.0,0.0,0,0.0,0.0,4207.9,0.0,0,0,0,0,179,0,0,1104000.0,191293.118277239,277742.788764328,50.0,03:11.2,04:37.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.098576287862,6.06493506493507,1.80022675736962,5000.0
|
||||
469,28827354,16054,1101000.0,178,287296.41693811,4,18.3333333333333,4212.8,18:21.0,04:47.2,53.3410917576901,16.0,0.0,0,0.0,0.0,4212.8,0.0,0,0,0,0,178,0,0,1103000.0,191293.118277239,287296.41693811,50.0,03:11.2,04:47.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.248100596884,5.69573283858998,1.74036281179139,2000.0
|
||||
470,28827355,16054,1105000.0,178,284589.571502323,4,18.1904761904762,4218.8,18:25.0,04:44.5,49.5972081637427,15.0,0.0,0,0.0,0.0,4218.8,0.0,0,0,0,0,177,0,0,1109000.0,191293.118277239,284589.571502323,50.0,03:11.2,04:44.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.232471531706,5.79506357516829,1.75691609977324,4000.0
|
||||
471,28827356,16054,1108000.0,177,281609.195402299,4,17.3809523809524,4224.4,18:28.0,04:41.6,51.8462268886282,15.0,0.0,0,0.0,0.0,4224.4,0.0,0,0,0,0,177,0,0,1111000.0,191293.118277239,281609.195402299,50.0,03:11.2,04:41.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.480752067591,6.12915851272016,1.77551020408163,3000.0
|
||||
472,28827357,16054,1112000.0,176,276940.467219291,4,17.0952380952381,4232.1,18:32.0,04:36.9,54.7166634673194,16.0,0.0,0,0.0,0.0,4232.1,0.0,0,0,0,0,177,0,0,1116000.0,191293.118277239,276940.467219291,50.0,03:11.2,04:36.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.988515940228,6.3366494230004,1.80544217687075,4000.0
|
||||
473,28827358,16054,1115000.0,174,269033.674963396,4,17.3333333333333,4237.4,18:35.0,04:29.0,57.7715693267298,16.0,0.0,0,0.0,0.0,4237.4,0.0,0,0,0,0,173,0,0,1118000.0,191293.118277239,269033.674963396,50.0,03:11.2,04:29.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.338372944254,6.43328100470958,1.85850340136055,3000.0
|
||||
474,28827359,16054,1119000.0,172,262125.534950071,4,17.5714285714286,4244.3,18:39.0,04:22.1,58.3012502234046,18.0,0.0,0,0.0,0.0,4244.3,0.0,0,0,0,0,173,0,0,1123000.0,191293.118277239,262125.534950071,50.0,03:11.2,04:22.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.961161900747,6.51335656213705,1.90748299319728,4000.0
|
||||
475,28827360,16054,1121000.0,170,256634.07821229,4,18.7619047619048,4249.4,18:41.0,04:16.6,56.7064323266368,18.0,0.0,0,0.0,0.0,4249.4,0.0,0,0,0,0,169,0,0,1123000.0,191293.118277239,256634.07821229,50.0,03:11.2,04:16.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.040977409717,6.23060188542423,1.94829931972789,2000.0
|
||||
476,28827361,16054,1124000.0,169,255622.536517505,4,18.6666666666667,4255.2,18:44.0,04:15.6,56.4544818106795,17.0,0.0,0,0.0,0.0,4255.2,0.0,0,0,0,0,169,0,0,1127000.0,191293.118277239,255622.536517505,50.0,03:11.2,04:15.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123.259869329633,6.28717201166181,1.95600907029479,3000.0
|
||||
477,28827362,16054,1127000.0,169,258226.958660264,4,18.1428571428572,4260.9,18:47.0,04:18.2,59.0656997507957,17.0,0.0,0,0.0,0.0,4260.9,0.0,0,0,0,0,169,0,0,1130000.0,191293.118277239,258226.958660264,50.0,03:11.2,04:18.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.567839578741,6.4034495688039,1.93628117913832,3000.0
|
||||
478,28827363,16054,1132000.0,169,258590.360032837,4,18.2857142857143,4269.1,18:52.0,04:18.5,63.6224539052242,20.0,0.0,0,0.0,0.0,4269.1,0.0,0,0,0,0,169,0,0,1137000.0,191293.118277239,258590.360032837,50.0,03:11.2,04:18.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.204787244162,6.34449404761905,1.93356009070295,5000.0
|
||||
479,28827364,16054,1134000.0,166,249914.994899694,4,18.3809523809524,4274.3,18:54.0,04:09.9,70.7988087958049,23.0,0.0,0,0.0,0.0,4274.3,0.0,0,0,0,0,169,0,0,1136000.0,191293.118277239,249914.994899694,50.0,03:11.2,04:09.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.4907170359873,6.53071798667654,2.00068027210885,2000.0
|
||||
480,28827365,16054,1137000.0,163,234474.691620587,4,18.4285714285714,4281.4,18:57.0,03:54.4,81.816078431999,23.0,0.0,0,0.0,0.0,4281.4,0.0,0,0,0,161,0,0,0,1140000.0,191293.118277239,234474.691620587,50.0,03:11.2,03:54.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118.046275270294,6.94278331487634,2.13242630385488,3000.0
|
||||
481,28827366,16054,1141000.0,159,224244.889657276,4,18.8571428571429,4288.7,19:01.0,03:44.2,93.6527483486849,29.0,0.0,0,0.0,0.0,4288.7,0.0,0,0,159,0,0,0,0,1145000.0,191293.118277239,224244.889657276,50.0,03:11.2,03:44.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.029225448558,7.0945165945166,2.2297052154195,4000.0
|
||||
482,28827367,16054,1144000.0,157,217971.53024911,4,18.7142857142857,4296.0,19:04.0,03:37.9,102.804527694647,34.0,0.0,0,0.0,0.0,4296.0,0.0,0,0,157,0,0,0,0,1147000.0,191293.118277239,217971.53024911,50.0,03:11.2,03:37.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.4007835670716,7.35441657579063,2.29387755102041,3000.0
|
||||
483,28827368,16054,1147000.0,156,215374.096503223,4,18.952380952381,4304.1,19:07.0,03:35.3,108.275279706015,35.0,0.0,0,0.0,0.0,4304.1,0.0,0,0,156,0,0,0,0,1150000.0,191293.118277239,215374.096503223,50.0,03:11.2,03:35.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.096661829629,7.34960516870065,2.32154195011338,3000.0
|
||||
484,28827369,16054,1151000.0,155,216091.72873383,4,18.952380952381,4312.3,19:11.0,03:36.0,109.196466335277,33.0,0.0,0,0.0,0.0,4312.3,0.0,0,0,156,0,0,0,0,1155000.0,191293.118277239,216091.72873383,50.0,03:11.2,03:36.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.108943999815,7.32519741564968,2.31383219954649,4000.0
|
||||
485,28827370,16054,1154000.0,153,214285.714285714,4,18.8095238095238,4318.8,19:14.0,03:34.2,107.632492993714,33.0,0.0,0,0.0,0.0,4318.8,0.0,0,0,152,0,0,0,0,1157000.0,191293.118277239,214285.714285714,50.0,03:11.2,03:34.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.789001122335,7.44303797468355,2.33333333333334,3000.0
|
||||
486,28827371,16054,1157000.0,150,212019.23076923,4,18.6190476190476,4326.6,19:17.0,03:32.0,109.236798616677,35.0,0.0,0,0.0,0.0,4326.6,0.0,0,0,150,0,0,0,0,1160000.0,191293.118277239,212019.23076923,50.0,03:11.2,03:32.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.923854490283,7.59956156375594,2.35827664399093,3000.0
|
||||
487,28827372,16054,1160000.0,149,214389.888186679,4,18.3809523809524,4333.6,19:20.0,03:34.3,108.715476636881,33.0,0.0,0,0.0,0.0,4333.6,0.0,0,0,149,0,0,0,0,1163000.0,191293.118277239,214389.888186679,50.0,03:11.2,03:34.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.631950635458,7.61287934863065,2.33219954648526,3000.0
|
||||
488,28827373,16054,1163000.0,148,218144.044321329,4,18.1904761904762,4340.8,19:23.0,03:38.1,105.007253414941,33.0,0.0,0,0.0,0.0,4340.8,0.0,0,0,148,0,0,0,0,1166000.0,191293.118277239,218144.044321329,50.0,03:11.2,03:38.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.170148075193,7.56020942408377,2.2920634920635,3000.0
|
||||
489,28827374,16054,1168000.0,147,221030.473135525,4,18.1428571428572,4349.8,19:28.0,03:41.0,100.83839200542,29.0,0.0,0,0.0,0.0,4349.8,0.0,0,0,148,0,0,0,0,1173000.0,191293.118277239,221030.473135525,50.0,03:11.2,03:41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.766998070486,7.48106486689164,2.26213151927438,5000.0
|
||||
490,28827375,16054,1170000.0,145,221875.628899175,4,17.8095238095238,4355.8,19:30.0,03:41.8,98.6981897447338,29.0,0.0,0,0.0,0.0,4355.8,0.0,0,144,0,0,0,0,0,1172000.0,191293.118277239,221875.628899175,50.0,03:11.2,03:41.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.494647884115,7.59205500381971,2.25351473922903,2000.0
|
||||
491,28827376,16054,1173000.0,143,221252.257676098,4,18.0476190476191,4362.6,19:33.0,03:41.2,93.7070087141908,30.0,0.0,0,0.0,0.0,4362.6,0.0,0,143,0,0,0,0,0,1176000.0,191293.118277239,221252.257676098,50.0,03:11.2,03:41.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.716852980865,7.51300414624954,2.25986394557823,3000.0
|
||||
492,28827377,16054,1176000.0,142,222884.868088547,4,18.3333333333333,4369.7,19:36.0,03:42.8,96.2962535295397,29.0,0.0,0,0.0,0.0,4369.7,0.0,0,142,0,0,0,0,0,1179000.0,191293.118277239,222884.868088547,50.0,03:11.2,03:42.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.000450345399,7.34174397031541,2.24331065759637,3000.0
|
||||
493,28827378,16054,1180000.0,141,223178.137651822,4,18.5714285714286,4377.6,19:40.0,03:43.1,96.1030050757391,28.0,0.0,0,0.0,0.0,4377.6,0.0,0,140,0,0,0,0,0,1184000.0,191293.118277239,223178.137651822,50.0,03:11.2,03:43.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.448862179508,7.23809523809524,2.24036281179139,4000.0
|
||||
494,28827379,16054,1184000.0,140,218858.560794044,4,19.0,4386.1,19:44.0,03:38.8,108.19767426128,36.0,0.0,0,0.0,0.0,4386.1,0.0,0,140,0,0,0,0,0,1188000.0,191293.118277239,218858.560794044,50.0,03:11.2,03:38.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.7416731255434,7.21446473326173,2.28458049886622,4000.0
|
||||
495,28827380,16054,1186000.0,138,207412.284827391,4,19.1428571428572,4392.9,19:46.0,03:27.4,116.842177605061,36.0,0.0,0,0.0,0.0,4392.9,0.0,0,138,0,0,0,0,0,1188000.0,191293.118277239,207412.284827391,50.0,03:11.2,03:27.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.958751091847,7.55579246624023,2.41065759637188,2000.0
|
||||
496,28827381,16054,1190000.0,137,192829.033668561,4,19.8095238095238,4402.9,19:50.0,03:12.8,141.887429687834,51.0,0.0,0,0.0,0.0,4402.9,0.0,0,138,0,0,0,0,0,1194000.0,191293.118277239,192829.033668561,50.0,03:11.2,03:12.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.7151300293443,7.85370879120879,2.59297052154195,4000.0
|
||||
497,28827382,16054,1192000.0,136,177879.961277831,4,20.952380952381,4409.1,19:52.0,02:57.8,179.018360265739,51.0,0.0,0,0.0,0.0,4409.1,0.0,0,135,0,0,0,0,0,1194000.0,191293.118277239,177879.961277831,50.0,03:11.2,02:57.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.931745107935,8.04935064935065,2.8108843537415,2000.0
|
||||
498,28827383,16054,1195000.0,135,164466.323562318,4,21.4285714285714,4417.3,19:55.0,02:44.4,188.076860938482,83.0,0.0,0,0.0,0.0,4417.3,0.0,0,135,0,0,0,0,0,1198000.0,191293.118277239,164466.323562318,50.0,03:11.2,02:44.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.7892307244225,8.51238095238096,3.04013605442177,3000.0
|
||||
499,28827384,16054,1197000.0,134,151203.456078996,4,23.1904761904762,4426.1,19:57.0,02:31.2,251.835182390757,99.0,0.0,0,0.0,0.0,4426.1,0.0,0,134,0,0,0,0,0,1199000.0,191293.118277239,151203.456078996,50.0,03:11.2,02:31.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.26986807534,8.55558814901731,3.30680272108844,2000.0
|
||||
500,28827385,16054,1199000.0,134,140445.859872611,4,25.6190476190476,4434.5,19:59.0,02:20.4,332.721630284669,99.0,0.0,0,0.0,0.0,4434.5,0.0,0,134,0,0,0,0,0,1201000.0,191293.118277239,140445.859872611,50.0,03:11.2,02:20.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,127.616263759812,8.33775889537972,3.56009070294785,2000.0
|
||||
501,28827386,16054,1202000.0,134,129113.479330132,4,27.6666666666667,4446.2,20:02.0,02:09.1,410.488840349181,236.0,0.0,0,0.0,0.0,4446.2,0.0,0,135,0,0,0,0,0,1205000.0,191293.118277239,129113.479330132,50.0,03:11.2,02:09.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.9035007741895,8.39832800590116,3.87256235827665,3000.0
|
||||
502,28827387,16054,1204000.0,134,118179.869224997,4,29.6666666666667,4453.8,20:04.0,01:58.1,494.911076421266,236.0,0.0,0,0.0,0.0,4453.8,0.0,0,134,0,0,0,0,0,1206000.0,191293.118277239,118179.869224997,50.0,03:11.2,01:58.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.8515402357491,8.55675303829397,4.23083900226758,2000.0
|
||||
503,28827388,16054,1205000.0,134,108658.157985512,4,30.7619047619048,4462.3,20:05.0,01:48.6,559.524042478706,277.0,0.0,0,0.0,0.0,4462.3,0.0,0,134,0,0,0,0,0,1206000.0,191293.118277239,108658.157985512,50.0,03:11.2,01:48.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.4920688444151,8.97523219814242,4.60158730158731,1000.0
|
||||
504,28827389,16054,1208000.0,134,103779.357085706,4,29.952380952381,4474.8,20:08.0,01:43.7,555.915667429995,285.0,0.0,0,0.0,0.0,4474.8,0.0,0,134,0,0,0,0,0,1211000.0,191293.118277239,103779.357085706,50.0,03:11.2,01:43.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.872816291181,9.6511469452646,4.81791383219955,3000.0
|
||||
505,28827390,16054,1209000.0,135,103759.82306715,4,29.5714285714286,4481.3,20:09.0,01:43.7,573.934657827042,285.0,0.0,0,0.0,0.0,4481.3,0.0,0,136,0,0,0,0,0,1210000.0,191293.118277239,103759.82306715,50.0,03:11.2,01:43.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.934882560744,9.77731769036118,4.81882086167801,1000.0
|
||||
506,28827391,16054,1212000.0,137,109565.217391304,4,29.4761904761905,4493.3,20:12.0,01:49.5,574.653440272398,277.0,0.0,0,0.0,0.0,4493.3,0.0,0,136,0,0,0,0,0,1215000.0,191293.118277239,109565.217391304,50.0,03:11.2,01:49.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.066100222978,9.28917609046851,4.56349206349207,3000.0
|
||||
507,28827392,16054,1214000.0,139,114837.768866205,4,29.3333333333333,4500.8,20:14.0,01:54.8,572.05928142012,277.0,0.0,0,0.0,0.0,4500.8,0.0,0,140,0,0,0,0,0,1216000.0,191293.118277239,114837.768866205,50.0,03:11.2,01:54.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.4322655493839,8.90584415584416,4.35396825396826,2000.0
|
||||
508,28827393,16054,1216000.0,141,115011.475067807,4,29.2380952380953,4509.7,20:16.0,01:55.0,571.166875636267,285.0,0.0,0,0.0,0.0,4509.7,0.0,0,141,0,0,0,0,0,1218000.0,191293.118277239,115011.475067807,50.0,03:11.2,01:55.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.7234405511201,8.92135877152164,4.34739229024944,2000.0
|
||||
509,28827394,16054,1218000.0,143,111167.128812705,4,29.2857142857143,4521.9,20:18.0,01:51.1,573.835488602622,277.0,0.0,0,0.0,0.0,4521.9,0.0,0,143,0,0,0,0,0,1220000.0,191293.118277239,111167.128812705,50.0,03:11.2,01:51.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.9727364783752,9.21486643437864,4.49773242630386,2000.0
|
||||
510,28827395,16054,1220000.0,144,109028.876582278,4,29.1428571428572,4529.6,20:20.0,01:49.0,573.587818871993,277.0,0.0,0,0.0,0.0,4529.6,0.0,0,144,0,0,0,0,0,1222000.0,191293.118277239,109028.876582278,50.0,03:11.2,01:49.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.490806621735,9.44164332399627,4.58594104308391,2000.0
|
||||
511,28827396,16054,1222000.0,146,109636.038186157,4,28.9047619047619,4538.2,20:22.0,01:49.6,572.394300282459,277.0,0.0,0,0.0,0.0,4538.2,0.0,0,145,0,0,0,0,0,1224000.0,191293.118277239,109636.038186157,50.0,03:11.2,01:49.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.8800550910475,9.46669804659921,4.56054421768708,2000.0
|
||||
512,28827397,16054,1225000.0,149,112019.914651493,4,28.9047619047619,4550.2,20:25.0,01:52.0,575.597683418184,277.0,0.0,0,0.0,0.0,4550.2,0.0,0,0,149,0,0,0,0,1228000.0,191293.118277239,112019.914651493,50.0,03:11.2,01:52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.8881749846917,9.26523887973641,4.46349206349207,3000.0
|
||||
513,28827398,16054,1227000.0,152,110615.029597672,4,28.952380952381,4559.4,20:27.0,01:50.6,572.358243680434,277.0,0.0,0,0.0,0.0,4559.4,0.0,0,0,152,0,0,0,0,1229000.0,191293.118277239,110615.029597672,50.0,03:11.2,01:50.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.3567782265587,9.36748120300753,4.5201814058957,2000.0
|
||||
514,28827399,16054,1228000.0,154,105623.682697835,4,29.3809523809524,4567.2,20:28.0,01:45.6,563.543518036039,277.0,0.0,0,0.0,0.0,4567.2,0.0,0,0,155,0,0,0,0,1229000.0,191293.118277239,105623.682697835,50.0,03:11.2,01:45.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.227050112941,9.66705255846261,4.73378684807257,1000.0
|
||||
515,28827400,16054,1230000.0,156,101040.186958713,4,30.0952380952381,4576.9,20:30.0,01:41.0,552.453658691176,277.0,0.0,0,0.0,0.0,4576.9,0.0,0,0,156,0,0,0,0,1232000.0,191293.118277239,101040.186958713,50.0,03:11.2,01:41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.491471493047,9.86573236889693,4.94852607709751,2000.0
|
||||
516,28827401,16054,1232000.0,157,99562.017428997,4,30.6666666666667,4585.5,20:32.0,01:39.5,546.136697353254,277.0,0.0,0,0.0,0.0,4585.5,0.0,0,0,156,0,0,0,0,1234000.0,191293.118277239,99562.017428997,50.0,03:11.2,01:39.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,128.028663189504,9.82564330079859,5.02199546485261,2000.0
|
||||
517,28827402,16054,1234000.0,159,101809.954751131,4,30.6666666666667,4595.0,20:34.0,01:41.8,544.759281781054,277.0,0.0,0,0.0,0.0,4595.0,0.0,0,0,159,0,0,0,0,1236000.0,191293.118277239,101809.954751131,50.0,03:11.2,01:41.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.734013955124,9.60869565217392,4.91111111111112,2000.0
|
||||
518,28827403,16054,1236000.0,160,106009.615384615,4,30.0,4604.4,20:36.0,01:46.0,548.638333799362,277.0,0.0,0,0.0,0.0,4604.4,0.0,0,0,0,161,0,0,0,1238000.0,191293.118277239,106009.615384615,50.0,03:11.2,01:46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.060213925196,9.43310657596372,4.71655328798187,2000.0
|
||||
519,28827404,16054,1238000.0,162,109158.415841584,4,29.4285714285714,4614.0,20:38.0,01:49.1,552.054367951458,270.0,0.0,0,0.0,0.0,4614.0,0.0,0,0,0,162,0,0,0,1240000.0,191293.118277239,109158.415841584,50.0,03:11.2,01:49.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.6626904739041,9.33888118354138,4.58049886621316,2000.0
|
||||
520,28827405,16054,1240000.0,163,111504.424778761,4,29.2857142857143,4622.4,20:40.0,01:51.5,549.252809127655,270.0,0.0,0,0.0,0.0,4622.4,0.0,0,0,0,163,0,0,0,1242000.0,191293.118277239,111504.424778761,50.0,03:11.2,01:51.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.5035231894926,9.1869918699187,4.48412698412699,2000.0
|
||||
521,28827406,16054,1243000.0,164,112793.493273313,4,29.6666666666667,4634.1,20:43.0,01:52.7,545.329799558586,270.0,0.0,0,0.0,0.0,4634.1,0.0,0,0,0,164,0,0,0,1246000.0,191293.118277239,112793.493273313,50.0,03:11.2,01:52.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.3341866501467,8.96537491401055,4.43287981859411,3000.0
|
||||
522,28827407,16054,1244000.0,164,113320.99907493,4,29.9047619047619,4641.8,20:44.0,01:53.3,550.96867006467,270.0,0.0,0,0.0,0.0,4641.8,0.0,0,0,0,164,0,0,0,1245000.0,191293.118277239,113320.99907493,50.0,03:11.2,01:53.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.0785411545898,8.85259326660601,4.41224489795919,1000.0
|
||||
523,28827408,16054,1246000.0,164,113800.578034682,4,29.6666666666667,4650.4,20:46.0,01:53.8,561.205622378605,277.0,0.0,0,0.0,0.0,4650.4,0.0,0,0,0,164,0,0,0,1248000.0,191293.118277239,113800.578034682,50.0,03:11.2,01:53.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.7343523094195,8.88603531300161,4.3936507936508,2000.0
|
||||
524,28827409,16054,1249000.0,165,114059.590316573,4,29.3809523809524,4662.5,20:49.0,01:54.0,573.974730715568,285.0,0.0,0,0.0,0.0,4662.5,0.0,0,0,0,164,0,0,0,1252000.0,191293.118277239,114059.590316573,50.0,03:11.2,01:54.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.761387366793,8.95207223894421,4.38367346938776,3000.0
|
||||
525,28827410,16054,1250000.0,165,111032.781106803,4,29.3809523809524,4668.9,20:50.0,01:51.0,581.392976109132,285.0,0.0,0,0.0,0.0,4668.9,0.0,0,0,0,166,0,0,0,1251000.0,191293.118277239,111032.781106803,50.0,03:11.2,01:51.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.7159231726194,9.19611021069693,4.50317460317461,1000.0
|
||||
526,28827411,16054,1253000.0,166,107215.793056501,4,29.5714285714286,4681.3,20:53.0,01:47.2,578.659971679425,285.0,0.0,0,0.0,0.0,4681.3,0.0,0,0,0,166,0,0,0,1256000.0,191293.118277239,107215.793056501,50.0,03:11.2,01:47.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.6430235769714,9.4621578099839,4.66349206349207,3000.0
|
||||
527,28827412,16054,1254000.0,166,103157.894736842,4,29.952380952381,4688.8,20:54.0,01:43.1,573.064194059725,285.0,0.0,0,0.0,0.0,4688.8,0.0,0,0,0,166,0,0,0,1255000.0,191293.118277239,103157.894736842,50.0,03:11.2,01:43.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.870549969259,9.70928912105383,4.84693877551021,1000.0
|
||||
528,28827413,16054,1256000.0,167,101561.420478099,4,30.0952380952381,4697.0,20:56.0,01:41.5,572.187206626064,285.0,0.0,0,0.0,0.0,4697.0,0.0,0,0,0,167,0,0,0,1258000.0,191293.118277239,101561.420478099,50.0,03:11.2,01:41.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,117.229492523788,9.81509945750453,4.92312925170069,2000.0
|
||||
529,28827414,16054,1258000.0,167,102244.273393304,4,29.9047619047619,4707.2,20:58.0,01:42.2,567.199047024305,285.0,0.0,0,0.0,0.0,4707.2,0.0,0,0,0,167,0,0,0,1260000.0,191293.118277239,102244.273393304,50.0,03:11.2,01:42.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,114.896342911762,9.81164695177435,4.89024943310658,2000.0
|
||||
530,28827415,16054,1260000.0,168,105958.67371456,4,30.0476190476191,4715.4,21:00.0,01:45.9,563.624262021286,285.0,0.0,0,0.0,0.0,4715.4,0.0,0,0,0,0,168,0,0,1262000.0,191293.118277239,105958.67371456,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.231834130902,9.4226850803713,4.71882086167801,2000.0
|
||||
531,28827416,16054,1262000.0,169,108797.552671831,4,30.3333333333334,4725.3,21:02.0,01:48.7,556.881757217599,277.0,0.0,0,0.0,0.0,4725.3,0.0,0,0,0,0,169,0,0,1264000.0,191293.118277239,108797.552671831,50.0,03:11.2,01:48.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.113980701893,9.09037900874636,4.59569160997733,2000.0
|
||||
532,28827417,16054,1264000.0,170,110244.487775611,4,30.6666666666667,4734.2,21:04.0,01:50.2,552.912062337891,285.0,0.0,0,0.0,0.0,4734.2,0.0,0,0,0,0,170,0,0,1266000.0,191293.118277239,110244.487775611,50.0,03:11.2,01:50.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.6542340666639,8.87355811889974,4.53537414965987,2000.0
|
||||
533,28827418,16054,1266000.0,170,109947.643979057,4,31.0476190476191,4742.6,21:06.0,01:49.9,555.456518317867,285.0,0.0,0,0.0,0.0,4742.6,0.0,0,0,0,0,170,0,0,1268000.0,191293.118277239,109947.643979057,50.0,03:11.2,01:49.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.398602325921,8.78834355828222,4.54761904761905,2000.0
|
||||
534,28827419,16054,1268000.0,171,109228.711547035,4,31.0476190476191,4752.7,21:08.0,01:49.2,564.265493153062,293.0,0.0,0,0.0,0.0,4752.7,0.0,0,0,0,0,171,0,0,1270000.0,191293.118277239,109228.711547035,50.0,03:11.2,01:49.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.6621398568088,8.84618755477652,4.57755102040817,2000.0
|
||||
535,28827420,16054,1270000.0,171,108040.570336616,4,30.6666666666667,4762.4,21:10.0,01:48.0,573.505543886934,293.0,0.0,0,0.0,0.0,4762.4,0.0,0,0,0,0,171,0,0,1272000.0,191293.118277239,108040.570336616,50.0,03:11.2,01:48.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.7195922060186,9.05456965394854,4.62789115646259,2000.0
|
||||
536,28827421,16054,1272000.0,171,107903.107413751,4,30.3333333333334,4770.9,21:12.0,01:47.9,580.974830103752,293.0,0.0,0,0.0,0.0,4770.9,0.0,0,0,0,0,171,0,0,1274000.0,191293.118277239,107903.107413751,50.0,03:11.2,01:47.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.0820570145994,9.16573222695672,4.63378684807257,2000.0
|
||||
537,28827422,16054,1274000.0,171,107054.425401757,4,29.952380952381,4779.3,21:14.0,01:47.0,581.235508124079,293.0,0.0,0,0.0,0.0,4779.3,0.0,0,0,0,0,171,0,0,1276000.0,191293.118277239,107054.425401757,50.0,03:11.2,01:47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.3613415778263,9.35589370883489,4.67052154195012,2000.0
|
||||
538,28827423,16054,1276000.0,172,106578.374981874,4,29.952380952381,4791.5,21:16.0,01:46.5,573.546298201103,285.0,0.0,0,0.0,0.0,4791.5,0.0,0,0,0,0,171,0,0,1278000.0,191293.118277239,106578.374981874,50.0,03:11.2,01:46.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.441555900706,9.3976833976834,4.69138321995465,2000.0
|
||||
539,28827424,16054,1278000.0,172,106511.448169259,4,30.3333333333334,4799.0,21:18.0,01:46.5,561.766053544881,285.0,0.0,0,0.0,0.0,4799.0,0.0,0,0,0,0,173,0,0,1280000.0,191293.118277239,106511.448169259,50.0,03:11.2,01:46.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.632899469986,9.2854900201839,4.69433106575964,2000.0
|
||||
540,28827425,16054,1280000.0,173,105366.273235533,4,30.6666666666667,4807.4,21:20.0,01:45.3,543.854851621539,277.0,0.0,0,0.0,0.0,4807.4,0.0,0,0,0,0,173,0,0,1282000.0,191293.118277239,105366.273235533,50.0,03:11.2,01:45.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.014837546892,9.28438331854482,4.74535147392291,2000.0
|
||||
541,28827426,16054,1281000.0,174,104398.465981724,4,30.952380952381,4815.6,21:21.0,01:44.3,533.32000670393,277.0,0.0,0,0.0,0.0,4815.6,0.0,0,0,0,0,174,0,0,1282000.0,191293.118277239,104398.465981724,50.0,03:11.2,01:44.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.046768144579,9.28395604395605,4.78934240362812,1000.0
|
||||
542,28827427,16054,1284000.0,174,104930.046635576,4,31.1904761904762,4825.6,21:24.0,01:44.9,529.41978389857,270.0,0.0,0,0.0,0.0,4825.6,0.0,0,0,0,0,174,0,0,1287000.0,191293.118277239,104930.046635576,50.0,03:11.2,01:44.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.203055192143,9.16641221374046,4.76507936507937,3000.0
|
||||
543,28827428,16054,1285000.0,174,106362.452366022,4,30.952380952381,4834.4,21:25.0,01:46.3,533.525596617958,277.0,0.0,0,0.0,0.0,4834.4,0.0,0,0,0,0,174,0,0,1286000.0,191293.118277239,106362.452366022,50.0,03:11.2,01:46.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.00820839144,9.11252747252748,4.70090702947846,1000.0
|
||||
544,28827429,16054,1287000.0,175,110062.893081761,4,30.5714285714286,4842.4,21:27.0,01:50.0,540.591170923184,277.0,0.0,0,0.0,0.0,4842.4,0.0,0,0,0,0,175,0,0,1289000.0,191293.118277239,110062.893081761,50.0,03:11.2,01:50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.7688263464234,8.9158878504673,4.54285714285715,2000.0
|
||||
545,28827430,16054,1290000.0,175,112574.666870884,4,30.4761904761905,4854.1,21:30.0,01:52.5,546.969732921215,277.0,0.0,0,0.0,0.0,4854.1,0.0,0,0,0,0,175,0,0,1293000.0,191293.118277239,112574.666870884,50.0,03:11.2,01:52.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.5658436316001,8.74419642857143,4.44149659863946,3000.0
|
||||
546,28827431,16054,1291000.0,176,111200.766554037,4,30.3333333333334,4861.6,21:31.0,01:51.2,543.722370606614,277.0,0.0,0,0.0,0.0,4861.6,0.0,0,0,0,0,175,0,0,1292000.0,191293.118277239,111200.766554037,50.0,03:11.2,01:51.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.8892976821635,8.89392240412649,4.49637188208617,1000.0
|
||||
547,28827432,16054,1293000.0,176,107713.350593522,4,30.1428571428572,4871.2,21:33.0,01:47.7,539.288192596639,270.0,0.0,0,0.0,0.0,4871.2,0.0,0,0,0,0,176,0,0,1295000.0,191293.118277239,107713.350593522,50.0,03:11.2,01:47.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.727921035786,9.23990069961634,4.64195011337869,2000.0
|
||||
548,28827433,16054,1295000.0,176,105618.623365426,4,30.4285714285714,4879.1,21:35.0,01:45.6,536.127749594144,270.0,0.0,0,0.0,0.0,4879.1,0.0,0,0,0,0,176,0,0,1297000.0,191293.118277239,105618.623365426,50.0,03:11.2,01:45.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.022820062155,9.33467471495641,4.73401360544218,2000.0
|
||||
549,28827434,16054,1297000.0,176,106045.303707979,4,30.3333333333334,4889.1,21:37.0,01:46.0,529.803237478911,270.0,0.0,0,0.0,0.0,4889.1,0.0,0,0,0,0,175,0,0,1299000.0,191293.118277239,106045.303707979,50.0,03:11.2,01:46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.700103969352,9.32630634671452,4.71496598639456,2000.0
|
||||
550,28827435,16054,1299000.0,176,110040.922247729,4,30.2857142857143,4897.4,21:39.0,01:50.0,532.848689047769,270.0,0.0,0,0.0,0.0,4897.4,0.0,0,0,0,0,176,0,0,1301000.0,191293.118277239,110040.922247729,50.0,03:11.2,01:50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.2840440222125,9.00179694519318,4.54376417233561,2000.0
|
||||
551,28827436,16054,1301000.0,176,113233.708211369,4,30.7142857142857,4907.5,21:41.0,01:53.2,540.517186025317,270.0,0.0,0,0.0,0.0,4907.5,0.0,0,0,0,0,176,0,0,1303000.0,191293.118277239,113233.708211369,50.0,03:11.2,01:53.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.2847095834966,8.62591362126246,4.41564625850341,2000.0
|
||||
552,28827437,16054,1304000.0,176,113871.101012187,4,30.6666666666667,4917.3,21:44.0,01:53.8,552.599574455145,285.0,0.0,0,0.0,0.0,4917.3,0.0,0,0,0,0,176,0,0,1307000.0,191293.118277239,113871.101012187,50.0,03:11.2,01:53.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,83.1730494736481,8.59094942324757,4.39092970521543,3000.0
|
||||
553,28827438,16054,1305000.0,176,110926.652580742,4,30.5714285714286,4925.2,21:45.0,01:50.9,553.592099263077,285.0,0.0,0,0.0,0.0,4925.2,0.0,0,0,0,0,176,0,0,1306000.0,191293.118277239,110926.652580742,50.0,03:11.2,01:50.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.9736754154971,8.8464619492657,4.50748299319729,1000.0
|
||||
554,28827439,16054,1307000.0,177,108423.071249447,4,30.7619047619048,4934.6,21:47.0,01:48.4,543.620406232619,285.0,0.0,0,0.0,0.0,4934.6,0.0,0,0,0,0,177,0,0,1309000.0,191293.118277239,108423.071249447,50.0,03:11.2,01:48.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.3514087450725,8.99469261388767,4.61156462585035,2000.0
|
||||
555,28827440,16054,1309000.0,177,107101.224013989,4,30.7142857142857,4943.1,21:49.0,01:47.1,524.295465689748,262.0,0.0,0,0.0,0.0,4943.1,0.0,0,0,0,0,177,0,0,1311000.0,191293.118277239,107101.224013989,50.0,03:11.2,01:47.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.738528179878,9.11982281284608,4.66848072562359,2000.0
|
||||
556,28827441,16054,1311000.0,177,106280.426085699,4,30.8571428571429,4951.3,21:51.0,01:46.2,521.450043010606,262.0,0.0,0,0.0,0.0,4951.3,0.0,0,0,0,0,177,0,0,1313000.0,191293.118277239,106280.426085699,50.0,03:11.2,01:46.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.277380182459,9.14770723104057,4.7045351473923,2000.0
|
||||
557,28827442,16054,1313000.0,177,104368.817153405,4,30.9047619047619,4961.3,21:53.0,01:44.3,518.469497235763,270.0,0.0,0,0.0,0.0,4961.3,0.0,0,0,0,0,177,0,0,1315000.0,191293.118277239,104368.817153405,50.0,03:11.2,01:44.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,114.022877233569,9.30090248734317,4.79070294784581,2000.0
|
||||
558,28827443,16054,1315000.0,177,106696.990225491,4,31.0952380952381,4970.8,21:55.0,01:46.6,522.447162134413,285.0,0.0,0,0.0,0.0,4970.8,0.0,0,0,0,0,177,0,0,1317000.0,191293.118277239,106696.990225491,50.0,03:11.2,01:46.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.10361356808,9.04222270837891,4.68616780045352,2000.0
|
||||
559,28827444,16054,1317000.0,177,118186.203569706,4,33.1904761904762,4980.9,21:57.0,01:58.1,602.383547047353,285.0,0.0,0,0.0,0.0,4980.9,0.0,0,0,0,0,177,0,0,1319000.0,191293.118277239,118186.203569706,50.0,03:11.2,01:58.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,74.3914180870756,7.64787866366059,4.23061224489796,2000.0
|
||||
560,28827445,16054,1324000.0,177,150102.110279101,4,31.7619047619048,5007.4,22:04.0,02:30.1,543.99409018825,293.0,0.0,0,0.0,0.0,5007.4,0.0,0,0,0,0,177,0,0,1331000.0,191293.118277239,150102.110279101,50.0,03:11.2,02:30.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,35.3215725025085,6.29256800171343,3.33106575963719,7000.0
|
||||
561,28827446,16054,1336000.0,177,223404.255319149,4,27.4761904761905,5009.6,22:16.0,03:43.4,400.729312773882,293.0,0.0,0,0.0,0.0,5009.6,0.0,0,0,0,0,177,0,0,1348000.0,191293.118277239,223404.255319149,50.0,03:11.2,03:43.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,10.71336991376,4.88734835355286,2.23809523809524,12000.0
|
||||
562,28827447,16054,1340000.0,176,346099.513420185,4,21.5714285714286,5015.7,22:20.0,05:46.0,230.868941940268,9.0,0.0,0,0.0,0.0,5015.7,0.0,0,0,0,0,0,0,0,1344000.0,191293.118277239,346099.513420185,50.0,03:11.2,05:46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.8042615103103,4.01829076001262,1.44467120181406,4000.0
|
||||
563,28827448,16054,1343000.0,175,412380.774265943,4,16.7619047619048,5021.0,22:23.0,06:52.3,66.5830336593282,8.0,0.0,0,0.0,0.0,5021.0,0.0,0,0,0,0,0,0,0,1346000.0,191293.118277239,412380.774265943,50.0,03:11.2,06:52.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.3853804966301,4.3400974025974,1.2124716553288,3000.0
|
||||
564,28827449,16054,1346000.0,174,387249.736564805,4,14.4761904761905,5025.8,22:26.0,06:27.2,-27.6538803348899,8.0,0.0,0,0.0,0.0,5025.8,0.0,0,0,0,0,174,0,0,1349000.0,191293.118277239,387249.736564805,50.0,03:11.2,06:27.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.3363654914511,5.3515037593985,1.29115646258504,3000.0
|
||||
565,28827450,16054,1350000.0,173,345286.564359536,4,16.0476190476191,5031.5,22:30.0,05:45.2,32.7096203546343,9.0,0.0,0,0.0,0.0,5031.5,0.0,0,0,0,0,172,0,0,1354000.0,191293.118277239,345286.564359536,50.0,03:11.2,05:45.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.4683861405943,5.41415854175499,1.44807256235828,4000.0
|
||||
566,28827451,16054,1354000.0,172,322321.298055839,4,16.6666666666667,5037.1,22:34.0,05:22.3,36.1726681765919,9.0,0.0,0,0.0,0.0,5037.1,0.0,0,0,0,0,172,0,0,1358000.0,191293.118277239,322321.298055839,50.0,03:11.2,05:22.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.133770051594,5.58448979591837,1.55124716553288,4000.0
|
||||
567,28827452,16054,1358000.0,173,314865.057832357,4,16.6666666666667,5043.0,22:38.0,05:14.8,38.3638071761096,11.0,0.0,0,0.0,0.0,5043.0,0.0,0,0,0,0,172,0,0,1362000.0,191293.118277239,314865.057832357,50.0,03:11.2,05:14.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.929984183976,5.71673469387755,1.58798185941043,4000.0
|
||||
568,28827453,16054,1362000.0,172,311969.439728353,4,16.1428571428572,5050.1,22:42.0,05:11.9,43.8649386881357,13.0,0.0,0,0.0,0.0,5050.1,0.0,0,0,0,0,172,0,0,1366000.0,191293.118277239,311969.439728353,50.0,03:11.2,05:11.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.672414278612,5.95701643489254,1.60272108843538,4000.0
|
||||
569,28827454,16054,1365000.0,168,326521.545979564,4,17.9047619047619,5055.4,22:45.0,05:26.5,61.2969764293549,14.0,0.0,0,0.0,0.0,5055.4,0.0,0,0,0,0,172,0,0,1368000.0,191293.118277239,326521.545979564,50.0,03:11.2,05:26.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.8132325879589,5.13145896656535,1.53129251700681,3000.0
|
||||
570,28827455,16054,1375000.0,162,392768.079800498,4,13.7142857142857,5071.1,22:55.0,06:32.7,62.310847100437,15.0,0.0,0,0.0,0.0,5071.1,0.0,0,0,0,0,0,0,0,1385000.0,191293.118277239,392768.079800498,50.0,03:11.2,06:32.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,38.5095309388503,5.56944444444445,1.27301587301587,10000.0
|
||||
571,28827456,16054,1388000.0,157,532737.37617782,4,11.0476190476191,5072.4,23:08.0,08:52.7,49.9174801711514,15.0,0.0,0,0.0,0.0,5072.4,0.0,0,0,0,0,0,0,0,1401000.0,191293.118277239,532737.37617782,50.0,03:11.2,08:52.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,15.4325354439352,5.09729064039409,0.938548752834468,13000.0
|
||||
572,28827457,16054,1392000.0,152,642857.142857142,4,10.3333333333333,5076.0,23:12.0,10:42.8,37.3715904764677,2.0,0.0,0,0.0,0.0,5076.0,0.0,0,0,0,0,0,0,0,1396000.0,191293.118277239,642857.142857142,50.0,03:11.2,10:42.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,65.8710562414269,4.51612903225807,0.777777777777779,4000.0
|
||||
573,28827458,16054,1396000.0,150,548098.434004473,4,11.0476190476191,5080.4,23:16.0,09:08.0,20.163417910679,2.0,0.0,0,0.0,0.0,5080.4,0.0,0,0,0,0,0,0,0,1400000.0,191293.118277239,548098.434004473,50.0,03:11.2,09:08.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.282647706313,4.95443349753695,0.912244897959185,4000.0
|
||||
574,28827459,16054,1399000.0,148,416666.666666666,4,13.5238095238095,5085.7,23:19.0,06:56.6,15.7123500879197,7.0,0.0,0,0.0,0.0,5085.7,0.0,0,0,0,0,0,0,0,1402000.0,191293.118277239,416666.666666666,50.0,03:11.2,06:56.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,69.1200000000003,5.32394366197183,1.2,3000.0
|
||||
575,28827460,16054,1403000.0,146,333333.333333333,4,18.0,5091.9,23:23.0,05:33.3,30.8189414310687,7.0,0.0,0,0.0,0.0,5091.9,0.0,0,146,0,0,0,0,0,1407000.0,191293.118277239,333333.333333333,50.0,03:11.2,05:33.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,135.0,5.0,1.5,4000.0
|
||||
576,28827461,16054,1406000.0,144,293296.089385474,4,17.0,5097.9,23:26.0,04:53.2,43.3698678386018,13.0,0.0,0,0.0,0.0,5097.9,0.0,0,144,0,0,0,0,0,1409000.0,191293.118277239,293296.089385474,50.0,03:11.2,04:53.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.7101854759,6.01680672268908,1.70476190476191,3000.0
|
||||
577,28827462,16054,1410000.0,142,277219.009303495,4,17.6190476190476,5103.9,23:30.0,04:37.2,53.6290249622209,15.0,0.0,0,0.0,0.0,5103.9,0.0,0,142,0,0,0,0,0,1414000.0,191293.118277239,277219.009303495,50.0,03:11.2,04:37.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.523613460316,6.14208494208494,1.80362811791383,4000.0
|
||||
578,28827463,16054,1414000.0,140,264135.122184954,4,17.952380952381,5112.2,23:34.0,04:24.1,65.1035148805463,21.0,0.0,0,0.0,0.0,5112.2,0.0,0,140,0,0,0,0,0,1418000.0,191293.118277239,264135.122184954,50.0,03:11.2,04:24.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.4420274437583,6.32663887836302,1.89297052154195,4000.0
|
||||
579,28827464,16054,1416000.0,138,251138.952164009,4,18.1428571428572,5117.1,23:36.0,04:11.1,69.1941240481962,21.0,0.0,0,0.0,0.0,5117.1,0.0,0,138,0,0,0,0,0,1418000.0,191293.118277239,251138.952164009,50.0,03:11.2,04:11.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.221991171394,6.58417697787777,1.99092970521542,2000.0
|
||||
580,28827465,16054,1420000.0,137,243055.555555555,4,18.3333333333333,5124.4,23:40.0,04:03.0,75.4994055356027,22.0,0.0,0,0.0,0.0,5124.4,0.0,0,136,0,0,0,0,0,1424000.0,191293.118277239,243055.555555555,50.0,03:11.2,04:03.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.797179962895,6.73246753246754,2.05714285714286,4000.0
|
||||
581,28827466,16054,1423000.0,136,235049.568276303,4,18.6666666666667,5131.9,23:43.0,03:55.0,77.050236626467,24.0,0.0,0,0.0,0.0,5131.9,0.0,0,136,0,0,0,0,0,1426000.0,191293.118277239,235049.568276303,50.0,03:11.2,03:55.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.299656826558,6.83746355685132,2.12721088435374,3000.0
|
||||
582,28827467,16054,1427000.0,135,226432.532347504,4,18.7619047619048,5139.5,23:47.0,03:46.4,81.1689420266966,28.0,0.0,0,0.0,0.0,5139.5,0.0,0,136,0,0,0,0,0,1431000.0,191293.118277239,226432.532347504,50.0,03:11.2,03:46.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.66970972979,7.06163886874547,2.20816326530613,4000.0
|
||||
583,28827468,16054,1429000.0,134,217369.873817034,4,19.1904761904762,5145.3,23:49.0,03:37.3,98.9239951377834,28.0,0.0,0,0.0,0.0,5145.3,0.0,0,134,0,0,0,0,0,1431000.0,191293.118277239,217369.873817034,50.0,03:11.2,03:37.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,121.705989942579,7.19177596596952,2.30022675736962,2000.0
|
||||
584,28827469,16054,1432000.0,133,205460.305628028,4,19.4761904761905,5152.9,23:52.0,03:25.4,113.546019969549,36.0,0.0,0,0.0,0.0,5152.9,0.0,0,133,0,0,0,0,0,1435000.0,191293.118277239,205460.305628028,50.0,03:11.2,03:25.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.093841837826,7.49703108627315,2.43356009070295,3000.0
|
||||
585,28827470,16054,1436000.0,133,190480.304077401,4,20.2380952380953,5162.9,23:56.0,03:10.4,134.248782643129,54.0,0.0,0,0.0,0.0,5162.9,0.0,0,133,0,0,0,0,0,1440000.0,191293.118277239,190480.304077401,50.0,03:11.2,03:10.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.7829862423358,7.78218487394958,2.6249433106576,4000.0
|
||||
586,28827471,16054,1438000.0,133,171515.245799626,4,21.1904761904762,5169.9,23:58.0,02:51.5,170.630024811826,54.0,0.0,0,0.0,0.0,5169.9,0.0,0,133,0,0,0,0,0,1440000.0,191293.118277239,171515.245799626,50.0,03:11.2,02:51.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,128.459460688118,8.25425361155699,2.91519274376418,2000.0
|
||||
587,28827472,16054,1440000.0,133,150583.896742471,4,23.4285714285714,5178.8,24:00.0,02:30.5,237.784636689739,88.0,0.0,0,0.0,0.0,5178.8,0.0,0,133,0,0,0,0,0,1442000.0,191293.118277239,150583.896742471,50.0,03:11.2,02:30.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.479575149965,8.5034843205575,3.32040816326531,2000.0
|
||||
588,28827473,16054,1442000.0,133,132967.496834107,4,25.9047619047619,5186.4,24:02.0,02:12.9,336.945153258182,139.0,0.0,0,0.0,0.0,5186.4,0.0,0,133,0,0,0,0,0,1444000.0,191293.118277239,132967.496834107,50.0,03:11.2,02:12.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.106731114982,8.70955882352942,3.76031746031747,2000.0
|
||||
589,28827474,16054,1444000.0,134,120320.855614973,4,28.3333333333334,5196.1,24:04.0,02:00.3,440.018789412847,218.0,0.0,0,0.0,0.0,5196.1,0.0,0,133,0,0,0,0,0,1446000.0,191293.118277239,120320.855614973,50.0,03:11.2,02:00.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.1698362718822,8.80000000000001,4.15555555555556,2000.0
|
||||
590,28827475,16054,1447000.0,135,112133.848657445,4,30.0952380952381,5207.5,24:07.0,01:52.1,512.990627152432,270.0,0.0,0,0.0,0.0,5207.5,0.0,0,135,0,0,0,0,0,1450000.0,191293.118277239,112133.848657445,50.0,03:11.2,01:52.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.937797501405,8.88969258589512,4.45895691609978,3000.0
|
||||
591,28827476,16054,1448000.0,136,106883.179835191,4,30.7619047619048,5214.8,24:08.0,01:46.8,548.937514791103,270.0,0.0,0,0.0,0.0,5214.8,0.0,0,137,0,0,0,0,0,1449000.0,191293.118277239,106883.179835191,50.0,03:11.2,01:46.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.163733396504,9.12428129146396,4.6780045351474,1000.0
|
||||
592,28827477,16054,1450000.0,137,104566.79470764,4,30.1428571428572,5224.2,24:10.0,01:44.5,551.312401357278,277.0,0.0,0,0.0,0.0,5224.2,0.0,0,137,0,0,0,0,0,1452000.0,191293.118277239,104566.79470764,50.0,03:11.2,01:44.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.511350947764,9.51794177386595,4.78163265306123,2000.0
|
||||
593,28827478,16054,1452000.0,137,104556.877993266,4,30.3809523809524,5232.8,24:12.0,01:44.5,543.409445451699,277.0,0.0,0,0.0,0.0,5232.8,0.0,0,137,0,0,0,0,0,1454000.0,191293.118277239,104556.877993266,50.0,03:11.2,01:44.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.542798332242,9.44424540976266,4.78208616780046,2000.0
|
||||
594,28827479,16054,1454000.0,138,107918.950665622,4,30.8095238095238,5242.4,24:14.0,01:47.9,536.664054161031,277.0,0.0,0,0.0,0.0,5242.4,0.0,0,138,0,0,0,0,0,1456000.0,191293.118277239,107918.950665622,50.0,03:11.2,01:47.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.529872936079,9.02274232722456,4.63310657596373,2000.0
|
||||
595,28827480,16054,1456000.0,140,112071.156289708,4,31.3333333333334,5250.2,24:16.0,01:52.0,519.67936957186,270.0,0.0,0,0.0,0.0,5250.2,0.0,0,140,0,0,0,0,0,1458000.0,191293.118277239,112071.156289708,50.0,03:11.2,01:52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.0921732549507,8.5432045158489,4.46145124716554,2000.0
|
||||
596,28827481,16054,1458000.0,142,114909.583615613,4,31.8571428571429,5258.7,24:18.0,01:54.9,513.104123085182,270.0,0.0,0,0.0,0.0,5258.7,0.0,0,142,0,0,0,0,0,1460000.0,191293.118277239,114909.583615613,50.0,03:11.2,01:54.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.4349416869753,8.19517403373906,4.35124716553289,2000.0
|
||||
597,28827482,16054,1460000.0,144,113618.797341165,4,31.8571428571429,5268.6,24:20.0,01:53.6,513.180875985209,270.0,0.0,0,0.0,0.0,5268.6,0.0,0,145,0,0,0,0,0,1462000.0,191293.118277239,113618.797341165,50.0,03:11.2,01:53.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.3799428430724,8.28827674567586,4.40068027210885,2000.0
|
||||
598,28827483,16054,1462000.0,146,111144.714955391,4,31.4285714285715,5276.3,24:22.0,01:51.1,518.078919310204,277.0,0.0,0,0.0,0.0,5276.3,0.0,0,146,0,0,0,0,0,1464000.0,191293.118277239,111144.714955391,50.0,03:11.2,01:51.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.028390394356,8.58831168831169,4.49863945578232,2000.0
|
||||
599,28827484,16054,1464000.0,148,108151.854031783,4,30.9047619047619,5288.4,24:24.0,01:48.1,526.584832633235,270.0,0.0,0,0.0,0.0,5288.4,0.0,0,0,148,0,0,0,0,1466000.0,191293.118277239,108151.854031783,50.0,03:11.2,01:48.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.471330111899,8.97556680607529,4.62312925170069,2000.0
|
||||
600,28827485,16054,1466000.0,149,108321.870701513,4,30.8095238095238,5295.6,24:26.0,01:48.3,530.889117395615,270.0,0.0,0,0.0,0.0,5295.6,0.0,0,0,149,0,0,0,0,1468000.0,191293.118277239,108321.870701513,50.0,03:11.2,01:48.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.989585178135,8.98918083462133,4.61587301587302,2000.0
|
||||
601,28827486,16054,1468000.0,150,108593.942378724,4,30.5714285714286,5304.8,24:28.0,01:48.5,536.025534379981,277.0,0.0,0,0.0,0.0,5304.8,0.0,0,0,150,0,0,0,0,1470000.0,191293.118277239,108593.942378724,50.0,03:11.2,01:48.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.6668981749007,9.03649310191367,4.60430839002268,2000.0
|
||||
602,28827487,16054,1470000.0,151,109527.121001391,4,30.0476190476191,5313.0,24:30.0,01:49.5,549.212093675234,270.0,0.0,0,0.0,0.0,5313.0,0.0,0,0,151,0,0,0,0,1472000.0,191293.118277239,109527.121001391,50.0,03:11.2,01:49.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.6595803734087,9.11568938193345,4.56507936507937,2000.0
|
||||
603,28827488,16054,1472000.0,152,107845.055267534,4,29.5238095238095,5325.5,24:32.0,01:47.8,560.081110555279,277.0,0.0,0,0.0,0.0,5325.5,0.0,0,0,152,0,0,0,0,1474000.0,191293.118277239,107845.055267534,50.0,03:11.2,01:47.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.736663676666,9.42211981566821,4.63628117913833,2000.0
|
||||
604,28827489,16054,1474000.0,153,106924.643584521,4,29.0952380952381,5331.5,24:34.0,01:46.9,563.611006720909,277.0,0.0,0,0.0,0.0,5331.5,0.0,0,0,153,0,0,0,0,1476000.0,191293.118277239,106924.643584521,50.0,03:11.2,01:46.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.360557097288,9.64320785597382,4.67619047619048,2000.0
|
||||
605,28827490,16054,1476000.0,154,105928.132205995,4,28.8571428571429,5343.5,24:36.0,01:45.9,564.033361466864,270.0,0.0,0,0.0,0.0,5343.5,0.0,0,0,153,0,0,0,0,1478000.0,191293.118277239,105928.132205995,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.061216201057,9.81423856671382,4.7201814058957,2000.0
|
||||
606,28827491,16054,1478000.0,156,108024.691358025,4,29.3333333333333,5351.3,24:38.0,01:48.0,556.940691794989,270.0,0.0,0,0.0,0.0,5351.3,0.0,0,0,156,0,0,0,0,1480000.0,191293.118277239,108024.691358025,50.0,03:11.2,01:48.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.833632653062,9.46753246753247,4.62857142857143,2000.0
|
||||
607,28827492,16054,1480000.0,158,109745.172207844,4,29.5714285714286,5360.7,24:40.0,01:49.7,543.974276769336,270.0,0.0,0,0.0,0.0,5360.7,0.0,0,0,158,0,0,0,0,1482000.0,191293.118277239,109745.172207844,50.0,03:11.2,01:49.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,98.0726718607502,9.24407637451116,4.55600907029479,2000.0
|
||||
608,28827493,16054,1482000.0,159,113280.246596455,4,30.0,5368.3,24:42.0,01:53.2,535.330717270277,270.0,0.0,0,0.0,0.0,5368.3,0.0,0,0,159,0,0,0,0,1484000.0,191293.118277239,113280.246596455,50.0,03:11.2,01:53.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.1747135468996,8.82766439909297,4.41383219954649,2000.0
|
||||
609,28827494,16054,1484000.0,160,113571.980427504,4,30.4285714285714,5378.3,24:44.0,01:53.5,526.645713250705,262.0,0.0,0,0.0,0.0,5378.3,0.0,0,0,160,0,0,0,0,1486000.0,191293.118277239,113571.980427504,50.0,03:11.2,01:53.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.1912473634583,8.68097473731277,4.40249433106576,2000.0
|
||||
610,28827495,16054,1486000.0,160,113018.964633521,4,30.6666666666667,5386.8,24:46.0,01:53.0,522.598774830901,270.0,0.0,0,0.0,0.0,5386.8,0.0,0,0,160,0,0,0,0,1488000.0,191293.118277239,113018.964633521,50.0,03:11.2,01:53.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.7946179436485,8.65572315882875,4.42403628117914,2000.0
|
||||
611,28827496,16054,1488000.0,160,108770.718232044,4,31.0476190476191,5396.6,24:48.0,01:48.7,526.736026092096,270.0,0.0,0,0.0,0.0,5396.6,0.0,0,0,160,0,0,0,0,1490000.0,191293.118277239,108770.718232044,50.0,03:11.2,01:48.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.732193578423,8.88343558282209,4.5968253968254,2000.0
|
||||
612,28827497,16054,1490000.0,161,104940.034266134,4,31.0476190476191,5404.9,24:50.0,01:44.9,533.572083787442,277.0,0.0,0,0.0,0.0,5404.9,0.0,0,0,160,0,0,0,0,1492000.0,191293.118277239,104940.034266134,50.0,03:11.2,01:44.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.336374828318,9.20771253286591,4.76462585034014,2000.0
|
||||
613,28827498,16054,1491000.0,163,100304.780967111,4,30.6666666666667,5413.5,24:51.0,01:40.3,535.844789890303,277.0,0.0,0,0.0,0.0,5413.5,0.0,0,0,0,164,0,0,0,1492000.0,191293.118277239,100304.780967111,50.0,03:11.2,01:40.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125.205490399996,9.75288376220054,4.98480725623583,1000.0
|
||||
614,28827499,16054,1494000.0,165,100272.851296044,4,30.3333333333334,5426.1,24:54.0,01:40.2,539.647007663844,270.0,0.0,0,0.0,0.0,5426.1,0.0,0,0,0,164,0,0,0,1497000.0,191293.118277239,100272.851296044,50.0,03:11.2,01:40.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,128.574305418337,9.86319802646334,4.98639455782314,3000.0
|
||||
615,28827500,16054,1495000.0,166,101453.943130579,4,30.0476190476191,5431.9,24:55.0,01:41.4,539.237126320685,270.0,0.0,0,0.0,0.0,5431.9,0.0,0,0,0,166,0,0,0,1496000.0,191293.118277239,101453.943130579,50.0,03:11.2,01:41.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,124.135925634541,9.84106859859634,4.92834467120182,1000.0
|
||||
616,28827501,16054,1498000.0,167,106403.513004874,4,29.9047619047619,5442.2,24:58.0,01:46.4,539.294679450737,270.0,0.0,0,0.0,0.0,5442.2,0.0,0,0,0,167,0,0,0,1501000.0,191293.118277239,106403.513004874,50.0,03:11.2,01:46.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.605973228259,9.42811646951775,4.69909297052155,3000.0
|
||||
617,28827502,16054,1499000.0,167,108449.734408814,4,30.0,5450.6,24:59.0,01:48.4,540.934249990401,270.0,0.0,0,0.0,0.0,5450.6,0.0,0,0,0,167,0,0,0,1500000.0,191293.118277239,108449.734408814,50.0,03:11.2,01:48.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.62926901858,9.22086167800454,4.61043083900227,1000.0
|
||||
618,28827503,16054,1502000.0,168,110062.893081761,4,30.0,5460.4,25:02.0,01:50.0,541.850990695571,270.0,0.0,0,0.0,0.0,5460.4,0.0,0,0,0,0,168,0,0,1505000.0,191293.118277239,110062.893081761,50.0,03:11.2,01:50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.2257959183677,9.08571428571429,4.54285714285715,3000.0
|
||||
619,28827504,16054,1503000.0,168,107671.273011377,4,30.0,5468.9,25:03.0,01:47.6,539.074309978769,270.0,0.0,0,0.0,0.0,5468.9,0.0,0,0,0,0,168,0,0,1504000.0,191293.118277239,107671.273011377,50.0,03:11.2,01:47.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.849578165793,9.28752834467121,4.64376417233561,1000.0
|
||||
620,28827505,16054,1506000.0,169,107845.055267534,4,30.0,5478.8,25:06.0,01:47.8,533.142857142857,270.0,0.0,0,0.0,0.0,5478.8,0.0,0,0,0,0,169,0,0,1509000.0,191293.118277239,107845.055267534,50.0,03:11.2,01:47.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.348354957172,9.27256235827665,4.63628117913833,3000.0
|
||||
621,28827506,16054,1507000.0,169,106101.433933211,4,30.0,5487.2,25:07.0,01:46.1,525.714285714286,262.0,0.0,0,0.0,0.0,5487.2,0.0,0,0,0,0,169,0,0,1508000.0,191293.118277239,106101.433933211,50.0,03:11.2,01:46.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.841502562348,9.4249433106576,4.7124716553288,1000.0
|
||||
622,28827507,16054,1510000.0,170,107314.936487078,4,30.0,5496.8,25:10.0,01:47.3,532.107976948741,262.0,0.0,0,0.0,0.0,5496.8,0.0,0,0,0,0,170,0,0,1513000.0,191293.118277239,107314.936487078,50.0,03:11.2,01:47.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.090178592435,9.31836734693878,4.65918367346939,3000.0
|
||||
623,28827508,16054,1511000.0,170,105502.392344497,4,30.0,5504.8,25:11.0,01:45.5,550.352637248385,270.0,0.0,0,0.0,0.0,5504.8,0.0,0,0,0,0,170,0,0,1512000.0,191293.118277239,105502.392344497,50.0,03:11.2,01:45.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.386854225299,9.47845804988663,4.73922902494332,1000.0
|
||||
624,28827509,16054,1514000.0,170,105638.863603698,4,30.0,5517.2,25:14.0,01:45.6,570.143568600221,293.0,0.0,0,0.0,0.0,5517.2,0.0,0,0,0,0,170,0,0,1517000.0,191293.118277239,105638.863603698,50.0,03:11.2,01:45.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.327951290949,9.46621315192744,4.73310657596372,3000.0
|
||||
625,28827510,16054,1515000.0,170,104048.697621744,4,29.9047619047619,5523.4,25:15.0,01:44.0,580.649291707985,293.0,0.0,0,0.0,0.0,5523.4,0.0,0,0,0,0,170,0,0,1516000.0,191293.118277239,104048.697621744,50.0,03:11.2,01:44.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.045068861183,9.64149226569609,4.80544217687075,1000.0
|
||||
626,28827511,16054,1518000.0,170,105923.043666234,4,30.0476190476191,5535.7,25:18.0,01:45.9,578.21828966272,285.0,0.0,0,0.0,0.0,5535.7,0.0,0,0,0,0,170,0,0,1521000.0,191293.118277239,105923.043666234,50.0,03:11.2,01:45.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.336043540756,9.42585465247906,4.72040816326531,3000.0
|
||||
627,28827512,16054,1519000.0,170,106362.452366022,4,30.3333333333334,5541.9,25:19.0,01:46.3,566.987005198362,285.0,0.0,0,0.0,0.0,5541.9,0.0,0,0,0,0,170,0,0,1520000.0,191293.118277239,106362.452366022,50.0,03:11.2,01:46.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.0606095594,9.29849742094641,4.70090702947846,1000.0
|
||||
628,28827513,16054,1522000.0,171,108327.192336035,4,30.6666666666667,5554.1,25:22.0,01:48.3,553.683883330896,285.0,0.0,0,0.0,0.0,5554.1,0.0,0,0,0,0,170,0,0,1525000.0,191293.118277239,108327.192336035,50.0,03:11.2,01:48.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.6074731849449,9.03061224489796,4.61564625850341,3000.0
|
||||
629,28827514,16054,1523000.0,172,107221.006564551,4,31.0476190476191,5560.4,25:23.0,01:47.2,541.920171862127,285.0,0.0,0,0.0,0.0,5560.4,0.0,0,0,0,0,173,0,0,1524000.0,191293.118277239,107221.006564551,50.0,03:11.2,01:47.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.6284891737887,9.01183172655566,4.66326530612246,1000.0
|
||||
630,28827515,16054,1526000.0,173,106413.783118575,4,31.0476190476191,5572.2,25:26.0,01:46.4,536.026200995321,270.0,0.0,0,0.0,0.0,5572.2,0.0,0,0,0,0,173,0,0,1529000.0,191293.118277239,106413.783118575,50.0,03:11.2,01:46.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.574820715094,9.08019281332165,4.69863945578232,3000.0
|
||||
631,28827516,16054,1527000.0,173,103754.940711462,4,30.5714285714286,5580.0,25:27.0,01:43.7,531.991448246533,270.0,0.0,0,0.0,0.0,5580.0,0.0,0,0,0,0,173,0,0,1528000.0,191293.118277239,103754.940711462,50.0,03:11.2,01:43.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.058758489404,9.45794392523365,4.81904761904763,1000.0
|
||||
632,28827517,16054,1529000.0,174,103886.925795053,4,30.3809523809524,5587.8,25:29.0,01:43.8,534.871909396642,277.0,0.0,0,0.0,0.0,5587.8,0.0,0,0,0,0,173,0,0,1531000.0,191293.118277239,103886.925795053,50.0,03:11.2,01:43.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.695244628277,9.50515002239141,4.81292517006803,2000.0
|
||||
633,28827518,16054,1531000.0,174,104527.139132496,4,30.3809523809524,5597.8,25:31.0,01:44.5,539.397077904746,270.0,0.0,0,0.0,0.0,5597.8,0.0,0,0,0,0,175,0,0,1533000.0,191293.118277239,104527.139132496,50.0,03:11.2,01:44.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,113.505547516402,9.44693237796687,4.78344671201815,2000.0
|
||||
634,28827519,16054,1533000.0,175,106465.163439718,4,30.5714285714286,5606.3,25:33.0,01:46.4,539.769407758575,277.0,0.0,0,0.0,0.0,5606.3,0.0,0,0,0,0,175,0,0,1535000.0,191293.118277239,106465.163439718,50.0,03:11.2,01:46.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.704585019263,9.21717846016912,4.69637188208617,2000.0
|
||||
635,28827520,16054,1535000.0,175,107106.426385583,4,31.0476190476191,5616.0,25:35.0,01:47.1,542.676165408219,277.0,0.0,0,0.0,0.0,5616.0,0.0,0,0,0,0,175,0,0,1537000.0,191293.118277239,107106.426385583,50.0,03:11.2,01:47.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.835174046919,9.02147239263804,4.66825396825397,2000.0
|
||||
636,28827521,16054,1537000.0,175,108706.369552356,4,31.0476190476191,5624.7,25:37.0,01:48.7,550.859979606088,285.0,0.0,0,0.0,0.0,5624.7,0.0,0,0,0,0,175,0,0,1539000.0,191293.118277239,108706.369552356,50.0,03:11.2,01:48.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.6000696221882,8.88869412795794,4.59954648526078,2000.0
|
||||
637,28827522,16054,1539000.0,175,111217.593059619,4,30.6666666666667,5634.3,25:39.0,01:51.2,549.785080043081,285.0,0.0,0,0.0,0.0,5634.3,0.0,0,0,0,0,175,0,0,1541000.0,191293.118277239,111217.593059619,50.0,03:11.2,01:51.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,89.2694190474765,8.79591836734694,4.49569160997733,2000.0
|
||||
638,28827523,16054,1541000.0,175,116469.469680963,4,30.3333333333334,5643.7,25:41.0,01:56.4,546.272553543323,277.0,0.0,0,0.0,0.0,5643.7,0.0,0,0,0,0,175,0,0,1543000.0,191293.118277239,116469.469680963,50.0,03:11.2,01:56.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,79.9745824437834,8.49159004261045,4.29297052154195,2000.0
|
||||
639,28827524,16054,1544000.0,175,120478.636214621,4,29.8571428571429,5653.4,25:44.0,02:00.4,531.376874923211,262.0,0.0,0,0.0,0.0,5653.4,0.0,0,0,0,0,175,0,0,1547000.0,191293.118277239,120478.636214621,50.0,03:11.2,02:00.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.3900201637683,8.3399407609934,4.15011337868481,3000.0
|
||||
640,28827525,16054,1546000.0,175,119486.290235179,4,30.0,5663.0,25:46.0,01:59.4,522.025710333171,262.0,0.0,0,0.0,0.0,5663.0,0.0,0,0,0,0,175,0,0,1548000.0,191293.118277239,119486.290235179,50.0,03:11.2,01:59.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.3091518867863,8.36916099773243,4.18458049886622,2000.0
|
||||
641,28827526,16054,1547000.0,175,112851.220635652,4,30.7619047619048,5670.2,25:47.0,01:52.8,520.012251247392,262.0,0.0,0,0.0,0.0,5670.2,0.0,0,0,0,0,175,0,0,1548000.0,191293.118277239,112851.220635652,50.0,03:11.2,01:52.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.9496952696468,8.64175143741708,4.43061224489797,1000.0
|
||||
642,28827527,16054,1549000.0,175,107075.219734861,4,31.2857142857143,5678.6,25:49.0,01:47.0,522.077763654362,277.0,0.0,0,0.0,0.0,5678.6,0.0,0,0,0,0,175,0,0,1551000.0,191293.118277239,107075.219734861,50.0,03:11.2,01:47.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.92511297253,8.9554250924114,4.66961451247166,2000.0
|
||||
643,28827528,16054,1551000.0,175,104107.648725212,4,31.5714285714286,5688.3,25:51.0,01:44.1,531.533438093599,277.0,0.0,0,0.0,0.0,5688.3,0.0,0,0,0,0,175,0,0,1553000.0,191293.118277239,104107.648725212,50.0,03:11.2,01:44.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.979973707624,9.12734324499031,4.80272108843538,2000.0
|
||||
644,28827529,16054,1553000.0,176,104368.817153405,4,31.6190476190476,5696.5,25:53.0,01:44.3,515.232695288373,277.0,0.0,0,0.0,0.0,5696.5,0.0,0,0,0,0,175,0,0,1555000.0,191293.118277239,104368.817153405,50.0,03:11.2,01:44.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.14143268254,9.09079173838211,4.79070294784581,2000.0
|
||||
645,28827530,16054,1555000.0,176,106147.402878737,4,30.9047619047619,5706.4,25:55.0,01:46.1,533.267773115176,277.0,0.0,0,0.0,0.0,5706.4,0.0,0,0,0,0,177,0,0,1557000.0,191293.118277239,106147.402878737,50.0,03:11.2,01:46.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.647726880314,9.14505833149902,4.71043083900227,2000.0
|
||||
646,28827531,16054,1557000.0,177,110482.012225674,4,33.6666666666667,5714.1,25:57.0,01:50.4,584.734283718839,270.0,0.0,0,0.0,0.0,5714.1,0.0,0,0,0,0,177,0,0,1559000.0,191293.118277239,110482.012225674,50.0,03:11.2,01:50.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.1234951129207,8.06546777126693,4.52562358276645,2000.0
|
||||
647,28827532,16054,1559000.0,177,120683.049641508,4,24.2857142857143,5725.6,25:59.0,02:00.6,526.79501264559,255.0,0.0,0,0.0,0.0,5725.6,0.0,0,0,0,0,177,0,0,1561000.0,191293.118277239,120683.049641508,50.0,03:11.2,02:00.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.0888514801366,10.2358543417367,4.14308390022676,2000.0
|
||||
648,28827533,16054,1567000.0,178,147324.113048707,4,25.8095238095238,5748.5,26:07.0,02:27.3,387.407267146532,218.0,0.0,0,0.0,0.0,5748.5,0.0,0,0,0,0,177,0,0,1575000.0,191293.118277239,147324.113048707,50.0,03:11.2,02:27.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,50.2099796447856,7.88982604111756,3.39387755102041,8000.0
|
||||
649,28827534,16054,1574000.0,178,200764.81835564,4,24.8571428571429,5760.0,26:14.0,03:20.7,220.352615021554,29.0,0.0,0,0.0,0.0,5760.0,0.0,0,0,0,0,179,0,0,1581000.0,191293.118277239,200764.81835564,50.0,03:11.2,03:20.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,149.144490838482,6.01149425287357,2.49047619047619,7000.0
|
||||
650,28827535,16054,1577000.0,177,292517.90925975,4,22.8571428571429,5763.1,26:17.0,04:52.5,46.8346834323141,9.0,0.0,0,0.0,0.0,5763.1,0.0,0,0,0,0,177,0,0,1580000.0,191293.118277239,292517.90925975,50.0,03:11.2,04:52.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,155.370353138962,4.48690476190476,1.7092970521542,3000.0
|
||||
651,28827536,16054,1582000.0,177,387862.796833773,4,21.2380952380953,5769.2,26:22.0,06:27.8,-13.1459442787366,9.0,0.0,0,0.0,0.0,5769.2,0.0,0,0,0,0,0,0,0,1587000.0,191293.118277239,387862.796833773,50.0,03:11.2,06:27.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,66.6486198553858,3.64189622037156,1.2891156462585,5000.0
|
||||
652,28827537,16054,1585000.0,175,399746.1928934,4,22.0476190476191,5773.9,26:25.0,06:39.7,26.0083143321492,9.0,0.0,0,0.0,0.0,5773.9,0.0,0,0,0,0,0,0,0,1588000.0,191293.118277239,399746.1928934,50.0,03:11.2,06:39.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,60.8797031313671,3.40388768898488,1.25079365079365,3000.0
|
||||
653,28827538,16054,1589000.0,176,349168.64608076,4,12.2380952380952,5780.1,26:29.0,05:49.1,35.2321954868789,9.0,0.0,0,0.0,0.0,5780.1,0.0,0,0,0,0,175,0,0,1593000.0,191293.118277239,349168.64608076,50.0,03:11.2,05:49.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.3523698361038,7.02056698165648,1.43197278911565,4000.0
|
||||
654,28827539,16054,1592000.0,174,315540.927303949,4,15.0952380952381,5784.9,26:32.0,05:15.5,37.6166972996923,9.0,0.0,0,0.0,0.0,5784.9,0.0,0,0,0,0,175,0,0,1595000.0,191293.118277239,315540.927303949,50.0,03:11.2,05:15.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123.782269893623,6.29833258224426,1.58458049886622,3000.0
|
||||
655,28827540,16054,1596000.0,173,296769.851951547,4,14.8571428571429,5791.8,26:36.0,04:56.7,41.9399971676583,10.0,0.0,0,0.0,0.0,5791.8,0.0,0,0,0,0,175,0,0,1600000.0,191293.118277239,296769.851951547,50.0,03:11.2,04:56.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,133.908672353272,6.80402930402931,1.68480725623583,4000.0
|
||||
656,28827541,16054,1600000.0,171,289750.328515111,4,14.8571428571429,5798.5,26:40.0,04:49.7,44.1211817991378,10.0,0.0,0,0.0,0.0,5798.5,0.0,0,0,0,0,168,0,0,1604000.0,191293.118277239,289750.328515111,50.0,03:11.2,04:49.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,143.878609923376,6.96886446886447,1.72562358276644,4000.0
|
||||
657,28827542,16054,1604000.0,167,296729.915220024,4,15.0952380952381,5804.9,26:44.0,04:56.7,50.8305251764608,14.0,0.0,0,0.0,0.0,5804.9,0.0,0,0,0,0,168,0,0,1608000.0,191293.118277239,296729.915220024,50.0,03:11.2,04:56.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.6876769537009,6.69761153672826,1.68503401360544,4000.0
|
||||
658,28827543,16054,1608000.0,163,317311.843430709,4,15.3809523809524,5811.9,26:48.0,05:17.3,58.2083546236224,14.0,0.0,0,0.0,0.0,5811.9,0.0,0,0,0,164,0,0,0,1612000.0,191293.118277239,317311.843430709,50.0,03:11.2,05:17.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.2494263321064,6.1468376824414,1.57573696145125,4000.0
|
||||
659,28827544,16054,1618000.0,160,352517.98561151,4,15.6190476190476,5827.7,26:58.0,05:52.5,54.2406618713714,15.0,0.0,0,0.0,0.0,5827.7,0.0,0,0,158,0,0,0,0,1628000.0,191293.118277239,352517.98561151,50.0,03:11.2,05:52.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,53.2638979790169,5.44860627177701,1.41836734693878,10000.0
|
||||
660,28827545,16054,1623000.0,157,387453.874538745,4,15.7142857142857,5829.6,27:03.0,06:27.4,47.8654519042554,15.0,0.0,0,0.0,0.0,5829.6,0.0,0,0,0,0,0,0,0,1628000.0,191293.118277239,387453.874538745,50.0,03:11.2,06:27.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,40.1159203829682,4.92727272727273,1.29047619047619,5000.0
|
||||
661,28827546,16054,1627000.0,155,385826.771653543,4,16.2380952380952,5835.6,27:07.0,06:25.8,42.8637727924171,7.0,0.0,0,0.0,0.0,5835.6,0.0,0,0,0,0,0,0,0,1631000.0,191293.118277239,385826.771653543,50.0,03:11.2,06:25.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,87.0548410951222,4.78843736908253,1.29591836734694,4000.0
|
||||
662,28827547,16054,1630000.0,154,333282.950423216,4,16.9047619047619,5840.9,27:10.0,05:33.2,43.3164158280788,14.0,0.0,0,0.0,0.0,5840.9,0.0,0,0,156,0,0,0,0,1633000.0,191293.118277239,333282.950423216,50.0,03:11.2,05:33.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.5306168728328,5.32474849094568,1.50022675736962,3000.0
|
||||
663,28827548,16054,1633000.0,151,281178.270849273,4,17.0952380952381,5847.6,27:13.0,04:41.1,50.5023649775997,14.0,0.0,0,0.0,0.0,5847.6,0.0,0,0,150,0,0,0,0,1636000.0,191293.118277239,281178.270849273,50.0,03:11.2,04:41.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.459135627226,6.24114604058894,1.77823129251701,3000.0
|
||||
664,28827549,16054,1637000.0,148,249830.047586675,4,17.0476190476191,5854.7,27:17.0,04:09.8,65.7817218228885,19.0,0.0,0,0.0,0.0,5854.7,0.0,0,0,148,0,0,0,0,1641000.0,191293.118277239,249830.047586675,50.0,03:11.2,04:09.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118.135502057472,7.04389465283321,2.00136054421769,4000.0
|
||||
665,28827550,16054,1640000.0,145,237122.271211958,4,17.3333333333333,5861.8,27:20.0,03:57.1,72.1774991077626,21.0,0.0,0,0.0,0.0,5861.8,0.0,0,145,0,0,0,0,0,1643000.0,191293.118277239,237122.271211958,50.0,03:11.2,03:57.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125.006245437948,7.29905808477238,2.10861678004535,3000.0
|
||||
666,28827551,16054,1643000.0,144,236157.223947734,4,17.5714285714286,5868.3,27:23.0,03:56.1,79.1408991569542,24.0,0.0,0,0.0,0.0,5868.3,0.0,0,145,0,0,0,0,0,1646000.0,191293.118277239,236157.223947734,50.0,03:11.2,03:56.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.726888889515,7.22957801006582,2.11723356009071,3000.0
|
||||
667,28827552,16054,1647000.0,142,240379.374250518,4,17.9047619047619,5875.7,27:27.0,04:00.3,82.1536026637112,24.0,0.0,0,0.0,0.0,5875.7,0.0,0,141,0,0,0,0,0,1651000.0,191293.118277239,240379.374250518,50.0,03:11.2,04:00.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.994174117987,6.97036474164134,2.08004535147393,4000.0
|
||||
668,28827553,16054,1650000.0,140,236714.97584541,4,18.4761904761905,5882.4,27:30.0,03:56.7,89.6994913572735,27.0,0.0,0,0.0,0.0,5882.4,0.0,0,141,0,0,0,0,0,1653000.0,191293.118277239,236714.97584541,50.0,03:11.2,03:56.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.7298149580535,6.85935198821797,2.11224489795919,3000.0
|
||||
669,28827554,16054,1654000.0,137,225068.898642441,4,19.0,5890.9,27:34.0,03:45.0,100.954419095293,31.0,0.0,0,0.0,0.0,5890.9,0.0,0,136,0,0,0,0,0,1658000.0,191293.118277239,225068.898642441,50.0,03:11.2,03:45.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.0284298781458,7.01539563193699,2.22154195011338,4000.0
|
||||
670,28827555,16054,1656000.0,135,213580.007748934,4,19.5238095238095,5896.6,27:36.0,03:33.5,113.493217078888,38.0,0.0,0,0.0,0.0,5896.6,0.0,0,136,0,0,0,0,0,1658000.0,191293.118277239,213580.007748934,50.0,03:11.2,03:33.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.5371823028746,7.19442508710802,2.34104308390023,2000.0
|
||||
671,28827556,16054,1660000.0,134,205154.44733904,4,20.0952380952381,5905.7,27:40.0,03:25.1,120.534614666097,42.0,0.0,0,0.0,0.0,5905.7,0.0,0,133,0,0,0,0,0,1664000.0,191293.118277239,205154.44733904,50.0,03:11.2,03:25.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.5108067160151,7.27691266079892,2.43718820861678,4000.0
|
||||
672,28827557,16054,1662000.0,133,201204.489460717,4,20.5238095238095,5911.6,27:42.0,03:21.2,125.630559743056,42.0,0.0,0,0.0,0.0,5911.6,0.0,0,133,0,0,0,0,0,1664000.0,191293.118277239,201204.489460717,50.0,03:11.2,03:21.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.3070950575,7.26483261518065,2.48503401360545,2000.0
|
||||
673,28827558,16054,1666000.0,133,202200.825309491,4,20.6190476190476,5920.5,27:46.0,03:22.2,127.37307208258,42.0,0.0,0,0.0,0.0,5920.5,0.0,0,133,0,0,0,0,0,1670000.0,191293.118277239,202200.825309491,50.0,03:11.2,03:22.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.802193415044,7.19564500164963,2.47278911564626,4000.0
|
||||
674,28827559,16054,1669000.0,133,202163.74805171,4,20.5238095238095,5927.9,27:49.0,03:22.1,129.591946623577,46.0,0.0,0,0.0,0.0,5927.9,0.0,0,133,0,0,0,0,0,1672000.0,191293.118277239,202163.74805171,50.0,03:11.2,03:22.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.0874338015229,7.23036128604575,2.47324263038549,3000.0
|
||||
675,28827560,16054,1671000.0,133,196576.62476598,4,20.3809523809524,5933.9,27:51.0,03:16.5,131.066409334671,45.0,0.0,0,0.0,0.0,5933.9,0.0,0,133,0,0,0,0,0,1673000.0,191293.118277239,196576.62476598,50.0,03:11.2,03:16.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.390557763386,7.48798397863819,2.54353741496599,2000.0
|
||||
676,28827561,16054,1674000.0,133,188091.785379169,4,20.4285714285714,5941.0,27:54.0,03:08.0,130.926585688932,45.0,0.0,0,0.0,0.0,5941.0,0.0,0,133,0,0,0,0,0,1677000.0,191293.118277239,188091.785379169,50.0,03:11.2,03:08.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.881572028958,7.80752580752581,2.65827664399093,3000.0
|
||||
677,28827562,16054,1676000.0,133,174805.77136515,4,20.1428571428572,5948.1,27:56.0,02:54.8,108.421122973472,44.0,0.0,0,0.0,0.0,5948.1,0.0,0,133,0,0,0,0,0,1678000.0,191293.118277239,174805.77136515,50.0,03:11.2,02:54.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,148.918298836183,8.52009456264776,2.86031746031746,2000.0
|
||||
678,28827563,16054,1679000.0,133,160890.18606348,4,22.0,5957.2,27:59.0,02:40.8,167.902241861956,53.0,0.0,0,0.0,0.0,5957.2,0.0,0,133,0,0,0,0,0,1682000.0,191293.118277239,160890.18606348,50.0,03:11.2,02:40.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,158.563605683256,8.47557204700062,3.1077097505669,3000.0
|
||||
679,28827564,16054,1681000.0,134,147491.638795986,4,24.7142857142857,5964.8,28:01.0,02:27.4,252.096229170034,72.0,0.0,0,0.0,0.0,5964.8,0.0,0,134,0,0,0,0,0,1683000.0,191293.118277239,147491.638795986,50.0,03:11.2,02:27.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,151.507225258432,8.23011285439032,3.39002267573697,2000.0
|
||||
680,28827565,16054,1684000.0,134,133321.240703791,4,27.4285714285714,5976.4,28:04.0,02:13.3,368.367294871612,218.0,0.0,0,0.0,0.0,5976.4,0.0,0,134,0,0,0,0,0,1687000.0,191293.118277239,133321.240703791,50.0,03:11.2,02:13.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,67.7506569797496,8.20386904761905,3.75034013605443,3000.0
|
||||
681,28827566,16054,1685000.0,134,120954.47065277,4,29.6190476190476,5981.9,28:05.0,02:00.9,482.314600978404,218.0,0.0,0,0.0,0.0,5981.9,0.0,0,134,0,0,0,0,0,1686000.0,191293.118277239,120954.47065277,50.0,03:11.2,02:00.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.7289271144832,8.37390904915021,4.13378684807257,1000.0
|
||||
682,28827567,16054,1688000.0,133,112660.944206008,4,30.7619047619048,5994.0,28:08.0,01:52.6,553.020259015751,285.0,0.0,0,0.0,0.0,5994.0,0.0,0,134,0,0,0,0,0,1691000.0,191293.118277239,112660.944206008,50.0,03:11.2,01:52.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.8821729455918,8.65634674922601,4.43809523809524,3000.0
|
||||
683,28827568,16054,1689000.0,133,109023.485784919,4,30.0,6001.3,28:09.0,01:49.0,549.867374391349,285.0,0.0,0,0.0,0.0,6001.3,0.0,0,132,0,0,0,0,0,1690000.0,191293.118277239,109023.485784919,50.0,03:11.2,01:49.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.7682789806663,9.17233560090704,4.58616780045352,1000.0
|
||||
684,28827569,16054,1691000.0,134,111487.511376277,4,30.0952380952381,6009.9,28:11.0,01:51.4,563.847111907637,277.0,0.0,0,0.0,0.0,6009.9,0.0,0,133,0,0,0,0,0,1693000.0,191293.118277239,111487.511376277,50.0,03:11.2,01:51.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.1821044918531,8.94122965641953,4.48480725623583,2000.0
|
||||
685,28827570,16054,1694000.0,135,116672.839832795,4,29.8571428571429,6022.0,28:14.0,01:56.6,549.665551832436,270.0,0.0,0,0.0,0.0,6022.0,0.0,0,136,0,0,0,0,0,1697000.0,191293.118277239,116672.839832795,50.0,03:11.2,01:56.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.6196961828202,8.61198450672136,4.28548752834468,3000.0
|
||||
686,28827571,16054,1696000.0,137,116796.440489433,4,29.7142857142857,6029.7,28:16.0,01:56.7,548.315080997647,270.0,0.0,0,0.0,0.0,6029.7,0.0,0,137,0,0,0,0,0,1698000.0,191293.118277239,116796.440489433,50.0,03:11.2,01:56.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.360846448868,8.64423076923078,4.28095238095239,2000.0
|
||||
687,28827572,16054,1698000.0,139,110421.152786819,4,29.6666666666667,6039.3,28:18.0,01:50.4,554.328030142718,277.0,0.0,0,0.0,0.0,6039.3,0.0,0,140,0,0,0,0,0,1700000.0,191293.118277239,110421.152786819,50.0,03:11.2,01:50.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.8493879833303,9.15799128640221,4.52811791383221,2000.0
|
||||
688,28827573,16054,1699000.0,141,102168.473728107,4,29.7142857142857,6047.6,28:19.0,01:42.1,558.728441561722,277.0,0.0,0,0.0,0.0,6047.6,0.0,0,140,0,0,0,0,0,1700000.0,191293.118277239,102168.473728107,50.0,03:11.2,01:42.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,118.477957478179,9.88186813186814,4.89387755102041,1000.0
|
||||
689,28827574,16054,1701000.0,143,98008.7118855008,4,29.8571428571429,6057.4,28:21.0,01:38.0,556.342908393265,277.0,0.0,0,0.0,0.0,6057.4,0.0,0,143,0,0,0,0,0,1703000.0,191293.118277239,98008.7118855008,50.0,03:11.2,01:38.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,134.212890955851,10.2519936204147,5.10158730158731,2000.0
|
||||
690,28827575,16054,1703000.0,145,100961.538461538,4,30.1904761904762,6065.9,28:23.0,01:40.9,548.818289318973,277.0,0.0,0,0.0,0.0,6065.9,0.0,0,145,0,0,0,0,0,1705000.0,191293.118277239,100961.538461538,50.0,03:11.2,01:40.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,122.777955145155,9.8422712933754,4.95238095238096,2000.0
|
||||
691,28827576,16054,1706000.0,149,110024.44987775,4,29.8571428571429,6077.9,28:26.0,01:50.0,546.591106213186,270.0,0.0,0,0.0,0.0,6077.9,0.0,0,0,149,0,0,0,0,1709000.0,191293.118277239,110024.44987775,50.0,03:11.2,01:50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.3277453640201,9.1323763955343,4.54444444444445,3000.0
|
||||
692,28827577,16054,1708000.0,151,118727.116088736,4,29.7142857142857,6085.7,28:28.0,01:58.7,548.355071234713,270.0,0.0,0,0.0,0.0,6085.7,0.0,0,0,151,0,0,0,0,1710000.0,191293.118277239,118727.116088736,50.0,03:11.2,01:58.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,77.4559034178735,8.50366300366301,4.21133786848073,2000.0
|
||||
693,28827578,16054,1710000.0,154,121060.722521137,4,29.7619047619048,6095.2,28:30.0,02:01.0,553.693322938883,277.0,0.0,0,0.0,0.0,6095.2,0.0,0,0,154,0,0,0,0,1712000.0,191293.118277239,121060.722521137,50.0,03:11.2,02:01.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,71.216149822173,8.3264,4.13015873015874,2000.0
|
||||
694,28827579,16054,1712000.0,156,115784.49905482,4,29.6666666666667,6103.9,28:32.0,01:55.7,560.732394913692,277.0,0.0,0,0.0,0.0,6103.9,0.0,0,0,154,0,0,0,0,1714000.0,191293.118277239,115784.49905482,50.0,03:11.2,01:55.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.4023630432484,8.73377665673011,4.31836734693878,2000.0
|
||||
695,28827580,16054,1714000.0,157,107918.950665622,4,29.5238095238095,6113.4,28:34.0,01:47.9,563.566249967786,277.0,0.0,0,0.0,0.0,6113.4,0.0,0,0,159,0,0,0,0,1716000.0,191293.118277239,107918.950665622,50.0,03:11.2,01:47.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.529872936079,9.41566820276499,4.63310657596373,2000.0
|
||||
696,28827581,16054,1716000.0,159,102835.556384665,4,29.4285714285714,6124.6,28:36.0,01:42.8,563.144468572162,277.0,0.0,0,0.0,0.0,6124.6,0.0,0,0,159,0,0,0,0,1718000.0,191293.118277239,102835.556384665,50.0,03:11.2,01:42.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,116.187222245531,9.91308368007398,4.86213151927438,2000.0
|
||||
697,28827582,16054,1718000.0,160,102725.36687631,4,28.952380952381,6134.4,28:38.0,01:42.7,563.073506506993,270.0,0.0,0,0.0,0.0,6134.4,0.0,0,0,159,0,0,0,0,1720000.0,191293.118277239,102725.36687631,50.0,03:11.2,01:42.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,119.583477122628,10.0869360902256,4.86734693877552,2000.0
|
||||
698,28827583,16054,1720000.0,161,106629.914405919,4,28.952380952381,6142.0,28:40.0,01:46.6,557.435688706724,270.0,0.0,0,0.0,0.0,6142.0,0.0,0,0,0,162,0,0,0,1722000.0,191293.118277239,106629.914405919,50.0,03:11.2,01:46.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.922006077388,9.71757518796993,4.68911564625851,2000.0
|
||||
699,28827584,16054,1722000.0,163,112008.533983541,4,29.3333333333333,6150.2,28:42.0,01:52.0,544.511130558814,270.0,0.0,0,0.0,0.0,6150.2,0.0,0,0,0,162,0,0,0,1724000.0,191293.118277239,112008.533983541,50.0,03:11.2,01:52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,92.2467217234184,9.13079777365492,4.4639455782313,2000.0
|
||||
700,28827585,16054,1725000.0,164,114730.214891513,4,29.5714285714286,6162.4,28:45.0,01:54.7,536.843885205038,262.0,0.0,0,0.0,0.0,6162.4,0.0,0,0,0,164,0,0,0,1728000.0,191293.118277239,114730.214891513,50.0,03:11.2,01:54.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.4572292770265,8.84242005981137,4.35804988662132,3000.0
|
||||
701,28827586,16054,1726000.0,164,112563.173209454,4,30.0952380952381,6168.7,28:46.0,01:52.5,534.078394608801,262.0,0.0,0,0.0,0.0,6168.7,0.0,0,0,0,164,0,0,0,1727000.0,191293.118277239,112563.173209454,50.0,03:11.2,01:52.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,93.6650933580745,8.85578661844485,4.44195011337869,1000.0
|
||||
702,28827587,16054,1728000.0,165,108375.110586847,4,30.3809523809524,6178.8,28:48.0,01:48.3,536.871106185458,277.0,0.0,0,0.0,0.0,6178.8,0.0,0,0,0,164,0,0,0,1730000.0,191293.118277239,108375.110586847,50.0,03:11.2,01:48.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.2657925419994,9.11150918047471,4.61360544217688,2000.0
|
||||
703,28827588,16054,1730000.0,165,105431.768193554,4,30.3333333333334,6187.0,28:50.0,01:45.4,544.933820029395,277.0,0.0,0,0.0,0.0,6187.0,0.0,0,0,0,165,0,0,0,1732000.0,191293.118277239,105431.768193554,50.0,03:11.2,01:45.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.813663832426,9.38057860506841,4.74240362811792,2000.0
|
||||
704,28827589,16054,1732000.0,166,105120.137299771,4,30.3809523809524,6197.1,28:52.0,01:45.1,553.741108231254,277.0,0.0,0,0.0,0.0,6197.1,0.0,0,0,0,166,0,0,0,1734000.0,191293.118277239,105120.137299771,50.0,03:11.2,01:45.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.775356898207,9.39364084191671,4.75646258503402,2000.0
|
||||
705,28827590,16054,1734000.0,166,106142.293251179,4,30.0,6206.5,28:54.0,01:46.1,555.087007884291,277.0,0.0,0,0.0,0.0,6206.5,0.0,0,0,0,166,0,0,0,1736000.0,191293.118277239,106142.293251179,50.0,03:11.2,01:46.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.662985073081,9.42131519274377,4.71065759637189,2000.0
|
||||
706,28827591,16054,1736000.0,167,106976.518532893,4,29.6190476190476,6214.5,28:56.0,01:46.9,552.588066251724,277.0,0.0,0,0.0,0.0,6214.5,0.0,0,0,0,167,0,0,0,1738000.0,191293.118277239,106976.518532893,50.0,03:11.2,01:46.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.210265500402,9.46807533302711,4.67392290249434,2000.0
|
||||
707,28827592,16054,1738000.0,168,107492.809437917,4,29.6666666666667,6226.0,28:58.0,01:47.4,546.48459411193,270.0,0.0,0,0.0,0.0,6226.0,0.0,0,0,0,0,168,0,0,1740000.0,191293.118277239,107492.809437917,50.0,03:11.2,01:47.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.367682225063,9.40747534969044,4.6514739229025,2000.0
|
||||
708,28827593,16054,1740000.0,168,108385.764844671,4,29.7142857142857,6233.8,29:00.0,01:48.3,534.000602734686,262.0,0.0,0,0.0,0.0,6233.8,0.0,0,0,0,0,168,0,0,1742000.0,191293.118277239,108385.764844671,50.0,03:11.2,01:48.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.918002383417,9.31501831501832,4.61315192743765,2000.0
|
||||
709,28827594,16054,1742000.0,168,110216.934919524,4,29.7619047619048,6242.4,29:02.0,01:50.2,525.874067621507,262.0,0.0,0,0.0,0.0,6242.4,0.0,0,0,0,0,168,0,0,1744000.0,191293.118277239,110216.934919524,50.0,03:11.2,01:50.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.7750065638046,9.14560000000001,4.53650793650794,2000.0
|
||||
710,28827595,16054,1744000.0,169,111611.662279814,4,30.2380952380953,6252.3,29:04.0,01:51.6,524.635012287694,262.0,0.0,0,0.0,0.0,6252.3,0.0,0,0,0,0,169,0,0,1746000.0,191293.118277239,111611.662279814,50.0,03:11.2,01:51.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.0811127372959,8.88908886389202,4.47981859410431,2000.0
|
||||
711,28827596,16054,1746000.0,169,110792.885137172,4,30.2857142857143,6260.4,29:06.0,01:50.7,530.383349428547,270.0,0.0,0,0.0,0.0,6260.4,0.0,0,0,0,0,169,0,0,1748000.0,191293.118277239,110792.885137172,50.0,03:11.2,01:50.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.3166267938366,8.94070080862534,4.51292517006803,2000.0
|
||||
712,28827597,16054,1748000.0,170,107792.334767305,4,30.3333333333334,6270.6,29:08.0,01:47.7,537.277067045147,270.0,0.0,0,0.0,0.0,6270.6,0.0,0,0,0,0,170,0,0,1750000.0,191293.118277239,107792.334767305,50.0,03:11.2,01:47.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,103.500070075304,9.17515137923302,4.63854875283447,2000.0
|
||||
713,28827598,16054,1750000.0,170,105105.105105105,4,30.2857142857143,6280.0,29:10.0,01:45.1,547.255729124971,277.0,0.0,0,0.0,0.0,6280.0,0.0,0,0,0,0,170,0,0,1752000.0,191293.118277239,105105.105105105,50.0,03:11.2,01:45.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.822034922273,9.4245283018868,4.75714285714286,2000.0
|
||||
714,28827599,16054,1752000.0,170,104240.533257694,4,30.1428571428572,6291.3,29:12.0,01:44.2,552.405400730286,277.0,0.0,0,0.0,0.0,6291.3,0.0,0,0,0,0,170,0,0,1754000.0,191293.118277239,104240.533257694,50.0,03:11.2,01:44.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.55226738189,9.54773188896412,4.79659863945579,2000.0
|
||||
715,28827600,16054,1754000.0,171,106239.460370995,4,29.8095238095238,6298.5,29:14.0,01:46.2,553.70914402684,277.0,0.0,0,0.0,0.0,6298.5,0.0,0,0,0,0,170,0,0,1756000.0,191293.118277239,106239.460370995,50.0,03:11.2,01:46.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,105.373330535881,9.47284345047924,4.70634920634921,2000.0
|
||||
716,28827601,16054,1756000.0,171,110051.906568177,4,30.2380952380953,6306.8,29:16.0,01:50.0,550.363377846128,277.0,0.0,0,0.0,0.0,6306.8,0.0,0,0,0,0,172,0,0,1758000.0,191293.118277239,110051.906568177,50.0,03:11.2,01:50.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,94.7972115777682,9.01507311586052,4.54331065759638,2000.0
|
||||
717,28827602,16054,1758000.0,172,112328.069281712,4,30.0476190476191,6316.9,29:18.0,01:52.3,538.967558884611,270.0,0.0,0,0.0,0.0,6316.9,0.0,0,0,0,0,172,0,0,1760000.0,191293.118277239,112328.069281712,50.0,03:11.2,01:52.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.4617270033358,8.88838578220512,4.45124716553289,2000.0
|
||||
718,28827603,16054,1760000.0,172,112122.444828638,4,30.0952380952381,6325.3,29:20.0,01:52.1,534.623872785269,270.0,0.0,0,0.0,0.0,6325.3,0.0,0,0,0,0,172,0,0,1762000.0,191293.118277239,112122.444828638,50.0,03:11.2,01:52.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,91.96585297802,8.89059674502713,4.45941043083901,2000.0
|
||||
719,28827604,16054,1762000.0,172,109440.142942227,4,30.1904761904762,6335.0,29:22.0,01:49.4,535.737103481536,262.0,0.0,0,0.0,0.0,6335.0,0.0,0,0,0,0,172,0,0,1764000.0,191293.118277239,109440.142942227,50.0,03:11.2,01:49.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.914692435916,9.07976566020731,4.5687074829932,2000.0
|
||||
720,28827605,16054,1764000.0,172,106418.918918919,4,30.6666666666667,6343.3,29:24.0,01:46.4,545.692952569226,285.0,0.0,0,0.0,0.0,6343.3,0.0,0,0,0,0,172,0,0,1766000.0,191293.118277239,106418.918918919,50.0,03:11.2,01:46.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,101.898233728551,9.19254658385094,4.6984126984127,2000.0
|
||||
721,28827606,16054,1765000.0,172,103215.840471844,4,30.9047619047619,6351.8,29:25.0,01:43.2,558.471275073711,285.0,0.0,0,0.0,0.0,6351.8,0.0,0,0,0,0,172,0,0,1766000.0,191293.118277239,103215.840471844,50.0,03:11.2,01:43.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,111.682242167654,9.40479859123928,4.84421768707484,1000.0
|
||||
722,28827607,16054,1768000.0,172,101481.958762886,4,31.5714285714286,6362.0,29:28.0,01:41.4,568.963770571065,302.0,0.0,0,0.0,0.0,6362.0,0.0,0,0,0,0,172,0,0,1771000.0,191293.118277239,101481.958762886,50.0,03:11.2,01:41.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,110.890560282217,9.36349924585219,4.92698412698413,3000.0
|
||||
723,28827608,16054,1769000.0,173,99624.9943523245,4,31.6190476190476,6370.0,29:29.0,01:39.6,571.508821863701,302.0,0.0,0,0.0,0.0,6370.0,0.0,0,0,0,0,172,0,0,1770000.0,191293.118277239,99624.9943523245,50.0,03:11.2,01:39.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,117.207707636593,9.52366609294321,5.01882086167801,1000.0
|
||||
724,28827609,16054,1771000.0,174,100240.941946629,4,31.8095238095238,6379.9,29:31.0,01:40.2,578.778418469025,302.0,0.0,0,0.0,0.0,6379.9,0.0,0,0,0,0,175,0,0,1773000.0,191293.118277239,100240.941946629,50.0,03:11.2,01:40.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.060348316342,9.40846877673226,4.98798185941044,2000.0
|
||||
725,28827610,16054,1773000.0,175,102377.19379701,4,31.952380952381,6388.7,29:33.0,01:42.3,578.606827658474,311.0,0.0,0,0.0,0.0,6388.7,0.0,0,0,0,0,175,0,0,1775000.0,191293.118277239,102377.19379701,50.0,03:11.2,01:42.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.881283097013,9.17096018735364,4.88390022675738,2000.0
|
||||
726,28827611,16054,1775000.0,175,107461.3772601,4,31.952380952381,6397.4,29:35.0,01:47.4,580.513862833713,311.0,0.0,0,0.0,0.0,6397.4,0.0,0,0,0,0,175,0,0,1777000.0,191293.118277239,107461.3772601,50.0,03:11.2,01:47.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.6881303242247,8.73706621247605,4.65283446712019,2000.0
|
||||
727,28827612,16054,1777000.0,175,112442.631310556,4,31.7142857142857,6405.9,29:37.0,01:52.4,576.760620026836,302.0,0.0,0,0.0,0.0,6405.9,0.0,0,0,0,0,175,0,0,1779000.0,191293.118277239,112442.631310556,50.0,03:11.2,01:52.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,81.5207376882862,8.41269841269842,4.4467120181406,2000.0
|
||||
728,28827613,16054,1780000.0,175,114993.481095176,4,31.6666666666667,6418.3,29:40.0,01:54.9,564.918369657799,302.0,0.0,0,0.0,0.0,6418.3,0.0,0,0,0,0,175,0,0,1783000.0,191293.118277239,114993.481095176,50.0,03:11.2,01:54.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,76.2151726625553,8.23845327604727,4.34807256235828,3000.0
|
||||
729,28827614,16054,1781000.0,176,112253.729063788,4,31.7142857142857,6424.8,29:41.0,01:52.2,559.045376545496,293.0,0.0,0,0.0,0.0,6424.8,0.0,0,0,0,0,175,0,0,1782000.0,191293.118277239,112253.729063788,50.0,03:11.2,01:52.2,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,84.4496963840928,8.42685542685543,4.45419501133787,1000.0
|
||||
730,28827615,16054,1783000.0,176,105816.297149438,4,31.952380952381,6433.3,29:43.0,01:45.8,557.16703031785,293.0,0.0,0,0.0,0.0,6433.3,0.0,0,0,0,0,177,0,0,1785000.0,191293.118277239,105816.297149438,50.0,03:11.2,01:45.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,100.819083156305,8.87289759420908,4.72517006802722,2000.0
|
||||
731,28827616,16054,1785000.0,177,98573.919263266,4,32.0476190476191,6443.2,29:45.0,01:38.5,557.05339709921,302.0,0.0,0,0.0,0.0,6443.2,0.0,0,0,0,0,177,0,0,1787000.0,191293.118277239,98573.919263266,50.0,03:11.2,01:38.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,120.997118679372,9.4964975589047,5.07233560090704,2000.0
|
||||
732,28827617,16054,1786000.0,177,94473.0077120822,4,31.4761904761905,6451.8,29:46.0,01:34.4,557.405915538218,293.0,0.0,0,0.0,0.0,6451.8,0.0,0,0,0,0,177,0,0,1787000.0,191293.118277239,94473.0077120822,50.0,03:11.2,01:34.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,141.66977289749,10.0886103306678,5.29251700680273,1000.0
|
||||
733,28827618,16054,1788000.0,177,95170.2706202252,4,31.4285714285715,6460.4,29:48.0,01:35.1,561.462226888982,293.0,0.0,0,0.0,0.0,6460.4,0.0,0,0,0,0,177,0,0,1790000.0,191293.118277239,95170.2706202252,50.0,03:11.2,01:35.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,138.578709042182,10.0298701298701,5.25374149659865,2000.0
|
||||
734,28827619,16054,1790000.0,178,101086.508045661,4,31.7142857142857,6470.3,29:50.0,01:41.0,561.829145998779,293.0,0.0,0,0.0,0.0,6470.3,0.0,0,0,0,0,178,0,0,1792000.0,191293.118277239,101086.508045661,50.0,03:11.2,01:41.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,115.643397048426,9.35778635778636,4.94625850340137,2000.0
|
||||
735,28827620,16054,1793000.0,178,109630.587182419,4,32.2380952380953,6480.3,29:53.0,01:49.6,575.079158691105,311.0,0.0,0,0.0,0.0,6480.3,0.0,0,0,0,0,178,0,0,1796000.0,191293.118277239,109630.587182419,50.0,03:11.2,01:49.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,85.4107301876413,8.48828866849547,4.56077097505669,3000.0
|
||||
736,28827621,16054,1794000.0,178,111855.120986151,4,32.9047619047619,6486.5,29:54.0,01:51.8,562.043197982675,311.0,0.0,0,0.0,0.0,6486.5,0.0,0,0,0,0,178,0,0,1795000.0,191293.118277239,111855.120986151,50.0,03:11.2,01:51.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,80.4155505565613,8.15091999173042,4.47006802721089,1000.0
|
||||
737,28827622,16054,1796000.0,178,108300.589390963,4,33.1904761904762,6495.2,29:56.0,01:48.3,529.273670821939,320.0,0.0,0,0.0,0.0,6495.2,0.0,0,0,0,0,178,0,0,1798000.0,191293.118277239,108300.589390963,50.0,03:11.2,01:48.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,86.1044517100177,8.34597253535561,4.61678004535148,2000.0
|
||||
738,28827623,16054,1797000.0,178,106075.912830134,4,36.2380952380953,6504.5,29:57.0,01:46.0,641.162735027571,302.0,0.0,0,0.0,0.0,6504.5,0.0,0,0,0,0,178,0,0,1798000.0,191293.118277239,106075.912830134,50.0,03:11.2,01:46.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,97.0981081279443,7.80439271635067,4.71360544217688,1000.0
|
||||
739,28827624,16054,1799000.0,177,115463.161753155,4,31.3809523809524,6512.9,29:59.0,01:55.4,604.348270345816,302.0,0.0,0,0.0,0.0,6512.9,0.0,0,0,0,0,178,0,0,1801000.0,191293.118277239,115463.161753155,50.0,03:11.2,01:55.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,75.2888674598917,8.27964448298288,4.33038548752835,2000.0
|
||||
740,28827625,16054,1807000.0,176,151369.533877943,4,20.7142857142857,6541.1,30:07.0,02:31.3,479.659101296424,293.0,0.0,0,0.0,0.0,6541.1,0.0,0,0,0,0,176,0,0,1815000.0,191293.118277239,151369.533877943,50.0,03:11.2,02:31.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,34.441733602274,9.56781609195403,3.30317460317461,8000.0
|
||||
741,28827626,16054,1827000.0,175,248562.732499154,4,9.85714285714286,6548.2,30:27.0,04:08.5,306.022445993242,5.0,0.0,0,0.0,0.0,6548.2,0.0,0,0,0,0,174,0,0,1847000.0,191293.118277239,248562.732499154,50.0,03:11.2,04:08.5,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,455.816452016247,12.2443064182195,2.01156462585034,20000.0
|
||||
742,28827627,16054,1829000.0,174,446356.275303643,4,4.42857142857143,6549.2,30:29.0,07:26.3,109.910733132724,5.0,0.0,0,0.0,0.0,6549.2,0.0,0,0,0,0,0,0,0,1831000.0,191293.118277239,446356.275303643,50.0,03:11.2,07:26.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,78.7142035256558,15.1766513056836,1.12018140589569,2000.0
|
||||
743,28827628,16054,1836000.0,174,570652.173913043,4,5.85714285714286,6557.4,30:36.0,09:30.6,-30.1012683993905,3.0,0.0,0,0.0,0.0,6557.4,0.0,0,0,0,0,0,0,0,1843000.0,191293.118277239,570652.173913043,50.0,03:11.2,09:30.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,62.7815973796929,8.97560975609757,0.876190476190477,7000.0
|
||||
744,28827629,16054,1839000.0,172,441618.2655718,4,15.3333333333333,6562.7,30:39.0,07:21.6,50.6025141942018,14.0,0.0,0,0.0,0.0,6562.7,0.0,0,0,0,0,0,0,0,1842000.0,191293.118277239,441618.2655718,50.0,03:11.2,07:21.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,29.0267842839716,4.43034605146407,1.13219954648526,3000.0
|
||||
745,28827630,16054,1842000.0,170,331778.513391513,4,18.952380952381,6567.8,30:42.0,05:31.7,45.4167363230237,14.0,0.0,0,0.0,0.0,6567.8,0.0,0,0,0,0,168,0,0,1845000.0,191293.118277239,331778.513391513,50.0,03:11.2,05:31.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,68.4534337599345,4.77099784637474,1.50702947845805,3000.0
|
||||
746,28827631,16054,1846000.0,168,292712.066905615,4,18.6666666666667,6574.7,30:46.0,04:52.7,48.5047620956448,17.0,0.0,0,0.0,0.0,6574.7,0.0,0,0,0,167,0,0,0,1850000.0,191293.118277239,292712.066905615,50.0,03:11.2,04:52.7,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,82.0913209132052,5.49052478134111,1.70816326530612,4000.0
|
||||
747,28827632,16054,1850000.0,166,290169.759178839,4,17.0476190476191,6581.5,30:50.0,04:50.1,44.2147719537456,11.0,0.0,0,0.0,0.0,6581.5,0.0,0,0,0,167,0,0,0,1854000.0,191293.118277239,290169.759178839,50.0,03:11.2,04:50.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,130.232360189828,6.06464485235435,1.72312925170068,4000.0
|
||||
748,28827633,16054,1854000.0,165,299429.657794676,4,16.7619047619048,6587.2,30:54.0,04:59.4,44.4442035391734,12.0,0.0,0,0.0,0.0,6587.2,0.0,0,0,0,167,0,0,0,1858000.0,191293.118277239,299429.657794676,50.0,03:11.2,04:59.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.643151834122,5.97727272727273,1.66984126984127,4000.0
|
||||
749,28827634,16054,1857000.0,163,304305.823902843,4,16.6190476190476,6593.0,30:57.0,05:04.3,43.7270197039704,13.0,0.0,0,0.0,0.0,6593.0,0.0,0,0,0,161,0,0,0,1860000.0,191293.118277239,304305.823902843,50.0,03:11.2,05:04.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,95.5419057351602,5.93205075726566,1.64308390022676,3000.0
|
||||
750,28827635,16054,1860000.0,160,302967.848309975,4,16.9047619047619,6597.9,31:00.0,05:02.9,46.5970850818833,13.0,0.0,0,0.0,0.0,6597.9,0.0,0,0,160,0,0,0,0,1863000.0,191293.118277239,302967.848309975,50.0,03:11.2,05:02.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,96.8133090387488,5.85754527162978,1.65034013605442,3000.0
|
||||
751,28827636,16054,1865000.0,157,297611.013632069,4,16.4285714285714,6605.6,31:05.0,04:57.6,47.3839378906636,13.0,0.0,0,0.0,0.0,6605.6,0.0,0,0,157,0,0,0,0,1870000.0,191293.118277239,297611.013632069,50.0,03:11.2,04:57.6,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,102.13572945404,6.13581780538303,1.68004535147393,5000.0
|
||||
752,28827637,16054,1868000.0,156,287934.186471663,4,16.5714285714286,6610.6,31:08.0,04:47.9,47.5236372074696,13.0,0.0,0,0.0,0.0,6610.6,0.0,0,0,157,0,0,0,0,1871000.0,191293.118277239,287934.186471663,50.0,03:11.2,04:47.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,112.783351659119,6.28735632183909,1.73650793650794,3000.0
|
||||
753,28827638,16054,1871000.0,153,279043.280182232,4,17.3809523809524,6617.0,31:11.0,04:39.0,52.7278292921937,15.0,0.0,0,0.0,0.0,6617.0,0.0,0,0,153,0,0,0,0,1874000.0,191293.118277239,279043.280182232,50.0,03:11.2,04:39.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,107.389564189525,6.18551859099805,1.79183673469388,3000.0
|
||||
754,28827639,16054,1875000.0,153,276940.467219291,4,16.8571428571429,6624.2,31:15.0,04:36.9,55.9521151779009,15.0,0.0,0,0.0,0.0,6624.2,0.0,0,0,151,0,0,0,0,1879000.0,191293.118277239,276940.467219291,50.0,03:11.2,04:36.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,109.85441700291,6.42615012106538,1.80544217687075,4000.0
|
||||
755,28827640,16054,1878000.0,150,280427.317817626,4,14.5714285714286,6629.4,31:18.0,04:40.4,57.4229214239434,16.0,0.0,0,0.0,0.0,6629.4,0.0,0,0,151,0,0,0,0,1881000.0,191293.118277239,280427.317817626,50.0,03:11.2,04:40.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,99.1943891379037,7.34173669467788,1.78299319727891,3000.0
|
||||
756,28827641,16054,1884000.0,147,285141.600931074,4,13.6190476190476,6638.7,31:24.0,04:45.1,58.522795853592,12.0,0.0,0,0.0,0.0,6638.7,0.0,0,0,151,0,0,0,0,1890000.0,191293.118277239,285141.600931074,50.0,03:11.2,04:45.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,125.807069859166,7.72527472527473,1.75351473922903,6000.0
|
||||
757,28827642,16054,1887000.0,144,287109.375,4,13.1428571428572,6644.7,31:27.0,04:47.1,57.1747052516096,12.0,0.0,0,0.0,0.0,6644.7,0.0,0,141,0,0,0,0,0,1890000.0,191293.118277239,287109.375,50.0,03:11.2,04:47.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123.238010029625,7.95031055900622,1.74149659863946,3000.0
|
||||
758,28827643,16054,1890000.0,141,288197.621225983,4,14.1904761904762,6650.4,31:30.0,04:48.1,53.1043430327661,14.0,0.0,0,0.0,0.0,6650.4,0.0,0,140,0,0,0,0,0,1893000.0,191293.118277239,288197.621225983,50.0,03:11.2,04:48.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.440473750935,7.33557046979866,1.73492063492064,3000.0
|
||||
759,28827644,16054,1894000.0,138,292014.302741358,4,15.7142857142857,6656.8,31:34.0,04:52.0,50.8016996863656,13.0,0.0,0,0.0,0.0,6656.8,0.0,0,140,0,0,0,0,0,1898000.0,191293.118277239,292014.302741358,50.0,03:11.2,04:52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.12156454957,6.53766233766234,1.71224489795919,4000.0
|
||||
760,28827645,16054,1898000.0,138,293921.620901093,4,16.4285714285714,6663.6,31:38.0,04:53.9,49.8543193533186,13.0,0.0,0,0.0,0.0,6663.6,0.0,0,137,0,0,0,0,0,1902000.0,191293.118277239,293921.620901093,50.0,03:11.2,04:53.9,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,106.030324385798,6.2128364389234,1.70113378684807,4000.0
|
||||
761,28827646,16054,1902000.0,136,292052.98013245,4,16.4285714285714,6670.0,31:42.0,04:52.0,51.4327222013849,13.0,0.0,0,0.0,0.0,6670.0,0.0,0,136,0,0,0,0,0,1906000.0,191293.118277239,292052.98013245,50.0,03:11.2,04:52.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,108.078613716697,6.25258799171843,1.71201814058957,4000.0
|
||||
762,28827647,16054,1905000.0,135,283164.248105817,4,16.7619047619048,6675.8,31:45.0,04:43.1,56.2106177016345,17.0,0.0,0,0.0,0.0,6675.8,0.0,0,136,0,0,0,0,0,1908000.0,191293.118277239,283164.248105817,50.0,03:11.2,04:43.1,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,90.6784035819517,6.32061688311689,1.76575963718821,3000.0
|
||||
763,28827648,16054,1908000.0,133,270469.18123275,4,17.1904761904762,6682.2,31:48.0,04:30.4,57.6438925328416,17.0,0.0,0,0.0,0.0,6682.2,0.0,0,132,0,0,0,0,0,1911000.0,191293.118277239,270469.18123275,50.0,03:11.2,04:30.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,104.055673370742,6.45231499802138,1.84863945578232,3000.0
|
||||
764,28827649,16054,1912000.0,131,264817.150063051,4,17.3333333333334,6688.8,31:52.0,04:24.8,55.3059243886024,16.0,0.0,0,0.0,0.0,6688.8,0.0,0,132,0,0,0,0,0,1916000.0,191293.118277239,264817.150063051,50.0,03:11.2,04:24.8,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,117.790357379063,6.53571428571429,1.88809523809524,4000.0
|
||||
765,28827650,16054,1916000.0,130,272398.776985082,4,17.5476190476191,6695.7,31:56.0,04:32.3,50.9328449539455,14.0,0.0,0,0.0,0.0,6695.7,0.0,0,129,0,0,0,0,0,1920000.0,191293.118277239,272398.776985082,50.0,03:11.2,04:32.3,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,123.687140315942,6.27621632099245,1.83554421768708,4000.0
|
||||
766,28827651,16054,1919000.0,129,304473.90223695,4,18.0,6700.9,31:59.0,05:04.4,45.2354178640747,14.0,0.0,0,0.0,0.0,6700.9,0.0,0,129,0,0,0,0,0,1922000.0,191293.118277239,304473.90223695,50.0,03:11.2,05:04.4,0.0,0.0,0.0,0.0,0.0,0.0,0.0,0.0,88.5706411947915,5.47392290249434,1.6421768707483,3000.0
|
||||
|
BIN
rowers/tests/testdata/lofoten.jpg
vendored
Normal file
BIN
rowers/tests/testdata/lofoten.jpg
vendored
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 263 KiB |
BIN
rowers/tests/testdata/testdata.csv.gz
vendored
BIN
rowers/tests/testdata/testdata.csv.gz
vendored
Binary file not shown.
Reference in New Issue
Block a user