石垣一夜城で青空デバッグ、的な

位置情報と気圧・重力のバックグラウンド記録、を実際に外で試した話。

石垣一夜城で青空デバッグ、的な

前日(8/9)の話

せっかく気圧高度計作ったならちょっとは標高高いところで試したいぞ、と。重力異常だって、山とかの場所の方が面白いはずでしょと。のみならず、バックグラウンドで動き続ける kivyLauncher アプリを簡単に作れることがわかったので、行動記録・気圧と重力計測、なんて出来るぞこりゃ楽しい、って発想。

が、9日はプログラムの準備が出来るまでに 15 時くらいにはなってて(しかも移動始めてからプログラムの間違いに気付いてスマホで直接直したりしてたこともあって)、遠出は出来なかったので、横浜の山の手で済ましてみた。この結果をちょい出ししたのがこれ

この日動かしてみて、作ったプログラムが「バックグラウンドで動き続けてくれない」問題が判明。まだワタシの知らない android プログラミングのルールとかがあったら面倒そうだなぁ、と思ったが、帰ってきてログを眺めてそうではないことがわかって一応安心。sqlite3 が disk I/O error とか unable to open database file で sqlite3.OperationalError を起こしてた。これはこれで良くわからんしイヤらしいけれど、まぁどうにかなるかな、と安心して寝る。

10日、出かける前

前日使ってみて、sqlite3.OperationalError 問題もそうなんだけれど、記録は本当に単純に記録するだけで基本的に UI へのフィードバックを付けてなかったので、うまく記録されてるのか、帰宅してきてみるまでわからなかったのね。なので、kivy-garden.mapview で記録された位置情報の可視化を仕込んでいた。

昼前くらいに実装完了。さて、昨日よりは遠出出来る。近場で思いつくところといえば…、石垣一夜城にしてみようかな、と。

作ったプログラム

10日に作ったものからは、さっき一部書き換えたので少し持ってったものとは違ってるが、だいたい同じもの。

ファイル一覧:

 1 ./android.txt
 2 ./main.py
 3 ./libs/garden/garden.mapview/.gitignore
 4 ./libs/garden/garden.mapview/docs/make.bat
 5 ./libs/garden/garden.mapview/docs/Makefile
 6 ./libs/garden/garden.mapview/docs/source/conf.py
 7 ./libs/garden/garden.mapview/docs/source/index.rst
 8 ./libs/garden/garden.mapview/examples/map_browser.py
 9 ./libs/garden/garden.mapview/examples/map_with_marker_popup.py
10 ./libs/garden/garden.mapview/examples/simple_geojson.py
11 ./libs/garden/garden.mapview/examples/simple_map.py
12 ./libs/garden/garden.mapview/examples/simple_mbtiles.py
13 ./libs/garden/garden.mapview/LICENSE
14 ./libs/garden/garden.mapview/mapview/downloader.py
15 ./libs/garden/garden.mapview/mapview/geojson.py
16 ./libs/garden/garden.mapview/mapview/icons/marker.png
17 ./libs/garden/garden.mapview/mapview/mbtsource.py
18 ./libs/garden/garden.mapview/mapview/source.py
19 ./libs/garden/garden.mapview/mapview/types.py
20 ./libs/garden/garden.mapview/mapview/utils.py
21 ./libs/garden/garden.mapview/mapview/view.py
22 ./libs/garden/garden.mapview/mapview/__init__.py
23 ./libs/garden/garden.mapview/README.md
24 ./libs/garden/garden.mapview/requirements.txt
25 ./libs/garden/garden.mapview/__init__.py
26 ./service/environmental_sensors.py
27 ./service/gravity_sensor.py
28 ./service/main.py
29 ./service/sensor_logging.py
30 ./service/sensor_logging_data.py

libs の下については これ参照。environmental_sensors.py はこれと同じもの、gravity_sensor.py はこれと同じもの。

バックグランドサービスの作り方に従った構造で、メインの GUI は記録サービスの起動終了とデータの問い合わせだけ。具体的にはこんな連携:

  1. GUI 側(クライアント)は android.start_service、stop_service と、port=3010 への /ping、そのサービスからの応答 port=3012 での /response を受ける
  2. サービス側はセンサーのデータをひたすら sqlite3 に記録する無限ループ、port=3010 へ届く /ping に対し、記録済みデータがあれば、最近のデータ 30 件を(jsonの形で)返す

としている。その30件のデータを kivy-garden.mapview で可視化。

で。

android.txt
1 title=Sensor Logging
2 author=hhsprings
3 orientation=portrait
main.py
  1 # -*- coding: utf-8 -*-
  2 import sys
  3 # please edit next line for your environment.
  4 sys.path.append("/sdcard/kivy-my-site-packages")
  5 
  6 import json
  7 import math
  8 from kivy.app import App
  9 from kivy.lang import Builder
 10 from kivy.uix.boxlayout import BoxLayout
 11 from kivy.lib import osc
 12 from kivy.clock import Clock
 13 import android
 14 from kivy.garden.mapview import MapView, MapMarkerPopup
 15 
 16 kv = '''
 17 <SensorLoggingServiceLauncher>:
 18     orientation: 'vertical'
 19     label: label
 20     map: map
 21 
 22     BoxLayout:
 23         size_hint: (1, None)
 24         height: ping_btn.height
 25         Button:
 26             id: ping_btn
 27             text: 'ping'
 28             on_press: root.send_ping()
 29             size_hint: (1, None)
 30             height: self.texture_size[1] * 3
 31         Button:
 32             text: 'start service'
 33             on_press: root.start_service()
 34             size_hint: (1, None)
 35             height: self.texture_size[1] * 3
 36         Button:
 37             text: 'stop service'
 38             on_press: root.stop_service()
 39             size_hint: (1, None)
 40             height: self.texture_size[1] * 3
 41     RstDocument:
 42         id: label
 43         size_hint: (1, None)
 44         height: 350
 45     MapView:
 46         id: map
 47         zoom: 15
 48 '''
 49 Builder.load_string(kv)
 50 _PING_PORT = 3010
 51 _RESPONSE_PORT = 3012
 52 
 53 
 54 class SensorLoggingServiceLauncher(BoxLayout):
 55     def __init__(self):
 56         super(SensorLoggingServiceLauncher, self).__init__()
 57 
 58         osc.init()
 59         oscid = osc.listen(port=_RESPONSE_PORT)
 60         osc.bind(
 61             oscid,
 62             self.on_service_response, '/response')
 63         Clock.schedule_interval(
 64             lambda *x: osc.readQueue(oscid), 0)
 65         self._ping_scev = Clock.schedule_interval(self.send_ping, 1.)
 66 
 67     def start_service(self):
 68         android.start_service(
 69             title='sensor logging service',
 70             description='casual sensor logging service',
 71             arg=json.dumps({
 72                     'ping_port': _PING_PORT,
 73                     'response_port': _RESPONSE_PORT,
 74                     'check_interval': 5 * 60,  # [secs]
 75                     'check_distance': 10,  # [m]
 76                     }))
 77         if not self._ping_scev:
 78             self._ping_scev = Clock.schedule_interval(self.send_ping, 1.)
 79 
 80     def stop_service(self):
 81         android.stop_service()
 82         self.label.text = ''
 83 
 84     def send_ping(self, *arg, **kwarg):
 85         osc.sendMsg('/ping', [], port=_PING_PORT)
 86 
 87     def on_service_response(self, message, *args):
 88         Clock.unschedule(self._ping_scev)
 89         self._ping_scev = None
 90         response = json.loads(message[2])
 91         result = response['last']
 92 
 93         self.label.text = "{}\n\n".format(response['message'])
 94         last_lon, last_lat = None, None
 95         for time, lon, lat, alt, pres, gX, gY, gZ in result:
 96 
 97             self.label.text += """
 98 * lon={:.5f}, lat={:.5f}, alt={:.2f}, \
 99 pressure={:.2f}, g={:.6f}
100 """.format(lon, lat, alt, pres, math.sqrt(gX**2 + gY**2 + gZ**2))
101 
102             self.map.add_marker(
103                 MapMarkerPopup(lon=lon, lat=lat))
104             last_lon, last_lat = lon, lat
105 
106         if last_lon:
107             self.map.center_on(last_lat, last_lon)
108 
109 
110 class SensorLoggingServiceLauncherApp(App):
111     def build(self):
112         return SensorLoggingServiceLauncher()
113 
114 
115 if __name__ == '__main__':
116     SensorLoggingServiceLauncherApp().run()
service/main.py
 1 # -*- coding: utf-8 -*-
 2 import json
 3 import sqlite3
 4 from kivy.lib import osc
 5 from time import sleep
 6 from kivy.clock import Clock, mainthread
 7 from kivy.logger import Logger
 8 from sensor_logging import SensorLogging
 9 
10 class SensorLoggingService(object):
11     def __init__(self, conf):
12         self._conf = conf
13         Logger.info(str(conf))
14         self.log = SensorLogging(self._conf)
15 
16     def run(self):
17         Logger.info("run START")
18         osc.init()
19         self.oscid = osc.listen(
20             ipAddr='0.0.0.0',
21             port=self._conf['ping_port'])
22         osc.bind(
23             self.oscid,
24             self.ping, '/ping')
25 
26         t = 0.0
27         delta_t = 0.5
28         while True:
29             osc.readQueue(self.oscid)
30             if self.log.dirty or t >= self._conf['check_interval']:
31                 try:
32                     self.log.do_log()
33                     t = 0.0
34                 except sqlite3.OperationalError as e:
35                     Logger.info("{}: try next time...".format(str(e)))
36             sleep(delta_t)
37             t += delta_t
38 
39     def ping(self, *args):
40         """just for heart-beat."""
41         Logger.info("received ping")
42         res = []
43         try:
44             res = self.log.query_last(30)
45         except sqlite3.OperationalError as e:
46             Logger.info("query_last failed: {}".format(str(e)))
47         osc.sendMsg(
48             '/response',
49             [json.dumps({
50                         'message': 'service is now active',
51                         'last': res
52                         })],
53             port=self._conf['response_port'])
54 
55 if __name__ == '__main__':
56     import os
57     import json
58 
59     SensorLoggingService(
60         conf=json.loads(os.getenv('PYTHON_SERVICE_ARGUMENT'))
61         ).run()
service/sensor_logging.py
 1 # -*- coding: utf-8 -*-
 2 import sys
 3 from datetime import datetime
 4 from kivy.clock import Clock, mainthread
 5 from kivy.logger import Logger
 6 from plyer import gps
 7 from gravity_sensor import GravitySensor
 8 from environmental_sensors import pressureSensor
 9 from sensor_logging_data import LogPhysical
10 
11 
12 grav_sensor = GravitySensor()
13 # please edit next line for your environment.
14 sys.path.append("/sdcard/kivy-my-site-packages")
15 from geographiclib.geodesic import Geodesic
16 _WGS84 = Geodesic.WGS84
17 
18 
19 _ERA = datetime(1970, 1, 1)
20 
21 
22 class SensorLogging(object):
23     _last_lon = None
24     _last_lat = None
25     _last_alt = None
26     dirty = False
27 
28     def __init__(self, conf):
29         Logger.debug("SensorLogging.__init__")
30         self._conf = conf
31         self._log = LogPhysical()
32 
33         pressureSensor.enable()
34         grav_sensor.enable()
35         gps.configure(on_location=self.on_location,
36                       on_status=self.on_status)
37         gps.start()
38 
39     def on_location(self, **kwargs):
40         Logger.debug("do_location")
41         lon = float(kwargs['lon'])
42         lat = float(kwargs['lat'])
43         alt = float(kwargs['altitude'])
44         last_lon = self._last_lon
45         last_lat = self._last_lat
46         last_alt = self._last_alt
47 
48         dis = self._conf['check_distance'] + 1
49         if last_lon is not None:
50             dis = _WGS84.Inverse(last_lat, last_lon, lat, lon)['s12']
51         if dis > self._conf['check_distance']:
52             self.dirty = True
53             self._last_lon = lon
54             self._last_lat = lat
55             self._last_alt = alt
56 
57     def on_status(self, stype, status):
58         pass
59 
60     @property
61     def current(self):
62         return (
63             (datetime.utcnow() - _ERA).total_seconds(),
64             self._last_lon,
65             self._last_lat,
66             self._last_alt,
67             pressureSensor.value,
68             grav_sensor.values)
69 
70     def query_last(self, num):
71         return self._log.query_last(num)
72 
73     def do_log(self, *args, **kwargs):
74         self.dirty = False
75         Logger.debug("do_log")
76         self._log.insert_new(*self.current)
service/sensor_logging_data.py
 1 import os
 2 import sqlite3
 3 import sys
 4 # please edit next line for your environment.
 5 sys.path.append("/sdcard/kivy-my-site-packages")
 6 from geographiclib.geodesic import Geodesic
 7 _WGS84 = Geodesic.WGS84
 8 inverse = _WGS84.Inverse
 9 
10 
11 _DBFILE = "./sensor_log.dat"
12 
13 _created = os.path.exists(_DBFILE)
14 
15 
16 class LogPhysical(object):
17     def __init__(self):
18         self._conn = sqlite3.connect(_DBFILE)
19 
20         global _created
21         if not _created:
22             cur = self._conn.cursor()
23             cur.executescript('''\
24         CREATE TABLE sensor_log (
25             time FLOAT NOT NULL,
26             lon FLOAT,
27             lat FLOAT,
28             alt FLOAT,
29             pressure FLOAT,
30             grav_x FLOAT,
31             grav_y FLOAT,
32             grav_z FLOAT
33             );
34         ''')
35             self._conn.commit()
36             _created = True
37             cur.close()
38 
39     def insert_new(self, time, lon, lat, alt, pressure, grav):
40         grav_x, grav_y, grav_z = grav
41 
42         cur = self._conn.cursor()
43         cur.execute(
44             """INSERT INTO sensor_log(
45                    time, lon, lat, alt, pressure, grav_x, grav_y, grav_z
46                )
47                VALUES (
48                    ?, ?, ?, ?, ?, ?, ?, ?
49                )""", (time, lon, lat, alt, pressure, grav_x, grav_y, grav_z))
50         self._conn.commit()
51         cur.close()
52 
53     def query_last(self, num=None):
54         cur = self._conn.cursor()
55         cur.execute("""SELECT
56                            time, lon, lat, alt, pressure, grav_x, grav_y, grav_z
57                        FROM sensor_log
58                        ORDER BY time DESC""")
59         result = []
60         for row in cur:
61             time, lon, lat, alt, pressure, grav_x, grav_y, grav_z = row
62             result.append((time, lon, lat, alt, pressure, grav_x, grav_y, grav_z))
63             if len(result) >= 3:
64                 # reduce noise
65                 i = len(result) - 3
66                 d01 = inverse(
67                     result[i    ][2], result[i    ][1],
68                     result[i + 1][2], result[i + 1][1])['s12']
69                 d02 = inverse(
70                     result[i    ][2], result[i    ][1],
71                     result[i + 2][2], result[i + 2][1])['s12']
72                 d12 = inverse(
73                     result[i + 1][2], result[i + 1][1],
74                     result[i + 2][2], result[i + 2][1])['s12']
75                 if d02 < d01 or d02 < d12:
76                     del result[i + 1]
77             if num and len(result) == num:
78                 break
79         cur.close()
80         return list(reversed(result))

記録は基本的に「10m移動を検出するか、もしくは5分」。GPS のトラッキングだけなら移動の検出だけでもいいんだけれど、例えば「今日の気圧をずっと測ってみよう」なんてこともしたいので、適当なインターバルでの記録も仕込んでいる。

ちゃちゃっと書いてるんだけど、まったく苦もなく、てわけでもなくて、サービス側は基本的に kivy GUI プログラムのノリとはちょっと違って、メインスレッドで無限ループしてる構造なので、実は Clock.schedule_interval とかセンサーからの通知イベントの扱いに苦慮したりもした。最終的にあんまり上手にやろうとはしてないが、見かけよりずっと「単純なシングルスレッドアプリ」に近い。(のでスッキリもしてない。)

横浜編で苦慮した「勝手に死ぬる」問題は:

1         try:
2             res = self.log.query_last(30)
3         except sqlite3.OperationalError as e:
4             Logger.info("query_last failed: {}".format(str(e)))

としてみた。データの性質上、多少は取りこぼしても全然問題ないので、これが起こったら素直に無視してしまおうって魂胆。これを書いた時点で気になっていたのは、永続的に sqlite3 が壊れてしまっている、つまり何度繰り返しても(再起動しない限りは)問題を起こす、だったらやだな、ってことだった。たまたま競合問題でも起こったんだろう、との楽観論に立てば、上のような措置になる。

sensor_logging_data.py にある「# reduce noise」部分は持ち歩いたコードでは入れてなくて、さっき入れたコードで、これがないとゴミデータを拾いまくってしまう。まぁ記録時に取り除けたほうが理想だろうけど、「記録は素のまま生のままありのまま」がやっぱいいと思うので、データを後から取り出す際にゴミを取り除くノリでやってみた。

さぁでかけよう

昨日と違って、本当にずっと動かし続けられるはずだし、動かし続けたいので、ってことでもあったんだけど、随分忙しいサービスなので、どのくらいバッテリーを消耗するかが想像つかないし、記録データがどれだけ大きくなるのかもあんまし予測は出来ないので、記録開始をどのあたりからにしようか? と考えながら向かう。

本番は早川に着いてから、なのであって、その前にデータがデカくなりすぎたりバッテリーが消耗しすぎるのもやだが、本番前にちゃんと動いてるかの確認もしたい、と、電車に乗る前に一回リハーサル。1km ほど歩いてみて、問題ないことを確認し、いったんサービスを止めてデータも kivy のログも削除し、電車に乗る。

記録開始は東海道線鴨宮駅からにした。電車の中の記録も面白いだろう。って…、わ、面白い。マーカが高速に追加されてくわ。

いざ

石垣一夜城への「登山」はこんなである:


いわゆる「下が丸」てヤツだ。景色はサイコーだが、「暑い、暑い」。ワタシがどんだけヘバってたかも正確に記録されている :)

実際何分かかって上に辿り着いたのかは記録されてるのでわかるはずだが、記録の整理はしてないのでここでは書かない。一夜城の前にある「ヨロイヅカファーム」にこんな木陰:

があってベンチもあったので、そこで目一杯かいた汗をひかせつつ、キャプチャ:

相変わらずとんでもない場所も指しているが、だいたいいい感じみたいだ。これでも現在気圧を測ってみる:

うーんいいねぇ。30hPa くらい下界からは低く出てる。(下ではこの日 1009 hPa くらい。)

随分疲労困憊していたのでここに結構長い時間座り込んでしまってたが、城にはいかねばならぬ:

伝わりにくいんだよなぁ。やっぱ目で見て欲しい。なんつーか実物みないと迫力がわかんない。

本丸:


確か 270 m とかだったと思うんだけど、この高度感と「20~30hPa も下がってるねぇ」の実感が伝わるといーんだけど。

帰り道もちょっとだけ動画ってみた:


高度感が伝わるといいなぁ、てのと、ここ、実は小田原城が見えている…んだけどわかりにくいよなぁ。

ここから先は、時間ギリギリだったけど小田原城に(前回工事中で入れなかったので)入ってちょっとだけ観覧して、あとは飯食って帰った、んだけど、記録は蒲田駅まで延々。うーん、今日は一度も死ななかったぞ、と思うも、kivy のログをみてみたら、やっぱし sqlite3 がエラーを頻発してたみたい:

 1 [INFO              ] Logger: Record log in /storage/emulated/0/kivy/sensor_logging_service/service/.kivy/logs/kivy_16-08-10_1.txt
 2 [INFO              ] Kivy: v1.9.1
 3 [INFO              ] Python: v2.7.2 (default, Mar 20 2016, 23:30:13) 
 4 [GCC 4.8]
 5 [INFO              ] OSC: using <thread> for socket
 6 [INFO              ] {u'check_distance': 10, u'ping_port': 3010, u'response_port': 3012, u'check_interval': 300}
 7 [INFO              ] run START
 8 [INFO              ] OSC: listening for Tuio on 0.0.0.0:3010
 9 [INFO              ] received ping
10 [INFO              ] received ping
11 [INFO              ] received ping
12 [INFO              ] received ping
13 [INFO              ] received ping
14 [INFO              ] received ping
15 [INFO              ] received ping
16 [INFO              ] disk I/O error: try next time...
17 [INFO              ] received ping
18 [INFO              ] received ping
19 [INFO              ] received ping
20 [INFO              ] received ping
21 [INFO              ] unable to open database file: try next time...
22 [INFO              ] received ping
23 [INFO              ] received ping
24 [INFO              ] disk I/O error: try next time...
25 [INFO              ] received ping
26 [INFO              ] received ping
27 [INFO              ] received ping
28 [INFO              ] received ping
29 [INFO              ] received ping
30 [INFO              ] unable to open database file: try next time...
31 [INFO              ] unable to open database file: try next time...
32 [INFO              ] unable to open database file: try next time...
33 [INFO              ] received ping
34 [INFO              ] unable to open database file: try next time...
35 [INFO              ] disk I/O error: try next time...
36 [INFO              ] disk I/O error: try next time...
37 [INFO              ] disk I/O error: try next time...
38 [INFO              ] received ping
39 [INFO              ] received ping
40 [INFO              ] disk I/O error: try next time...
41 [INFO              ] disk I/O error: try next time...
42 [INFO              ] unable to open database file: try next time...
43 [INFO              ] received ping
44 [INFO              ] received ping
45 [INFO              ] received ping
46 [INFO              ] received ping
47 [INFO              ] received ping
48 [INFO              ] received ping
49 [INFO              ] received ping
50 [INFO              ] received ping
51 [INFO              ] received ping
52 [INFO              ] received ping
53 [INFO              ] received ping
54 [INFO              ] received ping
55 [INFO              ] received ping
56 [INFO              ] received ping
57 [INFO              ] received ping
58 [INFO              ] received ping
59 [INFO              ] received ping
60 [INFO              ] received ping
61 [INFO              ] received ping
62 [INFO              ] disk I/O error: try next time...
63 [INFO              ] received ping
64 [INFO              ] disk I/O error: try next time...
65 [INFO              ] disk I/O error: try next time...
66 [INFO              ] unable to open database file: try next time...
67 [INFO              ] disk I/O error: try next time...
68 [INFO              ] disk I/O error: try next time...
69 [INFO              ] disk I/O error: try next time...
70 [INFO              ] received ping

バッテリーの減りについては正直なところよくわからないけれど、フル充電ででかけて 40% くらいにはなってた。sqlite3 のデータは 300K。なのでデータサイズ的には丸一日記録したとしても大したことはないね。

せっかくとったデータの整理

色々出来そうなんだけれども、とりあえずは「移動記録」だけでもと思い、横浜でのと同じく kml に。

sensor_log.2016-08-10.kml
   1 <?xml version="1.0" encoding="UTF-8"?>
   2 <kml xmlns="http://www.opengis.net/kml/2.2">
   3 <Document>
   4 <name>2016-08-10 walking</name>
   5 <Style id="paddle-a">
   6 <IconStyle>
   7 <Icon>
   8 <href>http://maps.google.com/mapfiles/kml/paddle/A.png</href>
   9 </Icon>
  10 <hotSpot x="32" y="1" xunits="pixels" yunits="pixels"/>
  11 </IconStyle>
  12 </Style>
  13 <Style id="paddle-b">
  14 <IconStyle>
  15 <Icon>
  16 <href>http://maps.google.com/mapfiles/kml/paddle/B.png</href>
  17 </Icon>
  18 <hotSpot x="32" y="1" xunits="pixels" yunits="pixels"/>
  19 </IconStyle>
  20 </Style>
  21 <Style id="hiker-icon">
  22 <IconStyle>
  23 <Icon>
  24 <href>http://maps.google.com/mapfiles/ms/icons/hiker.png</href>
  25 </Icon>
  26 <hotSpot x="0" y=".5" xunits="fraction" yunits="fraction"/>
  27 </IconStyle>
  28 </Style>
  29 <Style id="check-hide-children">
  30 <ListStyle>
  31 <listItemType>checkHideChildren</listItemType>
  32 </ListStyle>
  33 </Style>
  34 <styleUrl>#check-hide-children</styleUrl>
  35 
  36 <Placemark><name>walk</name><LineString><coordinates>
  37 139.1787663,35.2754594
  38 139.18096285,35.27624346
  39 139.17997251,35.27594791
  40 139.17955545,35.27579734
  41 139.1792871,35.27562059
  42 139.17914466,35.27554002
  43 139.17900757,35.27553471
  44 139.17884071,35.27550519
  45 139.17872812,35.27547537
  46 139.17857529,35.27550999
  47 139.17847503,35.27554856
  48 139.17831316,35.27551667
  49 139.17820377,35.27549817
  50 139.17804199,35.27546534
  51 139.17793187,35.27540525
  52 139.17773473,35.27539636
  53 139.17760719,35.27540245
  54 139.17744017,35.2753896
  55 139.17726126,35.27536633
  56 139.17711499,35.27532818
  57 139.17696143,35.27528974
  58 139.17681305,35.27524583
  59 139.1766428,35.27520292
  60 139.17645575,35.27516615
  61 139.17627152,35.27512424
  62 139.17610919,35.27506592
  63 139.17593519,35.27501002
  64 139.17575461,35.27494649
  65 139.17557885,35.27487376
  66 139.17539564,35.27481725
  67 139.17520075,35.27474463
  68 139.17501257,35.27467006
  69 139.17482821,35.27459412
  70 139.17464322,35.27451064
  71 139.17444264,35.27441603
  72 139.17425225,35.27431788
  73 139.17407889,35.27421849
  74 139.17386779,35.27411262
  75 139.17366988,35.27399829
  76 139.17346484,35.27386836
  77 139.17327679,35.27374629
  78 139.17307731,35.27359564
  79 139.17289201,35.27345647
  80 139.17267229,35.27332313
  81 139.17252054,35.27318937
  82 139.17234687,35.2730336
  83 139.17218588,35.27287676
  84 139.17201764,35.27270298
  85 139.17184264,35.27253281
  86 139.17166396,35.27236294
  87 139.17148219,35.27217836
  88 139.17132654,35.27199477
  89 139.17115888,35.27180831
  90 139.17096032,35.27163601
  91 139.17081032,35.27146555
  92 139.17059874,35.27130621
  93 139.1703959,35.27115718
  94 139.1702288,35.27094868
  95 139.17003038,35.27077104
  96 139.16990773,35.27061673
  97 139.16971107,35.27040951
  98 139.1694336,35.27015218
  99 139.16921241,35.26997437
 100 139.16902825,35.26977512
 101 139.16885289,35.26958743
 102 139.16867513,35.26940729
 103 139.16820123,35.26900597
 104 139.1679774,35.26881143
 105 139.16781996,35.26862506
 106 139.16739559,35.26822252
 107 139.1672001,35.26802137
 108 139.16697472,35.26782723
 109 139.16676568,35.26762975
 110 139.16655685,35.26743071
 111 139.16634402,35.26723435
 112 139.16612845,35.26703034
 113 139.16591314,35.26685526
 114 139.16568002,35.2666233
 115 139.16546868,35.26643223
 116 139.16523928,35.26622842
 117 139.16502512,35.2660321
 118 139.16480819,35.26583225
 119 139.16459164,35.2656442
 120 139.16439424,35.26545952
 121 139.16397337,35.26507625
 122 139.16376191,35.26488534
 123 139.16353868,35.26468754
 124 139.16333907,35.26449809
 125 139.16315052,35.26434757
 126 139.16291288,35.26413698
 127 139.16269978,35.26399012
 128 139.16243514,35.26380356
 129 139.1622371,35.2636128
 130 139.1620198,35.26340123
 131 139.1618038,35.26320699
 132 139.16156954,35.26301125
 133 139.16136109,35.26281855
 134 139.1611877,35.26263105
 135 139.16102445,35.26245052
 136 139.16084422,35.26228598
 137 139.16064197,35.26208341
 138 139.16046707,35.26189741
 139 139.16028146,35.26171441
 140 139.1600853,35.2613205
 141 139.15989212,35.26132685
 142 139.159697,35.26111852
 143 139.15950151,35.260922
 144 139.15934901,35.26072605
 145 139.1591988,35.26053548
 146 139.15904408,35.26035079
 147 139.15890139,35.26015716
 148 139.15873298,35.25994095
 149 139.15858336,35.25975242
 150 139.15845854,35.25954981
 151 139.15833113,35.25935941
 152 139.15819485,35.25920789
 153 139.158068,35.25902865
 154 139.15795344,35.25889548
 155 139.15782345,35.25865674
 156 139.15769556,35.25852018
 157 139.15761073,35.25837472
 158 139.15749402,35.25821797
 159 139.15737072,35.25802138
 160 139.15722104,35.25788317
 161 139.15728424,35.25773617
 162 139.157224,35.25761462
 163 139.15712072,35.25748764
 164 139.15701002,35.25744748
 165 139.1569034,35.25735671
 166 139.15681545,35.25724117
 167 139.15672283,35.25709061
 168 139.15665832,35.25699458
 169 139.15658837,35.25692035
 170 139.15650968,35.25681846
 171 139.15646058,35.25670681
 172 139.15639276,35.25661864
 173 139.1563204,35.25652157
 174 139.15618715,35.25638335
 175 139.15612293,35.25629392
 176 139.1552121,35.2560703
 177 139.15545811,35.25526777
 178 139.15538389,35.25522022
 179 139.15525333,35.25514452
 180 139.15517766,35.25504126
 181 139.15508021,35.25490083
 182 139.15499303,35.25476006
 183 139.15483202,35.25454437
 184 139.15474441,35.25447405
 185 139.15461274,35.25428542
 186 139.15453599,35.25418289
 187 139.15444481,35.25407538
 188 139.15437697,35.25395147
 189 139.15429582,35.25384056
 190 139.15421266,35.25371901
 191 139.15409301,35.25358643
 192 139.15386798,35.25329762
 193 139.15376059,35.25315879
 194 139.15363813,35.25301989
 195 139.1535487,35.2528933
 196 139.15343328,35.25276242
 197 139.15332949,35.25262648
 198 139.15322902,35.25248212
 199 139.15308478,35.25231573
 200 139.15298268,35.25215785
 201 139.15286929,35.25197853
 202 139.15275129,35.2518182
 203 139.15262905,35.25165379
 204 139.1525158,35.25150844
 205 139.15240433,35.25131182
 206 139.15226219,35.25113584
 207 139.15212252,35.25094139
 208 139.15200288,35.25077975
 209 139.15185728,35.25058323
 210 139.15173353,35.25040054
 211 139.15161229,35.25021749
 212 139.15149099,35.25003421
 213 139.15136977,35.24985106
 214 139.14986453,35.24758172
 215 139.14958376,35.24723026
 216 139.14946764,35.24699596
 217 139.14929414,35.24651343
 218 139.14909003,35.24611278
 219 139.14897587,35.24590829
 220 139.14874837,35.24548843
 221 139.14862757,35.24527284
 222 139.14848302,35.2450467
 223 139.14836255,35.24484637
 224 139.14826066,35.24463949
 225 139.14814008,35.24443491
 226 139.14800838,35.24424031
 227 139.14780554,35.24387057
 228 139.14769111,35.2436746
 229 139.14756215,35.24347879
 230 139.14744289,35.24330075
 231 139.14736091,35.24316183
 232 139.14725353,35.24299385
 233 139.14715418,35.24284296
 234 139.14694021,35.24254609
 235 139.14680339,35.2423207
 236 139.14673112,35.24220024
 237 139.14665713,35.24207836
 238 139.14659393,35.24195179
 239 139.14648491,35.24181487
 240 139.14641184,35.24167008
 241 139.14623735,35.24128626
 242 139.14619835,35.24118281
 243 139.14615784,35.24107524
 244 139.14608552,35.24090335
 245 139.14602069,35.24077562
 246 139.14597172,35.24066041
 247 139.14592154,35.24054091
 248 139.14589012,35.24043243
 249 139.14581104,35.24032112
 250 139.14577696,35.24022468
 251 139.14575361,35.24012119
 252 139.14573171,35.24001991
 253 139.1456849,35.23992121
 254 139.14563049,35.23982737
 255 139.1455587,35.23968208
 256 139.14545663,35.23953567
 257 139.14542524,35.23944002
 258 139.14535215,35.23929492
 259 139.14533253,35.23918145
 260 139.14527682,35.23906678
 261 139.14523022,35.23894724
 262 139.14516019,35.23882008
 263 139.14511186,35.23871985
 264 139.14505257,35.23862463
 265 139.14502346,35.23852615
 266 139.14496428,35.23844202
 267 139.14494881,35.23839998
 268 139.14493868,35.23830651
 269 139.14482929,35.23831669
 270 139.14486342,35.23847771
 271 139.14490675,35.23856148
 272 139.14497075,35.23864181
 273 139.14501735,35.23872822
 274 139.14506707,35.23882558
 275 139.14509883,35.23887252
 276 139.1451424,35.23896206
 277 139.14517455,35.23905121
 278 139.14519985,35.23908932
 279 139.14532705,35.23912639
 280 139.14544678,35.23913878
 281 139.14550304,35.23914632
 282 139.14553839,35.23916175
 283 139.14564308,35.23923689
 284 139.14586371,35.23926081
 285 139.14589197,35.23928773
 286 139.14585729,35.23938208
 287 139.14585601,35.2394844
 288 139.14584536,35.23957977
 289 139.14581244,35.23967621
 290 139.14583237,35.23973357
 291 139.14581935,35.23982343
 292 139.14581183,35.23992462
 293 139.14582288,35.24002338
 294 139.14584266,35.2400789
 295 139.14585512,35.2401747
 296 139.14588504,35.24027486
 297 139.14590116,35.24029476
 298 139.14599387,35.24035874
 299 139.14607086,35.24043226
 300 139.14609668,35.24049062
 301 139.14610508,35.24058112
 302 139.14618904,35.24065533
 303 139.1463071,35.24070026
 304 139.14634193,35.24072514
 305 139.146443,35.24077191
 306 139.1464362,35.2408573
 307 139.1464362,35.2408573
 308 139.14631255,35.24083629
 309 139.1462939,35.24076955
 310 139.14628359,35.24074866
 311 139.14630154,35.2407558
 312 139.14623744,35.24082943
 313 139.14620595,35.24091977
 314 139.14621196,35.24093458
 315 139.14626578,35.24102092
 316 139.14631312,35.24106965
 317 139.14631662,35.24108779
 318 139.14625533,35.24114731
 319 139.14625923,35.24119898
 320 139.14619338,35.24127519
 321 139.1461156,35.24134177
 322 139.14599131,35.24137833
 323 139.14589061,35.24141849
 324 139.1457355,35.24149987
 325 139.14562038,35.2415449
 326 139.1456065,35.24155108
 327 139.1454967,35.24158579
 328 139.1453808,35.24156772
 329 139.14527022,35.24159617
 330 139.14517527,35.24164847
 331 139.1450742,35.24170403
 332 139.14500976,35.24171115
 333 139.14489431,35.24172456
 334 139.14478879,35.24179819
 335 139.14470888,35.24186098
 336 139.14466155,35.24187634
 337 139.1445529,35.24190025
 338 139.14444627,35.24192523
 339 139.14432769,35.2418627
 340 139.14429874,35.24175877
 341 139.1442675,35.24166144
 342 139.14419613,35.24159149
 343 139.1441523,35.24149746
 344 139.14414125,35.241491
 345 139.14402213,35.24147397
 346 139.14391146,35.24151451
 347 139.1437955,35.2415033
 348 139.14368165,35.24148751
 349 139.14357086,35.24145846
 350 139.1434784,35.24141858
 351 139.14336706,35.24138868
 352 139.14325649,35.24135675
 353 139.1430665,35.2413721
 354 139.14307405,35.24141976
 355 139.14297918,35.24148706
 356 139.14294756,35.24151187
 357 139.14292498,35.24160115
 358 139.14288548,35.24170422
 359 139.14283837,35.24179461
 360 139.1427816,35.24187801
 361 139.14278205,35.2418827
 362 139.14273826,35.24185826
 363 139.14269306,35.24189179
 364 139.14262386,35.24192944
 365 139.14251326,35.24194702
 366 139.14241661,35.24193515
 367 139.14230641,35.24191038
 368 139.14219233,35.24190599
 369 139.14209944,35.24184016
 370 139.14199168,35.24179602
 371 139.14193664,35.24175572
 372 139.14183098,35.24171682
 373 139.14171846,35.24168884
 374 139.14164371,35.24166472
 375 139.14155256,35.24160644
 376 139.14145057,35.24157285
 377 139.14140398,35.24156725
 378 139.1412893,35.24156692
 379 139.14116702,35.24157022
 380 139.14112497,35.24156671
 381 139.14101887,35.24154317
 382 139.14092862,35.24147811
 383 139.14091397,35.24147229
 384 139.14078455,35.24148897
 385 139.14066785,35.24145939
 386 139.1406503,35.24146882
 387 139.14053786,35.24150208
 388 139.14040501,35.2414932
 389 139.14028205,35.24149834
 390 139.14019456,35.24148328
 391 139.1401592,35.24147241
 392 139.13994386,35.24154567
 393 139.13992352,35.24155739
 394 139.13986136,35.24160322
 395 139.13977697,35.24166799
 396 139.13969305,35.24172877
 397 139.13960803,35.24176793
 398 139.13948854,35.24176168
 399 139.13936214,35.24177172
 400 139.13928062,35.24175382
 401 139.13920343,35.24168657
 402 139.13909884,35.24164974
 403 139.13898479,35.24163343
 404 139.13887929,35.2416783
 405 139.13876806,35.24172695
 406 139.13869615,35.24173969
 407 139.13857383,35.24174807
 408 139.13845462,35.24175277
 409 139.13841653,35.24176052
 410 139.13828952,35.24176167
 411 139.13819564,35.2417451
 412 139.13807692,35.24174129
 413 139.13795842,35.24172119
 414 139.13785284,35.24168151
 415 139.13774353,35.24165281
 416 139.13766458,35.24158999
 417 139.13765457,35.24159108
 418 139.1375848,35.24150825
 419 139.13753246,35.24142346
 420 139.13752722,35.24141194
 421 139.13748915,35.24132023
 422 139.13748468,35.24121795
 423 139.13747113,35.24117927
 424 139.13742433,35.24109432
 425 139.13736879,35.2410192
 426 139.13735958,35.24102758
 427 139.13734083,35.24103188
 428 139.13733988,35.24103219
 429 139.13727098,35.24096145
 430 139.1371791,35.24090612
 431 139.13707393,35.2408789
 432 139.13695681,35.24084049
 433 139.13686021,35.24078329
 434 139.13685338,35.24073555
 435 139.13681837,35.24064817
 436 139.13677482,35.24056116
 437 139.13667981,35.24053108
 438 139.13657972,35.24048243
 439 139.13647626,35.24046321
 440 139.13635295,35.2404722
 441 139.13624579,35.24044553
 442 139.1361891,35.24044032
 443 139.13608587,35.24047464
 444 139.13601616,35.24050355
 445 139.1359705,35.2404454
 446 139.13571086,35.24043709
 447 139.13551419,35.24034722
 448 139.13544396,35.24042051
 449 139.13540947,35.24043984
 450 139.13530146,35.24041446
 451 139.13520053,35.24036811
 452 139.1350619,35.2403299
 453 139.13497131,35.24029394
 454 139.13491156,35.24028158
 455 139.13480156,35.24024371
 456 139.13468715,35.24020482
 457 139.13458873,35.24015807
 458 139.13448455,35.24011419
 459 139.13443997,35.24008763
 460 139.13433762,35.2400315
 461 139.1342802,35.24002747
 462 139.1341658,35.23999597
 463 139.13406811,35.23994563
 464 139.13403778,35.23991938
 465 139.13397158,35.23984258
 466 139.13391012,35.23975511
 467 139.13380956,35.23971674
 468 139.13374666,35.23971194
 469 139.13375164,35.23965916
 470 139.133671,35.23958255
 471 139.13358901,35.23950968
 472 139.13358107,35.2394972
 473 139.13354451,35.2394016
 474 139.13351969,35.23932072
 475 139.1334843,35.2392222
 476 139.13345241,35.23913034
 477 139.13340988,35.2390974
 478 139.13331421,35.23904145
 479 139.13322027,35.23898802
 480 139.13317017,35.23894515
 481 139.13309986,35.23886837
 482 139.13304269,35.23884531
 483 139.13303675,35.2388272
 484 139.13303703,35.23882559
 485 139.13293397,35.23879171
 486 139.1328866,35.23876541
 487 139.13281151,35.23869217
 488 139.13272124,35.23863375
 489 139.13268266,35.23860981
 490 139.1326021,35.23854514
 491 139.13254486,35.23846614
 492 139.13249473,35.23842225
 493 139.13240365,35.23836245
 494 139.13231884,35.23830791
 495 139.13224581,35.23822963
 496 139.13218065,35.23814676
 497 139.13213976,35.23811779
 498 139.13205156,35.23813034
 499 139.1320595,35.23812991
 500 139.13205944,35.2381295
 501 139.13205973,35.23812924
 502 139.13205966,35.23812894
 503 139.13205926,35.23812879
 504 139.13205932,35.23812821
 505 139.13204179,35.23811385
 506 139.13205612,35.23808916
 507 139.13200518,35.23799634
 508 139.13191915,35.23793841
 509 139.13180207,35.23793064
 510 139.13167978,35.2379181
 511 139.13158465,35.23784501
 512 139.13151492,35.23775161
 513 139.13143224,35.23767657
 514 139.13136863,35.23762035
 515 139.13129391,35.2375362
 516 139.13125583,35.23744455
 517 139.13124898,35.23743949
 518 139.13117577,35.23735655
 519 139.1311091,35.23727472
 520 139.13104577,35.23720097
 521 139.13097722,35.23712527
 522 139.13097283,35.23710215
 523 139.13092167,35.23704229
 524 139.13091874,35.23703639
 525 139.13090216,35.23673748
 526 139.13088573,35.23664369
 527 139.1309102,35.23663617
 528 139.13081352,35.236481
 529 139.13074998,35.23642126
 530 139.13067651,35.23634261
 531 139.13058795,35.23619796
 532 139.13051472,35.23612994
 533 139.13048371,35.2360934
 534 139.13048897,35.23599192
 535 139.13041376,35.23590857
 536 139.13039479,35.23586692
 537 139.13034178,35.23577525
 538 139.13026307,35.23571285
 539 139.13018574,35.23564104
 540 139.13006293,35.23549464
 541 139.13000494,35.23547024
 542 139.12989919,35.23543595
 543 139.12986796,35.23541651
 544 139.12985489,35.23535927
 545 139.1298176,35.23526114
 546 139.12976567,35.23517387
 547 139.12976803,35.2351028
 548 139.12972676,35.2350153
 549 139.12972386,35.23492419
 550 139.12971611,35.23486872
 551 139.12960355,35.2348252
 552 139.12951025,35.23480247
 553 139.1294235,35.23474459
 554 139.12941652,35.23473585
 555 139.12930302,35.23470065
 556 139.12921013,35.23462498
 557 139.12917008,35.23458055
 558 139.12910934,35.23449855
 559 139.12906189,35.23445925
 560 139.12896266,35.23441903
 561 139.12902279,35.23429158
 562 139.1290372,35.23434574
 563 139.12901313,35.23435433
 564 139.1289907,35.23425896
 565 139.12898457,35.23421375
 566 139.12903269,35.23416274
 567 139.129076,35.23407555
 568 139.12903564,35.23403802
 569 139.12906181,35.23394744
 570 139.12907351,35.23389248
 571 139.12913249,35.23380767
 572 139.12911364,35.2337297
 573 139.12904335,35.23364975
 574 139.12902602,35.23362229
 575 139.1290823,35.2335093
 576 139.12909672,35.23346274
 577 139.12909672,35.23346287
 578 139.12910007,35.23346763
 579 139.1290858,35.23346542
 580 139.12908582,35.23346548
 581 139.12908887,35.23344749
 582 139.12908843,35.23344754
 583 139.1290884,35.23344761
 584 139.12908747,35.2334469
 585 139.12908746,35.23344693
 586 139.12908775,35.23344719
 587 139.12908775,35.23344719
 588 139.12908865,35.23381037
 589 139.12913127,35.23389393
 590 139.12910663,35.23399012
 591 139.12902467,35.23420197
 592 139.12898062,35.2342927
 593 139.12902925,35.23437839
 594 139.12906412,35.23447302
 595 139.12911953,35.23455284
 596 139.12910948,35.23464932
 597 139.12909118,35.23474965
 598 139.12907447,35.23484397
 599 139.12897899,35.23479696
 600 139.12881022,35.23499855
 601 139.12879975,35.2353428
 602 139.12871052,35.23540708
 603 139.12872977,35.23550097
 604 139.1286444,35.23567222
 605 139.1288392,35.23575478
 606 139.12879854,35.23584164
 607 139.12868528,35.23588694
 608 139.12849612,35.23581422
 609 139.12859716,35.23586696
 610 139.1289538,35.23592991
 611 139.12891489,35.23601489
 612 139.12884912,35.23609938
 613 139.1288394,35.23619712
 614 139.12872727,35.2362375
 615 139.12859915,35.23623931
 616 139.12848302,35.23623739
 617 139.12840474,35.23616888
 618 139.12834632,35.23609114
 619 139.12826317,35.23602129
 620 139.12816396,35.23596036
 621 139.12807154,35.23589379
 622 139.12794726,35.23599429
 623 139.12783502,35.23598991
 624 139.1277818,35.23590318
 625 139.12768519,35.23585016
 626 139.12758501,35.23579389
 627 139.12749795,35.2357211
 628 139.12750355,35.23562721
 629 139.12763469,35.23563982
 630 139.12776324,35.23564842
 631 139.12780746,35.23555344
 632 139.127839,35.23546567
 633 139.12788958,35.23542061
 634 139.1279701,35.23535647
 635 139.12802099,35.23534202
 636 139.12800667,35.23541042
 637 139.12801317,35.23539849
 638 139.12801382,35.23539755
 639 139.12801364,35.2353986
 640 139.12801384,35.23539856
 641 139.128016233,35.2353966236
 642 139.128016233,35.2353966236
 643 139.12801376,35.235398
 644 139.12801347,35.23539734
 645 139.12809237,35.23513975
 646 139.12820819,35.2351523
 647 139.12820619,35.23503102
 648 139.12810439,35.23497344
 649 139.1281395,35.23491864
 650 139.12824966,35.23494671
 651 139.12833835,35.23500533
 652 139.12837094,35.23504384
 653 139.12843023,35.23507314
 654 139.12845832,35.23501791
 655 139.1287266,35.23483837
 656 139.12884874,35.23482057
 657 139.12890733,35.23467843
 658 139.12887605,35.23465555
 659 139.12882725,35.2345679
 660 139.1287467,35.23451766
 661 139.1289788,35.23479033
 662 139.12918605,35.23478991
 663 139.12927462,35.23474663
 664 139.1292884,35.23470966
 665 139.129294,35.2347001
 666 139.12929522,35.23469766
 667 139.12929692,35.23469401
 668 139.12929761,35.23469238
 669 139.12929712,35.23469226
 670 139.12929549,35.23469222
 671 139.12929549,35.23469198
 672 139.12929585,35.23469172
 673 139.12929628,35.23469144
 674 139.12930881,35.23468618
 675 139.12963108,35.23485249
 676 139.12970491,35.23478494
 677 139.12970956,35.23478088
 678 139.12971461,35.23468436
 679 139.1297078,35.23458076
 680 139.12971407,35.2345488
 681 139.12970253,35.2344289
 682 139.12970757,35.23433782
 683 139.12969278,35.23424324
 684 139.12973847,35.23415483
 685 139.12986766,35.2341419
 686 139.13000135,35.23417202
 687 139.13010851,35.23413413
 688 139.13021433,35.2341632
 689 139.1303299,35.23417924
 690 139.1304505,35.23416279
 691 139.13055595,35.23409233
 692 139.13068719,35.23407392
 693 139.13081212,35.23406432
 694 139.13094245,35.23406008
 695 139.13102423,35.23399863
 696 139.13091143,35.23392594
 697 139.13102674,35.23393447
 698 139.13113564,35.23388926
 699 139.13125136,35.23389507
 700 139.13136388,35.23383583
 701 139.13146987,35.23380153
 702 139.1315665,35.23386076
 703 139.13169482,35.23386553
 704 139.13179036,35.23377735
 705 139.13198681,35.23377876
 706 139.13213062,35.23379427
 707 139.13229232,35.23380404
 708 139.13230779,35.23370778
 709 139.13219584,35.2335498
 710 139.13223759,35.23345826
 711 139.13213049,35.23339363
 712 139.13203661,35.23333211
 713 139.1320235,35.2333247
 714 139.1320455,35.23326754
 715 139.13214241,35.23333582
 716 139.13225714,35.23329752
 717 139.13236575,35.23325163
 718 139.13251951,35.23322371
 719 139.13262852,35.23319858
 720 139.13274196,35.23321896
 721 139.13287458,35.23328393
 722 139.13299662,35.23329488
 723 139.13322063,35.23330915
 724 139.13332732,35.23326956
 725 139.13346617,35.23332666
 726 139.13358203,35.23328943
 727 139.13372341,35.23318258
 728 139.13381426,35.23312569
 729 139.13386165,35.23307021
 730 139.13397887,35.2330561
 731 139.13408926,35.23311982
 732 139.13417557,35.23317733
 733 139.13430385,35.23321812
 734 139.13439657,35.2332803
 735 139.1344805,35.23330012
 736 139.13459627,35.23333738
 737 139.13470642,35.23337484
 738 139.13489995,35.23341697
 739 139.13499727,35.23343111
 740 139.13512123,35.23342055
 741 139.13523594,35.2334158
 742 139.1353842,35.23341512
 743 139.13546414,35.23350847
 744 139.13550302,35.23356241
 745 139.13560295,35.23361446
 746 139.13569091,35.23368164
 747 139.13574968,35.23369738
 748 139.13582501,35.23376508
 749 139.13593503,35.23375582
 750 139.13613063,35.23376762
 751 139.13635508,35.23387094
 752 139.13642544,35.23395204
 753 139.13659631,35.2340584
 754 139.13672528,35.23413969
 755 139.13672073,35.23410937
 756 139.13668354,35.23408129
 757 139.13668505,35.23408185
 758 139.13668891,35.23407816
 759 139.13668923,35.23407893
 760 139.13668855,35.23407963
 761 139.13658228,35.23412414
 762 139.13645871,35.23414551
 763 139.13634008,35.23416044
 764 139.13629001,35.23417201
 765 139.13618606,35.23412808
 766 139.13608753,35.23408017
 767 139.13600429,35.23407609
 768 139.13590841,35.23401459
 769 139.13584622,35.23395161
 770 139.13573404,35.23391143
 771 139.13564549,35.2338524
 772 139.13555343,35.23380808
 773 139.13545085,35.23376384
 774 139.13531069,35.2338032
 775 139.13518071,35.23378313
 776 139.13511895,35.23377583
 777 139.1350228,35.23382232
 778 139.13490948,35.23387606
 779 139.13487297,35.23397212
 780 139.1348512,35.23399635
 781 139.13478138,35.23406821
 782 139.13482203,35.23415679
 783 139.13494361,35.23427632
 784 139.1349871,35.23437484
 785 139.13500407,35.23446554
 786 139.13501319,35.23447551
 787 139.1350738,35.23455221
 788 139.13511283,35.23464466
 789 139.13520734,35.23479373
 790 139.13525102,35.23487681
 791 139.13530258,35.23493755
 792 139.13533702,35.23503211
 793 139.13539649,35.23511771
 794 139.13540076,35.23513793
 795 139.13544955,35.23522653
 796 139.1354725,35.23532984
 797 139.13546169,35.23541679
 798 139.13549794,35.23550313
 799 139.13551073,35.23560138
 800 139.13549998,35.2357034
 801 139.13549403,35.23571303
 802 139.13551498,35.2358027
 803 139.13548812,35.23590538
 804 139.13548233,35.23595255
 805 139.13547159,35.23604627
 806 139.13549671,35.23615295
 807 139.13551731,35.23619177
 808 139.13558116,35.23629917
 809 139.13565899,35.23637467
 810 139.13576739,35.23641305
 811 139.13582519,35.23643056
 812 139.13586362,35.23653042
 813 139.1358272,35.23655552
 814 139.13582716,35.23655535
 815 139.13582689,35.23655576
 816 139.13578195,35.23664322
 817 139.13572233,35.2367314
 818 139.13567235,35.23677645
 819 139.1356594,35.23680133
 820 139.13565933,35.23680124
 821 139.13555822,35.23684213
 822 139.13545834,35.23687734
 823 139.13534317,35.23687459
 824 139.13521724,35.2368648
 825 139.13510488,35.23685462
 826 139.13498551,35.23699815
 827 139.13498009,35.23710227
 828 139.13514165,35.2372292
 829 139.13526898,35.2372336
 830 139.13540103,35.23727705
 831 139.13552316,35.23730554
 832 139.13571754,35.23742407
 833 139.13573874,35.23752691
 834 139.13586098,35.23753286
 835 139.13586553,35.2375542
 836 139.13579842,35.2376342
 837 139.13585053,35.23772895
 838 139.13595566,35.23777246
 839 139.13595421,35.23787003
 840 139.13595942,35.23790097
 841 139.13597815,35.23799778
 842 139.13596478,35.23810159
 843 139.13593897,35.23818454
 844 139.13591949,35.23828211
 845 139.13587689,35.23836869
 846 139.13585588,35.23843097
 847 139.1358401,35.23853218
 848 139.13585816,35.23863167
 849 139.13588501,35.23866922
 850 139.1359169,35.23869451
 851 139.13595581,35.23870719
 852 139.13595624,35.23880981
 853 139.13593774,35.23890709
 854 139.13589052,35.23899541
 855 139.13581569,35.23909914
 856 139.13574104,35.23917943
 857 139.13563799,35.23921533
 858 139.13555938,35.23921341
 859 139.13544206,35.23921163
 860 139.13532017,35.23922691
 861 139.13528669,35.2392307
 862 139.13517103,35.23928
 863 139.13506839,35.23933712
 864 139.13500952,35.23940141
 865 139.13496105,35.23949191
 866 139.13489792,35.23957993
 867 139.13493659,35.23965906
 868 139.13499446,35.23974394
 869 139.13502395,35.23984602
 870 139.13512648,35.23989045
 871 139.13523917,35.23989197
 872 139.13532114,35.23992916
 873 139.13538139,35.24000585
 874 139.13546883,35.24007908
 875 139.13552157,35.2401663
 876 139.13552968,35.2402044
 877 139.13552369,35.2403107
 878 139.13557892,35.24036153
 879 139.13599374,35.24051331
 880 139.1361041,35.24048136
 881 139.1362256,35.24048818
 882 139.1364092,35.24050134
 883 139.13653428,35.24052618
 884 139.13664189,35.24054784
 885 139.1366665,35.24055958
 886 139.13678603,35.24055764
 887 139.13689637,35.24062382
 888 139.13692954,35.2406593
 889 139.1370011,35.24073096
 890 139.13708646,35.2408012
 891 139.13719577,35.24088864
 892 139.13727047,35.24096765
 893 139.13734649,35.24103909
 894 139.1373862,35.24114278
 895 139.13742115,35.2412364
 896 139.13743544,35.24125754
 897 139.13743854,35.24134947
 898 139.1375156,35.24142965
 899 139.13752121,35.24143578
 900 139.13757242,35.24152808
 901 139.13768589,35.24156635
 902 139.13771962,35.2415828
 903 139.1378162,35.24162633
 904 139.13791415,35.24167956
 905 139.1380165,35.24172386
 906 139.13816754,35.24174822
 907 139.13827905,35.24176807
 908 139.13846357,35.24179672
 909 139.13860129,35.24180342
 910 139.13873419,35.24177506
 911 139.13885229,35.24175282
 912 139.1390644,35.24175864
 913 139.13917322,35.24177204
 914 139.13920251,35.24180222
 915 139.13930133,35.24184311
 916 139.13943063,35.24184663
 917 139.13955211,35.24185688
 918 139.13960279,35.2418644
 919 139.13972165,35.24184367
 920 139.13980795,35.24178299
 921 139.13990779,35.24179239
 922 139.13994665,35.24170705
 923 139.14005487,35.24165884
 924 139.1402585,35.2416345
 925 139.14037431,35.24161878
 926 139.14053744,35.24162159
 927 139.14065137,35.24163446
 928 139.14075438,35.24164898
 929 139.14086797,35.24162344
 930 139.14087119,35.24162085
 931 139.14098692,35.2416444
 932 139.14109322,35.24167267
 933 139.14116834,35.24166106
 934 139.14127746,35.24167924
 935 139.14139239,35.24170596
 936 139.14150479,35.2417378
 937 139.14153053,35.24174298
 938 139.1416257,35.24168224
 939 139.14169914,35.24161262
 940 139.14185023,35.24175485
 941 139.14196445,35.24180197
 942 139.14205026,35.24186373
 943 139.14215789,35.24190242
 944 139.14238304,35.24197545
 945 139.14248967,35.2420138
 946 139.14259949,35.24202442
 947 139.14277478,35.24196635
 948 139.14286928,35.24191375
 949 139.14292611,35.24183014
 950 139.14296014,35.24174076
 951 139.14298626,35.24164512
 952 139.14299248,35.24154452
 953 139.14302318,35.24145662
 954 139.14308496,35.24137623
 955 139.14314199,35.24129676
 956 139.1432477,35.24133952
 957 139.1432896,35.24139114
 958 139.14353347,35.24149013
 959 139.14364478,35.24147418
 960 139.14366419,35.24147303
 961 139.14379732,35.24151296
 962 139.14392559,35.24152524
 963 139.14400368,35.24158657
 964 139.14406261,35.24167239
 965 139.14409989,35.24176997
 966 139.14420248,35.24171264
 967 139.14433611,35.24174751
 968 139.14437512,35.24176669
 969 139.14444396,35.24184393
 970 139.14453989,35.24181328
 971 139.14470635,35.24177859
 972 139.14483796,35.24176708
 973 139.14492186,35.24176031
 974 139.14503262,35.24180388
 975 139.14512495,35.24181175
 976 139.14519361,35.24174075
 977 139.14531082,35.24172464
 978 139.14537271,35.24171915
 979 139.14548274,35.24167499
 980 139.14558988,35.24164034
 981 139.14573009,35.24156982
 982 139.14584795,35.2415677
 983 139.14593423,35.24149922
 984 139.14595066,35.24149555
 985 139.14600477,35.2413859
 986 139.14605644,35.24129815
 987 139.14618092,35.24127607
 988 139.14628958,35.24129233
 989 139.14638285,35.24134663
 990 139.14646777,35.24141342
 991 139.14656201,35.24148879
 992 139.14658127,35.2415831
 993 139.14662123,35.24167725
 994 139.14675699,35.24165511
 995 139.14683663,35.24168258
 996 139.1468944,35.24177862
 997 139.14694665,35.24186787
 998 139.14698944,35.24195777
 999 139.1469894,35.2420862
1000 139.14703713,35.24217493
1001 139.14706072,35.24226745
1002 139.14707875,35.24229635
1003 139.14712189,35.24238726
1004 139.14713647,35.24247963
1005 139.14715881,35.24250619
1006 139.14724193,35.24258165
1007 139.1472897,35.24267237
1008 139.14732346,35.24269632
1009 139.14738055,35.24278285
1010 139.14744733,35.24287083
1011 139.14746279,35.24290081
1012 139.14751762,35.24300817
1013 139.14755396,35.24309623
1014 139.14774903,35.2431478
1015 139.14760641,35.24337295
1016 139.14771716,35.24340383
1017 139.14784308,35.24342878
1018 139.14788059,35.24351988
1019 139.1479377,35.2436195
1020 139.1479772,35.2435998
1021 139.14800301,35.24369721
1022 139.14806892,35.24377543
1023 139.14812794,35.24386082
1024 139.14813184,35.24396489
1025 139.14819657,35.2440481
1026 139.14817002,35.24414647
1027 139.14816906,35.24420737
1028 139.14827238,35.24425849
1029 139.14835729,35.24432134
1030 139.14838746,35.24451472
1031 139.14845922,35.24459113
1032 139.14850303,35.2446848
1033 139.14857841,35.24473096
1034 139.14865919,35.24480088
1035 139.14869993,35.24488775
1036 139.14873229,35.2448806
1037 139.14878378,35.24496546
1038 139.14880876,35.24506104
1039 139.14890115,35.24513459
1040 139.14890367,35.24519554
1041 139.14881127,35.24526232
1042 139.14880681,35.24537512
1043 139.14889814,35.24543463
1044 139.14898004,35.24546017
1045 139.14907577,35.24551803
1046 139.14911982,35.24561979
1047 139.14909618,35.24563686
1048 139.14900787,35.24572206
1049 139.14899284,35.24583614
1050 139.14903308,35.24592295
1051 139.14915909,35.24591593
1052 139.1492416,35.2459786
1053 139.14934331,35.24604998
1054 139.14939362,35.24606685
1055 139.14937231,35.24617187
1056 139.14930492,35.24624637
1057 139.14930497,35.24627095
1058 139.14932301,35.24636934
1059 139.1493893,35.24644817
1060 139.14947223,35.24651682
1061 139.14956938,35.24659016
1062 139.14971074,35.24673586
1063 139.14984031,35.24675632
1064 139.14994933,35.24673427
1065 139.15007048,35.24678862
1066 139.15013466,35.24676153
1067 139.15025077,35.24676337
1068 139.15038579,35.24673785
1069 139.15053382,35.24675238
1070 139.15068033,35.24673806
1071 139.15079929,35.24672203
1072 139.15084231,35.24676722
1073 139.15095298,35.24677024
1074 139.15105556,35.24673784
1075 139.15119894,35.24674462
1076 139.15130652,35.24678489
1077 139.15137476,35.246778
1078 139.1514174,35.24687148
1079 139.15140944,35.24700763
1080 139.15159142,35.24692677
1081 139.15172196,35.24693508
1082 139.15177868,35.24695885
1083 139.15175704,35.24704288
1084 139.15196138,35.24731617
1085 139.15209007,35.24731148
1086 139.15220748,35.24738517
1087 139.15232373,35.24741515
1088 139.15244175,35.24740272
1089 139.1525653,35.24742653
1090 139.15262259,35.24743228
1091 139.15274896,35.24745248
1092 139.15284408,35.24750736
1093 139.15296708,35.24748701
1094 139.15308846,35.24750466
1095 139.15320787,35.24752086
1096 139.15329778,35.24753351
1097 139.15340985,35.24757042
1098 139.15365462,35.24754678
1099 139.15367736,35.24753989
1100 139.15380112,35.24755787
1101 139.15391814,35.24757276
1102 139.15405782,35.24756716
1103 139.15411618,35.24755197
1104 139.15422203,35.24759735
1105 139.15435288,35.24761474
1106 139.15440654,35.24763005
1107 139.15452928,35.24763574
1108 139.15487113,35.24761084
1109 139.15498216,35.24764913
1110 139.15508823,35.24761113
1111 139.15524346,35.24760245
1112 139.15528502,35.24761187
1113 139.15538535,35.247675
1114 139.15548261,35.24776269
1115 139.1553173,35.24781624
1116 139.1552938,35.24791254
1117 139.15525167,35.24800313
1118 139.15525896,35.2480976
1119 139.15528224,35.24818768
1120 139.15529557,35.24823606
1121 139.15532614,35.24834817
1122 139.15534343,35.24846065
1123 139.15531592,35.24852408
1124 139.15525436,35.24860027
1125 139.15525852,35.24870206
1126 139.15521695,35.24874545
1127 139.15522742,35.24881522
1128 139.15524582,35.24881796
1129 139.15527568,35.24891207
1130 139.15530743,35.24900995
1131 139.15534006,35.24910242
1132 139.15535286,35.24911781
1133 139.15538788,35.24921206
1134 139.15538266,35.24930249
1135 139.15539706,35.24939399
1136 139.15541318,35.2494732
1137 139.15536164,35.24957471
1138 139.15530841,35.24965472
1139 139.15532112,35.24975514
1140 139.15535865,35.24984609
1141 139.15537328,35.24985512
1142 139.1553652,35.24994584
1143 139.15531483,35.25005017
1144 139.1553855,35.25013731
1145 139.15543042,35.25022352
1146 139.15543958,35.25032384
1147 139.15540582,35.25036425
1148 139.15541416,35.25046378
1149 139.1553501,35.25054377
1150 139.1551271,35.2505371
1151 139.15492286,35.25051691
1152 139.15488491,35.25053499
1153 139.15447613,35.25078924
1154 139.15434684,35.2507732
1155 139.15423405,35.25077164
1156 139.154206,35.25076171
1157 139.15409785,35.25072426
1158 139.15397685,35.25072492
1159 139.15389268,35.25070395
1160 139.15377582,35.25070825
1161 139.15365426,35.25068691
1162 139.15362807,35.25068732
1163 139.15361448,35.25064991
1164 139.15358238,35.25065861
1165 139.15357999,35.25065933
1166 139.1535412,35.2507607
1167 139.1536279,35.2510273
1168 139.1535488,35.2510667
1169 139.1535488,35.2510667
1170 139.1535883,35.2509753
1171 139.1535883,35.2509753
1172 139.1536279,35.2510273
1173 139.15312153,35.25118899
1174 139.15318636,35.25111221
1175 139.15321412,35.25103895
1176 139.15311619,35.25103258
1177 139.15313466,35.25103507
1178 139.1532263,35.25110594
1179 139.15330172,35.25114503
1180 139.15329999,35.25104502
1181 139.1535488,35.2510667
1182 139.1535883,35.2509753
1183 139.15350277,35.25089804
1184 139.15349165,35.2508782
1185 139.15344017,35.25083139
1186 139.15347415,35.25074564
1187 139.15363533,35.2507214
1188 139.15372675,35.25078385
1189 139.154023,35.2511166
1190 139.1541416,35.2511291
1191 139.1541416,35.2511291
1192 139.1541416,35.2511291
1193 139.1541416,35.2511291
1194 139.15421881,35.25110648
1195 139.15426034,35.25101943
1196 139.15424742,35.25097793
1197 139.15435722,35.2509644
1198 139.15436667,35.25096071
1199 139.15437995,35.25096556
1200 139.15437165,35.25096654
1201 139.15436816,35.25096252
1202 139.15427121,35.25090511
1203 139.15426837,35.25089734
1204 139.1542434,35.25085094
1205 139.15424118,35.25084957
1206 139.15424015,35.25085031
1207 139.15424146,35.25085139
1208 139.15424274,35.25085178
1209 139.15424798,35.25085504
1210 139.15425124,35.25085526
1211 139.15425247,35.25085552
1212 139.15425321,35.25085538
1213 139.15426215,35.25085057
1214 139.15426351,35.25085068
1215 139.15427294,35.25084439
1216 139.15430321,35.25080285
1217 139.15430622,35.25080419
1218 139.15430898,35.25080418
1219 139.15425963,35.25083595
1220 139.15425431,35.25083915
1221 139.15425271,35.25084007
1222 139.15424647,35.25084362
1223 139.15424321,35.25084567
1224 139.15424066,35.25084756
1225 139.15423621,35.250851
1226 139.15422581,35.25085817
1227 139.1542286,35.25085859
1228 139.15431992,35.2507935
1229 139.15437976,35.25077577
1230 139.15444675,35.25068143
1231 139.15455039,35.2506362
1232 139.15450176,35.25054952
1233 139.15462489,35.25049309
1234 139.15481008,35.25048328
1235 139.15492783,35.25046721
1236 139.15493506,35.25046361
1237 139.15505231,35.25048095
1238 139.1550828,35.25048049
1239 139.15516189,35.2505026
1240 139.15526971,35.25046088
1241 139.15536659,35.25042894
1242 139.15539107,35.25043804
1243 139.15545246,35.25033246
1244 139.15548515,35.25024357
1245 139.15551314,35.2501628
1246 139.15562717,35.25015832
1247 139.15576692,35.25021907
1248 139.15587645,35.25023556
1249 139.15600445,35.25021286
1250 139.15611254,35.25019593
1251 139.15623144,35.25020073
1252 139.15634426,35.25021056
1253 139.1563679,35.25021403
1254 139.15639239,35.25023424
1255 139.15650688,35.250206
1256 139.15656111,35.25021278
1257 139.15667367,35.25021147
1258 139.15676984,35.25022713
1259 139.15685932,35.25022904
1260 139.15690653,35.250292
1261 139.15695022,35.25045418
1262 139.15696341,35.25054449
1263 139.1569832,35.25069938
1264 139.15718383,35.25069264
1265 139.15743233,35.2507186
1266 139.15747298,35.25081127
1267 139.15748927,35.25093667
1268 139.15751243,35.25103366
1269 139.15751696,35.25113582
1270 139.15752763,35.25123439
1271 139.1575106,35.25132909
1272 139.15751429,35.25143044
1273 139.15751223,35.25151999
1274 139.15742703,35.25154277
1275 139.15743386,35.25153758
1276 139.1574138,35.2515411
1277 139.15740333,35.25154602
1278 139.15741614,35.25154181
1279 139.15742894,35.25153812
1280 139.15748158,35.25163475
1281 139.15754933,35.25172136
1282 139.1576192,35.2518294
1283 139.15759634,35.25192204
1284 139.15759958,35.25201926
1285 139.15757819,35.25212433
1286 139.1575955,35.25221496
1287 139.15764921,35.25233578
1288 139.15770323,35.25241684
1289 139.15767297,35.25251504
1290 139.15770164,35.25260288
1291 139.15772218,35.25269298
1292 139.15765699,35.25277229
1293 139.15764877,35.25287084
1294 139.15766043,35.25300696
1295 139.15773963,35.25307929
1296 139.1577632,35.25309749
1297 139.15775025,35.25318868
1298 139.15774899,35.25328754
1299 139.15774911,35.25333061
1300 139.15775653,35.25342714
1301 139.15781476,35.25351015
1302 139.15773029,35.25358475
1303 139.157719,35.25360628
1304 139.15769478,35.25369869
1305 139.15768675,35.25379831
1306 139.15759646,35.25383989
1307 139.15755314,35.25392573
1308 139.1576132,35.25401652
1309 139.15769252,35.25405626
1310 139.15757521,35.25426217
1311 139.15762035,35.25435315
1312 139.15764861,35.25438144
1313 139.15771976,35.25446253
1314 139.1577318,35.25455556
1315 139.1577089,35.25462365
1316 139.1576251,35.25468376
1317 139.15767632,35.25476774
1318 139.15767957,35.2548057
1319 139.15770515,35.25489509
1320 139.15765058,35.25499278
1321 139.15751081,35.25499164
1322 139.15752981,35.25509733
1323 139.15732007,35.25515397
1324 139.15675692,35.25519593
1325 139.15650655,35.25522314
1326 139.156236,35.2553154
1327 139.1563151,35.2554193
1328 139.156236,35.2556737
1329 139.15639614,35.255938
1330 139.15628782,35.2559607
1331 139.15625843,35.25589599
1332 139.15628883,35.25581562
1333 139.15643837,35.25598695
1334 139.15655214,35.25592274
1335 139.15648686,35.25584778
1336 139.15643326,35.25593362
1337 139.15635601,35.25587436
1338 139.15622836,35.25589754
1339 139.15616929,35.25591091
1340 139.15618413,35.25590626
1341 139.1558409,35.2560144
1342 139.1557618,35.2561255
1343 139.1557618,35.2561255
1344 139.15576657,35.25621948
1345 139.1555247,35.2563873
1346 139.1555247,35.2563873
1347 139.15592536,35.25628916
1348 139.15585984,35.25640421
1349 139.15579479,35.25647944
1350 139.15539959,35.25665203
1351 139.15530296,35.25671171
1352 139.15518553,35.25676127
1353 139.15484171,35.25677955
1354 139.15470984,35.25679379
1355 139.15461347,35.25671672
1356 139.15462235,35.25661423
1357 139.15460939,35.25650859
1358 139.1545064,35.25647475
1359 139.15446951,35.25648809
1360 139.15436449,35.25652585
1361 139.15427297,35.25659955
1362 139.15418017,35.25665052
1363 139.15408399,35.25670301
1364 139.15398691,35.25676172
1365 139.15387131,35.25676955
1366 139.153865,35.2567143
1367 139.154247,35.2553716
1368 139.153944,35.2567465
1369 139.153944,35.2567465
1370 139.153944,35.2567465
1371 139.153944,35.2567465
1372 139.153944,35.2568181
1373 139.1539045,35.2568379
1374 139.153944,35.2567465
1375 139.1541729,35.2568121
1376 139.153865,35.2567143
1377 139.153865,35.2567143
1378 139.153865,35.2567143
1379 139.1542346,35.2569149
1380 139.1542346,35.2569149
1381 139.1539835,35.2567984
1382 139.15400329,35.25670388
1383 139.15399437,35.25676278
1384 139.15407486,35.25673284
1385 139.1540805,35.25673982
1386 139.15396085,35.25675872
1387 139.15383078,35.25676307
1388 139.15388109,35.25685718
1389 139.15396049,35.25687669
1390 139.15407978,35.25687856
1391 139.15418819,35.25685178
1392 139.15420791,35.25685117
1393 139.15424585,35.25675806
1394 139.15427428,35.2566549
1395 139.15428892,35.25663914
1396 139.15432086,35.25674138
1397 139.15439496,35.25681021
1398 139.15453023,35.25675268
1399 139.1553864,35.2564922
1400 139.15556054,35.25659709
1401 139.15572749,35.25626218
1402 139.1556828,35.256165
1403 139.15578801,35.2561584
1404 139.1556915,35.25611091
1405 139.15556998,35.25612378
1406 139.15548604,35.25610864
1407 139.1555247,35.2563156
1408 139.1555595,35.25646579
1409 139.1556828,35.256165
1410 139.15576384,35.25608619
1411 139.15575842,35.25597657
1412 139.15576954,35.25593691
1413 139.1558263,35.25591709
1414 139.15579011,35.25582934
1415 139.15578205,35.25581536
1416 139.15566707,35.25580315
1417 139.15555437,35.25578743
1418 139.1554529,35.25576631
1419 139.15543848,35.25571578
1420 139.15532987,35.25574483
1421 139.1551493,35.2562164
1422 139.15586025,35.25617241
1423 139.1558515,35.25627447
1424 139.15591981,35.25634739
1425 139.15596008,35.25655381
1426 139.1560896,35.25672283
1427 139.15626035,35.25722835
1428 139.15645906,35.25755334
1429 139.15660668,35.25766669
1430 139.15665275,35.25768704
1431 139.15676435,35.25773159
1432 139.15686378,35.25787227
1433 139.15693974,35.25795971
1434 139.15703964,35.2580696
1435 139.15719988,35.25825517
1436 139.15730912,35.25844248
1437 139.15742787,35.25859113
1438 139.15748023,35.25868574
1439 139.15765052,35.25891689
1440 139.1577471,35.25905316
1441 139.157829,35.25916722
1442 139.15790898,35.25925174
1443 139.15799095,35.25933463
1444 139.15812922,35.25956518
1445 139.15820576,35.25970244
1446 139.15844256,35.25992165
1447 139.1585665,35.2600736
1448 139.15866605,35.26018692
1449 139.15879517,35.26029405
1450 139.15891055,35.26043844
1451 139.15902211,35.26048796
1452 139.15919613,35.26067289
1453 139.15933823,35.2608468
1454 139.15952592,35.26099234
1455 139.15961056,35.26111683
1456 139.1596969,35.26120274
1457 139.15978515,35.26128249
1458 139.15986897,35.26138212
1459 139.15997407,35.26150455
1460 139.16011992,35.26162112
1461 139.16021725,35.26174027
1462 139.16034388,35.26185205
1463 139.16046986,35.26196361
1464 139.16062455,35.26209946
1465 139.16077295,35.2622302
1466 139.16090857,35.26235137
1467 139.16103088,35.26246987
1468 139.16116814,35.26260043
1469 139.16131586,35.2627396
1470 139.16144937,35.2628746
1471 139.16158447,35.2630154
1472 139.16172895,35.26315262
1473 139.16187894,35.26329826
1474 139.16202687,35.26344502
1475 139.16218509,35.26358591
1476 139.16232422,35.26373877
1477 139.16248435,35.26389273
1478 139.16264255,35.2640413
1479 139.16279872,35.26420014
1480 139.16295946,35.26435326
1481 139.16312688,35.26451685
1482 139.16329513,35.26467123
1483 139.16346069,35.26482452
1484 139.16361413,35.26497174
1485 139.16375532,35.26512655
1486 139.16399352,35.26531062
1487 139.16418354,35.26547759
1488 139.16434719,35.26564241
1489 139.16449863,35.26580201
1490 139.16467655,35.26596582
1491 139.16486783,35.26615579
1492 139.16524349,35.26635608
1493 139.1654523,35.26655314
1494 139.16563652,35.26673092
1495 139.16586413,35.26692659
1496 139.16605943,35.26710553
1497 139.16623516,35.26732698
1498 139.16643153,35.26752184
1499 139.16667958,35.2677098
1500 139.16689344,35.2678761
1501 139.16710323,35.26808315
1502 139.16730594,35.26828471
1503 139.16749761,35.26847416
1504 139.16770564,35.2686754
1505 139.16790852,35.26886491
1506 139.16810588,35.26905698
1507 139.16831886,35.26926097
1508 139.16854198,35.2694705
1509 139.16874758,35.26966658
1510 139.16894913,35.26986728
1511 139.16914725,35.2700534
1512 139.16932292,35.27024896
1513 139.16956316,35.27045989
1514 139.16980931,35.27067923
1515 139.17005316,35.27088751
1516 139.17026489,35.27109467
1517 139.17049574,35.27131161
1518 139.17071446,35.27152212
1519 139.17092532,35.27172854
1520 139.1711348,35.27192909
1521 139.17134192,35.27213389
1522 139.17158898,35.272337
1523 139.17180717,35.2725343
1524 139.17202213,35.27273082
1525 139.17223033,35.27291054
1526 139.17245677,35.27310383
1527 139.17268185,35.27331023
1528 139.17289982,35.27349243
1529 139.17311112,35.2736568
1530 139.17333718,35.27381505
1531 139.17357896,35.27399982
1532 139.17380029,35.27419787
1533 139.17401697,35.27434865
1534 139.1742962,35.27441672
1535 139.17455538,35.27454861
1536 139.17482149,35.27463548
1537 139.17508894,35.27471917
1538 139.17536532,35.2748108
1539 139.17563144,35.27487019
1540 139.17590217,35.27496555
1541 139.17618525,35.27503998
1542 139.17643088,35.27510733
1543 139.1767035,35.27516824
1544 139.1769548,35.27524593
1545 139.17720046,35.27530172
1546 139.17743859,35.27535097
1547 139.17767268,35.27535543
1548 139.17790148,35.2753771
1549 139.17811722,35.27540995
1550 139.1783312,35.27547542
1551 139.17853015,35.2755199
1552 139.17872622,35.27555496
1553 139.17889994,35.27557264
1554 139.17901878,35.27557856
1555 139.17912994,35.27560565
1556 139.1793566,35.27565555
1557 139.17953556,35.27575475
1558 139.17966299,35.27575791
1559 139.1797914,35.27578643
1560 139.17991541,35.27579066
1561 139.18007745,35.27581281
1562 139.18023007,35.27583746
1563 139.18038594,35.27584283
1564 139.18049474,35.27582931
1565 139.18059402,35.2758778
1566 139.18071411,35.27592931
1567 139.18085697,35.2759816
1568 139.18110814,35.2759869
1569 139.18122329,35.27599961
1570 139.18133701,35.27598854
1571 139.18154893,35.27601457
1572 139.18176339,35.27603752
1573 139.18192215,35.27608648
1574 139.18206589,35.27612233
1575 139.1822056,35.27614025
1576 139.18235592,35.27616076
1577 139.18249363,35.2761856
1578 139.18264869,35.27622584
1579 139.1827794,35.27626586
1580 139.18294073,35.27627245
1581 139.18310743,35.27630197
1582 139.18328811,35.27636268
1583 139.18349383,35.27643441
1584 139.18375076,35.27652194
1585 139.18392519,35.27654638
1586 139.18406118,35.2765157
1587 139.18423792,35.27653353
1588 139.1844833,35.27658638
1589 139.18467273,35.27660379
1590 139.18486256,35.27663248
1591 139.18507296,35.27666267
1592 139.1852916,35.27669701
1593 139.18549506,35.27673498
1594 139.18569518,35.27676753
1595 139.18590389,35.2767999
1596 139.18614749,35.27682394
1597 139.18639254,35.27686128
1598 139.18660869,35.27689232
1599 139.18683665,35.27694436
1600 139.18708889,35.27700811
1601 139.18730975,35.27702564
1602 139.1875534,35.2770659
1603 139.18781024,35.277102
1604 139.18804646,35.27715491
1605 139.1882914,35.2771975
1606 139.18855045,35.27723208
1607 139.18881301,35.27727297
1608 139.18906536,35.27731343
1609 139.18932928,35.27735142
1610 139.18959557,35.27739593
1611 139.18988015,35.27743975
1612 139.19016699,35.27748758
1613 139.19043746,35.27754303
1614 139.19072559,35.27760046
1615 139.19100069,35.27763467
1616 139.19159089,35.27771394
1617 139.19181398,35.27773409
1618 139.19203458,35.27777476
1619 139.1923928,35.27783414
1620 139.19270873,35.27788049
1621 139.1930113,35.27793227
1622 139.19336142,35.27799861
1623 139.19365719,35.27804659
1624 139.1939685,35.27810706
1625 139.19427208,35.27815511
1626 139.19459506,35.27820161
1627 139.19490159,35.27825158
1628 139.19520762,35.27830071
1629 139.19551693,35.27835144
1630 139.19583665,35.27841977
1631 139.19615417,35.27847666
1632 139.19648819,35.27854735
1633 139.19680368,35.27858398
1634 139.19712287,35.2786192
1635 139.19744364,35.27866242
1636 139.19777876,35.27871771
1637 139.19813535,35.27876628
1638 139.19847364,35.2788196
1639 139.1988184,35.27887797
1640 139.1991489,35.27893973
1641 139.19943909,35.27893047
1642 139.19978835,35.2789552
1643 139.20015128,35.27901024
1644 139.20048857,35.279065
1645 139.20080803,35.27912032
1646 139.20113602,35.27917534
1647 139.20146576,35.27923236
1648 139.20180347,35.27928361
1649 139.20214073,35.27934565
1650 139.20250597,35.27941643
1651 139.20283714,35.27946492
1652 139.20316064,35.27951235
1653 139.20350843,35.27957481
1654 139.20386264,35.2796337
1655 139.20420633,35.27969256
1656 139.20487557,35.27978646
1657 139.20522681,35.27984965
1658 139.20557911,35.27993493
1659 139.20591087,35.27999073
1660 139.20623891,35.28004507
1661 139.20656945,35.28010156
1662 139.20691133,35.28013648
1663 139.2072083,35.28017911
1664 139.20749984,35.28026335
1665 139.20783278,35.28032802
1666 139.20815252,35.28040424
1667 139.20838533,35.28041597
1668 139.20863202,35.28043694
1669 139.2088739,35.28048233
1670 139.20917363,35.28056701
1671 139.20945316,35.28064604
1672 139.20973166,35.28070499
1673 139.21000816,35.28076424
1674 139.21026938,35.2808174
1675 139.21051197,35.28088028
1676 139.21077133,35.2809398
1677 139.21104591,35.28099535
1678 139.21127407,35.2810307
1679 139.21150976,35.2810707
1680 139.21175687,35.28110457
1681 139.21199765,35.28115035
1682 139.21222091,35.28119205
1683 139.21243697,35.28123274
1684 139.21264106,35.2812706
1685 139.21282686,35.28131832
1686 139.21300419,35.28133576
1687 139.21316729,35.28136348
1688 139.21334211,35.2813954
1689 139.21349422,35.28142838
1690 139.21364363,35.28146571
1691 139.21377094,35.28149673
1692 139.21390381,35.28149993
1693 139.21403164,35.28152587
1694 139.21416092,35.28154267
1695 139.2142714,35.28156698
1696 139.21439103,35.28159707
1697 139.21450089,35.28161966
1698 139.21467322,35.28163896
1699 139.21487035,35.28166971
1700 139.21508343,35.28171465
1701 139.21521496,35.28171088
1702 139.21537322,35.28174008
1703 139.21545737,35.28180006
1704 139.21557313,35.28180473
1705 139.21558743,35.28181443
1706 139.21569306,35.28182861
1707 139.21587012,35.28186599
1708 139.21602544,35.28186382
1709 139.21621376,35.28188634
1710 139.21652232,35.28191573
1711 139.21668125,35.2819567
1712 139.21681032,35.28196225
1713 139.21693223,35.28197308
1714 139.21705819,35.2819934
1715 139.21720266,35.28202872
1716 139.2173563,35.28205568
1717 139.21752354,35.28210009
1718 139.21769949,35.28214113
1719 139.2178688,35.28218403
1720 139.21804745,35.28223178
1721 139.21821439,35.28228283
1722 139.21836486,35.28234728
1723 139.21877252,35.28247589
1724 139.21891414,35.2825447
1725 139.21909985,35.2826107
1726 139.21928556,35.28269234
1727 139.21947224,35.28276348
1728 139.21966686,35.28284016
1729 139.21984731,35.2829296
1730 139.2200488,35.28301253
1731 139.22025732,35.28309549
1732 139.22048312,35.28318332
1733 139.22072194,35.28327717
1734 139.22094043,35.28335809
1735 139.22115724,35.28341837
1736 139.22137647,35.2834957
1737 139.22158436,35.28362071
1738 139.22180871,35.2837379
1739 139.2220031,35.28384867
1740 139.22224992,35.28394217
1741 139.22246627,35.28404222
1742 139.22293675,35.28424939
1743 139.22318551,35.2843532
1744 139.22342861,35.28441305
1745 139.22368194,35.28451762
1746 139.22396028,35.2846472
1747 139.22420676,35.28467699
1748 139.22440327,35.28486988
1749 139.22466301,35.28502525
1750 139.22488271,35.2852016
1751 139.22512013,35.28536026
1752 139.22537023,35.28550559
1753 139.22558596,35.28566461
1754 139.22580149,35.28581687
1755 139.22626892,35.28613093
1756 139.22675468,35.28643597
1757 139.22700765,35.28658268
1758 139.22726486,35.2867222
1759 139.22740904,35.28686489
1760 139.2276487,35.28704387
1761 139.22789986,35.28721694
1762 139.22815985,35.28738321
1763 139.228409,35.28757352
1764 139.22864588,35.28774468
1765 139.22909793,35.28812465
1766 139.22938256,35.28828726
1767 139.22965566,35.28845244
1768 139.2298923,35.28862772
1769 139.23014222,35.2887932
1770 139.23038801,35.28896482
1771 139.23064674,35.28914461
1772 139.23090036,35.28931606
1773 139.23146053,35.28964789
1774 139.23176529,35.28985863
1775 139.23199116,35.28992739
1776 139.23227773,35.2901198
1777 139.23259209,35.29027289
1778 139.23294096,35.29036073
1779 139.23323519,35.29050489
1780 139.2335281,35.29062979
1781 139.23381867,35.29077426
1782 139.23443919,35.29104504
1783 139.23476854,35.29115519
1784 139.23508802,35.29128737
1785 139.23539231,35.29141332
1786 139.23572427,35.2915381
1787 139.23605181,35.29167284
1788 139.2363691,35.29179957
1789 139.2367372,35.2922736
1790 139.23699736,35.29206535
1791 139.23731479,35.29219101
1792 139.23762753,35.2923222
1793 139.23795032,35.29246679
1794 139.23830722,35.29258728
1795 139.2386489,35.2927104
1796 139.23897154,35.29282836
1797 139.23928535,35.29295779
1798 139.23960502,35.29307703
1799 139.23993392,35.29319776
1800 139.24024863,35.29332192
1801 139.24092271,35.29360181
1802 139.2412507,35.2937257
1803 139.24156221,35.293859
1804 139.24189418,35.2939872
1805 139.24223477,35.29410878
1806 139.2425574,35.29424726
1807 139.24287704,35.29435103
1808 139.24318727,35.29446529
1809 139.24351232,35.29456163
1810 139.24381328,35.29467683
1811 139.24416409,35.2947888
1812 139.24449463,35.29485505
1813 139.24479789,35.29496098
1814 139.24512396,35.29507216
1815 139.24545906,35.29515208
1816 139.24578311,35.29525598
1817 139.24610647,35.29533594
1818 139.24676218,35.29550803
1819 139.24707759,35.29557361
1820 139.24738451,35.29564189
1821 139.24768088,35.29571898
1822 139.24829682,35.29585995
1823 139.2485962,35.29594825
1824 139.24887347,35.29606725
1825 139.24916515,35.29613514
1826 139.24944075,35.29623934
1827 139.24973447,35.2963042
1828 139.25002858,35.29639214
1829 139.250297,35.29645543
1830 139.25056748,35.29651342
1831 139.25082151,35.29656444
1832 139.25110138,35.29661828
1833 139.25136503,35.29667264
1834 139.25161034,35.29673635
1835 139.25182838,35.29682887
1836 139.25207099,35.2968876
1837 139.25229497,35.29698496
1838 139.25253097,35.29706789
1839 139.25278257,35.29711697
1840 139.25302019,35.29715628
1841 139.25325555,35.29716382
1842 139.25347559,35.29721199
1843 139.2537089,35.29729632
1844 139.25397755,35.29732065
1845 139.25417076,35.29738105
1846 139.25437928,35.29744588
1847 139.2545709,35.29752065
1848 139.25475594,35.29759602
1849 139.25495028,35.29765766
1850 139.25508739,35.2977413
1851 139.25527162,35.29779544
1852 139.25544703,35.29784911
1853 139.25557183,35.29791587
1854 139.25570917,35.29797148
1855 139.25582178,35.29802848
1856 139.25596166,35.29807884
1857 139.25606953,35.29811083
1858 139.25636718,35.29824885
1859 139.25653747,35.29833562
1860 139.25669501,35.29839089
1861 139.25680168,35.2984271
1862 139.2569352,35.29848641
1863 139.25708488,35.29856829
1864 139.25719556,35.29861223
1865 139.25729943,35.29866645
1866 139.25739981,35.29864438
1867 139.25748296,35.29873113
1868 139.25737177,35.29875252
1869 139.25733476,35.29886825
1870 139.25741939,35.2989153
1871 139.25719752,35.29883948
1872 139.2575986,35.2990656
1873 139.25804609,35.29906678
1874 139.25818232,35.29912146
1875 139.25836272,35.29911746
1876 139.2585456,35.29921284
1877 139.25876582,35.29928074
1878 139.25889587,35.29931461
1879 139.25902064,35.29932623
1880 139.25915533,35.29939984
1881 139.25929712,35.29944817
1882 139.25942099,35.29949527
1883 139.25955912,35.29956048
1884 139.25970523,35.29962428
1885 139.25987032,35.29969037
1886 139.26001911,35.29974719
1887 139.26016194,35.29979424
1888 139.2603315,35.29985196
1889 139.26051207,35.29994236
1890 139.26067832,35.30001142
1891 139.26086264,35.3001018
1892 139.26104903,35.30019079
1893 139.26126608,35.30029731
1894 139.26145511,35.30033543
1895 139.2616849,35.30046693
1896 139.26182192,35.30047482
1897 139.26201926,35.30055307
1898 139.26224372,35.30063615
1899 139.26244608,35.30071414
1900 139.26265933,35.300801
1901 139.26291032,35.30095313
1902 139.26334775,35.30115888
1903 139.26357604,35.30125407
1904 139.26377376,35.30128188
1905 139.26399754,35.30137364
1906 139.26448,35.30158773
1907 139.26493382,35.30174857
1908 139.26518928,35.3018406
1909 139.26544963,35.30195876
1910 139.26569237,35.30207078
1911 139.26594233,35.30217392
1912 139.26620011,35.30229316
1913 139.2664651,35.30240906
1914 139.2667157,35.3025156
1915 139.26698616,35.30261563
1916 139.26724987,35.30272498
1917 139.26752023,35.30283788
1918 139.26777961,35.30293658
1919 139.26806675,35.30305086
1920 139.26833265,35.30317522
1921 139.26861047,35.30327209
1922 139.2688973,35.30339065
1923 139.26916299,35.30349797
1924 139.26943901,35.30362836
1925 139.26972433,35.30373141
1926 139.27000682,35.30382492
1927 139.27030449,35.30394844
1928 139.27057145,35.30406946
1929 139.2708632,35.30416556
1930 139.27148974,35.30438252
1931 139.27178673,35.30446078
1932 139.2720896,35.30458408
1933 139.2724208,35.30469212
1934 139.27307254,35.30483556
1935 139.27341018,35.30484834
1936 139.27373138,35.30494535
1937 139.27403632,35.30497923
1938 139.27438724,35.30508462
1939 139.27469213,35.30514518
1940 139.27502555,35.30519421
1941 139.27533361,35.30522339
1942 139.27566725,35.30524781
1943 139.27598952,35.30528541
1944 139.27631687,35.30531814
1945 139.27665048,35.30535879
1946 139.27698413,35.30539422
1947 139.2773289,35.3054314
1948 139.27765334,35.30548075
1949 139.27796028,35.30550288
1950 139.2783054,35.30555572
1951 139.2789689,35.30568382
1952 139.27929811,35.30571108
1953 139.27963464,35.3057328
1954 139.27997081,35.30578147
1955 139.28029857,35.30581081
1956 139.28061818,35.30581831
1957 139.28096344,35.30590063
1958 139.28130108,35.30592276
1959 139.28165065,35.30594666
1960 139.28201802,35.30596897
1961 139.2823739,35.30601609
1962 139.28273431,35.30607132
1963 139.2830524,35.30610467
1964 139.28339727,35.30615432
1965 139.28373347,35.30619905
1966 139.28406499,35.30623022
1967 139.28440908,35.30626579
1968 139.28474573,35.30629133
1969 139.28507772,35.30632845
1970 139.28573736,35.30641397
1971 139.28606728,35.30644824
1972 139.28674429,35.30653444
1973 139.2871176,35.30654004
1974 139.28741673,35.30661657
1975 139.28777233,35.30666223
1976 139.28809968,35.30669984
1977 139.28841721,35.30673339
1978 139.28874906,35.30679021
1979 139.28906244,35.30682053
1980 139.28939841,35.3068773
1981 139.28970773,35.30693676
1982 139.29000938,35.30698817
1983 139.29032605,35.30702355
1984 139.29065933,35.30707642
1985 139.29096091,35.30710576
1986 139.29126334,35.30712589
1987 139.29189746,35.30718657
1988 139.29220667,35.30723964
1989 139.29250584,35.30726581
1990 139.29311531,35.3073392
1991 139.29340667,35.30737528
1992 139.29372231,35.30741289
1993 139.29401814,35.30744685
1994 139.29432817,35.30748604
1995 139.29462038,35.30751966
1996 139.29491548,35.30756174
1997 139.29521286,35.30757758
1998 139.29550274,35.30760932
1999 139.29584007,35.30766274
2000 139.29644754,35.30775502
2001 139.29675442,35.30779061
2002 139.29708572,35.30784484
2003 139.29737961,35.30788378
2004 139.29769,35.30792222
2005 139.29798795,35.30795919
2006 139.29828525,35.3079969
2007 139.2985878,35.30803067
2008 139.29888751,35.30806566
2009 139.29917905,35.30810485
2010 139.2994799,35.30815295
2011 139.29978555,35.30819425
2012 139.3000974,35.30823045
2013 139.30069725,35.30830018
2014 139.30099149,35.30833697
2015 139.30128832,35.30837537
2016 139.3015756,35.30841704
2017 139.30184475,35.30845828
2018 139.30212589,35.30848883
2019 139.30240017,35.30851734
2020 139.30271073,35.30855631
2021 139.30300688,35.30859215
2022 139.30359976,35.30866383
2023 139.30418195,35.30871205
2024 139.30446214,35.30874433
2025 139.30477089,35.30878885
2026 139.30535704,35.30885535
2027 139.30564002,35.30890825
2028 139.30590894,35.3089169
2029 139.30619284,35.30895149
2030 139.30648892,35.30897299
2031 139.30677656,35.30901206
2032 139.30706149,35.30904084
2033 139.3073452,35.30910389
2034 139.30761255,35.30915779
2035 139.30791182,35.30919232
2036 139.30843507,35.30923287
2037 139.30897604,35.30940633
2038 139.30923838,35.30943353
2039 139.30951045,35.30949297
2040 139.31002803,35.3095916
2041 139.31027976,35.30967707
2042 139.31055707,35.30979081
2043 139.31075327,35.30987732
2044 139.31095552,35.30995863
2045 139.311181,35.31005625
2046 139.31137798,35.31014417
2047 139.31158418,35.31025957
2048 139.31175804,35.310341
2049 139.31187805,35.31043908
2050 139.31204747,35.3105193
2051 139.312216,35.31061807
2052 139.31235803,35.31072867
2053 139.31251436,35.31077742
2054 139.31263844,35.31085083
2055 139.31272703,35.31095328
2056 139.31283983,35.31102747
2057 139.31293681,35.31111814
2058 139.31302157,35.31119375
2059 139.3131078,35.31127238
2060 139.31321435,35.31139914
2061 139.31333399,35.31145252
2062 139.31343987,35.311541
2063 139.31355514,35.31160438
2064 139.3136566,35.31164835
2065 139.31379953,35.31171034
2066 139.31388549,35.31171671
2067 139.31398331,35.31181149
2068 139.31409212,35.31186353
2069 139.31420299,35.31191578
2070 139.31426295,35.31201472
2071 139.31432219,35.31203284
2072 139.31451104,35.31209578
2073 139.31458279,35.31216713
2074 139.31473954,35.3122249
2075 139.31481901,35.31225222
2076 139.31490568,35.31234255
2077 139.31500315,35.31240437
2078 139.31510493,35.31246959
2079 139.31521644,35.31255657
2080 139.31532566,35.31264932
2081 139.31544115,35.31272604
2082 139.31553091,35.31278488
2083 139.3156444,35.31286139
2084 139.31576817,35.31295533
2085 139.31588633,35.3130121
2086 139.31600858,35.31309568
2087 139.31614001,35.31316935
2088 139.31626951,35.31325455
2089 139.31640871,35.31336075
2090 139.31656637,35.31344598
2091 139.31670567,35.31353672
2092 139.31685927,35.31361719
2093 139.31701002,35.31371118
2094 139.31733607,35.31390584
2095 139.31749405,35.31400114
2096 139.31767557,35.31410513
2097 139.31782672,35.3142066
2098 139.31798577,35.31432483
2099 139.31819783,35.31445525
2100 139.3183916,35.31457214
2101 139.31859115,35.31470772
2102 139.31879326,35.31482779
2103 139.31897999,35.31495287
2104 139.31917493,35.31508004
2105 139.31936101,35.31521402
2106 139.31956217,35.3153719
2107 139.31976535,35.31548664
2108 139.31995418,35.31563349
2109 139.32014041,35.31577055
2110 139.32037354,35.315916
2111 139.32059384,35.31605029
2112 139.32082759,35.31618979
2113 139.32104335,35.31633085
2114 139.32127767,35.31647937
2115 139.32149651,35.31661184
2116 139.32173669,35.31676724
2117 139.32198311,35.31692337
2118 139.32224579,35.31709566
2119 139.32249629,35.31726893
2120 139.32275091,35.31743065
2121 139.32301469,35.31760639
2122 139.32326958,35.3177606
2123 139.323519,35.31794291
2124 139.32377187,35.31811769
2125 139.32401694,35.31828459
2126 139.3242634,35.31845476
2127 139.32452025,35.31862472
2128 139.32477896,35.31878037
2129 139.32503435,35.31894096
2130 139.32527065,35.31907553
2131 139.32552627,35.31924604
2132 139.32577733,35.31940764
2133 139.32601669,35.31955369
2134 139.32627031,35.31971701
2135 139.32651989,35.31988695
2136 139.32678516,35.32003018
2137 139.32705064,35.32019133
2138 139.32734099,35.32036235
2139 139.32764158,35.32051025
2140 139.32791433,35.32064385
2141 139.32819303,35.32076917
2142 139.32848545,35.32090555
2143 139.32877057,35.32103672
2144 139.32906824,35.32115888
2145 139.32934656,35.32127053
2146 139.32963749,35.32139215
2147 139.32992797,35.32150845
2148 139.33021833,35.32162791
2149 139.33045107,35.32176245
2150 139.33076792,35.32189822
2151 139.33109219,35.32202194
2152 139.33141055,35.32208348
2153 139.3316914,35.3222413
2154 139.33203213,35.32233604
2155 139.33235162,35.32244537
2156 139.33263411,35.32257718
2157 139.3329122,35.32267482
2158 139.33316962,35.32273937
2159 139.33344865,35.32284769
2160 139.33369927,35.32298045
2161 139.33396359,35.32310395
2162 139.3342416,35.3232348
2163 139.33457726,35.32336402
2164 139.33487058,35.32347169
2165 139.33512195,35.32357988
2166 139.33538186,35.32367324
2167 139.3356451,35.32379481
2168 139.33590702,35.32391431
2169 139.33618231,35.3240477
2170 139.3367106,35.32425908
2171 139.33700851,35.3243801
2172 139.33727351,35.32451673
2173 139.33755782,35.32463286
2174 139.33784635,35.3247491
2175 139.33813979,35.32483932
2176 139.33840181,35.32491572
2177 139.33868644,35.32501863
2178 139.33897689,35.32516518
2179 139.33925902,35.32530767
2180 139.33953876,35.32541169
2181 139.33982339,35.3255309
2182 139.34010294,35.32563535
2183 139.34036981,35.32572663
2184 139.34064473,35.32583403
2185 139.34092496,35.32591034
2186 139.34117083,35.32600277
2187 139.34143052,35.32604243
2188 139.34169999,35.32612305
2189 139.34197935,35.32618934
2190 139.34226242,35.32624754
2191 139.34254177,35.32630122
2192 139.34280124,35.32636122
2193 139.34305978,35.32641595
2194 139.34330621,35.32646587
2195 139.3435463,35.32652291
2196 139.34382237,35.32658844
2197 139.34406412,35.3266345
2198 139.34430338,35.32668098
2199 139.34453454,35.32671244
2200 139.34479226,35.32675437
2201 139.34501967,35.32680608
2202 139.3452482,35.32686813
2203 139.34548488,35.32690983
2204 139.34569671,35.32694106
2205 139.3459156,35.32697867
2206 139.34610554,35.32700521
2207 139.34631688,35.32703813
2208 139.34652141,35.32706766
2209 139.34670146,35.32709958
2210 139.34687073,35.32712214
2211 139.34704294,35.32715014
2212 139.34722414,35.32717902
2213 139.34739608,35.32720815
2214 139.34757175,35.32723829
2215 139.34775197,35.32726244
2216 139.34792485,35.32728009
2217 139.3480937,35.3273091
2218 139.34823391,35.32733419
2219 139.34834662,35.32736673
2220 139.34848759,35.32741105
2221 139.34861537,35.32744467
2222 139.3488199,35.32750222
2223 139.34902864,35.32755205
2224 139.34918954,35.32759059
2225 139.34936125,35.32761417
2226 139.3494996,35.32766285
2227 139.34962959,35.3276732
2228 139.34974364,35.32764794
2229 139.34986514,35.3276775
2230 139.34999498,35.32775388
2231 139.3500554,35.32782693
2232 139.35016638,35.32784546
2233 139.35020594,35.32792699
2234 139.35020353,35.32792698
2235 139.35054851,35.32800767
2236 139.35089125,35.32803241
2237 139.35119266,35.32794631
2238 139.35141274,35.32794757
2239 139.35160807,35.32791963
2240 139.35181312,35.32793851
2241 139.35201141,35.32796844
2242 139.35215179,35.32805978
2243 139.3523178,35.32809763
2244 139.35267675,35.32812815
2245 139.35278926,35.3282393
2246 139.35298046,35.32825965
2247 139.35317222,35.32833931
2248 139.35333491,35.32835019
2249 139.3535353,35.3283857
2250 139.35373548,35.32849066
2251 139.35394543,35.32855503
2252 139.35413686,35.32858152
2253 139.35435293,35.32860676
2254 139.35457728,35.32861642
2255 139.35479633,35.32862072
2256 139.35500821,35.32866135
2257 139.35524353,35.32869274
2258 139.35545128,35.32878764
2259 139.35569469,35.32881821
2260 139.35594407,35.32886248
2261 139.3561847,35.32889397
2262 139.35642837,35.32898483
2263 139.35664631,35.32900988
2264 139.35743677,35.32909728
2265 139.35768299,35.32914587
2266 139.35792681,35.32918613
2267 139.35818016,35.32925062
2268 139.35843335,35.32930835
2269 139.35868578,35.32938429
2270 139.35895242,35.32944121
2271 139.35923573,35.32949556
2272 139.35951071,35.32953799
2273 139.36007718,35.32965839
2274 139.36037927,35.32971199
2275 139.36066174,35.32976039
2276 139.36096114,35.32978903
2277 139.36123355,35.32982319
2278 139.36153305,35.32986951
2279 139.36181207,35.32994378
2280 139.3621048,35.33001981
2281 139.36240807,35.33008675
2282 139.36270763,35.33013793
2283 139.36300496,35.33020289
2284 139.36359098,35.33034425
2285 139.36388721,35.33040968
2286 139.36419392,35.330463
2287 139.36450759,35.3305226
2288 139.36480167,35.33057133
2289 139.36511131,35.33064193
2290 139.36542592,35.33070743
2291 139.36574485,35.3307559
2292 139.36605394,35.33081669
2293 139.3663703,35.33087563
2294 139.36668253,35.33093769
2295 139.36699036,35.33099249
2296 139.36730357,35.33104759
2297 139.36761874,35.33111417
2298 139.36791967,35.33118128
2299 139.3682264,35.33122522
2300 139.36853148,35.33127639
2301 139.36884872,35.33132319
2302 139.36913393,35.331379
2303 139.36939744,35.33144711
2304 139.36968769,35.33149283
2305 139.37028497,35.33158753
2306 139.37055865,35.3316418
2307 139.37086358,35.33167648
2308 139.3711528,35.33171012
2309 139.37140082,35.33184107
2310 139.37165257,35.3318319
2311 139.37192714,35.33187999
2312 139.37220539,35.331939
2313 139.37245266,35.33198137
2314 139.37271531,35.33201631
2315 139.37292762,35.33199296
2316 139.3732211,35.33197875
2317 139.37358134,35.33190051
2318 139.37384854,35.33188949
2319 139.37411157,35.33187588
2320 139.37438607,35.33184984
2321 139.37495262,35.33173077
2322 139.37524353,35.33167387
2323 139.37550608,35.33157794
2324 139.37579363,35.33152618
2325 139.37635963,35.33132558
2326 139.37662895,35.3312462
2327 139.37691601,35.3311497
2328 139.37721856,35.33105954
2329 139.37750214,35.33096825
2330 139.3777406,35.33094184
2331 139.37798619,35.33083623
2332 139.37828222,35.33071316
2333 139.37851639,35.3306699
2334 139.37879301,35.33055988
2335 139.37906935,35.33048242
2336 139.3793463,35.33038482
2337 139.37964345,35.33028802
2338 139.3801815,35.33011211
2339 139.38044455,35.33004313
2340 139.38072266,35.32995389
2341 139.38101973,35.32988013
2342 139.38146346,35.32971093
2343 139.38172271,35.32961875
2344 139.38226932,35.32940361
2345 139.38309163,35.3291388
2346 139.38346244,35.32903598
2347 139.38379346,35.32893395
2348 139.38410342,35.3288475
2349 139.3844238,35.3288357
2350 139.38466478,35.32870377
2351 139.38496132,35.32865285
2352 139.38524356,35.32861331
2353 139.38553579,35.32856306
2354 139.38587017,35.3285284
2355 139.38615672,35.32850649
2356 139.38646181,35.32848127
2357 139.3868082,35.32842893
2358 139.3871479,35.3283846
2359 139.38750537,35.32832332
2360 139.38781078,35.32827727
2361 139.38815537,35.32819976
2362 139.38879495,35.32808523
2363 139.38907667,35.32806138
2364 139.38936643,35.32801402
2365 139.38962007,35.32797289
2366 139.38992169,35.32794245
2367 139.39020503,35.32789601
2368 139.39051542,35.32785512
2369 139.39080777,35.3278182
2370 139.39110626,35.3278004
2371 139.3914086,35.32778082
2372 139.39170545,35.32775646
2373 139.39196831,35.3277337
2374 139.39218249,35.32770514
2375 139.39249022,35.32765217
2376 139.39269537,35.32766851
2377 139.39331119,35.32761063
2378 139.39365538,35.32756697
2379 139.39394663,35.32752683
2380 139.39459011,35.32746724
2381 139.39491108,35.32742912
2382 139.39520655,35.32740285
2383 139.39548939,35.32737608
2384 139.39577401,35.32734451
2385 139.39605554,35.32732306
2386 139.39634817,35.32729191
2387 139.39663688,35.32727459
2388 139.39689704,35.32727362
2389 139.39720417,35.32727879
2390 139.39751236,35.32733342
2391 139.39779208,35.32735745
2392 139.39807312,35.32739441
2393 139.39832033,35.32746211
2394 139.39863599,35.32747081
2395 139.39894719,35.32750113
2396 139.39923193,35.32758165
2397 139.39947463,35.3277187
2398 139.39970942,35.32780504
2399 139.39995506,35.32789007
2400 139.40019986,35.3279763
2401 139.40046431,35.32806507
2402 139.40072421,35.32814602
2403 139.40098254,35.32823219
2404 139.40122135,35.32832163
2405 139.40149202,35.32842675
2406 139.40176472,35.32849398
2407 139.40202635,35.32860784
2408 139.40247601,35.32868413
2409 139.40272625,35.32876451
2410 139.40291478,35.32890981
2411 139.40319473,35.32900906
2412 139.40338831,35.32904883
2413 139.40362459,35.32914004
2414 139.40386421,35.32921258
2415 139.40411876,35.32932186
2416 139.40460346,35.32955453
2417 139.40508132,35.3297387
2418 139.40527093,35.32981013
2419 139.40550176,35.32987996
2420 139.40566792,35.32999636
2421 139.40589579,35.33008848
2422 139.40611317,35.33017522
2423 139.40622975,35.33016498
2424 139.40641807,35.33024827
2425 139.40659926,35.33032869
2426 139.40678029,35.33040897
2427 139.40757258,35.33028572
2428 139.40768867,35.33035779
2429 139.40782048,35.33042663
2430 139.40786066,35.33043992
2431 139.40787019,35.33046382
2432 139.40785373,35.33047658
2433 139.40784528,35.33046929
2434 139.40794749,35.33052748
2435 139.40821217,35.33068254
2436 139.40834046,35.33076872
2437 139.40862679,35.33087972
2438 139.40874025,35.3309138
2439 139.40887096,35.33095105
2440 139.40900211,35.33101737
2441 139.40910876,35.33104782
2442 139.40951263,35.33120306
2443 139.40965306,35.33128984
2444 139.40984794,35.33138494
2445 139.40999554,35.33143082
2446 139.41008619,35.3314863
2447 139.41027992,35.33157145
2448 139.41043127,35.33163745
2449 139.41057559,35.33170262
2450 139.41073555,35.33177578
2451 139.41094959,35.33185345
2452 139.41112715,35.33192636
2453 139.41153701,35.33208652
2454 139.41199886,35.33221319
2455 139.41217048,35.33230264
2456 139.41234432,35.33237881
2457 139.41255111,35.33246165
2458 139.41275736,35.33253519
2459 139.41296507,35.33261519
2460 139.41334029,35.33275372
2461 139.41356074,35.33280713
2462 139.41402435,35.33296479
2463 139.41422355,35.33303524
2464 139.41443352,35.33310968
2465 139.41467342,35.33320915
2466 139.414971,35.33329665
2467 139.41521774,35.33339671
2468 139.41548509,35.33346486
2469 139.41569142,35.33359962
2470 139.41615623,35.3337828
2471 139.41638679,35.33385398
2472 139.41666696,35.33394773
2473 139.41708686,35.33406129
2474 139.41735371,35.33413008
2475 139.41759046,35.33424141
2476 139.41793509,35.33428871
2477 139.41819405,35.33435444
2478 139.41866643,35.33453088
2479 139.4190983,35.33475751
2480 139.41931085,35.33485112
2481 139.41952365,35.33493375
2482 139.41975264,35.33501773
2483 139.42027828,35.33513635
2484 139.42050394,35.3352106
2485 139.42076902,35.33530629
2486 139.42091333,35.33549905
2487 139.42120482,35.33552727
2488 139.42148769,35.33559557
2489 139.42173953,35.33553785
2490 139.42205378,35.33560749
2491 139.42239785,35.33561741
2492 139.4226608,35.33565534
2493 139.42305275,35.3356752
2494 139.4233596,35.335673
2495 139.42400777,35.33567773
2496 139.42432294,35.33570369
2497 139.42463687,35.33571758
2498 139.42495899,35.33572662
2499 139.42528098,35.33574894
2500 139.42588361,35.33582653
2501 139.42619071,35.33582369
2502 139.42651007,35.33584581
2503 139.42681032,35.33586177
2504 139.4271266,35.33587811
2505 139.42787865,35.33593936
2506 139.42816723,35.33594422
2507 139.42840843,35.33594757
2508 139.42867926,35.3359624
2509 139.4289398,35.33589431
2510 139.42924655,35.33591849
2511 139.42946453,35.33587001
2512 139.42980506,35.335916
2513 139.43014361,35.33596023
2514 139.43089623,35.33594403
2515 139.43118231,35.33596367
2516 139.43148336,35.33603574
2517 139.43179577,35.33610075
2518 139.43215228,35.33616474
2519 139.43241435,35.33617688
2520 139.43270425,35.3361904
2521 139.43299278,35.33619717
2522 139.4332864,35.33620688
2523 139.43359385,35.33621337
2524 139.4336885,35.3361497
2525 139.43387005,35.33622623
2526 139.43416099,35.33624145
2527 139.4344451,35.33625538
2528 139.43472642,35.33628227
2529 139.43497664,35.33624741
2530 139.43526742,35.33624383
2531 139.4355811,35.33626197
2532 139.43588118,35.33629315
2533 139.43616191,35.33628398
2534 139.43646041,35.33628807
2535 139.43673135,35.33629575
2536 139.43703146,35.33632179
2537 139.43733457,35.33633767
2538 139.4376257,35.3363639
2539 139.43791479,35.33637465
2540 139.43822161,35.33638393
2541 139.43851563,35.33639711
2542 139.43880023,35.33644419
2543 139.43909881,35.33645533
2544 139.43936861,35.33647279
2545 139.43965339,35.33649663
2546 139.43997371,35.33652044
2547 139.44025678,35.3365204
2548 139.44052704,35.33653251
2549 139.44073975,35.3365263
2550 139.44109105,35.33657678
2551 139.44143758,35.33657277
2552 139.44197366,35.33659324
2553 139.44224132,35.3365881
2554 139.4424869,35.3365925
2555 139.44276571,35.33660632
2556 139.44296184,35.3365936
2557 139.4432186,35.33660107
2558 139.44341347,35.33662389
2559 139.44360647,35.33662248
2560 139.44394466,35.3366482
2561 139.44416803,35.33668285
2562 139.44440059,35.33669912
2563 139.44463302,35.33671535
2564 139.4458855,35.3371844
2565 139.4471168,35.3365685
2566 139.4479112,35.3366738
2567 139.4508504,35.3372141
2568 139.4617654,35.3377776
2569 139.47031852,35.33834362
2570 139.47066832,35.33834754
2571 139.4745433,35.3378494
2572 139.48329555,35.33863774
2573 139.48349253,35.33865579
2574 139.48375652,35.33867514
2575 139.4840202,35.33869444
2576 139.48419056,35.3386999
2577 139.4869367,35.3386997
2578 139.4874916,35.3385962
2579 139.4893129,35.3385398
2580 139.49859785,35.33722849
2581 139.50206426,35.33597901
2582 139.50239181,35.33591204
2583 139.5083011,35.33779341
2584 139.52332921,35.34656348
2585 139.52357395,35.34669982
2586 139.5304741,35.3532044
2587 139.530744,35.3537648
2588 139.530744,35.354124
2589 139.5310816,35.354327
2590 139.5314039,35.3547453
2591 139.5305771,35.3591504
2592 139.5329266,35.3770022
2593 139.53568727,35.39238655
2594 139.53571792,35.39266975
2595 139.5357139,35.3934721
2596 139.53585068,35.39358746
2597 139.53588197,35.39389575
2598 139.53589727,35.39420132
2599 139.5342648,35.4001208
2600 139.5336874,35.4011368
2601 139.5332498,35.4099724
2602 139.538978,35.4134288
2603 139.5568423,35.4310706
2604 139.5644432,35.440916
2605 139.5703534,35.4435483
2606 139.5816385,35.4446769
2607 139.593528,35.4448002
2608 139.6009665,35.4477214
2609 139.6089364,35.4537832
2610 139.6174811,35.4609583
2611 139.6225785,35.4656929
2612 139.6241309,35.4672567
2613 139.62451959,35.46736148
2614 139.6333379,35.4781597
2615 139.63670436,35.4820619
2616 139.63680069,35.48216247
2617 139.63687766,35.48233421
2618 139.63709841,35.48261815
2619 139.63753875,35.48294548
2620 139.63773007,35.48309507
2621 139.63812293,35.48341086
2622 139.63832419,35.48357332
2623 139.63852326,35.48373346
2624 139.63878308,35.48386962
2625 139.63904097,35.48400968
2626 139.63935645,35.48416673
2627 139.63959136,35.48431285
2628 139.64003089,35.48457807
2629 139.64037164,35.48461234
2630 139.640585,35.4847538
2631 139.64082089,35.48489595
2632 139.64171617,35.48459869
2633 139.64193642,35.4846028
2634 139.64215818,35.48461803
2635 139.6423598,35.48454615
2636 139.64278565,35.48458537
2637 139.64290781,35.48442184
2638 139.643158,35.4845077
2639 139.64350048,35.48481303
2640 139.64374408,35.48485997
2641 139.64401074,35.48495207
2642 139.64421608,35.48500881
2643 139.64474354,35.48507902
2644 139.64503987,35.48517612
2645 139.64531256,35.48519629
2646 139.64558327,35.48525774
2647 139.64594247,35.48530314
2648 139.64625389,35.4853603
2649 139.64651306,35.48537541
2650 139.64687712,35.48548515
2651 139.64719465,35.48558239
2652 139.64749277,35.48562046
2653 139.64778779,35.48566907
2654 139.64807985,35.48568624
2655 139.64842743,35.48566821
2656 139.64873405,35.48568473
2657 139.64899003,35.48565
2658 139.64925753,35.48562568
2659 139.64975967,35.48561422
2660 139.65024439,35.48560787
2661 139.65050163,35.48564292
2662 139.65077043,35.48568338
2663 139.65099521,35.48570448
2664 139.65126885,35.48576596
2665 139.6515424,35.4858108
2666 139.65178421,35.48586372
2667 139.65203517,35.48591302
2668 139.65225356,35.48596988
2669 139.65250927,35.48604096
2670 139.653006,35.48616645
2671 139.65325172,35.48626621
2672 139.65344637,35.48633996
2673 139.65369888,35.4864991
2674 139.65394071,35.4867132
2675 139.65417551,35.48681704
2676 139.65442107,35.48694908
2677 139.65465639,35.4870542
2678 139.65488092,35.48718131
2679 139.6550707,35.48738102
2680 139.65529198,35.48756701
2681 139.65551068,35.4877248
2682 139.65576536,35.48788297
2683 139.65600531,35.4880251
2684 139.65625058,35.48816942
2685 139.65684784,35.48849568
2686 139.65711358,35.4885933
2687 139.65735066,35.48871707
2688 139.65759333,35.48882056
2689 139.6578165,35.48890798
2690 139.65801759,35.48898848
2691 139.65825451,35.48913673
2692 139.65849475,35.48926842
2693 139.65874297,35.48942353
2694 139.65905434,35.4895483
2695 139.65926703,35.48963265
2696 139.65980093,35.48992304
2697 139.66006475,35.49006265
2698 139.66037424,35.49022873
2699 139.66063847,35.49037325
2700 139.66086657,35.49051756
2701 139.66113796,35.49071566
2702 139.66135028,35.49088969
2703 139.66156944,35.4910353
2704 139.66201391,35.49136641
2705 139.66221894,35.49154399
2706 139.66239009,35.49173141
2707 139.66272442,35.49212919
2708 139.66294039,35.49231828
2709 139.66327149,35.49269756
2710 139.66361253,35.49301633
2711 139.6638307,35.49317335
2712 139.66423955,35.49355429
2713 139.66461143,35.49394816
2714 139.66482616,35.49411649
2715 139.66507988,35.49426883
2716 139.66532107,35.49448641
2717 139.66553544,35.49465058
2718 139.66574838,35.49481042
2719 139.66593481,35.49495349
2720 139.6661447,35.49512139
2721 139.66636983,35.49531597
2722 139.66657822,35.49551082
2723 139.66678441,35.49568078
2724 139.66699911,35.49585672
2725 139.66722424,35.49602325
2726 139.66744296,35.49619801
2727 139.66765531,35.49636891
2728 139.66788032,35.49655363
2729 139.66806455,35.49668855
2730 139.66823762,35.49688951
2731 139.66843164,35.49706538
2732 139.66864509,35.49723477
2733 139.66905755,35.49754723
2734 139.66928,35.49773649
2735 139.66950927,35.49794252
2736 139.66973333,35.49812912
2737 139.66993648,35.49830849
2738 139.67030367,35.49867494
2739 139.67054384,35.4989162
2740 139.67077956,35.49909787
2741 139.67101346,35.49926397
2742 139.67121198,35.49944163
2743 139.67142303,35.49962346
2744 139.67162774,35.49978464
2745 139.67183658,35.49995803
2746 139.67202702,35.5001276
2747 139.67225574,35.50027487
2748 139.67245793,35.50045331
2749 139.67267996,35.50066384
2750 139.6728914,35.50083799
2751 139.6733403,35.50121419
2752 139.67349895,35.50134534
2753 139.67364372,35.50152875
2754 139.67381438,35.50172888
2755 139.67399782,35.50193795
2756 139.67417324,35.50214111
2757 139.67433388,35.50236373
2758 139.67449262,35.50255942
2759 139.67462647,35.50280131
2760 139.67476576,35.50301039
2761 139.67489053,35.50320748
2762 139.67501012,35.50344442
2763 139.67511632,35.50365532
2764 139.67520373,35.50387452
2765 139.67528383,35.50405721
2766 139.6753291,35.50420226
2767 139.67547814,35.50468906
2768 139.67560694,35.50514674
2769 139.6756553,35.50536064
2770 139.67574623,35.50582724
2771 139.67578449,35.50598762
2772 139.67583126,35.50621371
2773 139.67588251,35.50641846
2774 139.67592693,35.50663736
2775 139.6759759,35.50686438
2776 139.67602978,35.50710313
2777 139.67608473,35.50731648
2778 139.67613777,35.50753894
2779 139.6761913,35.50776579
2780 139.67624094,35.50798157
2781 139.6762949,35.50820467
2782 139.67633309,35.50842323
2783 139.67643247,35.50879816
2784 139.67649026,35.50900629
2785 139.67656799,35.50931164
2786 139.67660878,35.50955077
2787 139.67664177,35.50977479
2788 139.67669945,35.50998492
2789 139.67676159,35.51020521
2790 139.67681673,35.51043604
2791 139.67684991,35.51065052
2792 139.67688295,35.51087342
2793 139.67693868,35.51102528
2794 139.67699727,35.51116618
2795 139.67704948,35.51141826
2796 139.67714778,35.51163874
2797 139.67721255,35.5118277
2798 139.6772799,35.51212139
2799 139.6773661,35.51234898
2800 139.67744198,35.51252994
2801 139.67751214,35.51274149
2802 139.6775775,35.51296487
2803 139.67780286,35.51336082
2804 139.6778793,35.51357273
2805 139.67797329,35.51377441
2806 139.67809805,35.51394248
2807 139.67843331,35.51454647
2808 139.67854176,35.51473289
2809 139.67865041,35.51492483
2810 139.67875428,35.51512788
2811 139.67885624,35.51529083
2812 139.67898375,35.5154953
2813 139.67908867,35.51567988
2814 139.67921418,35.51586245
2815 139.67933217,35.51606525
2816 139.67945041,35.51627007
2817 139.67957645,35.51645838
2818 139.67971975,35.51664711
2819 139.67987582,35.51681352
2820 139.68002184,35.51697739
2821 139.68051433,35.51749659
2822 139.68069625,35.51764941
2823 139.68086563,35.51781047
2824 139.68104955,35.51796083
2825 139.68122848,35.51811753
2826 139.68140092,35.51828633
2827 139.68158721,35.51845078
2828 139.68174351,35.51859936
2829 139.68191687,35.51875971
2830 139.68211889,35.51892672
2831 139.68231279,35.51907126
2832 139.68251689,35.51923779
2833 139.68268958,35.51941518
2834 139.68284662,35.51957138
2835 139.68301729,35.51972842
2836 139.68320071,35.51988339
2837 139.68337554,35.52002005
2838 139.68355227,35.52016205
2839 139.6837215,35.52030932
2840 139.68389585,35.52045146
2841 139.6840784,35.52059389
2842 139.68423995,35.52072334
2843 139.68444636,35.52088088
2844 139.68462569,35.52103659
2845 139.68480405,35.52118096
2846 139.68517763,35.52146681
2847 139.68536755,35.52162988
2848 139.68553754,35.52177466
2849 139.68571745,35.52191639
2850 139.68590581,35.52206642
2851 139.6860774,35.52221123
2852 139.6862635,35.52236676
2853 139.68642794,35.52251834
2854 139.68661002,35.522659
2855 139.68677511,35.5228102
2856 139.68695818,35.52293279
2857 139.68715483,35.52311208
2858 139.68733189,35.52326929
2859 139.68751973,35.52342807
2860 139.68767444,35.52355979
2861 139.68783157,35.52373045
2862 139.68800952,35.52391241
2863 139.68817725,35.52406663
2864 139.68836633,35.52420751
2865 139.68852702,35.52435095
2866 139.68869628,35.52449217
2867 139.68886304,35.52461573
2868 139.6890507,35.52475682
2869 139.6892291,35.52489724
2870 139.68941671,35.52504128
2871 139.68977877,35.52532916
2872 139.68995806,35.52547083
2873 139.69013236,35.52561931
2874 139.69032195,35.5257892
2875 139.69050784,35.52593833
2876 139.69071526,35.52601037
2877 139.69084958,35.52611835
2878 139.69103796,35.52628815
2879 139.69117879,35.526404
2880 139.69130355,35.52651736
2881 139.69146882,35.52665411
2882 139.69164021,35.52682626
2883 139.69181354,35.52697552
2884 139.69198112,35.52712275
2885 139.69215683,35.52727096
2886 139.69232815,35.52739727
2887 139.69245802,35.52751922
2888 139.69262184,35.52765749
2889 139.69278556,35.52779569
2890 139.69294709,35.52791892
2891 139.69327726,35.52810247
2892 139.6934426,35.52829036
2893 139.69360753,35.52841904
2894 139.69393545,35.5286762
2895 139.6940706,35.52884001
2896 139.69423135,35.52897152
2897 139.69439182,35.52910282
2898 139.69549077,35.53004287
2899 139.69561631,35.5302504
2900 139.69576402,35.53035174
2901 139.69582907,35.53018546
2902 139.69591395,35.53032345
2903 139.69600458,35.53039942
2904 139.69607352,35.5304852
2905 139.69621868,35.53062707
2906 139.69631252,35.53069436
2907 139.69639308,35.53078622
2908 139.69655725,35.53098937
2909 139.69675063,35.53106917
2910 139.69682428,35.53114657
2911 139.69695409,35.53126698
2912 139.69709377,35.53137909
2913 139.69722021,35.53149727
2914 139.69735491,35.53165619
2915 139.69728491,35.53176467
2916 139.69728049,35.53176928
2917 139.69713663,35.53158525
2918 139.69705171,35.53151669
2919 139.69693135,35.53141832
2920 139.69687645,35.53133792
2921 139.6967627,35.53135398
2922 139.69664631,35.53132632
2923 139.69654637,35.53128595
2924 139.69646093,35.53121053
2925 139.69643818,35.53118541
2926 139.69638586,35.53110386
2927 139.69626412,35.53095831
2928 139.69627929,35.53090752
2929 139.69634037,35.53099947
2930 139.69642453,35.53106779
2931 139.69652111,35.5311729
2932 139.69660916,35.53128431
2933 139.69665375,35.5312612
2934 139.69694212,35.5313692
2935 139.69703281,35.53144254
2936 139.69714957,35.53151647
2937 139.69759261,35.53151403
2938 139.6978031,35.53176609
2939 139.6980649,35.53225504
2940 139.69821237,35.53250232
2941 139.69850359,35.53273628
2942 139.69867283,35.53288129
2943 139.69884538,35.53301477
2944 139.69902491,35.53315732
2945 139.69920216,35.53326755
2946 139.69936014,35.53338952
2947 139.69950874,35.53350772
2948 139.69966238,35.53366328
2949 139.69980213,35.53378932
2950 139.70015534,35.53407319
2951 139.70051735,35.53434768
2952 139.70066692,35.53447644
2953 139.70081596,35.53459971
2954 139.70095132,35.53475147
2955 139.70105648,35.53492614
2956 139.70121311,35.53508823
2957 139.70150124,35.53541274
2958 139.70163239,35.53558751
2959 139.70175989,35.53578973
2960 139.70200799,35.53599023
2961 139.70225122,35.5361856
2962 139.70247192,35.53637101
2963 139.70266315,35.53652863
2964 139.70285612,35.53676522
2965 139.70298703,35.5368803
2966 139.70323648,35.53716578
2967 139.70356574,35.53755386
2968 139.7037065,35.53772153
2969 139.70399327,35.53809273
2970 139.70416244,35.53828887
2971 139.70431377,35.53846511
2972 139.70449117,35.53867367
2973 139.70464004,35.53884478
2974 139.70480064,35.53902096
2975 139.70518409,35.53942013
2976 139.70536221,35.53963769
2977 139.7055398,35.53987021
2978 139.70567743,35.54003882
2979 139.70580165,35.54021031
2980 139.70594333,35.54037838
2981 139.70609679,35.54056647
2982 139.70621806,35.54074374
2983 139.706296,35.54090527
2984 139.70644244,35.54108304
2985 139.70661874,35.54128963
2986 139.70674944,35.54144447
2987 139.70687639,35.54163956
2988 139.70702518,35.54185204
2989 139.70715671,35.5420295
2990 139.70728252,35.5422205
2991 139.70740241,35.54238902
2992 139.70752718,35.54258055
2993 139.70763473,35.54277396
2994 139.70773527,35.54295878
2995 139.7078369,35.54314893
2996 139.70793525,35.54333528
2997 139.70804598,35.54354709
2998 139.70814567,35.54377146
2999 139.7082362,35.5439612
3000 139.70830501,35.54416857
3001 139.70841027,35.54437346
3002 139.7084096,35.5444665
3003 139.7084759,35.54456845
3004 139.70854827,35.5447658
3005 139.70863459,35.54496851
3006 139.70871036,35.54516761
3007 139.70879656,35.54539691
3008 139.70885045,35.54557517
3009 139.7089368,35.54578168
3010 139.70908331,35.5461954
3011 139.70923313,35.54657945
3012 139.70941531,35.54701913
3013 139.70952158,35.54719439
3014 139.7096164,35.54739293
3015 139.70972867,35.54762331
3016 139.70981869,35.54783999
3017 139.70990149,35.54803114
3018 139.70999878,35.54822827
3019 139.71022962,35.54863035
3020 139.71031817,35.54886317
3021 139.71036424,35.54908364
3022 139.71044817,35.54930801
3023 139.71053313,35.54949641
3024 139.71060736,35.54966448
3025 139.71066713,35.549834
3026 139.7107819,35.55007029
3027 139.71087494,35.55027048
3028 139.71096686,35.55047025
3029 139.71106678,35.55068942
3030 139.71115,35.55090276
3031 139.71123082,35.55111035
3032 139.71139212,35.55152445
3033 139.71145027,35.55171402
3034 139.71152673,35.55189911
3035 139.71161969,35.55209312
3036 139.71172242,35.55226765
3037 139.71178296,35.552442
3038 139.71185619,35.55261972
3039 139.71192773,35.55281568
3040 139.71199106,35.55300002
3041 139.7120476,35.55316948
3042 139.71210963,35.55332949
3043 139.71218578,35.55350778
3044 139.71225358,35.55367087
3045 139.71239981,35.55400987
3046 139.71259084,35.55447166
3047 139.71266522,35.55463214
3048 139.71274193,35.55479473
3049 139.71280123,35.55495658
3050 139.71302069,35.55542275
3051 139.71307415,35.55555931
3052 139.71324999,35.5559937
3053 139.71336184,35.55623894
3054 139.71342676,35.55636832
3055 139.71349526,35.55650891
3056 139.71353514,35.55662726
3057 139.7135708,35.55675014
3058 139.71358898,35.55687755
3059 139.71365929,35.55698747
3060 139.71370441,35.55712832
3061 139.71381591,35.55742301
3062 139.71384416,35.55753767
3063 139.71390184,35.55765468
3064 139.71402238,35.55792456
3065 139.71404489,35.55806688
3066 139.71411104,35.55820746
3067 139.71413744,35.55833157
3068 139.71424009,35.55863912
3069 139.71427782,35.5587656
3070 139.71437457,35.55890092
3071 139.714411,35.55902302
3072 139.71454574,35.55928849
3073 139.71466551,35.55953845
3074 139.71471723,35.55973915
3075 139.71478193,35.55996272
3076 139.71485087,35.56008916
3077 139.71486425,35.56021079
3078 139.71490366,35.5603396
3079 139.71492623,35.56044085
3080 139.71497077,35.5605419
3081 139.71503174,35.56063023
3082 139.71508606,35.5608066
3083 139.71514001,35.56088948
3084 139.71523229,35.56104674
3085 139.71526478,35.56116903
3086 139.71538969,35.56134082
3087 139.71544675,35.5614287
3088 139.71573497,35.5617353
3089 139.71574826,35.56176624
3090 139.71586712,35.56180406
3091 139.7158565,35.5619128
3092 139.71574214,35.56193036
3093 139.715671,35.561812
3094 139.71556882,35.56176521
3095 139.7151523,35.5617117
3096 139.71503526,35.56168208
3097 139.71503843,35.56136173
3098 139.71508658,35.56137438
3099 139.7150326,35.561197
3100 139.71507442,35.56110756
3101 139.71506945,35.56105485
3102 139.7151295,35.56096855
3103 139.71512719,35.56087436
3104 139.7150798,35.5608327
3105 139.71507187,35.5607324
3106 139.71500393,35.56065388
3107 </coordinates></LineString></Placemark>
3108 </Document>
3109 </kml>

記録しすぎて曝しすぎれば個人情報漏洩てとこだが、自宅に着く前に記録を止めてるんで大丈夫。鴨宮駅から早川駅までの東海道線、早川駅からの徘徊、小田原駅から蒲田駅までの東海道線と京浜東海道線、の移動の全て(のうちノイズを取り除いたもの)である。

位置関係と真の標高と気圧・重力の関係だとか、乗ってた電車の速度とか、色々みてみたいがこれはじっくりやるとしよう。取れたデータは csv ではこんなである:

   1 time, lon, lat, alt, pressure, grav_x, grav_y, grav_z, g_scalar
   2 2016-08-10 13:08:18,139.178766,35.275459,0.00,1007.4971,1.034295,3.830723,8.963891,9.802834
   3 2016-08-10 13:08:31,139.180963,35.276243,-392.00,1007.5029,0.248997,3.409343,9.193734,9.808688
   4 2016-08-10 13:08:33,139.179973,35.275948,-198.00,1007.5081,0.201113,3.552995,9.136273,9.804882
   5 2016-08-10 13:08:33,139.179555,35.275797,-134.00,1007.4995,0.134075,3.447650,9.184157,9.810862
   6 2016-08-10 13:08:35,139.179287,35.275621,-94.00,1007.5132,0.363919,3.390190,9.193734,9.805640
   7 2016-08-10 13:08:35,139.179145,35.275540,-70.00,1007.5149,0.344765,3.371036,9.203311,9.807328
   8 2016-08-10 13:08:36,139.179008,35.275535,-69.00,1007.5317,0.402226,3.294421,9.232041,9.810483
   9 2016-08-10 13:08:37,139.178841,35.275505,-59.00,1007.4963,0.181959,3.505111,9.155427,9.805139
  10 2016-08-10 13:08:38,139.178728,35.275475,-40.00,1007.5317,0.363919,3.342306,9.212888,9.807178
  11 2016-08-10 13:08:40,139.178575,35.275510,-28.00,1007.5432,0.325611,3.342306,9.212888,9.805831
  12 2016-08-10 13:08:41,139.178475,35.275549,-21.00,1007.5291,0.344765,3.265691,9.241618,9.807707
  13 2016-08-10 13:08:43,139.178313,35.275517,-11.00,1007.4619,0.153229,3.083732,9.308656,9.807342
  14 2016-08-10 13:08:44,139.178204,35.275498,0.00,1007.5261,0.383072,3.447650,9.174581,9.808464
  15 2016-08-10 13:08:45,139.178042,35.275465,3.00,1007.5295,0.306458,3.189077,9.270349,9.808338
  16 2016-08-10 13:08:46,139.177932,35.275405,6.00,1007.5176,0.526724,3.466804,9.155427,9.803979
  17 2016-08-10 13:08:47,139.177735,35.275396,10.00,1007.5417,0.421380,3.284845,9.232041,9.808076
  18 2016-08-10 13:08:48,139.177607,35.275402,11.00,1007.5713,0.517148,3.495534,9.145850,9.804732
  19 2016-08-10 13:08:49,139.177440,35.275390,13.00,1007.5234,-0.201113,3.620033,9.107543,9.802674
  20 2016-08-10 13:08:49,139.177261,35.275366,24.00,1007.5491,0.019154,3.773262,9.050082,9.805196
  21 2016-08-10 13:08:50,139.177115,35.275328,25.00,1007.5508,0.181959,3.830723,9.030929,9.811484
  22 2016-08-10 13:08:51,139.176961,35.275290,23.00,1007.5618,0.191536,3.744531,9.059659,9.804877
  23 2016-08-10 13:08:52,139.176813,35.275246,24.00,1007.5808,0.191536,3.763685,9.050082,9.803367
  24 2016-08-10 13:08:53,139.176643,35.275203,25.00,1007.5969,0.258574,3.677494,9.088389,9.807632
  25 2016-08-10 13:08:54,139.176456,35.275166,26.00,1007.5635,0.239420,3.687071,9.088389,9.810741
  26 2016-08-10 13:08:55,139.176272,35.275124,26.00,1007.5840,0.114922,3.552995,9.136273,9.803493
  27 2016-08-10 13:08:57,139.176109,35.275066,27.00,1007.5854,0.134075,3.505111,9.155427,9.804368
  28 2016-08-10 13:08:58,139.175935,35.275010,28.00,1007.5786,0.268151,3.514688,9.155427,9.810544
  29 2016-08-10 13:08:59,139.175755,35.274946,29.00,1007.5830,0.181959,3.591303,9.126697,9.809544
  30 2016-08-10 13:09:00,139.175579,35.274874,29.00,1007.5559,0.210690,3.409343,9.193734,9.807791
  31 2016-08-10 13:09:01,139.175396,35.274817,27.00,1007.6233,0.009577,3.179500,9.279925,9.809502
  32 2016-08-10 13:09:02,139.175201,35.274745,29.00,1007.5669,0.220267,3.275268,9.241618,9.807314
  33 2016-08-10 13:09:03,139.175013,35.274670,30.00,1007.6135,0.392649,3.179500,9.270349,9.808300
  34 2016-08-10 13:09:04,139.174828,35.274594,30.00,1007.5239,-0.248997,3.112462,9.299079,9.809296
  35 2016-08-10 13:09:04,139.174643,35.274511,31.00,1007.5894,0.172383,2.959233,9.346964,9.805739
  36 2016-08-10 13:09:05,139.174443,35.274416,29.00,1007.5852,0.191536,2.987964,9.337387,9.805683
  37 2016-08-10 13:09:06,139.174252,35.274318,29.00,1007.6096,-0.143652,3.246537,9.251195,9.805368
  38 2016-08-10 13:09:07,139.174079,35.274218,30.00,1007.6289,-0.114922,3.160346,9.279925,9.803979
  39 2016-08-10 13:09:08,139.173868,35.274113,32.00,1007.6055,-1.139640,4.175488,8.801085,9.807782
  40 2016-08-10 13:09:09,139.173670,35.273998,31.00,1007.5142,-0.019154,3.438074,9.184157,9.806603
  41 2016-08-10 13:09:10,139.173465,35.273868,31.00,1007.5422,0.201113,3.572149,9.126697,9.802922
  42 2016-08-10 13:09:11,139.173277,35.273746,31.00,1007.5422,0.009577,3.332729,9.222465,9.806173
  43 2016-08-10 13:09:12,139.173077,35.273596,32.00,1007.5615,0.201113,3.342306,9.212888,9.802487
  44 2016-08-10 13:09:14,139.172892,35.273456,32.00,1007.4648,0.153229,3.332729,9.222465,9.807365
  45 2016-08-10 13:09:15,139.172672,35.273323,32.00,1007.4900,0.191536,3.303998,9.232041,9.807328
  46 2016-08-10 13:09:16,139.172521,35.273189,30.00,1007.4749,0.220267,3.189077,9.270349,9.806023
  47 2016-08-10 13:09:17,139.172347,35.273034,31.00,1007.4478,0.153229,3.035848,9.327810,9.810601
  48 2016-08-10 13:09:18,139.172186,35.272877,33.00,1007.3987,0.134075,3.035848,9.327810,9.810321
  49 2016-08-10 13:09:19,139.172018,35.272703,33.00,1007.3911,0.172383,2.987964,9.337387,9.805327
  50 2016-08-10 13:09:20,139.171843,35.272533,34.00,1007.3337,0.000000,3.227384,9.260772,9.807033
  51 2016-08-10 13:09:21,139.171664,35.272363,33.00,1007.3572,0.162806,3.122039,9.299079,9.810530
  52 2016-08-10 13:09:21,139.171482,35.272178,33.00,1007.3582,0.210690,2.997540,9.337387,9.808998
  53 2016-08-10 13:09:22,139.171327,35.271995,33.00,1007.2815,-0.143652,3.658340,9.097966,9.806991
  54 2016-08-10 13:09:23,139.171159,35.271808,33.00,1007.3054,0.306458,3.131616,9.289502,9.807945
  55 2016-08-10 13:09:24,139.170960,35.271636,33.00,1007.2766,0.009577,3.035848,9.327810,9.809409
  56 2016-08-10 13:09:25,139.170810,35.271466,33.00,1007.3359,0.181959,3.122039,9.299079,9.810867
  57 2016-08-10 13:09:26,139.170599,35.271306,33.00,1007.3413,0.316035,2.940080,9.346964,9.803554
  58 2016-08-10 13:09:27,139.170396,35.271157,33.00,1007.3926,0.335188,2.901772,9.356541,9.801912
  59 2016-08-10 13:09:28,139.170229,35.270949,32.00,1007.3474,0.363919,2.853889,9.375694,9.807179
  60 2016-08-10 13:09:29,139.170030,35.270771,34.00,1007.3215,0.354342,2.853889,9.375694,9.806828
  61 2016-08-10 13:09:31,139.169908,35.270617,34.00,1007.3438,0.335188,2.767697,9.404425,9.808960
  62 2016-08-10 13:09:32,139.169711,35.270410,34.00,1007.3579,0.335188,2.710236,9.414001,9.802100
  63 2016-08-10 13:09:33,139.169434,35.270152,34.00,1007.3779,0.421380,2.758120,9.404425,9.809587
  64 2016-08-10 13:09:34,139.169212,35.269974,34.00,1007.3711,0.268151,2.758120,9.404425,9.804200
  65 2016-08-10 13:09:35,139.169028,35.269775,33.00,1007.3484,0.344765,2.777274,9.394848,9.802820
  66 2016-08-10 13:09:36,139.168853,35.269587,32.00,1007.3655,0.392649,2.767697,9.404425,9.811092
  67 2016-08-10 13:09:37,139.168675,35.269407,32.00,1007.3643,-0.114922,2.968810,9.346964,9.807792
  68 2016-08-10 13:09:38,139.168201,35.269006,33.00,1007.3696,0.210690,2.911349,9.366117,9.810428
  69 2016-08-10 13:09:39,139.167977,35.268811,32.00,1007.3508,0.028730,3.016694,9.327810,9.803536
  70 2016-08-10 13:09:40,139.167820,35.268625,32.00,1007.3262,0.191536,2.978387,9.337387,9.802769
  71 2016-08-10 13:09:42,139.167396,35.268223,32.00,1007.3191,0.191536,2.959233,9.346964,9.806094
  72 2016-08-10 13:09:43,139.167200,35.268021,32.00,1007.3411,0.430956,2.844312,9.375694,9.807114
  73 2016-08-10 13:09:44,139.166975,35.267827,30.00,1007.3911,0.622492,1.848324,9.615114,9.810923
  74 2016-08-10 13:09:45,139.166766,35.267630,30.00,1007.3572,0.402226,2.729390,9.414001,9.809933
  75 2016-08-10 13:09:47,139.166557,35.267431,32.00,1007.4763,0.201113,6.301539,7.508216,9.804242
  76 2016-08-10 13:09:48,139.166344,35.267234,32.00,1007.5803,-7.441179,-1.589750,6.177041,9.800728
  77 2016-08-10 13:09:49,139.166128,35.267030,33.00,1007.4346,-9.337387,1.685518,2.442086,9.797528
  78 2016-08-10 13:09:50,139.165913,35.266855,33.00,1007.5532,-8.676587,4.357447,1.312023,9.797546
  79 2016-08-10 13:09:51,139.165680,35.266623,34.00,1007.6011,-9.193734,2.777274,-1.953669,9.800756
  80 2016-08-10 13:09:52,139.165469,35.266432,33.00,1007.6704,-9.662998,-0.881066,1.369483,9.799250
  81 2016-08-10 13:09:53,139.165239,35.266228,34.00,1007.5291,-8.916007,3.600879,1.877054,9.797186
  82 2016-08-10 13:09:53,139.165025,35.266032,34.00,1007.6184,-6.167464,6.263232,4.338294,9.802371
  83 2016-08-10 13:09:54,139.164808,35.265832,34.00,1007.5430,-4.970363,6.962338,4.778827,9.798768
  84 2016-08-10 13:09:55,139.164592,35.265644,34.00,1007.4836,-1.101333,9.299079,2.911349,9.806210
  85 2016-08-10 13:09:56,139.164394,35.265460,34.00,1007.6550,-2.710236,9.011775,2.748544,9.803671
  86 2016-08-10 13:09:58,139.163973,35.265076,33.00,1007.5405,-1.436521,9.251195,2.920926,9.807141
  87 2016-08-10 13:09:59,139.163762,35.264885,33.00,1007.3186,-1.541866,9.346964,2.518700,9.802394
  88 2016-08-10 13:10:01,139.163539,35.264688,32.00,1007.4048,-1.302446,9.394848,2.499547,9.808530
  89 2016-08-10 13:10:02,139.163339,35.264498,32.00,1007.3152,-1.848324,9.318233,2.442086,9.808647
  90 2016-08-10 13:10:03,139.163151,35.264348,31.00,1007.3020,-2.595315,9.002198,2.892196,9.805102
  91 2016-08-10 13:10:04,139.162913,35.264137,31.00,1007.2388,-1.915361,9.270349,2.557007,9.805420
  92 2016-08-10 13:10:05,139.162700,35.263990,30.00,1007.2539,-2.049437,9.193734,2.729390,9.806860
  93 2016-08-10 13:10:06,139.162435,35.263804,30.00,1007.2007,-1.877054,9.222465,2.738967,9.801996
  94 2016-08-10 13:10:07,139.162237,35.263613,30.00,1007.1909,-2.308010,9.126697,2.729390,9.801687
  95 2016-08-10 13:10:08,139.162020,35.263401,32.00,1007.2512,-2.518700,9.107543,2.614468,9.804419
  96 2016-08-10 13:10:08,139.161804,35.263207,33.00,1007.2512,-2.499547,9.069236,2.777274,9.808773
  97 2016-08-10 13:10:09,139.161570,35.263011,34.00,1007.2361,-2.336741,8.906430,3.361459,9.802258
  98 2016-08-10 13:10:10,139.161361,35.262819,33.00,1007.2395,-2.729390,8.676587,3.648763,9.800317
  99 2016-08-10 13:10:11,139.161188,35.262631,34.00,1007.2869,-2.001553,9.394848,1.982399,9.808123
 100 2016-08-10 13:10:12,139.161024,35.262451,34.00,1007.2278,-1.886631,9.490616,1.608904,9.809166
 101 2016-08-10 13:10:13,139.160844,35.262286,33.00,1007.2354,-1.972822,9.423578,1.857901,9.805491
 102 2016-08-10 13:10:14,139.160642,35.262083,33.00,1007.2415,-1.991976,9.461885,1.656788,9.810208
 103 2016-08-10 13:10:16,139.160467,35.261897,33.00,1007.2661,-1.963245,9.414001,1.924938,9.807301
 104 2016-08-10 13:10:17,139.160281,35.261714,34.00,1007.2776,-2.135628,9.375694,1.924938,9.806627
 105 2016-08-10 13:10:18,139.160085,35.261320,0.00,1007.2603,-2.106898,9.366117,1.991976,9.804649
 106 2016-08-10 13:10:19,139.159892,35.261327,34.00,1007.2456,-2.106898,9.414001,1.742979,9.803082
 107 2016-08-10 13:10:20,139.159697,35.261119,33.00,1007.2285,-2.068590,9.461885,1.522712,9.804335
 108 2016-08-10 13:10:21,139.159502,35.260922,32.00,1007.2510,-1.991976,9.461885,1.628057,9.805397
 109 2016-08-10 13:10:22,139.159349,35.260726,33.00,1007.2761,-2.298434,9.385271,1.637634,9.800406
 110 2016-08-10 13:10:23,139.159199,35.260535,32.00,1007.2849,-2.566584,9.318233,1.666364,9.807834
 111 2016-08-10 13:10:23,139.159044,35.260351,32.00,1007.2925,-2.442086,9.327810,1.781286,9.805346
 112 2016-08-10 13:10:24,139.158901,35.260157,31.00,1007.3079,-2.193089,9.423578,1.551443,9.799002
 113 2016-08-10 13:10:25,139.158733,35.259941,32.00,1007.3296,-2.930503,9.117120,2.087744,9.801449
 114 2016-08-10 13:10:26,139.158583,35.259752,32.00,1007.4243,-2.480393,9.260772,2.030283,9.799811
 115 2016-08-10 13:10:27,139.158459,35.259550,33.00,1007.4084,-2.499547,9.241618,2.126051,9.806902
 116 2016-08-10 13:10:28,139.158331,35.259359,33.00,1007.3840,-2.442086,9.318233,1.848324,9.808647
 117 2016-08-10 13:10:29,139.158195,35.259208,34.00,1007.4060,-2.173935,9.318233,2.145205,9.805987
 118 2016-08-10 13:10:31,139.158068,35.259029,32.00,1007.4275,-2.327164,9.385271,1.637634,9.807184
 119 2016-08-10 13:10:32,139.157953,35.258895,32.00,1007.4604,-2.384625,9.308656,1.963245,9.807744
 120 2016-08-10 13:10:33,139.157823,35.258657,32.00,1007.4458,-2.537854,9.375694,1.340753,9.805201
 121 2016-08-10 13:10:34,139.157696,35.258520,32.00,1007.4370,-2.403779,9.212888,2.336741,9.803867
 122 2016-08-10 13:10:35,139.157611,35.258375,31.00,1007.4509,-2.240973,9.366117,1.829170,9.802652
 123 2016-08-10 13:10:36,139.157494,35.258218,30.00,1007.4429,-2.317587,9.337387,1.877054,9.802109
 124 2016-08-10 13:10:37,139.157371,35.258021,31.00,1007.4170,-2.499547,9.356541,1.522712,9.803634
 125 2016-08-10 13:10:38,139.157221,35.257883,31.00,1007.3997,-2.250550,9.337387,1.963245,9.803372
 126 2016-08-10 13:10:38,139.157284,35.257736,29.00,1007.3853,-2.375048,9.299079,2.001553,9.804078
 127 2016-08-10 13:10:39,139.157224,35.257615,29.00,1007.4238,-2.087744,9.404425,1.810017,9.801941
 128 2016-08-10 13:10:40,139.157121,35.257488,28.00,1007.3933,-2.308010,9.414001,1.465251,9.802923
 129 2016-08-10 13:10:41,139.157010,35.257447,28.00,1007.3821,-2.422932,9.385271,1.474828,9.804541
 130 2016-08-10 13:10:42,139.156903,35.257357,28.00,1007.4050,-2.231396,9.414001,1.599327,9.806141
 131 2016-08-10 13:10:44,139.156815,35.257241,30.00,1007.4031,-2.298434,9.366117,1.771709,9.805402
 132 2016-08-10 13:10:45,139.156723,35.257091,29.00,1007.3906,-2.547431,9.279925,1.867477,9.802749
 133 2016-08-10 13:10:46,139.156658,35.256995,29.00,1007.3792,-2.336741,9.308656,1.991976,9.802010
 134 2016-08-10 13:10:47,139.156588,35.256920,29.00,1007.3484,-2.557007,9.289502,1.819593,9.805308
 135 2016-08-10 13:10:48,139.156510,35.256818,29.00,1007.3665,-2.135628,9.366117,1.982399,9.808923
 136 2016-08-10 13:10:49,139.156461,35.256707,28.00,1007.3809,-2.173935,9.366117,1.915361,9.804018
 137 2016-08-10 13:10:50,139.156393,35.256619,28.00,1007.3662,-2.193089,9.394848,1.752556,9.805318
 138 2016-08-10 13:10:50,139.156320,35.256522,28.00,1007.3594,-2.221819,9.375694,1.829170,9.807445
 139 2016-08-10 13:10:52,139.156187,35.256383,28.00,1007.3623,-2.221819,9.366117,1.867477,9.805514
 140 2016-08-10 13:10:53,139.156123,35.256294,28.00,1007.3611,-2.202666,9.375694,1.829170,9.803124
 141 2016-08-10 13:10:58,139.155212,35.256070,0.00,1007.3496,-2.355895,9.327810,1.886631,9.803961
 142 2016-08-10 13:11:08,139.155458,35.255268,28.00,1007.3208,-2.308010,9.394848,1.580173,9.802399
 143 2016-08-10 13:11:19,139.155384,35.255220,25.00,1007.3645,-3.007117,9.155427,1.810017,9.805139
 144 2016-08-10 13:12:14,139.155253,35.255145,25.00,1007.3538,-1.963245,9.461885,1.685518,9.809311
 145 2016-08-10 13:12:14,139.155178,35.255041,27.00,1007.3418,-1.944092,9.442732,1.771709,9.802226
 146 2016-08-10 13:12:16,139.155080,35.254901,26.00,1007.4026,-2.011129,9.414001,1.857901,9.804074
 147 2016-08-10 13:12:18,139.154993,35.254760,27.00,1007.4116,-1.934515,9.404425,1.972822,9.801917
 148 2016-08-10 13:12:21,139.154832,35.254544,28.00,1007.3584,-2.001553,9.442732,1.714248,9.803573
 149 2016-08-10 13:12:23,139.154744,35.254474,29.00,1007.3533,-2.020706,9.461885,1.570596,9.801903
 150 2016-08-10 13:12:25,139.154613,35.254285,31.00,1007.3418,-2.068590,9.414001,1.781286,9.801809
 151 2016-08-10 13:12:26,139.154536,35.254183,30.00,1007.3450,-2.173935,9.366117,1.924938,9.805893
 152 2016-08-10 13:12:26,139.154445,35.254075,28.00,1007.3259,-2.796427,8.801085,3.275268,9.798290
 153 2016-08-10 13:12:27,139.154377,35.253951,26.00,1007.2791,-1.848324,9.212888,2.786851,9.801027
 154 2016-08-10 13:12:29,139.154296,35.253841,26.00,1007.3398,-2.020706,9.117120,2.997540,9.807669
 155 2016-08-10 13:12:30,139.154213,35.253719,26.00,1007.3608,-2.116474,9.097966,2.968810,9.801341
 156 2016-08-10 13:12:31,139.154093,35.253586,26.00,1007.3374,-1.905785,9.088389,3.141193,9.802955
 157 2016-08-10 13:12:32,139.153868,35.253298,26.00,1007.3530,-1.752556,9.270349,2.681506,9.808225
 158 2016-08-10 13:12:34,139.153761,35.253159,26.00,1007.2964,-2.355895,9.145850,2.624045,9.802164
 159 2016-08-10 13:12:35,139.153638,35.253020,24.00,1007.2957,-2.231396,9.069236,2.978387,9.803109
 160 2016-08-10 13:12:35,139.153549,35.252893,24.00,1007.3171,-2.164358,9.059659,3.064578,9.805789
 161 2016-08-10 13:12:36,139.153433,35.252762,25.00,1007.2812,-2.317587,9.021352,3.055001,9.802501
 162 2016-08-10 13:12:37,139.153329,35.252626,25.00,1007.2410,-2.221819,9.088389,2.930503,9.804241
 163 2016-08-10 13:12:39,139.153229,35.252482,24.00,1007.2434,-2.269703,9.136273,2.748544,9.807015
 164 2016-08-10 13:12:40,139.153085,35.252316,23.00,1007.2229,-2.164358,9.203311,2.604892,9.806673
 165 2016-08-10 13:12:41,139.152983,35.252158,24.00,1007.2393,-2.260126,9.155427,2.671929,9.801491
 166 2016-08-10 13:12:42,139.152869,35.251979,23.00,1007.2327,-2.164358,9.126697,2.844312,9.801589
 167 2016-08-10 13:12:43,139.152751,35.251818,22.00,1007.2197,-2.298434,9.107543,2.796427,9.800517
 168 2016-08-10 13:12:44,139.152629,35.251654,21.00,1007.2083,-2.250550,9.107543,2.844312,9.803184
 169 2016-08-10 13:12:44,139.152516,35.251508,20.00,1007.1838,-2.250550,9.145850,2.719813,9.803516
 170 2016-08-10 13:12:45,139.152404,35.251312,20.00,1007.1785,-2.365471,9.107543,2.738967,9.800241
 171 2016-08-10 13:12:46,139.152262,35.251136,20.00,1007.1777,-2.509123,9.040505,2.834735,9.801131
 172 2016-08-10 13:12:47,139.152123,35.250941,19.00,1007.1995,-3.466804,8.159439,4.185065,9.803568
 173 2016-08-10 13:12:48,139.152003,35.250780,20.00,1007.2200,-2.825158,9.203311,1.838747,9.801196
 174 2016-08-10 13:12:49,139.151857,35.250583,20.00,1007.1580,-2.499547,9.346964,1.551443,9.799002
 175 2016-08-10 13:12:51,139.151734,35.250401,20.00,1007.5884,-2.422932,9.375694,1.522712,9.802698
 176 2016-08-10 13:12:51,139.151612,35.250217,20.00,1007.6865,-2.528277,9.346964,1.532289,9.803358
 177 2016-08-10 13:12:53,139.151491,35.250034,20.00,1007.8955,-2.633622,9.279925,1.762132,9.806023
 178 2016-08-10 13:12:54,139.151370,35.249851,20.00,1007.6907,-2.614468,9.279925,1.771709,9.802623
 179 2016-08-10 13:13:04,139.149865,35.247582,21.00,1006.7571,-2.537854,9.366117,1.417367,9.806824
 180 2016-08-10 13:13:07,139.149584,35.247230,21.00,1006.7490,-2.748544,9.270349,1.608904,9.802164
 181 2016-08-10 13:13:07,139.149468,35.246996,22.00,1006.7285,-2.710236,9.279925,1.637634,9.805317
 182 2016-08-10 13:13:09,139.149294,35.246513,18.00,1006.7158,-2.748544,9.193734,1.991976,9.800368
 183 2016-08-10 13:13:12,139.149090,35.246113,15.00,1006.8132,-2.786851,9.212888,1.877054,9.806486
 184 2016-08-10 13:13:13,139.148976,35.245908,14.00,1006.8933,-2.796427,9.232041,1.771709,9.807627
 185 2016-08-10 13:13:14,139.148748,35.245488,15.00,1006.9189,-2.901772,9.241618,1.503559,9.802473
 186 2016-08-10 13:13:16,139.148628,35.245273,15.00,1006.9783,-2.920926,9.193734,1.752556,9.804489
 187 2016-08-10 13:13:17,139.148483,35.245047,17.00,1007.0061,-2.930503,9.174581,1.838747,9.805191
 188 2016-08-10 13:13:18,139.148363,35.244846,17.00,1007.0308,-2.786851,9.289502,1.417367,9.801547
 189 2016-08-10 13:13:18,139.148261,35.244639,16.00,1007.0190,-2.815581,9.251195,1.589750,9.799970
 190 2016-08-10 13:13:19,139.148140,35.244435,17.00,1007.0217,-2.920926,9.251195,1.398214,9.801603
 191 2016-08-10 13:13:20,139.148008,35.244240,16.00,1007.0105,-3.169923,9.145850,1.551443,9.803161
 192 2016-08-10 13:13:23,139.147806,35.243871,15.00,1007.1621,-3.074155,9.155427,1.675941,9.802094
 193 2016-08-10 13:13:24,139.147691,35.243675,15.00,1007.1526,-3.189077,9.165004,1.379060,9.801495
 194 2016-08-10 13:13:25,139.147562,35.243479,16.00,1007.1807,-3.179500,9.126697,1.618480,9.799249
 195 2016-08-10 13:13:26,139.147443,35.243301,15.00,1007.2214,-3.150769,9.155427,1.551443,9.805925
 196 2016-08-10 13:13:27,139.147361,35.243162,14.00,1007.2839,-3.112462,9.193734,1.379060,9.803774
 197 2016-08-10 13:13:28,139.147254,35.242994,17.00,1007.2693,-2.528277,9.346964,1.551443,9.806370
 198 2016-08-10 13:13:29,139.147154,35.242843,18.00,1007.3452,-3.294421,9.107543,1.541866,9.807033
 199 2016-08-10 13:13:31,139.146940,35.242546,21.00,1007.3992,-2.269703,8.820239,3.639187,9.807744
 200 2016-08-10 13:13:33,139.146803,35.242321,18.00,1007.3882,-2.020706,9.471462,1.513135,9.802114
 201 2016-08-10 13:13:34,139.146731,35.242200,18.00,1007.3650,-2.470816,9.471462,-0.555455,9.804186
 202 2016-08-10 13:13:35,139.146657,35.242078,19.00,1007.4565,-2.394202,9.461885,-0.967257,9.807908
 203 2016-08-10 13:13:36,139.146594,35.241952,20.00,1007.4565,-2.451663,9.471462,-0.612916,9.802801
 204 2016-08-10 13:13:37,139.146485,35.241815,22.00,1007.4705,-2.336741,9.490616,-0.823605,9.808694
 205 2016-08-10 13:13:38,139.146412,35.241670,22.00,1007.4954,-2.039860,9.557653,-0.746991,9.801416
 206 2016-08-10 13:13:40,139.146237,35.241286,20.00,1007.5696,-1.790863,9.624691,-0.488417,9.802062
 207 2016-08-10 13:13:41,139.146198,35.241183,19.00,1007.5444,-2.279280,9.538500,0.172383,9.808558
 208 2016-08-10 13:13:43,139.146158,35.241075,19.00,1007.5688,-2.011129,9.375694,2.049437,9.805533
 209 2016-08-10 13:13:45,139.146086,35.240903,19.00,1007.5994,-2.480393,9.481039,-0.316035,9.805219
 210 2016-08-10 13:13:46,139.146021,35.240776,19.00,1007.5972,-2.834735,9.375694,-0.459687,9.805645
 211 2016-08-10 13:13:47,139.145972,35.240660,22.00,1007.6147,-3.533842,9.136273,0.440533,9.805794
 212 2016-08-10 13:13:48,139.145922,35.240541,22.00,1007.6335,-4.041412,8.734048,1.857901,9.801449
 213 2016-08-10 13:13:49,139.145890,35.240432,22.00,1007.6299,-3.131616,9.279925,0.392649,9.801949
 214 2016-08-10 13:13:50,139.145811,35.240321,23.00,1007.6472,-3.351882,9.203311,-0.392649,9.802562
 215 2016-08-10 13:13:51,139.145777,35.240225,22.00,1007.5950,-3.055001,9.318233,0.229843,9.808942
 216 2016-08-10 13:13:51,139.145754,35.240121,22.00,1007.5999,-3.189077,9.260772,0.507571,9.807636
 217 2016-08-10 13:13:53,139.145732,35.240020,22.00,1007.6216,-2.901772,9.356541,0.363919,9.802937
 218 2016-08-10 13:13:54,139.145685,35.239921,23.00,1007.6467,-2.777274,9.404425,0.172383,9.807455
 219 2016-08-10 13:13:54,139.145630,35.239827,24.00,1007.7305,-4.309563,6.837840,5.554548,9.807211
 220 2016-08-10 13:13:57,139.145559,35.239682,26.00,1007.5735,-4.118027,8.877700,0.622492,9.806080
 221 2016-08-10 13:13:58,139.145457,35.239536,31.00,1007.6062,-2.212242,9.548077,0.114922,9.801683
 222 2016-08-10 13:14:00,139.145425,35.239440,31.00,1007.6396,-2.193089,9.528923,0.746991,9.806529
 223 2016-08-10 13:14:02,139.145352,35.239295,32.00,1007.6079,-2.652776,9.423578,0.612916,9.809012
 224 2016-08-10 13:14:04,139.145333,35.239181,29.00,1007.5874,-2.442086,9.490616,-0.277727,9.803709
 225 2016-08-10 13:14:06,139.145277,35.239067,31.00,1007.6555,-2.269703,9.538500,-0.172383,9.806337
 226 2016-08-10 13:14:08,139.145230,35.238947,31.00,1007.6091,-2.413355,9.490616,-0.497994,9.805308
 227 2016-08-10 13:14:10,139.145160,35.238820,27.00,1007.6296,-2.518700,9.471462,0.067038,9.800864
 228 2016-08-10 13:14:12,139.145112,35.238720,29.00,1007.6206,-2.413355,9.500193,-0.277727,9.805870
 229 2016-08-10 13:14:14,139.145053,35.238625,33.00,1007.6338,-2.365471,9.509769,-0.239420,9.802474
 230 2016-08-10 13:14:16,139.145023,35.238526,35.00,1007.6658,-2.738967,9.414001,0.047884,9.804471
 231 2016-08-10 13:14:18,139.144964,35.238442,34.00,1007.6267,-2.738967,9.414001,-0.038307,9.804429
 232 2016-08-10 13:14:19,139.144949,35.238400,33.00,1007.6086,-2.288857,9.528923,-0.363919,9.806716
 233 2016-08-10 13:14:23,139.144939,35.238307,33.00,1007.6191,-2.892196,9.308656,-1.034295,9.802328
 234 2016-08-10 13:14:34,139.144829,35.238317,40.00,1007.6348,-2.116474,8.312668,4.740520,9.800634
 235 2016-08-10 13:14:46,139.144863,35.238478,45.00,1007.6506,-0.402226,1.417367,9.691729,9.803077
 236 2016-08-10 13:14:53,139.144907,35.238561,47.00,1007.5903,-0.545878,2.260126,9.528923,9.808493
 237 2016-08-10 13:15:01,139.144971,35.238642,41.00,1007.5798,-0.469264,3.045424,9.308656,9.805401
 238 2016-08-10 13:15:09,139.145017,35.238728,40.00,1007.6165,2.154782,2.729390,9.165004,9.802548
 239 2016-08-10 13:15:16,139.145067,35.238826,39.00,1007.5679,-2.681506,9.337387,-1.312023,9.802993
 240 2016-08-10 13:15:19,139.145099,35.238873,38.00,1007.6167,-1.580173,9.662998,-0.411803,9.800003
 241 2016-08-10 13:15:29,139.145142,35.238962,39.00,1007.6296,0.363919,9.500193,-2.403779,9.806337
 242 2016-08-10 13:15:36,139.145175,35.239051,41.00,1007.5867,-2.461239,9.155427,2.480393,9.799586
 243 2016-08-10 13:15:40,139.145200,35.239089,42.00,1007.6111,-0.957681,9.749189,-0.306458,9.800906
 244 2016-08-10 13:16:24,139.145327,35.239126,42.00,1008.1511,-1.800440,9.404425,2.116474,9.806337
 245 2016-08-10 13:16:28,139.145447,35.239139,44.00,1008.1777,-1.608904,9.385271,2.327164,9.802427
 246 2016-08-10 13:16:40,139.145503,35.239146,45.00,1008.1658,-2.145205,9.509769,-1.082179,9.808605
 247 2016-08-10 13:18:02,139.145538,35.239162,49.00,1008.2119,-2.240973,9.481039,-1.072602,9.801150
 248 2016-08-10 13:18:35,139.145643,35.239237,44.00,1008.3896,1.991976,-8.705317,-4.031836,9.798276
 249 2016-08-10 13:18:55,139.145864,35.239261,44.00,1008.4355,1.264138,8.121132,5.343858,9.803451
 250 2016-08-10 13:19:01,139.145892,35.239288,45.00,1008.4990,6.971915,5.966351,3.476381,9.812755
 251 2016-08-10 13:19:12,139.145857,35.239382,43.00,1008.3572,-1.264138,8.753201,-4.223372,9.800686
 252 2016-08-10 13:19:19,139.145856,35.239484,40.00,1008.3271,-8.714894,1.580173,-4.194642,9.800069
 253 2016-08-10 13:19:27,139.145845,35.239580,39.00,1008.3284,-4.730943,-5.133168,-6.876147,9.798604
 254 2016-08-10 13:19:38,139.145812,35.239676,36.00,1008.3188,-9.069236,1.599327,-3.342306,9.796933
 255 2016-08-10 13:19:42,139.145832,35.239734,38.00,1008.4028,-9.050082,2.231396,-3.016694,9.797120
 256 2016-08-10 13:19:48,139.145819,35.239823,36.00,1008.3708,2.154782,-9.299079,2.221819,9.800634
 257 2016-08-10 13:19:53,139.145812,35.239925,40.00,1008.3286,2.078167,0.105345,9.586384,9.809619
 258 2016-08-10 13:19:59,139.145823,35.240023,42.00,1008.3796,6.426037,-7.402872,-0.076614,9.803180
 259 2016-08-10 13:20:02,139.145843,35.240079,42.00,1008.3433,6.148310,-7.575254,-0.928950,9.800466
 260 2016-08-10 13:20:13,139.145855,35.240175,43.00,1008.3489,-7.029376,-1.963245,6.540959,9.800541
 261 2016-08-10 13:20:20,139.145885,35.240275,44.00,1008.3511,5.774815,-6.110003,5.037400,9.800817
 262 2016-08-10 13:20:24,139.145901,35.240295,44.00,1008.2849,7.920019,-5.477933,-1.800440,9.796736
 263 2016-08-10 13:20:30,139.145994,35.240359,45.00,1008.3979,-2.126051,-3.754108,8.801085,9.801659
 264 2016-08-10 13:20:41,139.146071,35.240432,47.00,1008.3147,-4.041412,0.670376,-8.906430,9.803414
 265 2016-08-10 13:20:43,139.146097,35.240491,45.00,1008.2749,-3.725378,1.063026,-9.002198,9.800410
 266 2016-08-10 13:20:49,139.146105,35.240581,47.00,1008.4246,9.643845,-0.028730,-1.781286,9.807015
 267 2016-08-10 13:20:54,139.146189,35.240655,43.00,1008.2952,-5.161899,1.359907,8.216900,9.798571
 268 2016-08-10 13:21:00,139.146307,35.240700,43.00,1008.3384,2.202666,2.815581,-9.126697,9.801828
 269 2016-08-10 13:21:03,139.146342,35.240725,42.00,1008.3877,0.210690,-0.670376,-9.777920,9.803138
 270 2016-08-10 13:21:07,139.146443,35.240772,44.00,1008.3005,8.925584,0.861913,-3.964798,9.804517
 271 2016-08-10 13:21:22,139.146436,35.240857,0.00,1008.3484,-0.574608,9.375694,2.796427,9.800705
 272 2016-08-10 13:21:44,139.146436,35.240857,0.00,1008.3242,-1.398214,9.318233,2.710236,9.804584
 273 2016-08-10 13:24:08,139.146313,35.240836,33.00,1008.3311,-4.357447,8.571242,1.886631,9.798618
 274 2016-08-10 13:25:12,139.146294,35.240770,41.00,1008.3130,-3.275268,8.647857,3.256114,9.803830
 275 2016-08-10 13:26:04,139.146284,35.240749,43.00,1008.2905,-2.173935,9.519346,-0.861913,9.802390
 276 2016-08-10 13:28:57,139.146302,35.240756,51.00,1008.2725,-1.675941,9.356541,2.403779,9.804682
 277 2016-08-10 13:29:19,139.146237,35.240829,48.00,1008.2000,7.307104,-2.288857,6.129156,9.808118
 278 2016-08-10 13:29:26,139.146206,35.240920,45.00,1008.2510,9.576807,-1.829170,1.024718,9.803629
 279 2016-08-10 13:29:27,139.146212,35.240935,44.00,1008.0996,9.768343,-0.555455,-0.296881,9.788626
 280 2016-08-10 13:29:42,139.146266,35.241021,43.00,1008.1980,-8.896853,0.545878,4.060566,9.794906
 281 2016-08-10 13:29:51,139.146313,35.241070,44.00,1008.1123,3.495534,0.699107,9.136273,9.807089
 282 2016-08-10 13:30:08,139.146317,35.241088,43.00,1007.7715,-0.363919,8.456321,4.951209,9.805930
 283 2016-08-10 13:30:29,139.146255,35.241147,41.00,1007.7466,-4.462792,-4.558560,7.441179,9.801435
 284 2016-08-10 13:30:41,139.146259,35.241199,36.00,1008.1121,7.335834,-2.202666,6.119579,9.803849
 285 2016-08-10 13:30:49,139.146193,35.241275,33.00,1008.1936,0.105345,1.886631,9.624691,9.808422
 286 2016-08-10 13:30:58,139.146116,35.241342,37.00,1008.2068,-0.143652,0.000000,9.806650,9.807702
 287 2016-08-10 13:31:09,139.145991,35.241378,41.00,1008.0920,-0.746991,2.078167,9.557653,9.809460
 288 2016-08-10 13:31:16,139.145891,35.241418,43.00,1008.0869,-0.478840,2.432509,9.490616,9.809086
 289 2016-08-10 13:31:31,139.145736,35.241500,44.00,1007.9924,-8.025364,5.631162,0.076614,9.804199
 290 2016-08-10 13:31:39,139.145620,35.241545,42.00,1007.9006,-2.145205,9.327810,2.126051,9.804593
 291 2016-08-10 13:31:41,139.145607,35.241551,41.00,1007.9014,1.321599,9.672575,-0.919373,9.805640
 292 2016-08-10 13:31:47,139.145497,35.241586,41.00,1007.9722,-2.633622,8.705317,3.658340,9.803161
 293 2016-08-10 13:31:53,139.145381,35.241568,40.00,1007.8674,-1.340753,9.595961,1.503559,9.805140
 294 2016-08-10 13:32:01,139.145270,35.241596,38.00,1007.7510,-1.637634,9.481039,1.886631,9.804658
 295 2016-08-10 13:32:08,139.145175,35.241648,42.00,1007.7742,1.484405,9.260772,-2.853889,9.803572
 296 2016-08-10 13:32:17,139.145074,35.241704,42.00,1007.6401,1.532289,8.705317,-4.252102,9.808712
 297 2016-08-10 13:32:21,139.145010,35.241711,42.00,1007.6382,-1.991976,9.385271,2.001553,9.800892
 298 2016-08-10 13:32:28,139.144894,35.241725,40.00,1007.4973,-1.608904,9.595961,1.244985,9.809231
 299 2016-08-10 13:32:33,139.144789,35.241798,42.00,1007.5664,2.413355,8.714894,-3.782839,9.802221
 300 2016-08-10 13:32:38,139.144709,35.241861,44.00,1007.6404,2.461239,7.977480,-5.142745,9.805392
 301 2016-08-10 13:32:41,139.144662,35.241876,44.00,1007.7395,-0.478840,9.758766,0.881066,9.810152
 302 2016-08-10 13:32:46,139.144553,35.241900,44.00,1007.5388,1.953669,9.327810,-2.298434,9.803452
 303 2016-08-10 13:32:54,139.144446,35.241925,41.00,1007.5137,3.466804,7.489063,-5.305551,9.810895
 304 2016-08-10 13:33:10,139.144328,35.241863,45.00,1007.5557,-7.536947,-2.566584,-5.707777,9.796512
 305 2016-08-10 13:33:15,139.144299,35.241759,44.00,1007.5486,-1.225831,9.050082,3.572149,9.806472
 306 2016-08-10 13:33:22,139.144268,35.241661,45.00,1007.2649,-1.082179,9.739613,0.373495,9.806664
 307 2016-08-10 13:33:32,139.144196,35.241591,43.00,1007.3547,-3.074155,6.742072,-6.416461,9.801884
 308 2016-08-10 13:33:40,139.144152,35.241497,44.00,1007.2292,-4.386178,-8.753201,0.153229,9.791862
 309 2016-08-10 13:33:41,139.144141,35.241491,42.00,1007.2930,-3.351882,-9.097966,1.417367,9.798828
 310 2016-08-10 13:33:49,139.144022,35.241474,41.00,1007.1658,0.986411,4.453215,-8.676587,9.802413
 311 2016-08-10 13:33:57,139.143911,35.241515,41.00,1007.0427,2.422932,2.825158,9.069236,9.803222
 312 2016-08-10 13:34:02,139.143796,35.241503,46.00,1007.0649,0.660800,-7.412448,6.378153,9.801117
 313 2016-08-10 13:34:08,139.143682,35.241488,50.00,1006.9797,8.427590,4.338294,-2.528277,9.810059
 314 2016-08-10 13:34:15,139.143571,35.241458,51.00,1006.9387,7.220912,2.145205,6.272809,9.802633
 315 2016-08-10 13:34:22,139.143478,35.241419,54.00,1006.7722,8.638280,4.625597,0.296881,9.803273
 316 2016-08-10 13:34:30,139.143367,35.241389,57.00,1006.6902,9.232041,-2.987964,-1.379060,9.801037
 317 2016-08-10 13:34:36,139.143256,35.241357,56.00,1006.6741,9.500193,-0.670376,-2.336741,9.806295
 318 2016-08-10 13:34:42,139.143067,35.241372,0.00,1006.4780,9.318233,2.748544,1.302446,9.802058
 319 2016-08-10 13:34:54,139.143074,35.241420,44.00,1006.5178,-4.960786,8.408437,-0.890643,9.803288
 320 2016-08-10 13:34:59,139.142979,35.241487,49.00,1006.3887,-5.401319,8.159439,0.497994,9.797892
 321 2016-08-10 13:35:03,139.142948,35.241512,49.00,1006.2114,-6.406884,6.330269,3.859453,9.798768
 322 2016-08-10 13:35:12,139.142925,35.241601,51.00,1006.1609,-5.564125,-4.884171,6.416461,9.797223
 323 2016-08-10 13:35:23,139.142885,35.241704,52.00,1005.8101,9.203311,0.258574,3.380613,9.807973
 324 2016-08-10 13:35:29,139.142838,35.241795,51.00,1005.7205,3.715801,-2.710236,-8.657434,9.803250
 325 2016-08-10 13:35:40,139.142782,35.241878,53.00,1005.6643,-1.359907,3.562572,9.030929,9.803007
 326 2016-08-10 13:35:44,139.142782,35.241883,55.00,1005.6506,1.417367,2.873042,9.270349,9.808296
 327 2016-08-10 13:36:03,139.142738,35.241858,55.00,1005.3591,2.394202,0.689530,9.481039,9.802946
 328 2016-08-10 13:36:23,139.142693,35.241892,56.00,1005.2703,9.730036,-0.201113,1.177947,9.803142
 329 2016-08-10 13:36:43,139.142624,35.241929,56.00,1005.3032,0.067038,3.217807,9.260772,9.804115
 330 2016-08-10 13:36:54,139.142513,35.241947,55.00,1005.2041,0.373495,3.964798,8.963891,9.808693
 331 2016-08-10 13:37:03,139.142417,35.241935,55.00,1005.0635,2.777274,3.955221,8.532935,9.806529
 332 2016-08-10 13:37:12,139.142306,35.241910,58.00,1005.2764,-4.472369,2.193089,8.446744,9.806080
 333 2016-08-10 13:37:24,139.142192,35.241906,57.00,1004.7539,-1.493982,9.279925,2.777274,9.801135
 334 2016-08-10 13:37:32,139.142099,35.241840,57.00,1004.5806,0.220267,-4.012682,8.935161,9.797307
 335 2016-08-10 13:37:40,139.141992,35.241796,60.00,1004.4211,-8.101978,5.391742,1.130063,9.797448
 336 2016-08-10 13:37:44,139.141937,35.241756,58.00,1004.3428,-7.948750,0.268151,5.726931,9.800625
 337 2016-08-10 13:37:52,139.141831,35.241717,59.00,1004.2161,-0.028730,-9.768343,0.766145,9.798384
 338 2016-08-10 13:38:00,139.141718,35.241689,62.00,1004.2166,0.095768,-9.710882,1.312023,9.799582
 339 2016-08-10 13:38:07,139.141644,35.241665,59.00,1003.9258,-2.873042,-9.165004,1.944092,9.799549
 340 2016-08-10 13:38:16,139.141553,35.241606,61.00,1003.6060,3.418920,0.574608,-9.174581,9.807758
 341 2016-08-10 13:38:23,139.141451,35.241573,62.00,1003.5708,-5.305551,-8.197746,0.708684,9.790513
 342 2016-08-10 13:38:27,139.141404,35.241567,63.00,1003.5981,-4.462792,-8.638280,1.139640,9.789544
 343 2016-08-10 13:38:38,139.141289,35.241567,68.00,1003.3438,8.178593,5.372589,-0.670376,9.808338
 344 2016-08-10 13:38:46,139.141167,35.241570,74.00,1003.1467,8.331821,2.212242,4.673482,9.805850
 345 2016-08-10 13:38:48,139.141125,35.241567,74.00,1003.1194,7.872135,1.934515,5.525817,9.810582
 346 2016-08-10 13:38:57,139.141019,35.241543,71.00,1002.9744,8.379706,2.901772,4.185065,9.805842
 347 2016-08-10 13:39:05,139.140929,35.241478,72.00,1002.7095,5.908890,1.762132,7.632715,9.812157
 348 2016-08-10 13:39:08,139.140914,35.241472,74.00,1002.8323,2.671929,8.111555,4.817134,9.805168
 349 2016-08-10 13:39:18,139.140785,35.241489,79.00,1002.6824,6.981492,5.612009,3.993528,9.807351
 350 2016-08-10 13:39:26,139.140668,35.241459,79.00,1002.3787,4.060566,8.896853,-0.746991,9.808170
 351 2016-08-10 13:39:27,139.140650,35.241469,78.00,1002.2388,-1.379060,9.586384,-1.503559,9.801084
 352 2016-08-10 13:39:49,139.140538,35.241502,82.00,1002.3325,-9.174581,1.292869,3.179500,9.795594
 353 2016-08-10 13:39:53,139.140405,35.241493,82.00,1001.8984,-0.440533,-4.797980,-8.532935,9.799269
 354 2016-08-10 13:39:58,139.140282,35.241498,82.00,1001.9280,-2.978387,8.015787,-4.797980,9.805317
 355 2016-08-10 13:40:08,139.140195,35.241483,81.00,1001.7686,-0.823605,-3.581726,9.088389,9.803362
 356 2016-08-10 13:40:46,139.140159,35.241472,82.00,1001.5801,8.983045,1.762132,3.505111,9.802347
 357 2016-08-10 13:41:03,139.139944,35.241546,83.00,1001.5312,-0.775721,2.106898,9.548077,9.808493
 358 2016-08-10 13:41:05,139.139924,35.241557,84.00,1001.4749,0.028730,1.273715,9.720459,9.803596
 359 2016-08-10 13:41:26,139.139861,35.241603,90.00,1001.4482,-0.622492,3.007117,9.318233,9.811204
 360 2016-08-10 13:41:33,139.139777,35.241668,91.00,1001.3684,6.378153,2.250550,7.096414,9.803311
 361 2016-08-10 13:41:40,139.139693,35.241729,93.00,1001.3425,-4.395754,6.540959,5.832275,9.804195
 362 2016-08-10 13:41:47,139.139608,35.241768,94.00,1001.0906,8.437167,2.920926,4.060566,9.808455
 363 2016-08-10 13:41:54,139.139489,35.241762,92.00,1001.3152,7.220912,5.324705,3.964798,9.808857
 364 2016-08-10 13:42:02,139.139362,35.241772,93.00,1001.0278,7.431602,-3.849876,5.104438,9.803343
 365 2016-08-10 13:42:09,139.139281,35.241754,93.00,1000.9700,2.308010,-3.533842,8.848969,9.804040
 366 2016-08-10 13:42:16,139.139203,35.241687,92.00,1000.7251,-5.832275,3.859453,-6.866570,9.801051
 367 2016-08-10 13:42:23,139.139099,35.241650,90.00,1000.6731,-3.763685,-7.680599,4.778827,9.797659
 368 2016-08-10 13:42:30,139.138985,35.241633,92.00,1000.6072,0.402226,-7.278373,6.540959,9.793909
 369 2016-08-10 13:42:37,139.138879,35.241678,95.00,1000.6458,5.726931,-7.067683,3.629610,9.794077
 370 2016-08-10 13:42:45,139.138768,35.241727,98.00,1000.3953,2.145205,1.130063,-9.528923,9.832564
 371 2016-08-10 13:42:49,139.138696,35.241740,101.00,1000.4524,2.346318,1.072602,-9.461885,9.807291
 372 2016-08-10 13:42:56,139.138574,35.241748,106.00,1000.2754,-4.022259,5.755661,-6.837840,9.801135
 373 2016-08-10 13:43:06,139.138455,35.241753,107.00,1000.1919,1.130063,9.605537,-1.637634,9.809446
 374 2016-08-10 13:43:10,139.138417,35.241761,108.00,999.9644,5.477933,5.813122,-5.688623,9.806150
 375 2016-08-10 13:43:18,139.138290,35.241762,111.00,999.7703,-7.948750,-4.089296,3.993528,9.790466
 376 2016-08-10 13:43:30,139.138196,35.241745,111.00,999.5791,-7.441179,3.859453,5.066131,9.794498
 377 2016-08-10 13:43:38,139.138077,35.241741,111.00,999.3972,4.242526,-8.226477,-3.208230,9.796259
 378 2016-08-10 13:43:44,139.137958,35.241721,114.00,999.2126,0.076614,7.910442,-5.793968,9.805663
 379 2016-08-10 13:43:52,139.137853,35.241682,116.00,999.1946,8.791509,4.290410,-0.746991,9.811026
 380 2016-08-10 13:44:00,139.137744,35.241653,117.00,999.1367,6.062119,7.412448,-2.106898,9.804728
 381 2016-08-10 13:44:08,139.137665,35.241590,119.00,998.8203,2.566584,7.297527,6.023811,9.804466
 382 2016-08-10 13:44:10,139.137655,35.241591,120.00,998.7927,1.790863,8.159439,5.142745,9.809764
 383 2016-08-10 13:44:19,139.137585,35.241508,119.00,998.7739,4.453215,-7.623138,4.252102,9.799170
 384 2016-08-10 13:44:28,139.137532,35.241423,123.00,998.5630,1.580173,-8.494628,4.616021,9.796086
 385 2016-08-10 13:44:29,139.137527,35.241412,123.00,998.4673,-3.055001,-6.119579,7.019799,9.801013
 386 2016-08-10 13:44:37,139.137489,35.241320,126.00,998.2834,-8.925584,-0.325611,-4.031836,9.799376
 387 2016-08-10 13:44:45,139.137485,35.241218,130.00,998.2307,-3.533842,7.584831,-5.104438,9.801682
 388 2016-08-10 13:44:49,139.137471,35.241179,130.00,998.1631,-6.742072,7.067683,-0.804452,9.800756
 389 2016-08-10 13:44:57,139.137424,35.241094,131.00,997.8940,3.485958,1.896208,-8.963891,9.803002
 390 2016-08-10 13:45:10,139.137369,35.241019,129.00,997.8901,-2.997540,9.241618,-1.302446,9.802506
 391 2016-08-10 13:45:39,139.137360,35.241028,129.00,997.9153,-1.800440,9.500193,1.647211,9.808596
 392 2016-08-10 13:45:50,139.137341,35.241032,131.00,997.9202,-3.093309,9.222465,-1.216254,9.803147
 393 2016-08-10 13:46:33,139.137340,35.241032,131.00,997.8071,-4.692636,7.048530,4.932055,9.799376
 394 2016-08-10 13:46:37,139.137271,35.240961,136.00,997.6670,6.607996,6.550536,-3.102885,9.808314
 395 2016-08-10 13:46:43,139.137179,35.240906,137.00,997.7776,-7.182605,3.189077,5.659893,9.684752
 396 2016-08-10 13:46:52,139.137074,35.240879,135.00,997.3491,-7.738060,3.907337,4.568137,9.798609
 397 2016-08-10 13:47:01,139.136957,35.240840,131.00,997.4390,4.730943,0.268151,8.580819,9.802254
 398 2016-08-10 13:47:07,139.136860,35.240783,132.00,997.1284,7.613562,-0.105345,-6.177041,9.804756
 399 2016-08-10 13:47:12,139.136853,35.240736,132.00,997.0977,7.201759,-6.205771,-2.394202,9.803526
 400 2016-08-10 13:47:23,139.136818,35.240648,133.00,996.7224,5.937620,-7.690176,1.273715,9.798800
 401 2016-08-10 13:47:30,139.136775,35.240561,133.00,996.5342,-7.125144,-5.803545,3.399766,9.798328
 402 2016-08-10 13:47:35,139.136680,35.240531,134.00,996.5500,0.852336,-5.975927,7.718906,9.798964
 403 2016-08-10 13:47:46,139.136580,35.240482,135.00,996.2603,-5.056554,0.373495,-8.389283,9.802464
 404 2016-08-10 13:47:55,139.136476,35.240463,139.00,996.1733,8.456321,-1.675941,-4.663905,9.801538
 405 2016-08-10 13:48:03,139.136353,35.240472,145.00,995.9707,5.612009,0.526724,8.025364,9.807066
 406 2016-08-10 13:48:10,139.136246,35.240446,147.00,995.8945,8.532935,-1.340753,4.635174,9.802726
 407 2016-08-10 13:48:14,139.136189,35.240440,145.00,995.8696,4.797980,-1.130063,8.475474,9.804658
 408 2016-08-10 13:48:25,139.136086,35.240475,144.00,995.5444,-1.177947,7.565677,-6.129156,9.807833
 409 2016-08-10 13:48:38,139.136016,35.240504,143.00,995.7053,-5.181053,6.042965,5.717354,9.800452
 410 2016-08-10 13:48:58,139.135971,35.240445,144.00,995.3896,-6.722919,6.971915,1.513135,9.802796
 411 2016-08-10 13:49:12,139.135711,35.240437,150.00,995.0874,-3.543418,9.107543,-0.804452,9.805626
 412 2016-08-10 13:49:26,139.135514,35.240347,148.00,994.9941,1.417367,-2.413355,-9.394848,9.802876
 413 2016-08-10 13:49:35,139.135444,35.240421,152.00,994.6670,-4.845864,4.194642,-7.412448,9.799072
 414 2016-08-10 13:49:40,139.135409,35.240440,153.00,994.6426,0.775721,-1.398214,-9.672575,9.803849
 415 2016-08-10 13:49:48,139.135301,35.240414,154.00,994.5464,7.450756,-4.261679,4.730943,9.800892
 416 2016-08-10 13:49:55,139.135201,35.240368,149.00,994.4624,-6.349423,6.378153,-3.869030,9.796193
 417 2016-08-10 13:50:04,139.135062,35.240330,152.00,994.0522,-6.531382,6.042965,-4.098873,9.796792
 418 2016-08-10 13:50:38,139.134971,35.240294,163.00,994.0469,-0.277727,-1.465251,9.691729,9.805799
 419 2016-08-10 13:51:00,139.134912,35.240282,166.00,993.9529,-1.206678,9.595961,1.618480,9.806019
 420 2016-08-10 13:51:06,139.134802,35.240244,168.00,993.8762,-0.928950,9.385271,2.681506,9.804934
 421 2016-08-10 13:51:20,139.134687,35.240205,165.00,993.4880,0.995988,9.299079,-2.940080,9.803516
 422 2016-08-10 13:51:26,139.134589,35.240158,166.00,993.3640,1.704672,9.117120,-3.189077,9.808057
 423 2016-08-10 13:51:36,139.134485,35.240114,167.00,993.2361,0.181959,9.605537,1.944092,9.801987
 424 2016-08-10 13:51:40,139.134440,35.240088,169.00,993.3125,3.131616,7.642292,-5.286397,9.806000
 425 2016-08-10 13:51:45,139.134338,35.240032,170.00,993.2617,3.093309,9.040505,-2.193089,9.803516
 426 2016-08-10 13:52:00,139.134280,35.240027,168.00,992.9663,-3.246537,8.791509,2.873042,9.802296
 427 2016-08-10 13:52:12,139.134166,35.239996,172.00,992.7534,-0.316035,9.672575,-1.570596,9.804354
 428 2016-08-10 13:52:17,139.134068,35.239946,170.00,992.6372,-0.373495,9.662998,1.599327,9.801575
 429 2016-08-10 13:52:19,139.134038,35.239919,172.00,992.7585,0.919373,9.768343,0.067038,9.811741
 430 2016-08-10 13:52:26,139.133972,35.239843,174.00,992.5459,-7.594408,4.261679,-4.491522,9.798505
 431 2016-08-10 13:52:33,139.133910,35.239755,175.00,992.4976,0.114922,-4.654328,8.628703,9.804616
 432 2016-08-10 13:52:36,139.133810,35.239717,177.00,992.3777,4.941632,-7.345411,4.213795,9.804635
 433 2016-08-10 13:52:40,139.133747,35.239712,177.00,992.5139,-0.392649,-4.156334,8.868123,9.801678
 434 2016-08-10 13:53:40,139.133752,35.239659,180.00,992.3052,-0.746991,-8.111555,5.449203,9.800466
 435 2016-08-10 13:53:53,139.133671,35.239583,180.00,992.0388,-4.204218,4.539406,7.603985,9.803175
 436 2016-08-10 13:53:58,139.133589,35.239510,181.00,992.0630,-4.079720,8.906430,0.440533,9.806257
 437 2016-08-10 13:53:59,139.133581,35.239497,182.00,991.9475,-4.606444,8.647857,0.248997,9.801365
 438 2016-08-10 13:54:08,139.133545,35.239402,185.00,991.9031,-2.403779,0.986411,-9.452309,9.802923
 439 2016-08-10 13:54:17,139.133520,35.239321,190.00,991.8481,-5.238513,-2.030283,-8.025364,9.796455
 440 2016-08-10 13:54:26,139.133484,35.239222,193.00,991.4536,5.430049,-4.165911,-7.019799,9.803970
 441 2016-08-10 13:54:33,139.133452,35.239130,195.00,991.4436,-4.070143,-8.714894,1.905785,9.805481
 442 2016-08-10 13:54:36,139.133410,35.239097,194.00,991.3679,-5.305551,-7.967903,2.097321,9.799750
 443 2016-08-10 13:54:44,139.133314,35.239041,195.00,991.1917,-5.420473,6.789956,-4.539406,9.802614
 444 2016-08-10 13:54:54,139.133220,35.238988,192.00,991.0623,-6.732495,-2.288857,-6.742072,9.799025
 445 2016-08-10 13:54:58,139.133170,35.238945,193.00,990.9036,-2.509123,-7.594408,5.650316,9.792691
 446 2016-08-10 13:55:07,139.133100,35.238868,194.00,990.8962,-1.168370,-9.653421,1.187524,9.796114
 447 2016-08-10 13:55:21,139.133043,35.238845,194.00,990.8079,-1.570596,9.423578,2.193089,9.802053
 448 2016-08-10 13:55:40,139.133037,35.238827,195.00,990.8840,-2.461239,9.471462,0.603339,9.804607
 449 2016-08-10 13:56:01,139.133037,35.238826,195.00,990.7864,-2.442086,9.461885,-0.775721,9.802694
 450 2016-08-10 13:56:16,139.132934,35.238792,197.00,990.5732,-2.154782,3.878607,-8.743625,9.804981
 451 2016-08-10 13:56:20,139.132887,35.238765,199.00,990.5059,-4.367024,5.315128,-6.981492,9.801159
 452 2016-08-10 13:56:28,139.132812,35.238692,196.00,990.4292,-4.922479,-3.849876,-7.546524,9.798080
 453 2016-08-10 13:56:36,139.132721,35.238634,197.00,990.2795,-3.217807,-7.441179,-5.497087,9.795070
 454 2016-08-10 13:56:42,139.132683,35.238610,202.00,990.1587,0.565032,7.565677,-6.215348,9.807613
 455 2016-08-10 13:56:50,139.132602,35.238545,206.00,990.0330,3.112462,-7.431602,5.573701,9.797054
 456 2016-08-10 13:56:55,139.132545,35.238466,206.00,990.0220,4.606444,8.657434,-0.095768,9.807123
 457 2016-08-10 13:57:01,139.132495,35.238422,208.00,989.7866,4.577713,8.628703,0.833182,9.803273
 458 2016-08-10 13:57:14,139.132404,35.238362,204.00,989.6462,8.609550,4.683059,-0.383072,9.808268
 459 2016-08-10 13:57:21,139.132319,35.238308,205.00,989.6147,9.500193,2.317587,-0.727837,9.805846
 460 2016-08-10 13:57:31,139.132246,35.238230,205.00,989.4839,-9.423578,1.944092,1.848324,9.797940
 461 2016-08-10 13:57:37,139.132181,35.238147,209.00,989.3289,-8.954314,1.599327,-3.639187,9.797003
 462 2016-08-10 13:57:44,139.132140,35.238118,207.00,989.3518,-6.876147,-4.481946,-5.343858,9.794185
 463 2016-08-10 13:58:19,139.132052,35.238130,211.00,989.3374,-4.730943,2.595315,8.188169,9.806304
 464 2016-08-10 13:59:21,139.132059,35.238130,211.00,989.3889,-2.432509,5.200206,7.948750,9.805196
 465 2016-08-10 13:59:42,139.132059,35.238129,211.00,989.2979,-2.250550,5.487510,7.805098,9.802923
 466 2016-08-10 14:00:40,139.132060,35.238129,211.00,989.3074,-2.202666,5.123591,8.063671,9.804372
 467 2016-08-10 14:00:59,139.132060,35.238129,211.00,989.3328,-1.838747,5.209783,8.101978,9.806369
 468 2016-08-10 14:01:20,139.132059,35.238129,211.00,989.3035,-1.474828,4.979939,8.312668,9.801804
 469 2016-08-10 14:01:43,139.132059,35.238128,211.00,989.3047,-3.093309,5.497087,7.508216,9.806112
 470 2016-08-10 14:02:03,139.132042,35.238114,210.00,989.3149,-3.007117,5.401319,7.613562,9.807310
 471 2016-08-10 14:02:25,139.132056,35.238089,213.00,989.2163,-2.394202,9.366117,1.647211,9.806613
 472 2016-08-10 14:02:55,139.132005,35.237996,219.00,988.8557,5.956774,4.376601,6.445191,9.807052
 473 2016-08-10 14:03:00,139.131919,35.237938,215.00,988.8315,8.350976,5.008670,1.197101,9.811148
 474 2016-08-10 14:03:11,139.131802,35.237931,214.00,988.7891,-3.715801,9.069236,-0.354342,9.807333
 475 2016-08-10 14:03:21,139.131680,35.237918,218.00,988.5693,0.497994,8.657434,-4.568137,9.801379
 476 2016-08-10 14:03:25,139.131585,35.237845,218.00,988.5869,7.173028,5.525817,3.773262,9.809409
 477 2016-08-10 14:03:28,139.131515,35.237752,219.00,988.3328,7.125144,-0.785298,6.684611,9.801449
 478 2016-08-10 14:03:35,139.131432,35.237677,220.00,988.2693,-4.194642,-5.458780,-6.971915,9.798005
 479 2016-08-10 14:03:47,139.131369,35.237620,222.00,988.2231,-5.880159,-4.232949,-6.598420,9.799657
 480 2016-08-10 14:03:53,139.131294,35.237536,221.00,987.9846,-9.701305,-0.488417,1.273715,9.796746
 481 2016-08-10 14:04:03,139.131256,35.237445,223.00,987.8037,-7.096414,5.583278,3.801992,9.797307
 482 2016-08-10 14:04:03,139.131249,35.237439,222.00,987.7263,-5.535394,6.914454,-4.204218,9.804373
 483 2016-08-10 14:04:13,139.131176,35.237357,218.00,987.7925,-8.638280,-3.533842,2.978387,9.796872
 484 2016-08-10 14:04:24,139.131109,35.237275,226.00,987.4282,8.446744,-3.897760,-3.083732,9.800481
 485 2016-08-10 14:04:33,139.131046,35.237201,224.00,987.2573,4.654328,-6.196194,6.004658,9.803648
 486 2016-08-10 14:04:38,139.130977,35.237125,224.00,987.3574,0.948104,4.999093,8.379706,9.803536
 487 2016-08-10 14:04:42,139.130973,35.237102,221.00,987.2522,-1.599327,9.662998,0.507571,9.807600
 488 2016-08-10 14:05:02,139.130922,35.237042,223.00,987.1135,2.997540,8.207323,4.443638,9.802618
 489 2016-08-10 14:05:23,139.130919,35.237036,227.00,986.9351,-1.991976,9.155427,-2.901772,9.808674
 490 2016-08-10 14:05:45,139.130902,35.236737,232.00,986.5193,3.150769,0.076614,-9.289502,9.809591
 491 2016-08-10 14:05:58,139.130886,35.236644,239.00,986.5256,1.513135,-9.385271,2.384625,9.800986
 492 2016-08-10 14:06:25,139.130910,35.236636,241.00,986.4946,-2.202666,9.471462,-1.235408,9.802376
 493 2016-08-10 14:06:57,139.130814,35.236481,247.00,986.3350,-4.118027,8.887277,-0.497994,9.807641
 494 2016-08-10 14:07:05,139.130750,35.236421,245.00,986.3271,-4.750096,8.159439,2.643199,9.804405
 495 2016-08-10 14:07:16,139.130677,35.236343,239.00,986.2498,-2.432509,6.742072,6.684611,9.800850
 496 2016-08-10 14:07:33,139.130588,35.236198,239.00,986.1140,7.891289,5.698200,-1.177947,9.804564
 497 2016-08-10 14:07:41,139.130515,35.236130,239.00,986.1353,8.216900,5.257667,-0.986411,9.804770
 498 2016-08-10 14:07:46,139.130484,35.236093,239.00,986.0227,9.509769,2.317587,-0.555455,9.803849
 499 2016-08-10 14:07:50,139.130489,35.235992,240.00,986.1191,-9.212888,-3.093309,-1.206678,9.792953
 500 2016-08-10 14:08:02,139.130414,35.235909,240.00,985.9832,-6.569689,4.759673,-5.497087,9.799657
 501 2016-08-10 14:08:05,139.130395,35.235867,242.00,985.8662,-8.714894,4.232949,-1.455675,9.797256
 502 2016-08-10 14:08:16,139.130342,35.235775,237.00,985.9282,-8.044518,-0.948104,5.516241,9.800106
 503 2016-08-10 14:08:24,139.130263,35.235713,236.00,985.7766,-5.573701,-2.068590,7.785944,9.796231
 504 2016-08-10 14:08:37,139.130186,35.235641,236.00,985.7302,6.301539,-7.259220,-1.896208,9.798024
 505 2016-08-10 14:08:59,139.130063,35.235495,237.00,985.4509,5.631162,-0.555455,8.015787,9.811797
 506 2016-08-10 14:09:04,139.130005,35.235470,239.00,985.4072,5.363012,-1.312023,8.101978,9.804354
 507 2016-08-10 14:09:14,139.129899,35.235436,241.00,985.4016,-0.411803,4.654328,8.619126,9.804167
 508 2016-08-10 14:09:24,139.129868,35.235417,239.00,985.2043,-2.987964,7.958326,4.874595,9.799212
 509 2016-08-10 14:09:45,139.129855,35.235359,241.00,984.8818,3.600879,6.646304,-6.244078,9.804499
 510 2016-08-10 14:09:54,139.129818,35.235261,251.00,984.7371,4.012682,7.115568,-5.430049,9.809096
 511 2016-08-10 14:10:02,139.129766,35.235174,253.00,984.8481,-3.533842,8.791509,2.518700,9.804209
 512 2016-08-10 14:10:05,139.129768,35.235103,253.00,984.5881,-3.150769,9.059659,2.030283,9.804429
 513 2016-08-10 14:10:12,139.129727,35.235015,250.00,984.5547,-0.430956,-0.478840,9.787497,9.808675
 514 2016-08-10 14:10:21,139.129724,35.234924,250.00,984.4805,-6.148310,3.275268,6.895301,9.801748
 515 2016-08-10 14:10:24,139.129716,35.234869,248.00,984.4094,-3.955221,6.426037,6.253655,9.800303
 516 2016-08-10 14:10:37,139.129604,35.234825,251.00,984.3037,4.070143,8.446744,-2.863465,9.803723
 517 2016-08-10 14:10:44,139.129510,35.234802,252.00,984.1465,6.320693,7.498640,0.153229,9.808375
 518 2016-08-10 14:11:00,139.129424,35.234745,260.00,984.0542,7.651869,6.052542,0.986411,9.805986
 519 2016-08-10 14:11:05,139.129417,35.234736,260.00,983.9294,6.617573,7.000646,1.829170,9.805467
 520 2016-08-10 14:11:16,139.129303,35.234701,256.00,983.8657,-8.101978,-2.873042,-4.692636,9.793735
 521 2016-08-10 14:11:22,139.129210,35.234625,259.00,983.7766,-5.851429,-3.926491,-6.799533,9.792354
 522 2016-08-10 14:11:26,139.129170,35.234581,261.00,983.8271,7.125144,6.244078,-2.528277,9.805528
 523 2016-08-10 14:11:32,139.129109,35.234499,262.00,983.6973,0.383072,5.908890,7.814674,9.804635
 524 2016-08-10 14:12:30,139.129062,35.234459,265.00,983.7595,-0.067038,9.777920,0.737414,9.805916
 525 2016-08-10 14:12:35,139.128963,35.234419,265.00,983.7271,-0.047884,9.768343,0.861913,9.806412
 526 2016-08-10 14:12:38,139.129023,35.234292,266.00,983.7446,-2.643199,9.346964,1.340753,9.805603
 527 2016-08-10 14:12:48,139.129037,35.234346,264.00,983.7671,-0.593762,9.768343,0.679953,9.809965
 528 2016-08-10 14:13:05,139.129013,35.234354,259.00,983.6604,-7.814674,4.778827,3.485958,9.800930
 529 2016-08-10 14:13:13,139.128991,35.234259,264.00,983.6970,-2.183512,3.524265,8.887277,9.806725
 530 2016-08-10 14:13:26,139.128985,35.234214,264.00,983.6965,-5.535394,-0.517148,8.073248,9.802314
 531 2016-08-10 14:16:27,139.129033,35.234163,261.00,983.8008,-3.888184,8.925584,1.149217,9.803301
 532 2016-08-10 14:16:38,139.129076,35.234076,259.00,983.7075,7.431602,4.759673,4.261679,9.800261
 533 2016-08-10 14:16:48,139.129036,35.234038,259.00,983.6987,2.116474,9.557653,-0.517148,9.802839
 534 2016-08-10 14:16:58,139.129062,35.233947,260.00,983.6057,7.211336,6.033388,2.777274,9.803998
 535 2016-08-10 14:17:08,139.129074,35.233892,262.00,983.5913,-1.130063,8.580819,4.616021,9.808932
 536 2016-08-10 14:17:20,139.129132,35.233808,265.00,983.6858,2.240973,9.059659,3.026271,9.811101
 537 2016-08-10 14:17:27,139.129114,35.233730,265.00,983.3640,5.746084,7.776367,1.666364,9.811531
 538 2016-08-10 14:17:42,139.129043,35.233650,265.00,983.1101,0.718261,6.991069,-6.837840,9.805458
 539 2016-08-10 14:18:07,139.129026,35.233622,270.00,983.0781,-7.833828,4.453215,3.849876,9.799058
 540 2016-08-10 14:19:28,139.129082,35.233509,274.00,983.1372,-8.753201,3.696647,2.384625,9.796437
 541 2016-08-10 14:20:06,139.129097,35.233463,273.00,983.1577,-0.402226,0.660800,9.777920,9.808474
 542 2016-08-10 14:23:51,139.129097,35.233463,273.00,983.0925,0.258574,0.545878,9.787497,9.806117
 543 2016-08-10 14:24:13,139.129100,35.233468,273.00,983.0557,0.258574,4.587290,8.667010,9.809544
 544 2016-08-10 14:25:53,139.129086,35.233465,271.00,983.1377,1.484405,2.154782,9.452309,9.807787
 545 2016-08-10 14:27:33,139.129086,35.233465,271.00,983.1167,1.541866,1.944092,9.490616,9.809619
 546 2016-08-10 14:28:13,139.129089,35.233447,267.00,983.0955,1.675941,1.934515,9.471462,9.811204
 547 2016-08-10 14:28:34,139.129088,35.233448,267.00,983.0940,1.599327,1.896208,9.490616,9.809446
 548 2016-08-10 14:28:54,139.129088,35.233448,268.00,983.1045,-7.077260,-1.972822,6.483498,9.798744
 549 2016-08-10 14:29:14,139.129087,35.233447,268.00,983.0967,-7.029376,-1.982399,6.531382,9.798009
 550 2016-08-10 14:29:35,139.129087,35.233447,268.00,983.0889,-6.962338,-1.982399,6.607996,9.801514
 551 2016-08-10 14:30:35,139.129088,35.233447,268.00,983.0020,-0.373495,2.183512,9.548077,9.801683
 552 2016-08-10 14:36:38,139.129088,35.233447,268.00,983.1218,1.752556,2.786851,9.241618,9.810479
 553 2016-08-10 14:38:37,139.129089,35.233810,271.00,983.4827,1.723825,-7.814674,5.659893,9.801791
 554 2016-08-10 14:38:46,139.129131,35.233894,275.00,983.4778,1.628057,-5.449203,7.987057,9.804971
 555 2016-08-10 14:38:54,139.129107,35.233990,274.00,983.4675,-0.622492,5.564125,8.044518,9.801084
 556 2016-08-10 14:39:20,139.129025,35.234202,270.00,983.6938,7.958326,-5.707777,0.335188,9.799287
 557 2016-08-10 14:39:33,139.128981,35.234293,269.00,983.6680,7.603985,-1.810017,5.928043,9.810119
 558 2016-08-10 14:39:45,139.129029,35.234378,267.00,983.6936,0.220267,1.024718,9.749189,9.805369
 559 2016-08-10 14:39:50,139.129064,35.234473,267.00,983.7080,6.722919,3.983952,-5.918467,9.802946
 560 2016-08-10 14:40:01,139.129120,35.234553,267.00,983.7261,8.456321,4.050989,2.882619,9.809657
 561 2016-08-10 14:40:07,139.129109,35.234649,265.00,983.9507,-3.706224,8.437167,3.342306,9.802698
 562 2016-08-10 14:40:19,139.129091,35.234750,264.00,983.6064,-7.718906,4.204218,4.338294,9.801926
 563 2016-08-10 14:40:22,139.129074,35.234844,264.00,983.5732,-8.073248,5.391742,1.340753,9.800298
 564 2016-08-10 14:40:32,139.128979,35.234797,265.00,983.4563,-5.257667,2.978387,-7.718906,9.802824
 565 2016-08-10 14:41:02,139.128810,35.234999,272.00,983.0818,-2.853889,9.375694,-0.067038,9.800654
 566 2016-08-10 14:44:25,139.128800,35.235343,269.00,982.6328,2.269703,9.509769,0.756568,9.806103
 567 2016-08-10 14:44:46,139.128711,35.235407,267.00,983.0706,1.436521,9.634268,-1.091756,9.801767
 568 2016-08-10 14:44:49,139.128730,35.235501,268.00,983.0496,3.821146,7.393295,-5.181053,9.803330
 569 2016-08-10 14:45:09,139.128644,35.235672,269.00,982.7036,4.941632,7.805098,-3.294421,9.807777
 570 2016-08-10 14:45:25,139.128839,35.235755,271.00,982.3960,4.299986,4.165911,7.766790,9.806515
 571 2016-08-10 14:45:33,139.128799,35.235842,272.00,982.2610,3.112462,4.702212,8.015787,9.800565
 572 2016-08-10 14:45:35,139.128685,35.235887,272.00,982.3286,2.260126,6.023811,7.402872,9.808006
 573 2016-08-10 14:45:38,139.128496,35.235814,272.00,982.1897,3.438074,5.631162,7.259220,9.809516
 574 2016-08-10 14:45:41,139.128597,35.235867,272.00,982.0574,3.936068,5.008670,7.460332,9.809993
 575 2016-08-10 14:45:42,139.128954,35.235930,271.00,982.0264,3.773262,5.276821,7.354988,9.807048
 576 2016-08-10 14:45:49,139.128915,35.236015,274.00,981.9954,4.635174,6.023811,6.196194,9.806323
 577 2016-08-10 14:45:54,139.128849,35.236099,277.00,981.9336,2.250550,4.587290,8.370130,9.806491
 578 2016-08-10 14:46:00,139.128839,35.236197,273.00,982.0649,8.188169,4.616021,-2.786851,9.804096
 579 2016-08-10 14:46:07,139.128727,35.236238,275.00,981.8386,-9.500193,0.450110,-2.336741,9.793703
 580 2016-08-10 14:46:09,139.128599,35.236239,287.00,981.7861,-7.977480,2.537854,-5.085284,9.794948
 581 2016-08-10 14:46:13,139.128483,35.236237,289.00,981.8384,-9.643845,-1.005565,-1.407791,9.797794
 582 2016-08-10 14:46:19,139.128405,35.236169,279.00,981.7759,-9.500193,-1.819593,1.513135,9.790514
 583 2016-08-10 14:46:24,139.128346,35.236091,278.00,981.7878,-1.024718,-6.607996,-7.153875,9.792527
 584 2016-08-10 14:46:26,139.128263,35.236021,278.00,981.6279,-6.809110,6.512228,-2.691083,9.798725
 585 2016-08-10 14:46:42,139.128164,35.235960,282.00,981.7224,-6.684611,2.068590,6.856994,9.797013
 586 2016-08-10 14:46:46,139.128072,35.235894,284.00,981.6611,1.915361,-0.028730,9.615114,9.804073
 587 2016-08-10 14:47:13,139.127947,35.235994,282.00,981.3809,0.047884,1.407791,9.701305,9.803035
 588 2016-08-10 14:47:26,139.127835,35.235990,284.00,981.0266,-7.268796,-5.171476,4.050989,9.797453
 589 2016-08-10 14:47:46,139.127782,35.235903,286.00,980.7578,4.635174,-5.420473,-6.722919,9.801224
 590 2016-08-10 14:47:57,139.127685,35.235850,288.00,980.5845,3.945644,-7.967903,-4.127604,9.802688
 591 2016-08-10 14:48:09,139.127585,35.235794,288.00,980.3372,2.193089,-9.519346,0.746991,9.797223
 592 2016-08-10 14:48:15,139.127498,35.235721,286.00,980.2742,-2.691083,6.502652,6.828263,9.805691
 593 2016-08-10 14:48:30,139.127504,35.235627,289.00,980.1790,0.095768,7.010222,-6.856994,9.806669
 594 2016-08-10 14:49:20,139.127635,35.235640,300.00,980.1177,9.701305,0.344765,1.398214,9.807609
 595 2016-08-10 14:49:29,139.127763,35.235648,297.00,980.1357,9.797073,0.248997,0.450110,9.810568
 596 2016-08-10 14:49:48,139.127807,35.235553,300.00,980.1438,9.643845,0.067038,1.695095,9.791914
 597 2016-08-10 14:49:54,139.127839,35.235466,302.00,980.2156,8.753201,0.268151,4.405331,9.802927
 598 2016-08-10 14:50:04,139.127890,35.235421,304.00,980.1792,9.222465,0.086191,3.323152,9.803296
 599 2016-08-10 14:50:14,139.127970,35.235356,302.00,980.2495,9.586384,0.440533,2.030283,9.808918
 600 2016-08-10 14:50:22,139.128021,35.235342,299.00,980.2014,9.404425,0.229843,2.777274,9.808633
 601 2016-08-10 14:51:03,139.128007,35.235410,294.00,980.2048,9.777920,0.248997,0.746991,9.809572
 602 2016-08-10 14:51:24,139.128013,35.235398,292.00,980.2122,9.787497,-0.325611,0.536301,9.807585
 603 2016-08-10 14:51:43,139.128014,35.235398,292.00,980.2344,0.306458,9.528923,-2.288857,9.804752
 604 2016-08-10 14:52:04,139.128014,35.235399,292.00,980.2839,0.430956,9.787497,0.497994,9.809628
 605 2016-08-10 14:52:23,139.128014,35.235399,292.00,980.2759,-0.019154,9.768343,0.852336,9.805476
 606 2016-08-10 14:53:25,139.128016,35.235397,292.00,980.2144,0.823605,9.749189,0.603339,9.802502
 607 2016-08-10 14:53:44,139.128016,35.235397,292.00,980.3704,3.179500,9.241618,-0.852336,9.810362
 608 2016-08-10 14:54:27,139.128014,35.235398,293.00,980.4019,1.838747,9.136273,-3.045424,9.804442
 609 2016-08-10 14:54:47,139.128013,35.235397,294.00,980.7393,1.110910,9.040505,-3.629610,9.805046
 610 2016-08-10 14:55:07,139.128092,35.235140,299.00,981.0581,-0.076614,9.739613,-1.110910,9.803063
 611 2016-08-10 14:55:19,139.128208,35.235152,298.00,981.3159,7.077260,2.844312,-6.167464,9.808941
 612 2016-08-10 14:55:33,139.128206,35.235031,290.00,981.3220,-8.695741,4.481946,-0.507571,9.795987
 613 2016-08-10 14:55:41,139.128104,35.234973,287.00,981.3987,-0.526724,6.416461,-7.393295,9.803531
 614 2016-08-10 14:55:52,139.128140,35.234919,288.00,981.7649,-4.462792,8.178593,3.055001,9.805046
 615 2016-08-10 14:56:00,139.128250,35.234947,285.00,981.8560,1.628057,9.366117,-2.403779,9.805757
 616 2016-08-10 14:56:10,139.128338,35.235005,284.00,981.9875,5.439626,7.460332,-3.303998,9.806248
 617 2016-08-10 14:56:12,139.128371,35.235044,283.00,981.9836,3.466804,9.030929,-1.628057,9.809535
 618 2016-08-10 14:56:35,139.128430,35.235073,286.00,982.2754,-0.938527,9.739613,-0.699107,9.809671
 619 2016-08-10 14:57:15,139.128458,35.235018,284.00,982.8457,5.746084,5.861006,-5.363012,9.804630
 620 2016-08-10 14:57:16,139.128727,35.234838,286.00,982.9827,-4.558560,8.580819,1.312023,9.804710
 621 2016-08-10 14:57:27,139.128849,35.234821,289.00,983.0283,-4.472369,7.153875,4.979939,9.796928
 622 2016-08-10 14:57:47,139.128907,35.234678,295.00,983.3506,-0.114922,9.768343,0.871489,9.807814
 623 2016-08-10 14:58:10,139.128876,35.234656,294.00,983.2869,0.497994,9.768343,-0.718261,9.807366
 624 2016-08-10 14:58:35,139.128827,35.234568,287.00,983.5698,5.612009,7.316680,-3.342306,9.808132
 625 2016-08-10 15:00:03,139.128747,35.234518,267.00,983.6841,-3.026271,9.289502,-0.785298,9.801523
 626 2016-08-10 15:03:10,139.128979,35.234790,261.00,983.7732,3.093309,-7.163452,5.928043,9.799250
 627 2016-08-10 15:03:25,139.129186,35.234790,259.00,983.9480,-1.197101,9.720459,-0.574608,9.810736
 628 2016-08-10 15:03:36,139.129275,35.234747,261.00,983.9724,-6.770802,-4.510676,5.458780,9.797359
 629 2016-08-10 15:03:55,139.129288,35.234710,262.00,983.9431,-6.454768,-4.568137,5.784391,9.797504
 630 2016-08-10 15:04:16,139.129294,35.234700,263.00,983.9651,-5.525817,-4.836287,6.483498,9.795922
 631 2016-08-10 15:04:38,139.129295,35.234698,264.00,983.9722,-5.219360,-4.817134,6.742072,9.792958
 632 2016-08-10 15:04:57,139.129297,35.234694,265.00,983.9536,-5.468357,-4.750096,6.588843,9.791792
 633 2016-08-10 15:05:19,139.129298,35.234692,265.00,983.9402,-5.832275,-4.702212,6.311116,9.795735
 634 2016-08-10 15:05:39,139.129297,35.234692,264.00,983.9316,-5.104438,-4.721366,6.904878,9.799179
 635 2016-08-10 15:07:38,139.129295,35.234692,265.00,983.9438,-5.889736,-4.491522,6.406884,9.793412
 636 2016-08-10 15:07:58,139.129295,35.234692,265.00,983.9609,-5.908890,-4.692636,6.253655,9.800204
 637 2016-08-10 15:08:20,139.129296,35.234692,265.00,983.9778,-6.148310,-4.721366,5.985504,9.793839
 638 2016-08-10 15:08:40,139.129296,35.234691,265.00,983.9697,-6.148310,-4.587290,6.090849,9.795070
 639 2016-08-10 15:10:18,139.129309,35.234686,265.00,984.0933,-4.740520,8.571242,-0.507571,9.807974
 640 2016-08-10 15:10:30,139.129631,35.234852,263.00,984.2615,0.938527,9.538500,-2.078167,9.807272
 641 2016-08-10 15:10:39,139.129705,35.234785,265.00,984.2688,-4.252102,7.326257,-4.922479,9.797204
 642 2016-08-10 15:10:40,139.129710,35.234781,264.00,984.2520,-4.491522,6.809110,-5.439626,9.804452
 643 2016-08-10 15:10:47,139.129715,35.234684,265.00,984.4465,-6.426037,4.673482,5.736507,9.800148
 644 2016-08-10 15:10:56,139.129708,35.234581,265.00,984.6545,-0.354342,8.667010,4.568137,9.803596
 645 2016-08-10 15:11:00,139.129714,35.234549,265.00,984.6560,1.273715,9.021352,3.629610,9.807202
 646 2016-08-10 15:11:09,139.129703,35.234429,264.00,984.9771,7.527370,5.420473,3.179500,9.805715
 647 2016-08-10 15:11:18,139.129708,35.234338,268.00,985.1548,8.839393,4.156334,0.833182,9.803273
 648 2016-08-10 15:11:27,139.129693,35.234243,267.00,985.5388,-5.181053,0.679953,-8.293514,9.802450
 649 2016-08-10 15:11:36,139.129738,35.234155,266.00,985.7212,-1.321599,1.455675,-9.605537,9.804691
 650 2016-08-10 15:11:43,139.129868,35.234142,264.00,985.8828,-0.632069,0.488417,-9.777920,9.810493
 651 2016-08-10 15:11:48,139.130001,35.234172,264.00,986.0220,-3.974375,1.110910,-8.887277,9.798646
 652 2016-08-10 15:11:58,139.130109,35.234134,261.00,986.3870,-1.187524,0.574608,-9.720459,9.809572
 653 2016-08-10 15:12:08,139.130214,35.234163,260.00,986.4856,-4.558560,0.785298,-8.638280,9.798829
 654 2016-08-10 15:12:17,139.130330,35.234179,258.00,986.7175,-5.832275,0.469264,-7.862558,9.800789
 655 2016-08-10 15:12:23,139.130450,35.234163,258.00,986.8323,-3.811569,3.993528,8.101978,9.803998
 656 2016-08-10 15:12:26,139.130556,35.234092,257.00,986.8833,0.660800,7.508216,-6.272809,9.806023
 657 2016-08-10 15:12:30,139.130687,35.234074,257.00,986.9192,3.754108,-9.011775,-0.804452,9.795538
 658 2016-08-10 15:12:41,139.130812,35.234064,254.00,987.1892,-0.900220,-9.538500,-2.049437,9.797631
 659 2016-08-10 15:12:46,139.130942,35.234060,254.00,987.2715,-5.880159,5.717354,-5.372589,9.804546
 660 2016-08-10 15:12:51,139.131024,35.233999,251.00,987.4338,-7.125144,-1.254562,6.607996,9.798328
 661 2016-08-10 15:13:10,139.130911,35.233926,234.00,987.8521,6.799533,2.049437,6.761226,9.805509
 662 2016-08-10 15:13:15,139.131027,35.233934,231.00,987.9302,8.092402,0.220267,5.535394,9.806940
 663 2016-08-10 15:13:22,139.131136,35.233889,229.00,988.0767,8.312668,0.536301,5.171476,9.804704
 664 2016-08-10 15:13:29,139.131251,35.233895,220.00,988.2954,7.326257,1.177947,6.416461,9.809820
 665 2016-08-10 15:13:38,139.131364,35.233836,214.00,988.4451,-1.292869,2.853889,-9.289502,9.803624
 666 2016-08-10 15:13:45,139.131470,35.233802,214.00,988.6255,-3.476381,6.694188,-6.263232,9.804359
 667 2016-08-10 15:13:54,139.131566,35.233861,214.00,988.8765,-3.620033,8.408437,-3.505111,9.802666
 668 2016-08-10 15:14:06,139.131695,35.233866,213.00,989.1775,8.130709,4.472369,-3.169923,9.806065
 669 2016-08-10 15:14:09,139.131790,35.233777,212.00,989.2666,-5.995081,-1.388637,-7.623138,9.797017
 670 2016-08-10 15:14:17,139.131987,35.233779,214.00,989.5110,-8.245630,-3.074155,-4.299986,9.794423
 671 2016-08-10 15:14:20,139.132131,35.233794,214.00,989.5750,-9.701305,-1.206678,0.612916,9.795257
 672 2016-08-10 15:14:26,139.132292,35.233804,217.00,989.6575,-9.490616,-2.183512,1.024718,9.792322
 673 2016-08-10 15:14:33,139.132308,35.233708,218.00,989.7319,-6.722919,6.071695,3.725378,9.794976
 674 2016-08-10 15:14:42,139.132196,35.233550,219.00,989.8398,-5.928043,-7.757214,-0.785298,9.794527
 675 2016-08-10 15:14:49,139.132238,35.233458,220.00,989.9709,-6.943185,-5.525817,4.146757,9.794798
 676 2016-08-10 15:14:54,139.132130,35.233394,219.00,989.9573,-5.257667,-6.847417,4.625597,9.794199
 677 2016-08-10 15:15:00,139.132037,35.233332,222.00,990.0532,-7.230489,-4.414908,4.922479,9.798070
 678 2016-08-10 15:15:01,139.132024,35.233325,223.00,990.0708,-5.669470,-6.157887,5.085284,9.794007
 679 2016-08-10 15:15:35,139.132046,35.233268,225.00,990.0413,7.747637,0.038307,6.014235,9.808076
 680 2016-08-10 15:15:40,139.132142,35.233336,217.00,990.1626,8.398860,-0.028730,5.056554,9.803592
 681 2016-08-10 15:15:49,139.132257,35.233298,210.00,990.1997,-1.905785,-7.661446,5.803545,9.798515
 682 2016-08-10 15:15:58,139.132366,35.233252,210.00,990.0769,-6.675035,-6.943185,-1.771709,9.793000
 683 2016-08-10 15:16:10,139.132520,35.233224,208.00,990.0054,-5.181053,4.778827,-6.809110,9.800228
 684 2016-08-10 15:16:15,139.132629,35.233199,213.00,990.1948,-9.404425,-1.484405,2.288857,9.792116
 685 2016-08-10 15:16:20,139.132742,35.233219,213.00,990.1282,-9.203311,2.509123,-2.250550,9.801102
 686 2016-08-10 15:16:28,139.132875,35.233284,217.00,990.2068,-9.634268,1.752556,-0.201113,9.794438
 687 2016-08-10 15:16:38,139.132997,35.233295,214.00,990.3784,-5.257667,1.580173,8.121132,9.802693
 688 2016-08-10 15:16:49,139.133221,35.233309,210.00,990.6755,7.709330,3.294421,5.085284,9.805462
 689 2016-08-10 15:17:00,139.133327,35.233270,202.00,990.8931,4.912902,-6.703765,5.190629,9.798964
 690 2016-08-10 15:17:11,139.133466,35.233327,200.00,991.1924,-9.548077,1.953669,1.015141,9.798627
 691 2016-08-10 15:17:18,139.133582,35.233289,203.00,991.3765,-2.585738,6.770802,6.598420,9.801477
 692 2016-08-10 15:17:28,139.133723,35.233183,198.00,991.5161,2.461239,7.354988,-6.004658,9.808642
 693 2016-08-10 15:17:36,139.133814,35.233126,198.00,991.7363,-0.967257,8.188169,-5.315128,9.809806
 694 2016-08-10 15:17:44,139.133862,35.233070,197.00,991.9492,2.432509,2.480393,9.174581,9.810320
 695 2016-08-10 15:17:49,139.133979,35.233056,198.00,992.0244,7.220912,6.607996,0.622492,9.807889
 696 2016-08-10 15:17:57,139.134089,35.233120,193.00,992.3652,6.473921,7.345411,0.632069,9.811535
 697 2016-08-10 15:18:01,139.134176,35.233177,192.00,992.4482,8.992621,3.524265,-1.675941,9.802880
 698 2016-08-10 15:18:07,139.134304,35.233218,190.00,992.5564,1.513135,6.349423,7.316680,9.805027
 699 2016-08-10 15:18:15,139.134397,35.233280,183.00,992.6941,8.073248,5.477933,1.043872,9.811970
 700 2016-08-10 15:18:22,139.134480,35.233300,181.00,993.0608,-0.900220,-6.560112,-7.220912,9.797298
 701 2016-08-10 15:18:31,139.134596,35.233337,176.00,993.1375,8.370130,-1.063026,-4.989516,9.802263
 702 2016-08-10 15:18:37,139.134706,35.233375,176.00,993.2874,-8.820239,-1.149217,-4.108450,9.797789
 703 2016-08-10 15:18:57,139.134900,35.233417,166.00,993.4514,4.673482,-6.205771,-5.975927,9.801262
 704 2016-08-10 15:19:02,139.134997,35.233431,169.00,993.4768,3.763685,-5.803545,-6.943185,9.800728
 705 2016-08-10 15:19:11,139.135121,35.233421,168.00,993.5298,2.987964,-0.976834,9.289502,9.806986
 706 2016-08-10 15:19:19,139.135236,35.233416,169.00,993.5723,-1.819593,-2.030283,9.414001,9.800836
 707 2016-08-10 15:19:36,139.135384,35.233415,170.00,993.7017,0.603339,9.605537,-1.877054,9.805799
 708 2016-08-10 15:19:41,139.135464,35.233508,171.00,993.7051,-0.201113,9.739613,-1.120486,9.805916
 709 2016-08-10 15:19:44,139.135503,35.233562,171.00,993.8062,-0.794875,8.494628,4.836287,9.807151
 710 2016-08-10 15:19:50,139.135603,35.233614,173.00,993.8896,6.071695,-7.498640,-1.742979,9.804747
 711 2016-08-10 15:19:59,139.135691,35.233682,177.00,993.9270,7.383718,-4.118027,-4.960786,9.802389
 712 2016-08-10 15:20:03,139.135750,35.233697,176.00,993.8987,7.287950,-4.328717,-4.912902,9.797378
 713 2016-08-10 15:20:09,139.135825,35.233765,178.00,994.0601,5.918467,-2.978387,-7.220912,9.800031
 714 2016-08-10 15:20:19,139.135935,35.233756,179.00,994.1665,2.633622,-8.465898,-4.165911,9.796030
 715 2016-08-10 15:20:39,139.136131,35.233768,179.00,994.3608,-1.493982,9.605537,1.254562,9.801646
 716 2016-08-10 15:20:52,139.136355,35.233871,179.00,994.6638,-8.130709,-5.257667,-1.484405,9.795660
 717 2016-08-10 15:20:57,139.136425,35.233952,179.00,994.6643,-6.512228,-7.230489,-1.130063,9.796231
 718 2016-08-10 15:21:15,139.136596,35.234058,173.00,995.1643,0.995988,6.914454,6.876147,9.802197
 719 2016-08-10 15:21:38,139.136725,35.234140,164.00,995.2441,-7.374141,-2.059013,-6.119579,9.801364
 720 2016-08-10 15:21:44,139.136721,35.234109,167.00,995.2505,-1.762132,9.634268,-0.507571,9.807235
 721 2016-08-10 15:23:25,139.136684,35.234081,167.00,995.2507,-2.221819,9.481039,-1.139640,9.804354
 722 2016-08-10 15:24:06,139.136685,35.234082,167.00,995.2776,-7.852982,-1.264138,5.717354,9.795688
 723 2016-08-10 15:24:26,139.136689,35.234078,167.00,995.2947,-7.489063,-1.273715,6.186617,9.797073
 724 2016-08-10 15:25:05,139.136689,35.234079,167.00,995.2615,-3.303998,9.212888,-0.555455,9.803175
 725 2016-08-10 15:25:26,139.136689,35.234080,167.00,995.2896,-4.548983,8.676587,-0.392649,9.804621
 726 2016-08-10 15:25:28,139.136582,35.234124,160.00,995.2336,-6.789956,-4.309563,-5.592855,9.795706
 727 2016-08-10 15:25:33,139.136459,35.234146,161.00,995.3557,-8.485051,-1.197101,4.750096,9.797579
 728 2016-08-10 15:25:43,139.136340,35.234160,157.00,995.4001,7.182605,5.152322,-4.242526,9.804859
 729 2016-08-10 15:25:47,139.136290,35.234172,154.00,995.3518,8.274361,3.600879,-3.840300,9.807103
 730 2016-08-10 15:25:53,139.136186,35.234128,154.00,995.3706,-1.886631,-9.030929,-3.303998,9.799666
 731 2016-08-10 15:25:58,139.136088,35.234080,150.00,995.4895,-9.279925,-2.863465,-1.302446,9.798613
 732 2016-08-10 15:26:07,139.136004,35.234076,149.00,995.4353,-9.126697,-0.919373,-3.438074,9.796029
 733 2016-08-10 15:26:19,139.135908,35.234015,143.00,995.5691,-5.439626,-0.354342,8.140285,9.796905
 734 2016-08-10 15:26:27,139.135846,35.233952,144.00,995.5918,3.830723,7.115568,5.554548,9.806056
 735 2016-08-10 15:26:32,139.135734,35.233911,139.00,995.8118,6.694188,2.116474,-6.847417,9.807076
 736 2016-08-10 15:26:39,139.135645,35.233852,140.00,995.7239,7.134721,2.078167,-6.397307,9.805537
 737 2016-08-10 15:26:46,139.135553,35.233808,139.00,995.8499,8.140285,-4.376601,-3.265691,9.802225
 738 2016-08-10 15:26:57,139.135451,35.233764,142.00,995.8689,-7.383718,-0.699107,-6.406884,9.800827
 739 2016-08-10 15:27:00,139.135311,35.233803,139.00,995.9714,-6.234501,-7.163452,2.384625,9.791347
 740 2016-08-10 15:27:04,139.135181,35.233783,142.00,995.9238,4.788404,5.679047,6.406884,9.809615
 741 2016-08-10 15:27:07,139.135119,35.233776,139.00,995.9431,5.200206,4.453215,7.019799,9.805654
 742 2016-08-10 15:27:12,139.135023,35.233822,138.00,996.0364,6.646304,-7.201759,-0.105345,9.800499
 743 2016-08-10 15:27:18,139.134909,35.233876,138.00,996.0251,8.552089,1.034295,-4.692636,9.809629
 744 2016-08-10 15:27:26,139.134873,35.233972,140.00,995.8840,6.579266,-3.189077,-6.521805,9.797494
 745 2016-08-10 15:27:29,139.134851,35.233996,139.00,995.8953,3.275268,1.015141,-9.184157,9.803399
 746 2016-08-10 15:27:37,139.134781,35.234068,140.00,995.7468,5.008670,2.202666,-8.140285,9.808300
 747 2016-08-10 15:27:42,139.134822,35.234157,145.00,995.6975,2.135628,-0.277727,-9.615114,9.853348
 748 2016-08-10 15:27:51,139.134944,35.234276,146.00,995.7378,-4.912902,-0.909797,-8.437167,9.805617
 749 2016-08-10 15:27:57,139.134987,35.234375,147.00,995.6150,-4.616021,4.050989,7.632715,9.796760
 750 2016-08-10 15:28:04,139.135004,35.234466,157.00,995.4983,0.900220,1.857901,9.586384,9.806169
 751 2016-08-10 15:28:07,139.135013,35.234476,158.00,995.6956,2.997540,3.476381,8.667010,9.807525
 752 2016-08-10 15:28:15,139.135074,35.234552,159.00,995.3284,-5.142745,6.493075,-5.248090,9.805626
 753 2016-08-10 15:28:23,139.135113,35.234645,156.00,995.3264,4.951209,8.427590,-0.842759,9.810657
 754 2016-08-10 15:28:34,139.135207,35.234794,158.00,995.1028,3.964798,-7.929596,-4.165911,9.795556
 755 2016-08-10 15:28:41,139.135251,35.234877,161.00,995.0918,4.003105,-8.628703,-2.336741,9.794883
 756 2016-08-10 15:28:49,139.135303,35.234938,158.00,995.0776,3.198653,-8.887277,-2.604892,9.797986
 757 2016-08-10 15:28:56,139.135337,35.235032,154.00,994.9976,1.695095,-9.595961,1.005565,9.796273
 758 2016-08-10 15:29:05,139.135396,35.235118,159.00,994.8213,-3.859453,-8.207323,3.706224,9.797532
 759 2016-08-10 15:29:08,139.135401,35.235138,158.00,994.9661,-2.882619,-7.077260,6.129156,9.796104
 760 2016-08-10 15:29:16,139.135450,35.235227,162.00,994.7600,2.738967,-9.203311,-1.963245,9.800878
 761 2016-08-10 15:29:23,139.135472,35.235330,164.00,994.6648,-9.308656,-1.934515,2.355895,9.795083
 762 2016-08-10 15:29:28,139.135462,35.235417,166.00,994.6228,-9.653421,-0.679953,1.541866,9.799400
 763 2016-08-10 15:29:35,139.135498,35.235503,171.00,994.6602,-9.337387,-1.043872,2.786851,9.800153
 764 2016-08-10 15:29:42,139.135511,35.235601,172.00,994.7566,-4.098873,-0.881066,-8.858546,9.800555
 765 2016-08-10 15:29:47,139.135500,35.235703,171.00,994.6404,-3.734955,-4.041412,-8.111555,9.802052
 766 2016-08-10 15:29:48,139.135494,35.235713,171.00,994.6418,-3.265691,-3.055001,-8.724471,9.803783
 767 2016-08-10 15:29:58,139.135515,35.235803,174.00,994.6660,-2.777274,-5.746084,-7.431602,9.795889
 768 2016-08-10 15:30:06,139.135488,35.235905,169.00,994.5808,5.334281,-5.343858,-6.244078,9.797953
 769 2016-08-10 15:30:09,139.135482,35.235953,168.00,994.6321,3.131616,-8.331821,-4.108450,9.803348
 770 2016-08-10 15:30:15,139.135472,35.236046,165.00,994.5579,4.683059,-5.142745,-6.904878,9.800827
 771 2016-08-10 15:30:25,139.135497,35.236153,168.00,994.5063,4.060566,-6.818686,-5.755661,9.803587
 772 2016-08-10 15:30:28,139.135517,35.236192,169.00,994.5007,1.810017,-8.475474,-4.568137,9.796821
 773 2016-08-10 15:30:32,139.135581,35.236299,168.00,994.4487,-6.914454,-4.999093,4.807557,9.793529
 774 2016-08-10 15:30:36,139.135659,35.236375,168.00,994.5066,0.450110,-7.565677,6.215348,9.801664
 775 2016-08-10 15:30:42,139.135767,35.236413,169.00,994.3589,-7.412448,-5.631162,3.045424,9.794335
 776 2016-08-10 15:30:49,139.135825,35.236431,169.00,994.4399,-9.126697,-3.543418,-0.134075,9.791342
 777 2016-08-10 15:30:59,139.135864,35.236530,168.00,994.1792,-2.135628,-6.713342,6.809110,9.797645
 778 2016-08-10 15:31:46,139.135827,35.236556,167.00,993.9924,9.768343,0.220267,0.881066,9.810470
 779 2016-08-10 15:32:26,139.135827,35.236555,167.00,993.9885,9.797073,0.335188,-0.191536,9.804677
 780 2016-08-10 15:32:46,139.135827,35.236556,167.00,994.0063,9.720459,0.421380,1.264138,9.811367
 781 2016-08-10 15:32:58,139.135782,35.236643,167.00,994.2046,8.724471,4.194642,-1.541866,9.802488
 782 2016-08-10 15:33:03,139.135722,35.236731,167.00,994.1035,6.291962,7.220912,-2.087744,9.802502
 783 2016-08-10 15:33:07,139.135672,35.236776,167.00,994.0503,6.837840,6.694188,-2.154782,9.808736
 784 2016-08-10 15:33:30,139.135659,35.236801,172.00,994.1162,9.787497,0.430956,0.383072,9.804466
 785 2016-08-10 15:34:07,139.135659,35.236801,172.00,994.0593,6.751649,0.344765,7.105990,9.808095
 786 2016-08-10 15:34:21,139.135558,35.236842,165.00,994.1829,2.825158,8.801085,-3.284845,9.809731
 787 2016-08-10 15:34:27,139.135458,35.236877,169.00,994.2800,1.493982,9.653421,-0.909797,9.810620
 788 2016-08-10 15:34:31,139.135343,35.236875,166.00,994.2122,3.351882,8.398860,-3.792415,9.806038
 789 2016-08-10 15:34:38,139.135217,35.236865,161.00,994.2834,2.346318,9.423578,1.379060,9.808713
 790 2016-08-10 15:34:44,139.135105,35.236855,157.00,994.2634,5.401319,7.929596,2.030283,9.806875
 791 2016-08-10 15:34:56,139.134986,35.236998,157.00,994.3657,5.276821,-2.806004,-7.766790,9.800078
 792 2016-08-10 15:35:02,139.134980,35.237102,162.00,994.3525,8.370130,-4.491522,2.413355,9.800874
 793 2016-08-10 15:35:21,139.135142,35.237229,166.00,994.3643,3.428497,-9.088389,1.264138,9.795482
 794 2016-08-10 15:35:28,139.135269,35.237234,163.00,994.4402,1.963245,-9.481039,1.503559,9.798220
 795 2016-08-10 15:35:37,139.135401,35.237277,164.00,994.4026,0.871489,-9.739613,0.632069,9.798931
 796 2016-08-10 15:35:43,139.135523,35.237306,167.00,994.3115,0.603339,-9.720459,1.034295,9.793932
 797 2016-08-10 15:35:57,139.135718,35.237424,174.00,994.0806,-1.580173,-9.662998,-0.114922,9.792022
 798 2016-08-10 15:36:03,139.135739,35.237527,175.00,994.2544,-0.699107,-9.758766,0.488417,9.795959
 799 2016-08-10 15:36:08,139.135861,35.237533,175.00,994.3081,-1.130063,-9.730036,0.143652,9.796493
 800 2016-08-10 15:36:12,139.135866,35.237554,174.00,994.3782,-1.417367,-9.691729,-0.124498,9.795613
 801 2016-08-10 15:36:27,139.135798,35.237634,176.00,994.2324,-2.576161,-9.385271,1.130063,9.797804
 802 2016-08-10 15:36:32,139.135851,35.237729,175.00,994.3179,-2.987964,-9.289502,0.814029,9.792110
 803 2016-08-10 15:36:38,139.135956,35.237772,178.00,994.1746,-2.815581,-9.366117,0.488417,9.792354
 804 2016-08-10 15:36:48,139.135954,35.237870,174.00,994.2722,-2.662352,-9.212888,1.972822,9.790682
 805 2016-08-10 15:36:52,139.135959,35.237901,173.00,994.2554,-2.911349,-9.260772,1.292869,9.793332
 806 2016-08-10 15:37:01,139.135978,35.237998,175.00,994.4246,-3.303998,-9.155427,1.082179,9.793332
 807 2016-08-10 15:37:07,139.135965,35.238102,175.00,994.2959,-2.547431,-9.404425,1.034295,9.798080
 808 2016-08-10 15:37:12,139.135939,35.238185,176.00,994.3684,-3.313575,-9.097966,1.484405,9.795725
 809 2016-08-10 15:37:18,139.135919,35.238282,180.00,994.5144,-1.675941,-9.643845,-0.430956,9.797869
 810 2016-08-10 15:37:25,139.135877,35.238369,183.00,994.3467,-3.160346,-9.232041,0.804452,9.791094
 811 2016-08-10 15:37:32,139.135856,35.238431,183.00,994.3784,-3.342306,-9.203311,0.258574,9.794835
 812 2016-08-10 15:37:39,139.135840,35.238532,184.00,994.5422,-0.814029,-9.739613,0.612916,9.792771
 813 2016-08-10 15:37:49,139.135858,35.238632,180.00,994.4443,-3.342306,-9.193734,0.430956,9.791909
 814 2016-08-10 15:37:53,139.135885,35.238669,181.00,994.3765,-3.801992,-8.695741,2.432509,9.797354
 815 2016-08-10 15:38:32,139.135917,35.238695,175.00,994.5569,-2.403779,-9.308656,1.857901,9.791885
 816 2016-08-10 15:38:53,139.135956,35.238707,174.00,994.3936,-2.652776,-9.040505,2.681506,9.795837
 817 2016-08-10 15:39:03,139.135956,35.238810,178.00,994.5332,-2.834735,-9.069236,2.365471,9.791946
 818 2016-08-10 15:39:08,139.135938,35.238907,177.00,994.6599,-2.748544,-9.165004,2.097321,9.795435
 819 2016-08-10 15:39:13,139.135891,35.238995,180.00,994.7024,-2.643199,-9.241618,1.905785,9.799287
 820 2016-08-10 15:39:16,139.135816,35.239099,182.00,995.1765,-5.123591,-8.149862,1.810017,9.795285
 821 2016-08-10 15:39:20,139.135741,35.239179,183.00,994.7678,-2.365471,-9.500193,0.316035,9.795356
 822 2016-08-10 15:39:28,139.135638,35.239215,184.00,994.8840,-2.911349,-9.097966,2.183512,9.798810
 823 2016-08-10 15:39:33,139.135559,35.239213,181.00,995.0762,-3.610456,-8.772355,2.422932,9.790823
 824 2016-08-10 15:39:41,139.135442,35.239212,181.00,995.0994,-3.533842,-9.088389,0.938527,9.796310
 825 2016-08-10 15:39:50,139.135320,35.239227,178.00,995.3027,-3.706224,-8.963891,1.321599,9.789487
 826 2016-08-10 15:39:53,139.135287,35.239231,179.00,995.3362,-3.074155,-9.107543,1.877054,9.793932
 827 2016-08-10 15:39:59,139.135171,35.239280,174.00,995.3391,-3.342306,-9.011775,1.896208,9.796872
 828 2016-08-10 15:40:06,139.135068,35.239337,171.00,995.3853,-3.505111,-9.021352,1.503559,9.794452
 829 2016-08-10 15:40:13,139.135010,35.239401,171.00,995.4263,-2.422932,-9.423578,-1.340753,9.822018
 830 2016-08-10 15:40:20,139.134961,35.239492,174.00,995.2507,-3.064578,-9.260772,-0.900220,9.796118
 831 2016-08-10 15:40:28,139.134898,35.239580,175.00,995.2341,-3.035848,-9.251195,-1.063026,9.794437
 832 2016-08-10 15:40:32,139.134937,35.239659,175.00,995.0732,-2.758120,-9.356541,-0.852336,9.791760
 833 2016-08-10 15:40:35,139.134994,35.239744,176.00,994.9941,-2.738967,-9.375694,-0.746991,9.796100
 834 2016-08-10 15:40:53,139.135024,35.239846,179.00,994.9270,-2.576161,-9.442732,-0.248997,9.791006
 835 2016-08-10 15:41:00,139.135126,35.239890,180.00,994.9128,-3.265691,-9.117120,1.465251,9.794569
 836 2016-08-10 15:41:07,139.135239,35.239892,179.00,994.9624,-2.978387,-9.251195,1.235408,9.797021
 837 2016-08-10 15:41:12,139.135321,35.239929,182.00,994.9248,-3.217807,-9.126697,1.513135,9.794920
 838 2016-08-10 15:41:20,139.135381,35.240006,179.00,994.9871,-3.438074,-9.165004,0.306458,9.793445
 839 2016-08-10 15:41:25,139.135469,35.240079,177.00,994.9661,-3.141193,-9.260772,-0.478840,9.790724
 840 2016-08-10 15:41:30,139.135522,35.240166,183.00,994.8545,-4.175488,-8.848969,0.450110,9.794976
 841 2016-08-10 15:41:33,139.135530,35.240204,184.00,995.0266,-3.581726,-9.050082,1.053449,9.789918
 842 2016-08-10 15:41:43,139.135524,35.240311,189.00,994.8640,-3.380613,-9.030929,1.695095,9.790790
 843 2016-08-10 15:41:52,139.135579,35.240362,190.00,994.9485,-1.618480,-9.576807,1.254562,9.793295
 844 2016-08-10 15:42:35,139.135994,35.240513,194.00,995.6680,-3.131616,-9.002198,2.269703,9.797864
 845 2016-08-10 15:42:46,139.136104,35.240481,190.00,995.9460,-2.987964,-8.973468,2.557007,9.797415
 846 2016-08-10 15:42:51,139.136226,35.240488,186.00,995.9956,-3.131616,-8.973468,2.365471,9.794161
 847 2016-08-10 15:43:00,139.136409,35.240501,182.00,996.3374,-2.911349,-9.174581,1.800440,9.792368
 848 2016-08-10 15:43:07,139.136534,35.240526,177.00,996.4773,-3.227384,-8.983045,2.202666,9.796062
 849 2016-08-10 15:43:12,139.136642,35.240548,177.00,996.5769,-3.074155,-8.983045,2.413355,9.796418
 850 2016-08-10 15:43:13,139.136666,35.240560,176.00,996.6030,-3.284845,-9.059659,1.733402,9.791441
 851 2016-08-10 15:43:25,139.136786,35.240558,173.00,996.8682,-2.451663,-9.289502,1.924938,9.798514
 852 2016-08-10 15:43:31,139.136896,35.240624,174.00,997.1211,-3.275268,-8.954314,2.250550,9.796535
 853 2016-08-10 15:43:34,139.136930,35.240659,173.00,997.1545,-3.007117,-9.097966,2.039860,9.796774
 854 2016-08-10 15:43:44,139.137001,35.240731,173.00,997.2402,-2.346318,-9.097966,2.767697,9.794812
 855 2016-08-10 15:43:53,139.137086,35.240801,174.00,997.5364,-2.930503,-8.820239,3.093309,9.795561
 856 2016-08-10 15:44:06,139.137196,35.240889,163.00,997.8276,-3.457227,-8.667010,2.978387,9.794911
 857 2016-08-10 15:44:15,139.137270,35.240968,162.00,998.0679,-2.901772,-9.232041,1.503559,9.793445
 858 2016-08-10 15:44:23,139.137346,35.241039,164.00,998.2212,-4.912902,0.459687,-8.475474,9.807221
 859 2016-08-10 15:44:29,139.137386,35.241143,155.00,998.4529,-2.844312,-9.203311,1.771709,9.794386
 860 2016-08-10 15:44:33,139.137421,35.241236,158.00,998.4839,-2.614468,-8.963891,2.968810,9.797991
 861 2016-08-10 15:44:34,139.137435,35.241258,157.00,998.5383,-2.949656,-8.839393,3.016694,9.794681
 862 2016-08-10 15:44:46,139.137439,35.241349,153.00,998.7993,-2.949656,-8.781932,3.179500,9.794489
 863 2016-08-10 15:44:52,139.137516,35.241430,150.00,998.8052,-2.336741,-9.414001,1.388637,9.798576
 864 2016-08-10 15:44:56,139.137521,35.241436,151.00,998.8159,-3.045424,-8.983045,2.461239,9.799357
 865 2016-08-10 15:45:04,139.137572,35.241528,145.00,999.0330,-4.625597,-7.230489,4.721366,9.796296
 866 2016-08-10 15:45:12,139.137686,35.241566,144.00,999.1914,-2.604892,-9.327810,1.446098,9.792074
 867 2016-08-10 15:45:16,139.137720,35.241583,145.00,999.3140,-3.313575,-8.647857,3.198653,9.797785
 868 2016-08-10 15:45:22,139.137816,35.241626,144.00,999.4629,-3.160346,-8.992621,2.260126,9.796081
 869 2016-08-10 15:45:28,139.137914,35.241680,143.00,999.5137,-3.026271,-8.753201,3.179500,9.792143
 870 2016-08-10 15:45:33,139.138016,35.241724,144.00,999.6162,-2.777274,-9.145850,2.126051,9.791829
 871 2016-08-10 15:45:41,139.138168,35.241748,142.00,999.8440,-2.164358,-8.992621,3.217807,9.793159
 872 2016-08-10 15:45:48,139.138279,35.241768,134.00,999.9265,-2.394202,-9.481039,0.632069,9.799072
 873 2016-08-10 15:46:02,139.138464,35.241797,128.00,1000.3586,-2.489970,-8.954314,3.093309,9.795318
 874 2016-08-10 15:46:13,139.138601,35.241803,130.00,1000.6089,-2.873042,-8.906430,2.873042,9.789445
 875 2016-08-10 15:46:20,139.138734,35.241775,131.00,1000.6914,-3.744531,-9.050082,0.047884,9.794274
 876 2016-08-10 15:46:27,139.138852,35.241753,127.00,1000.8782,-2.930503,-8.992621,2.528277,9.790162
 877 2016-08-10 15:46:40,139.139064,35.241759,126.00,1000.9478,-3.007117,-9.040505,2.269703,9.794133
 878 2016-08-10 15:46:49,139.139173,35.241772,128.00,1001.0398,-2.595315,-9.203311,2.126051,9.795748
 879 2016-08-10 15:46:53,139.139203,35.241802,126.00,1001.0342,-2.834735,-9.318233,1.015141,9.792635
 880 2016-08-10 15:47:01,139.139301,35.241843,120.00,1001.1794,-3.543418,-9.050082,1.225831,9.796043
 881 2016-08-10 15:47:06,139.139431,35.241847,122.00,1001.3140,-2.997540,-8.906430,2.748544,9.791029
 882 2016-08-10 15:47:10,139.139552,35.241857,117.00,1001.3438,-2.202666,-9.423578,1.513135,9.795159
 883 2016-08-10 15:47:14,139.139603,35.241864,119.00,1001.3242,-2.863465,-9.318233,0.976834,9.797097
 884 2016-08-10 15:47:22,139.139722,35.241844,115.00,1001.3887,-3.074155,-9.088389,1.982399,9.796895
 885 2016-08-10 15:47:26,139.139808,35.241783,116.00,1001.4976,-2.643199,-9.212888,2.030283,9.797237
 886 2016-08-10 15:47:34,139.139908,35.241792,111.00,1001.6150,-2.786851,-8.983045,2.729390,9.793426
 887 2016-08-10 15:47:40,139.139947,35.241707,118.00,1001.8101,-3.093309,-9.145850,1.675941,9.799179
 888 2016-08-10 15:47:51,139.140055,35.241659,109.00,1001.8157,-2.451663,-9.442732,0.890643,9.796381
 889 2016-08-10 15:48:04,139.140258,35.241635,103.00,1002.0574,-3.562572,-8.772355,2.499547,9.792541
 890 2016-08-10 15:48:11,139.140374,35.241619,105.00,1002.2175,-2.681506,-9.184157,2.078167,9.790710
 891 2016-08-10 15:48:23,139.140537,35.241622,103.00,1002.3442,-3.792415,-8.475474,3.122039,9.796081
 892 2016-08-10 15:48:31,139.140651,35.241634,100.00,1002.4998,-2.576161,-8.820239,3.380613,9.790902
 893 2016-08-10 15:48:36,139.140754,35.241649,98.00,1002.7175,-2.882619,-9.021352,2.489970,9.792560
 894 2016-08-10 15:48:46,139.140868,35.241623,95.00,1002.8848,-3.007117,-9.059659,2.183512,9.792237
 895 2016-08-10 15:48:55,139.140871,35.241621,99.00,1003.0498,-3.418920,-8.389283,3.725378,9.795281
 896 2016-08-10 15:49:04,139.140987,35.241644,100.00,1003.1670,-4.299986,-8.801085,-0.191536,9.797228
 897 2016-08-10 15:49:12,139.141093,35.241673,100.00,1003.3706,-2.987964,-8.887277,2.844312,9.798047
 898 2016-08-10 15:49:15,139.141168,35.241661,95.00,1003.3958,-2.997540,-8.983045,2.499547,9.794288
 899 2016-08-10 15:49:22,139.141277,35.241679,91.00,1003.5840,-3.677494,-8.341399,3.581726,9.794471
 900 2016-08-10 15:49:28,139.141392,35.241706,85.00,1003.6282,-3.083732,-9.289502,-0.229843,9.790663
 901 2016-08-10 15:49:33,139.141505,35.241738,84.00,1003.8123,-2.844312,-9.040505,2.480393,9.796591
 902 2016-08-10 15:49:35,139.141531,35.241743,84.00,1003.8601,-2.815581,-9.212888,1.800440,9.800326
 903 2016-08-10 15:49:42,139.141626,35.241682,86.00,1003.9834,-2.652776,-9.260772,1.790863,9.798281
 904 2016-08-10 15:49:46,139.141699,35.241613,86.00,1004.0029,-2.997540,-9.002198,2.442086,9.797377
 905 2016-08-10 15:50:04,139.141850,35.241755,95.00,1004.4170,-2.537854,-9.385271,1.168370,9.792298
 906 2016-08-10 15:50:16,139.141964,35.241802,90.00,1004.6387,-2.480393,-9.356541,1.474828,9.791441
 907 2016-08-10 15:50:26,139.142050,35.241864,89.00,1004.7905,-2.576161,-9.318233,1.541866,9.789966
 908 2016-08-10 15:50:31,139.142158,35.241902,90.00,1004.9517,-4.012682,-8.609550,2.384625,9.793487
 909 2016-08-10 15:50:42,139.142383,35.241975,86.00,1005.0735,-2.968810,-9.040505,2.317587,9.793660
 910 2016-08-10 15:50:47,139.142490,35.242014,85.00,1005.1948,-2.308010,-8.944737,3.275268,9.801154
 911 2016-08-10 15:50:53,139.142599,35.242024,81.00,1005.2026,-2.355895,-9.442732,1.101333,9.794302
 912 2016-08-10 15:51:05,139.142775,35.241966,79.00,1005.5630,-2.212242,-9.241618,2.394202,9.799680
 913 2016-08-10 15:51:11,139.142869,35.241914,78.00,1005.7849,1.244985,-6.033388,7.623138,9.801224
 914 2016-08-10 15:51:16,139.142926,35.241830,77.00,1005.9250,4.462792,-8.638280,1.235408,9.801154
 915 2016-08-10 15:51:25,139.142960,35.241741,74.00,1005.9563,8.226477,1.944092,4.970363,9.806065
 916 2016-08-10 15:51:35,139.142986,35.241645,74.00,1006.1938,0.306458,3.859453,9.011775,9.808230
 917 2016-08-10 15:51:55,139.142992,35.241545,75.00,1006.3430,9.423578,2.671929,0.507571,9.808194
 918 2016-08-10 15:52:01,139.143023,35.241457,76.00,1006.4351,9.069236,1.072602,3.572149,9.806210
 919 2016-08-10 15:52:09,139.143085,35.241376,78.00,1006.5732,8.935161,1.158794,3.859453,9.801800
 920 2016-08-10 15:52:14,139.143142,35.241297,78.00,1006.6206,9.030929,1.359907,3.572149,9.806491
 921 2016-08-10 15:52:21,139.143248,35.241340,75.00,1006.6699,9.078813,0.861913,3.591303,9.801285
 922 2016-08-10 15:52:36,139.143290,35.241391,75.00,1006.8926,8.350976,-2.786851,4.309563,9.801922
 923 2016-08-10 15:52:49,139.143533,35.241490,78.00,1007.0281,8.916007,-2.729390,3.016694,9.800265
 924 2016-08-10 15:52:55,139.143645,35.241474,79.00,1007.0627,8.724471,-2.442086,3.744531,9.803147
 925 2016-08-10 15:52:57,139.143664,35.241473,78.00,1007.0698,8.456321,-1.752556,4.644751,9.805841
 926 2016-08-10 15:53:01,139.143797,35.241513,79.00,1007.1094,8.705317,-3.284845,3.093309,9.805168
 927 2016-08-10 15:53:04,139.143926,35.241525,79.00,1007.0935,8.686164,-2.566584,3.763685,9.808268
 928 2016-08-10 15:53:16,139.144004,35.241587,71.00,1007.3311,8.418014,-3.782839,3.294421,9.799287
 929 2016-08-10 15:53:19,139.144063,35.241672,75.00,1007.3240,8.695741,-3.141193,3.265691,9.805495
 930 2016-08-10 15:53:23,139.144100,35.241770,73.00,1007.2559,8.695741,-2.691083,3.648763,9.806697
 931 2016-08-10 15:53:32,139.144202,35.241713,70.00,1007.5227,8.628703,-3.409343,3.150769,9.798239
 932 2016-08-10 15:53:35,139.144336,35.241748,66.00,1007.5200,8.121132,-3.801992,3.955221,9.800597
 933 2016-08-10 15:53:36,139.144375,35.241767,66.00,1007.5540,8.197746,-4.759673,2.509123,9.805775
 934 2016-08-10 15:53:49,139.144444,35.241844,60.00,1007.6145,8.542512,-3.897760,2.806004,9.800036
 935 2016-08-10 15:53:57,139.144540,35.241813,58.00,1007.8191,9.241618,-2.719813,1.819593,9.803867
 936 2016-08-10 15:54:14,139.144706,35.241779,60.00,1007.6453,8.293514,-4.414908,2.815581,9.808226
 937 2016-08-10 15:54:16,139.144838,35.241767,58.00,1007.7522,8.494628,-4.865018,-0.593762,9.807123
 938 2016-08-10 15:54:18,139.144922,35.241760,61.00,1007.7314,8.599973,-4.414908,1.637634,9.804733
 939 2016-08-10 15:54:33,139.145033,35.241804,57.00,1007.7524,8.820239,-3.399766,2.585738,9.800055
 940 2016-08-10 15:54:39,139.145125,35.241812,58.00,1007.6001,8.762778,-3.141193,3.064578,9.800256
 941 2016-08-10 15:54:49,139.145194,35.241741,54.00,1007.7554,8.350976,-3.926491,3.303998,9.801660
 942 2016-08-10 15:54:52,139.145311,35.241725,53.00,1007.9626,7.891289,-5.449203,2.020706,9.800485
 943 2016-08-10 15:54:59,139.145373,35.241719,51.00,1007.9434,9.030929,-3.342306,1.838747,9.803554
 944 2016-08-10 15:55:07,139.145483,35.241675,53.00,1007.8821,8.705317,-3.754108,2.499547,9.804265
 945 2016-08-10 15:55:14,139.145590,35.241640,55.00,1008.0205,8.734048,-3.878607,2.173935,9.800672
 946 2016-08-10 15:55:22,139.145730,35.241570,54.00,1007.9639,8.523358,-3.256114,3.591303,9.805477
 947 2016-08-10 15:55:26,139.145848,35.241568,54.00,1008.0625,8.657434,-3.792415,2.614468,9.806580
 948 2016-08-10 15:55:36,139.145934,35.241499,52.00,1008.0730,8.494628,-3.801992,3.074155,9.801239
 949 2016-08-10 15:55:37,139.145951,35.241496,52.00,1008.2988,8.475474,-4.386178,2.221819,9.798403
 950 2016-08-10 15:55:46,139.146005,35.241386,52.00,1008.0764,7.000646,-5.181053,4.501099,9.803685
 951 2016-08-10 15:55:51,139.146056,35.241298,52.00,1008.1724,8.753201,-4.185065,1.426944,9.806604
 952 2016-08-10 15:55:55,139.146181,35.241276,47.00,1008.0508,8.705317,-3.849876,2.346318,9.803535
 953 2016-08-10 15:56:00,139.146290,35.241292,47.00,1008.0981,8.523358,-4.644751,1.350330,9.800242
 954 2016-08-10 15:56:05,139.146383,35.241347,45.00,1008.1028,8.868123,-3.897760,1.522712,9.805855
 955 2016-08-10 15:56:11,139.146468,35.241413,47.00,1008.0339,8.532935,-4.261679,2.269703,9.804307
 956 2016-08-10 15:56:18,139.146562,35.241489,48.00,1007.8391,9.021352,-3.677494,1.110910,9.805247
 957 2016-08-10 15:56:21,139.146581,35.241583,52.00,1007.9788,7.594408,-5.841852,2.059013,9.800092
 958 2016-08-10 15:56:28,139.146621,35.241677,50.00,1007.8574,8.638280,-4.539406,0.948104,9.804335
 959 2016-08-10 15:56:35,139.146757,35.241655,56.00,1007.8801,8.839393,-4.127604,1.005565,9.807300
 960 2016-08-10 15:56:38,139.146837,35.241683,55.00,1007.7900,9.040505,-3.524265,1.426944,9.807515
 961 2016-08-10 15:56:44,139.146894,35.241779,57.00,1007.5872,8.772355,-3.667917,2.403779,9.807445
 962 2016-08-10 15:56:52,139.146947,35.241868,56.00,1007.8787,8.006210,-0.526724,5.640739,9.807894
 963 2016-08-10 15:56:55,139.146989,35.241958,54.00,1008.0161,9.643845,0.057461,1.771709,9.805406
 964 2016-08-10 15:56:58,139.146989,35.242086,0.00,1007.7556,9.720459,-0.248997,1.254562,9.804246
 965 2016-08-10 15:57:09,139.147037,35.242175,57.00,1007.6941,9.538500,-2.173935,-0.593762,9.801098
 966 2016-08-10 15:57:17,139.147061,35.242267,56.00,1007.7522,9.394848,-2.135628,1.848324,9.810218
 967 2016-08-10 15:57:19,139.147079,35.242296,55.00,1007.6760,9.758766,-0.632069,0.679953,9.802824
 968 2016-08-10 15:57:28,139.147122,35.242387,57.00,1007.7012,7.469909,-5.343858,3.409343,9.796938
 969 2016-08-10 15:57:34,139.147136,35.242480,58.00,1007.8196,9.423578,1.187524,2.442086,9.807029
 970 2016-08-10 15:57:40,139.147159,35.242506,58.00,1007.7036,8.408437,-4.548983,2.164358,9.802015
 971 2016-08-10 15:57:52,139.147242,35.242582,65.00,1007.8091,7.852982,-5.573701,1.829170,9.802108
 972 2016-08-10 15:57:56,139.147290,35.242672,65.00,1007.9814,7.996634,-5.477933,1.436521,9.798852
 973 2016-08-10 15:57:59,139.147323,35.242696,64.00,1007.5911,7.958326,-4.941632,2.892196,9.804054
 974 2016-08-10 15:58:07,139.147381,35.242783,66.00,1007.4595,8.743625,-2.920926,3.323152,9.799292
 975 2016-08-10 15:58:15,139.147447,35.242871,59.00,1007.8906,8.207323,-4.625597,2.700660,9.800503
 976 2016-08-10 15:58:20,139.147463,35.242901,57.00,1008.0981,8.121132,-5.008670,2.260126,9.805495
 977 2016-08-10 15:58:28,139.147518,35.243008,59.00,1007.8567,8.226477,-5.142745,1.398214,9.801926
 978 2016-08-10 15:58:33,139.147554,35.243096,58.00,1007.6177,7.987057,-4.750096,3.102885,9.797162
 979 2016-08-10 15:58:50,139.147749,35.243148,59.00,1008.2476,8.408437,-4.797980,1.513135,9.798571
 980 2016-08-10 15:58:55,139.147606,35.243373,61.00,1007.8098,7.939173,-5.363012,2.059013,9.799587
 981 2016-08-10 15:59:09,139.147717,35.243404,68.00,1007.5022,6.904878,-5.928043,3.639187,9.801159
 982 2016-08-10 15:59:13,139.147843,35.243429,71.00,1007.8201,8.054094,-4.836287,2.786851,9.799217
 983 2016-08-10 15:59:15,139.147881,35.243520,70.00,1007.7385,7.900866,-4.979939,2.978387,9.802768
 984 2016-08-10 15:59:19,139.147938,35.243620,0.00,1007.8608,7.450756,-6.157887,1.608904,9.799077
 985 2016-08-10 16:05:42,139.147977,35.243600,0.00,1008.0876,8.293514,-4.577713,2.518700,9.802127
 986 2016-08-10 16:05:47,139.148003,35.243697,86.00,1008.0073,7.690176,-5.899313,1.465251,9.802431
 987 2016-08-10 16:05:51,139.148069,35.243775,85.00,1007.9797,7.910442,-5.698200,0.957681,9.796006
 988 2016-08-10 16:05:57,139.148128,35.243861,86.00,1007.9084,7.489063,-5.535394,3.045424,9.798023
 989 2016-08-10 16:06:02,139.148132,35.243965,86.00,1008.3477,8.427590,-4.884171,1.101333,9.802670
 990 2016-08-10 16:06:13,139.148197,35.244048,87.00,1007.9382,8.370130,-4.941632,1.264138,9.801880
 991 2016-08-10 16:06:19,139.148170,35.244146,86.00,1008.0503,8.073248,-4.797980,2.825158,9.807113
 992 2016-08-10 16:06:22,139.148169,35.244207,85.00,1008.0125,8.255207,-5.171476,1.120486,9.805514
 993 2016-08-10 16:06:28,139.148272,35.244258,77.00,1008.5679,8.590396,-4.721366,-0.095768,9.802825
 994 2016-08-10 16:06:35,139.148357,35.244321,71.00,1008.3469,8.149862,-5.267244,1.388637,9.802674
 995 2016-08-10 16:06:49,139.148387,35.244515,69.00,1008.1147,5.583278,-7.278373,3.438074,9.796329
 996 2016-08-10 16:06:56,139.148459,35.244591,72.00,1008.1016,8.542512,-4.003105,2.662352,9.802422
 997 2016-08-10 16:06:59,139.148503,35.244685,61.00,1008.0508,8.437167,-4.960786,0.555455,9.803250
 998 2016-08-10 16:07:02,139.148578,35.244731,65.00,1007.7964,8.255207,-4.797980,2.221819,9.803343
 999 2016-08-10 16:07:10,139.148659,35.244801,61.00,1007.8606,8.216900,-4.941632,2.020706,9.799001
1000 2016-08-10 16:07:20,139.148700,35.244888,63.00,1007.9917,8.264784,-4.979939,1.685518,9.795275
1001 2016-08-10 16:07:22,139.148732,35.244881,65.00,1007.8865,7.642292,-6.110003,0.612916,9.803694
1002 2016-08-10 16:07:30,139.148784,35.244965,61.00,1008.2585,8.418014,-4.750096,1.618480,9.800298
1003 2016-08-10 16:07:36,139.148809,35.245061,62.00,1007.9727,8.360553,-4.922479,1.417367,9.805028
1004 2016-08-10 16:07:39,139.148901,35.245135,63.00,1007.7991,7.738060,-5.736507,1.819593,9.802857
1005 2016-08-10 16:07:42,139.148904,35.245196,66.00,1007.9082,8.293514,-5.123591,1.005565,9.800241
1006 2016-08-10 16:07:46,139.148811,35.245262,65.00,1007.8455,7.364564,-6.100426,2.126051,9.796535
1007 2016-08-10 16:07:51,139.148807,35.245375,57.00,1007.7490,8.389283,-4.960786,1.063026,9.804055
1008 2016-08-10 16:07:57,139.148898,35.245435,55.00,1007.7703,7.738060,-5.516241,2.413355,9.804630
1009 2016-08-10 16:08:02,139.148980,35.245460,57.00,1007.5598,7.690176,-5.793968,1.829170,9.800752
1010 2016-08-10 16:08:14,139.149076,35.245518,60.00,1007.8293,8.006210,-5.343858,1.819593,9.796282
1011 2016-08-10 16:08:20,139.149120,35.245620,56.00,1007.7224,8.025364,-5.420473,1.503559,9.800443
1012 2016-08-10 16:08:22,139.149096,35.245637,55.00,1007.8828,8.485051,-4.817134,0.967257,9.804920
1013 2016-08-10 16:08:25,139.149008,35.245722,56.00,1007.6794,7.862558,-5.592855,1.733402,9.803292
1014 2016-08-10 16:08:28,139.148993,35.245836,59.00,1007.6252,7.671022,-5.947197,1.340753,9.798538
1015 2016-08-10 16:08:33,139.149033,35.245923,59.00,1007.6565,7.948750,-5.228937,2.346318,9.799470
1016 2016-08-10 16:08:39,139.149159,35.245916,59.00,1007.7485,8.245630,-5.171476,1.168370,9.803044
1017 2016-08-10 16:08:42,139.149242,35.245979,0.00,1007.5266,8.207323,-5.008670,1.905785,9.801987
1018 2016-08-10 16:08:59,139.149343,35.246050,60.00,1007.6001,7.977480,-5.659893,0.651223,9.802993
1019 2016-08-10 16:09:02,139.149394,35.246067,59.00,1007.4529,8.274361,-5.114015,1.158794,9.795968
1020 2016-08-10 16:09:18,139.149372,35.246172,56.00,1007.4785,7.517793,-5.937620,2.039860,9.794569
1021 2016-08-10 16:09:22,139.149305,35.246246,55.00,1007.9275,8.370130,-4.903325,1.369483,9.796793
1022 2016-08-10 16:09:22,139.149305,35.246271,54.00,1007.6809,7.843405,-5.458780,2.193089,9.804433
1023 2016-08-10 16:09:27,139.149323,35.246369,56.00,1007.5117,7.757214,-5.746084,1.714248,9.804616
1024 2016-08-10 16:09:32,139.149389,35.246448,56.00,1007.5620,8.686164,-4.194642,1.762132,9.805589
1025 2016-08-10 16:09:40,139.149472,35.246517,56.00,1007.4854,8.868123,-2.853889,3.055001,9.804148
1026 2016-08-10 16:09:43,139.149569,35.246590,52.00,1007.5371,9.739613,-1.005565,0.440533,9.801290
1027 2016-08-10 16:10:11,139.149711,35.246736,57.00,1007.6472,8.360553,-5.008670,1.053449,9.802825
1028 2016-08-10 16:10:13,139.149840,35.246756,57.00,1007.5232,9.481039,-2.240973,1.130063,9.807604
1029 2016-08-10 16:10:31,139.149949,35.246734,58.00,1007.6665,7.651869,-5.966351,1.388637,9.801875
1030 2016-08-10 16:10:34,139.150070,35.246789,58.00,1007.4604,7.747637,-5.688623,1.905785,9.798894
1031 2016-08-10 16:10:44,139.150135,35.246762,59.00,1007.5388,8.054094,-5.200206,2.020706,9.797644
1032 2016-08-10 16:10:53,139.150251,35.246763,62.00,1007.6960,8.044518,-5.305551,1.781286,9.799802
1033 2016-08-10 16:10:56,139.150386,35.246738,60.00,1007.5430,7.498640,-6.081272,1.695095,9.802286
1034 2016-08-10 16:11:00,139.150534,35.246752,63.00,1007.5981,7.479486,-6.167464,1.484405,9.807333
1035 2016-08-10 16:11:05,139.150680,35.246738,62.00,1007.6255,7.891289,-5.468357,2.001553,9.807221
1036 2016-08-10 16:11:20,139.150799,35.246722,67.00,1007.8425,8.034941,-5.046977,2.451663,9.800148
1037 2016-08-10 16:11:25,139.150842,35.246767,69.00,1007.9722,7.833828,-5.276821,2.614468,9.800466
1038 2016-08-10 16:11:31,139.150953,35.246770,64.00,1007.5737,7.651869,-5.659893,2.336741,9.800298
1039 2016-08-10 16:11:34,139.151056,35.246738,66.00,1007.5945,7.833828,-5.612009,1.781286,9.799820
1040 2016-08-10 16:11:37,139.151199,35.246745,66.00,1007.5759,7.584831,-5.966351,1.714248,9.801308
1041 2016-08-10 16:11:41,139.151307,35.246785,68.00,1007.8794,7.958326,-5.363012,2.011129,9.805177
1042 2016-08-10 16:11:44,139.151375,35.246778,70.00,1007.6865,7.613562,-5.861006,1.934515,9.801023
1043 2016-08-10 16:11:54,139.151417,35.246871,69.00,1007.5491,7.556100,-5.650316,2.662352,9.803512
1044 2016-08-10 16:11:59,139.151409,35.247008,69.00,1007.2830,7.814674,-4.855441,3.380613,9.801683
1045 2016-08-10 16:12:09,139.151591,35.246927,66.00,1007.6372,7.948750,-5.123591,2.576161,9.801552
1046 2016-08-10 16:12:14,139.151722,35.246935,67.00,1007.6179,7.805098,-5.841852,0.986411,9.798969
1047 2016-08-10 16:12:25,139.151779,35.246959,64.00,1007.5981,7.153875,-6.579266,1.225831,9.796292
1048 2016-08-10 16:12:45,139.151757,35.247043,64.00,1007.3713,7.862558,-4.884171,3.217807,9.799451
1049 2016-08-10 16:13:21,139.151961,35.247316,55.00,1007.8313,7.939173,-5.746084,-0.047884,9.800522
1050 2016-08-10 16:13:25,139.152090,35.247311,59.00,1007.7502,7.929596,-5.477933,1.771709,9.799245
1051 2016-08-10 16:13:29,139.152207,35.247385,59.00,1007.5798,7.479486,-6.100426,1.723825,9.804564
1052 2016-08-10 16:13:34,139.152324,35.247415,61.00,1007.8013,7.575254,-6.196194,0.574608,9.803442
1053 2016-08-10 16:13:40,139.152442,35.247403,58.00,1007.5586,8.312668,-4.481946,2.633622,9.804297
1054 2016-08-10 16:13:43,139.152565,35.247427,52.00,1007.6401,7.891289,-5.487510,1.915361,9.800705
1055 2016-08-10 16:13:46,139.152623,35.247432,51.00,1007.7903,7.316680,-6.368577,1.359907,9.794995
1056 2016-08-10 16:13:53,139.152749,35.247452,51.00,1007.8223,7.881712,-5.430049,2.106898,9.800298
1057 2016-08-10 16:14:02,139.152844,35.247507,54.00,1007.5115,7.852982,-5.851429,-0.440533,9.803194
1058 2016-08-10 16:14:08,139.152967,35.247487,55.00,1007.7778,7.536947,-5.870583,2.193089,9.801987
1059 2016-08-10 16:14:11,139.153088,35.247505,59.00,1007.6575,7.862558,-5.334281,2.384625,9.795959
1060 2016-08-10 16:14:23,139.153208,35.247521,53.00,1007.7300,7.517793,-6.157887,1.283292,9.802226
1061 2016-08-10 16:14:28,139.153298,35.247534,54.00,1007.9094,8.054094,-5.458780,1.139640,9.796198
1062 2016-08-10 16:14:40,139.153410,35.247570,56.00,1007.8931,7.929596,-5.487510,1.752556,9.801159
1063 2016-08-10 16:15:02,139.153655,35.247547,65.00,1007.8301,7.125144,-5.363012,4.070143,9.802838
1064 2016-08-10 16:15:07,139.153677,35.247540,66.00,1007.7332,7.920019,-5.458780,1.886631,9.802263
1065 2016-08-10 16:15:18,139.153801,35.247558,63.00,1007.9189,7.958326,-5.430049,1.781286,9.797621
1066 2016-08-10 16:15:21,139.153918,35.247573,63.00,1007.7791,8.178593,-5.200206,1.455675,9.800536
1067 2016-08-10 16:15:24,139.154058,35.247567,62.00,1007.7883,7.498640,-6.167464,1.340753,9.801266
1068 2016-08-10 16:15:29,139.154116,35.247552,61.00,1007.7339,7.967903,-5.449203,1.704672,9.802408
1069 2016-08-10 16:15:38,139.154222,35.247597,64.00,1007.8704,7.805098,-5.669470,1.723825,9.799694
1070 2016-08-10 16:15:45,139.154353,35.247615,61.00,1007.8127,7.651869,-5.803545,1.944092,9.798557
1071 2016-08-10 16:15:48,139.154407,35.247630,61.00,1007.7263,7.690176,-5.832275,1.695095,9.799367
1072 2016-08-10 16:15:54,139.154529,35.247636,61.00,1007.8835,7.958326,-5.573701,1.254562,9.796685
1073 2016-08-10 16:16:14,139.154871,35.247611,58.00,1007.9705,7.651869,-5.870583,1.733402,9.798955
1074 2016-08-10 16:16:19,139.154982,35.247649,57.00,1007.6624,7.910442,-5.516241,1.723825,9.796713
1075 2016-08-10 16:16:23,139.155088,35.247611,61.00,1008.0542,8.006210,-5.525817,1.177947,9.799062
1076 2016-08-10 16:16:28,139.155243,35.247602,62.00,1007.9104,7.910442,-5.525817,1.704672,9.798758
1077 2016-08-10 16:16:28,139.155285,35.247612,62.00,1007.6814,7.680599,-5.573701,2.451663,9.801449
1078 2016-08-10 16:16:31,139.155385,35.247675,62.00,1007.8521,7.757214,-5.573701,2.173935,9.796249
1079 2016-08-10 16:16:36,139.155483,35.247763,62.00,1007.8845,7.939173,-5.573701,1.417367,9.803343
1080 2016-08-10 16:16:40,139.155317,35.247816,63.00,1007.7981,7.364564,-6.062119,2.250550,9.800564
1081 2016-08-10 16:16:44,139.155294,35.247913,64.00,1007.9597,8.734048,-1.905785,4.031836,9.806697
1082 2016-08-10 16:16:49,139.155252,35.248003,64.00,1007.9939,8.082825,-5.382165,1.321599,9.800326
1083 2016-08-10 16:16:57,139.155259,35.248098,66.00,1007.5996,7.345411,-6.320693,1.474828,9.802109
1084 2016-08-10 16:17:04,139.155282,35.248188,65.00,1008.2461,7.335834,-5.832275,2.863465,9.799456
1085 2016-08-10 16:17:08,139.155296,35.248236,64.00,1007.9712,7.967903,-5.525817,1.407791,9.798164
1086 2016-08-10 16:17:17,139.155326,35.248348,60.00,1007.9045,5.564125,-7.987057,-1.091756,9.795126
1087 2016-08-10 16:17:21,139.155343,35.248461,62.00,1007.6802,7.441179,-6.148310,1.685518,9.798665
1088 2016-08-10 16:17:30,139.155316,35.248524,64.00,1007.9597,7.613562,-5.995081,1.465251,9.800728
1089 2016-08-10 16:17:38,139.155254,35.248600,67.00,1008.0239,7.900866,-5.315128,2.327164,9.802548
1090 2016-08-10 16:17:46,139.155259,35.248702,58.00,1007.8762,7.747637,-5.832275,1.436521,9.803311
1091 2016-08-10 16:17:49,139.155217,35.248745,57.00,1007.6787,7.536947,-6.081272,1.484405,9.797494
1092 2016-08-10 16:18:28,139.155227,35.248815,65.00,1008.0251,7.584831,-5.238513,3.332729,9.801977
1093 2016-08-10 16:18:50,139.155246,35.248818,66.00,1007.8557,7.077260,-6.521805,1.838747,9.798089
1094 2016-08-10 16:19:21,139.155276,35.248912,62.00,1007.7432,7.900866,-5.640739,1.359907,9.802600
1095 2016-08-10 16:19:25,139.155307,35.249010,50.00,1007.6682,7.814674,-5.401319,2.413355,9.801411
1096 2016-08-10 16:19:28,139.155340,35.249102,51.00,1008.0278,7.718906,-5.851429,1.493982,9.800649
1097 2016-08-10 16:19:29,139.155353,35.249118,51.00,1007.9688,7.929596,-5.477933,1.810017,9.806243
1098 2016-08-10 16:19:34,139.155388,35.249212,50.00,1007.6633,7.814674,-5.583278,1.924938,9.795280
1099 2016-08-10 16:19:40,139.155383,35.249302,49.00,1008.1177,7.565677,-6.196194,0.545878,9.794400
1100 2016-08-10 16:19:45,139.155397,35.249394,50.00,1007.8081,7.192182,-6.607996,0.833182,9.802413
1101 2016-08-10 16:19:49,139.155413,35.249473,54.00,1007.6497,7.872135,-5.803545,0.641646,9.801192
1102 2016-08-10 16:19:52,139.155362,35.249575,53.00,1007.7502,7.422025,-6.397307,-0.114922,9.799245
1103 2016-08-10 16:19:56,139.155308,35.249655,50.00,1007.6956,8.255207,-5.248090,0.622492,9.801959
1104 2016-08-10 16:20:03,139.155321,35.249755,51.00,1007.5759,7.690176,-5.841852,1.704672,9.806730
1105 2016-08-10 16:20:08,139.155359,35.249846,55.00,1007.4053,7.326257,-6.148310,2.126051,9.797748
1106 2016-08-10 16:20:09,139.155373,35.249855,54.00,1007.5374,7.393295,-6.339846,1.072602,9.798211
1107 2016-08-10 16:20:15,139.155365,35.249946,55.00,1007.5247,7.642292,-5.688623,2.308010,9.802651
1108 2016-08-10 16:20:29,139.155315,35.250050,56.00,1007.6033,7.833828,-5.640739,1.704672,9.802689
1109 2016-08-10 16:20:34,139.155385,35.250137,57.00,1007.5269,6.895301,-6.962338,0.220267,9.801421
1110 2016-08-10 16:20:38,139.155430,35.250224,62.00,1007.4753,7.594408,-6.148310,-0.718261,9.797584
1111 2016-08-10 16:20:47,139.155440,35.250324,70.00,1007.3669,7.824251,-5.899313,-0.258574,9.802431
1112 2016-08-10 16:20:51,139.155406,35.250364,66.00,1007.2632,7.201759,-6.636727,0.335188,9.799175
1113 2016-08-10 16:20:58,139.155414,35.250464,70.00,1007.4192,7.910442,-5.774815,0.383072,9.801547
1114 2016-08-10 16:21:06,139.155350,35.250544,68.00,1007.0593,8.245630,-4.884171,2.049437,9.800293
1115 2016-08-10 16:21:18,139.155127,35.250537,68.00,1006.8230,6.866570,-6.971915,-0.545878,9.800784
1116 2016-08-10 16:21:41,139.154923,35.250517,80.00,1006.0588,4.932055,-8.274361,1.790863,9.797827
1117 2016-08-10 16:21:52,139.154885,35.250535,80.00,1006.1104,6.272809,-7.527370,-0.134075,9.799357
1118 2016-08-10 16:22:38,139.154476,35.250789,78.00,1005.8403,7.805098,-5.573701,2.030283,9.803456
1119 2016-08-10 16:22:46,139.154347,35.250773,81.00,1005.4712,7.383718,-6.406884,0.641646,9.796895
1120 2016-08-10 16:22:49,139.154234,35.250772,83.00,1006.0034,7.747637,-5.937620,0.871489,9.800036
1121 2016-08-10 16:22:51,139.154206,35.250762,83.00,1005.8088,7.556100,-5.832275,2.231396,9.802511
1122 2016-08-10 16:22:58,139.154098,35.250724,82.00,1005.4331,7.690176,-5.803545,1.790863,9.799343
1123 2016-08-10 16:23:04,139.153977,35.250725,82.00,1005.6292,7.757214,-5.793968,1.532289,9.802670
1124 2016-08-10 16:23:11,139.153893,35.250704,82.00,1005.5537,7.556100,-5.746084,2.442086,9.801832
1125 2016-08-10 16:23:22,139.153776,35.250708,85.00,1005.9817,7.603985,-6.119579,0.938527,9.805645
1126 2016-08-10 16:23:26,139.153654,35.250687,84.00,1005.7585,7.709330,-5.803545,1.714248,9.800691
1127 2016-08-10 16:23:31,139.153628,35.250687,85.00,1005.7473,6.981492,-6.751649,1.302446,9.799100
1128 2016-08-10 16:23:51,139.153614,35.250650,75.00,1005.7749,7.795521,-5.544971,2.126051,9.799844
1129 2016-08-10 16:24:11,139.153582,35.250659,76.00,1004.9976,8.006210,-5.650316,-0.268151,9.802927
1130 2016-08-10 16:24:32,139.153580,35.250659,76.00,1004.7307,8.532935,-3.907337,2.834735,9.803774
1131 2016-08-10 16:25:11,139.153541,35.250761,0.00,1004.5354,8.121132,-5.487510,0.268151,9.804971
1132 2016-08-10 16:25:31,139.153628,35.251027,0.00,1004.3994,7.259220,-6.234501,2.126051,9.802315
1133 2016-08-10 16:33:56,139.153549,35.251067,0.00,1004.5576,8.944737,1.455675,3.744531,9.805551
1134 2016-08-10 16:41:34,139.153549,35.251067,0.00,1004.5920,5.372589,-7.996634,1.762132,9.793670
1135 2016-08-10 16:42:40,139.153588,35.250975,0.00,1004.2444,6.493075,-6.866570,2.595315,9.800279
1136 2016-08-10 16:47:04,139.153588,35.250975,0.00,1004.0259,6.033388,-6.761226,3.725378,9.797672
1137 2016-08-10 16:50:04,139.153628,35.251027,0.00,1003.6389,6.339846,-7.201759,1.991976,9.799334
1138 2016-08-10 16:51:29,139.153122,35.251189,90.00,1002.8379,5.803545,-7.201759,3.227384,9.796044
1139 2016-08-10 16:51:35,139.153186,35.251112,98.00,1002.8716,6.224925,-7.163452,2.442086,9.799414
1140 2016-08-10 16:52:26,139.153214,35.251039,102.00,1002.8894,5.497087,-7.469909,3.150769,9.795145
1141 2016-08-10 16:53:47,139.153116,35.251033,102.00,1002.8899,6.177041,-7.077260,2.796427,9.801196
1142 2016-08-10 16:54:27,139.153135,35.251035,101.00,1002.7141,6.406884,-6.655881,3.265691,9.798655
1143 2016-08-10 16:55:24,139.153226,35.251106,98.00,1002.9690,6.311116,-7.163452,2.212242,9.799961
1144 2016-08-10 16:55:27,139.153302,35.251145,101.00,1002.8542,6.196194,-7.393295,1.742979,9.802633
1145 2016-08-10 16:55:40,139.153300,35.251045,101.00,1002.8503,5.410896,-7.776367,2.509123,9.800274
1146 2016-08-10 16:57:28,139.153549,35.251067,0.00,1004.2153,5.956774,-7.307104,2.662352,9.796175
1147 2016-08-10 17:02:48,139.153588,35.250975,0.00,1005.1782,8.896853,-3.926491,1.254562,9.805369
1148 2016-08-10 17:03:24,139.153503,35.250898,76.00,1005.3699,6.607996,-6.301539,3.572149,9.804859
1149 2016-08-10 17:03:28,139.153492,35.250878,77.00,1005.7427,6.416461,-7.010222,2.384625,9.797991
1150 2016-08-10 17:03:48,139.153440,35.250831,80.00,1006.2690,7.268796,-6.129156,2.365471,9.797827
1151 2016-08-10 17:04:08,139.153474,35.250746,71.00,1006.1021,6.521805,-7.144298,1.570596,9.800087
1152 2016-08-10 17:04:56,139.153635,35.250721,62.00,1006.1709,7.460332,-6.205771,1.417367,9.806992
1153 2016-08-10 17:05:04,139.153727,35.250784,63.00,1006.1663,6.655881,-6.914454,2.001553,9.803910
1154 2016-08-10 17:05:09,139.154023,35.251117,0.00,1006.3726,6.196194,-7.422025,1.580173,9.796746
1155 2016-08-10 17:05:30,139.154142,35.251129,0.00,1006.3911,7.814674,-5.564125,2.020706,9.803666
1156 2016-08-10 17:05:50,139.154142,35.251129,0.00,1006.3701,7.211336,-6.454768,1.541866,9.800242
1157 2016-08-10 17:06:10,139.154142,35.251129,0.00,1006.0789,7.115568,-6.378153,2.164358,9.797785
1158 2016-08-10 17:06:30,139.154142,35.251129,0.00,1006.2981,4.979939,-8.341399,-1.264138,9.796774
1159 2016-08-10 17:06:46,139.154219,35.251106,81.00,1006.3533,0.948104,-7.393295,-6.359000,9.797785
1160 2016-08-10 17:08:06,139.154260,35.251019,72.00,1006.3223,7.489063,-6.129156,1.551443,9.800999
1161 2016-08-10 17:08:11,139.154247,35.250978,69.00,1006.3716,5.975927,-7.584831,1.695095,9.803811
1162 2016-08-10 17:08:29,139.154357,35.250964,68.00,1006.6309,6.885724,-6.924031,0.823605,9.799680
1163 2016-08-10 17:08:32,139.154367,35.250961,67.00,1005.8472,6.732495,-6.272809,3.380613,9.803222
1164 2016-08-10 17:09:51,139.154380,35.250966,66.00,1006.5371,5.659893,-6.742072,4.309563,9.801136
1165 2016-08-10 17:10:32,139.154372,35.250967,66.00,1006.6755,5.908890,-6.703765,4.031836,9.803629
1166 2016-08-10 17:10:52,139.154368,35.250963,66.00,1006.3970,5.995081,-6.540959,4.165911,9.802038
1167 2016-08-10 17:12:11,139.154271,35.250905,67.00,1006.4797,6.837840,-6.770802,1.857901,9.800593
1168 2016-08-10 17:12:12,139.154268,35.250897,67.00,1006.2915,5.803545,-7.805098,1.197101,9.799680
1169 2016-08-10 17:12:32,139.154243,35.250851,71.00,1006.4736,7.201759,-6.646304,-0.201113,9.801997
1170 2016-08-10 17:12:52,139.154241,35.250850,71.00,1006.4949,7.536947,-3.639187,-5.104438,9.803292
1171 2016-08-10 17:13:15,139.154240,35.250850,71.00,1006.4954,0.995988,4.367024,8.724471,9.807104
1172 2016-08-10 17:13:34,139.154241,35.250851,71.00,1006.4812,0.584185,4.529830,8.676587,9.805294
1173 2016-08-10 17:13:53,139.154243,35.250852,71.00,1006.4541,0.718261,6.244078,7.527370,9.806412
1174 2016-08-10 17:16:45,139.154248,35.250855,71.00,1006.4312,1.024718,4.165911,8.820239,9.808235
1175 2016-08-10 17:17:45,139.154251,35.250855,71.00,1006.4241,1.197101,4.309563,8.724471,9.804172
1176 2016-08-10 17:18:47,139.154252,35.250856,70.00,1006.4153,1.187524,4.376601,8.695741,9.807179
1177 2016-08-10 17:19:26,139.154253,35.250855,70.00,1006.4028,0.967257,4.252102,8.781932,9.805013
1178 2016-08-10 17:19:46,139.154262,35.250851,63.00,1006.3967,1.139640,3.955221,8.896853,9.802885
1179 2016-08-10 17:20:26,139.154264,35.250851,63.00,1006.4080,0.995988,4.108450,8.848969,9.806917
1180 2016-08-10 17:20:47,139.154273,35.250844,64.00,1006.3911,1.015141,4.098873,8.848969,9.804873
1181 2016-08-10 17:21:07,139.154303,35.250803,65.00,1006.3713,0.766145,4.022259,8.906430,9.802553
1182 2016-08-10 17:21:49,139.154306,35.250804,66.00,1006.3801,0.890643,4.050989,8.887277,9.807520
1183 2016-08-10 17:22:29,139.154309,35.250804,67.00,1006.4167,2.106898,-6.732495,6.799533,9.797916
1184 2016-08-10 17:27:50,139.154260,35.250836,64.00,1006.3308,2.547431,-6.339846,7.029376,9.802815
1185 2016-08-10 17:28:30,139.154254,35.250839,64.00,1006.3140,2.853889,-5.995081,7.211336,9.802502
1186 2016-08-10 17:28:50,139.154253,35.250840,64.00,1006.2649,2.537854,-6.320693,7.038953,9.794831
1187 2016-08-10 17:29:30,139.154246,35.250844,64.00,1006.2776,2.489970,-6.349423,7.048530,9.808001
1188 2016-08-10 17:29:50,139.154243,35.250846,64.00,1006.2915,2.710236,-6.129156,7.153875,9.802544
1189 2016-08-10 17:30:10,139.154241,35.250848,64.00,1006.2927,2.652776,-6.339846,6.991069,9.803362
1190 2016-08-10 17:30:51,139.154236,35.250851,64.00,1006.2849,2.825158,-6.205771,7.038953,9.799998
1191 2016-08-10 17:32:31,139.154226,35.250858,64.00,1006.2029,3.964798,-8.935161,0.660800,9.797621
1192 2016-08-10 17:32:51,139.154229,35.250859,64.00,1006.3413,4.797980,-8.532935,0.383072,9.796854
1193 2016-08-10 17:33:00,139.154320,35.250794,64.00,1006.2561,4.462792,-8.724471,-0.220267,9.802113
1194 2016-08-10 17:33:12,139.154380,35.250776,63.00,1006.3210,5.008670,-8.379706,-0.775721,9.793263
1195 2016-08-10 17:33:18,139.154447,35.250681,59.00,1006.3567,4.367024,-8.734048,-0.833182,9.800443
1196 2016-08-10 17:33:23,139.154550,35.250636,48.00,1006.4341,4.299986,-8.781932,-0.612916,9.797340
1197 2016-08-10 17:33:28,139.154502,35.250550,45.00,1006.4043,4.434062,-8.714894,-0.603339,9.796647
1198 2016-08-10 17:34:04,139.154625,35.250493,51.00,1006.8000,6.799533,-6.359000,-3.064578,9.801131
1199 2016-08-10 17:34:19,139.154810,35.250483,54.00,1006.8264,4.089296,-8.829816,-1.139640,9.797284
1200 2016-08-10 17:34:28,139.154928,35.250467,58.00,1007.0610,4.788404,-8.523358,-0.632069,9.796732
1201 2016-08-10 17:34:32,139.154935,35.250464,59.00,1007.0774,4.357447,-8.753201,-0.612916,9.797017
1202 2016-08-10 17:34:46,139.155052,35.250481,53.00,1007.5193,5.726931,-7.805098,1.541866,9.802787
1203 2016-08-10 17:34:51,139.155083,35.250480,50.00,1007.2598,4.156334,-8.848969,-0.632069,9.796881
1204 2016-08-10 17:35:11,139.155162,35.250503,47.00,1007.5710,4.443638,-8.714894,-0.574608,9.799259
1205 2016-08-10 17:35:29,139.155270,35.250461,49.00,1007.6140,5.181053,-8.303091,-0.497994,9.799624
1206 2016-08-10 17:35:51,139.155367,35.250429,52.00,1007.6558,3.869030,-9.002198,-0.306458,9.803208
1207 2016-08-10 17:36:53,139.155391,35.250438,58.00,1007.6602,4.079720,-8.877700,-0.670376,9.793216
1208 2016-08-10 17:39:13,139.155452,35.250332,62.00,1007.7805,4.395754,-8.599973,-1.637634,9.796123
1209 2016-08-10 17:39:29,139.155485,35.250244,59.00,1007.9832,5.276821,-8.255207,0.057461,9.797785
1210 2016-08-10 17:39:34,139.155513,35.250163,59.00,1008.1162,4.692636,-8.561666,-0.794875,9.795651
1211 2016-08-10 17:39:50,139.155627,35.250158,60.00,1008.0999,5.142745,-8.322245,-0.584185,9.800452
1212 2016-08-10 17:40:03,139.155767,35.250219,59.00,1008.1274,2.844312,-9.279925,-1.331176,9.796895
1213 2016-08-10 17:40:13,139.155876,35.250236,58.00,1008.2683,5.066131,-8.360553,-0.622492,9.795510
1214 2016-08-10 17:40:27,139.156004,35.250213,59.00,1008.1079,3.773262,-9.040505,0.220267,9.798814
1215 2016-08-10 17:40:34,139.156113,35.250196,57.00,1008.2441,4.003105,-8.944737,0.086191,9.800031
1216 2016-08-10 17:40:42,139.156231,35.250201,55.00,1008.1123,3.658340,-9.088389,-0.258574,9.800466
1217 2016-08-10 17:40:51,139.156344,35.250211,51.00,1008.2087,4.232949,-8.801085,-0.737414,9.793913
1218 2016-08-10 17:40:54,139.156368,35.250214,51.00,1008.2305,5.133168,-8.341399,0.201113,9.796367
1219 2016-08-10 17:41:14,139.156392,35.250234,54.00,1008.2920,2.729390,-9.289502,-1.474828,9.793852
1220 2016-08-10 17:41:29,139.156507,35.250206,54.00,1008.1387,4.596867,-8.647857,-0.450110,9.804041
1221 2016-08-10 17:41:34,139.156561,35.250213,56.00,1008.1826,5.209783,-8.293514,0.229843,9.796788
1222 2016-08-10 17:41:44,139.156674,35.250211,55.00,1008.2336,4.146757,-8.868123,-0.325611,9.795163
1223 2016-08-10 17:41:54,139.156770,35.250227,58.00,1008.1670,5.200206,-8.303091,-0.076614,9.797415
1224 2016-08-10 17:42:14,139.156859,35.250229,56.00,1008.2971,4.654328,-8.619126,-0.153229,9.796713
1225 2016-08-10 17:42:50,139.156907,35.250292,57.00,1008.1753,3.964798,-8.925584,-0.775721,9.797317
1226 2016-08-10 17:43:02,139.156950,35.250454,53.00,1008.3179,3.648763,-9.078813,0.574608,9.801453
1227 2016-08-10 17:43:10,139.156963,35.250544,53.00,1008.1775,4.558560,-8.657434,-0.622492,9.804036
1228 2016-08-10 17:43:27,139.156983,35.250699,52.00,1008.3691,4.079720,-8.896853,0.469264,9.798894
1229 2016-08-10 17:43:45,139.157184,35.250693,54.00,1008.4058,4.271256,-8.801085,-0.545878,9.797996
1230 2016-08-10 17:44:07,139.157432,35.250719,46.00,1008.5535,5.295974,-8.245630,0.134075,9.800803
1231 2016-08-10 17:44:14,139.157473,35.250811,46.00,1008.6755,4.539406,-8.657434,-0.660800,9.797654
1232 2016-08-10 17:44:24,139.157489,35.250937,46.00,1008.7471,4.788404,-8.552089,0.076614,9.801678
1233 2016-08-10 17:44:33,139.157512,35.251034,48.00,1008.6104,4.242526,-8.829816,-0.239420,9.799081
1234 2016-08-10 17:44:40,139.157517,35.251136,50.00,1008.5955,4.683059,-8.599973,-0.229843,9.795070
1235 2016-08-10 17:44:48,139.157528,35.251234,51.00,1008.5859,4.223372,-8.829816,-0.421380,9.796942
1236 2016-08-10 17:44:56,139.157511,35.251329,49.00,1008.5618,4.874595,-8.494628,-0.268151,9.797565
1237 2016-08-10 17:45:05,139.157514,35.251430,52.00,1008.7192,1.810017,-9.624691,-0.258574,9.796821
1238 2016-08-10 17:45:16,139.157512,35.251520,59.00,1008.5703,5.008670,-8.418014,-0.105345,9.795960
1239 2016-08-10 17:47:57,139.157427,35.251543,54.00,1008.8503,4.462792,-7.948750,3.600879,9.801299
1240 2016-08-10 17:48:39,139.157434,35.251538,54.00,1008.8118,4.280833,-8.006210,3.696647,9.802558
1241 2016-08-10 17:48:58,139.157414,35.251541,49.00,1008.7012,3.208230,-9.059659,1.877054,9.792522
1242 2016-08-10 17:49:38,139.157403,35.251546,49.00,1008.8372,3.332729,-9.117120,-1.350330,9.800630
1243 2016-08-10 17:49:59,139.157416,35.251542,51.00,1008.8801,4.213795,-8.762778,-1.225831,9.800256
1244 2016-08-10 17:50:19,139.157429,35.251538,52.00,1008.8374,5.544971,-8.073248,-0.325611,9.799493
1245 2016-08-10 17:50:48,139.157482,35.251635,54.00,1008.8452,3.801992,-9.011775,-0.517148,9.794625
1246 2016-08-10 17:50:54,139.157549,35.251721,57.00,1008.8813,3.869030,-8.992621,0.392649,9.797490
1247 2016-08-10 17:51:00,139.157619,35.251829,0.00,1008.7568,4.721366,-8.561666,0.593762,9.795201
1248 2016-08-10 17:51:08,139.157596,35.251922,47.00,1008.8779,4.290410,-8.801085,-0.268151,9.794826
1249 2016-08-10 17:51:21,139.157600,35.252019,51.00,1008.8740,4.252102,-8.829816,-0.057461,9.800476
1250 2016-08-10 17:51:52,139.157578,35.252124,54.00,1008.8220,7.153875,-6.387730,-2.011129,9.799269
1251 2016-08-10 17:51:57,139.157596,35.252215,54.00,1008.9250,4.654328,-8.590396,0.766145,9.800237
1252 2016-08-10 17:52:06,139.157649,35.252336,60.00,1008.9282,4.769250,-8.523358,0.727837,9.794035
1253 2016-08-10 17:52:15,139.157703,35.252417,61.00,1008.9470,4.558560,-8.657434,-0.507571,9.797410
1254 2016-08-10 17:52:24,139.157673,35.252515,59.00,1009.0046,3.658340,-9.040505,0.928950,9.796792
1255 2016-08-10 17:52:31,139.157702,35.252603,61.00,1008.9819,4.759673,-8.561666,0.134075,9.796662
1256 2016-08-10 17:52:42,139.157722,35.252693,60.00,1008.8967,4.146757,-8.868123,0.268151,9.793422
1257 2016-08-10 17:52:47,139.157657,35.252772,55.00,1009.0046,4.548983,-8.676587,-0.287304,9.800967
1258 2016-08-10 17:52:56,139.157649,35.252871,60.00,1009.0637,3.514688,-9.136273,0.459687,9.799788
1259 2016-08-10 17:53:10,139.157660,35.253007,61.00,1008.9282,1.953669,-9.548077,-0.967257,9.793782
1260 2016-08-10 17:53:18,139.157740,35.253079,60.00,1008.9153,4.596867,-8.628703,0.660800,9.799100
1261 2016-08-10 17:53:20,139.157763,35.253097,59.00,1008.9089,4.118027,-8.887277,-0.076614,9.795290
1262 2016-08-10 17:53:28,139.157750,35.253189,59.00,1008.9231,4.338294,-8.772355,-0.488417,9.798651
1263 2016-08-10 17:53:38,139.157749,35.253288,59.00,1008.9666,4.644751,-8.619126,0.411803,9.799624
1264 2016-08-10 17:53:41,139.157749,35.253331,60.00,1008.9897,4.108450,-8.877700,-0.584185,9.799703
1265 2016-08-10 17:53:48,139.157757,35.253427,54.00,1008.9053,5.142745,-8.341399,0.229843,9.802020
1266 2016-08-10 17:53:50,139.157815,35.253510,56.00,1008.9097,4.501099,-8.695741,0.277727,9.795557
1267 2016-08-10 17:53:58,139.157730,35.253585,52.00,1008.8408,4.462792,-8.724471,0.239420,9.802562
1268 2016-08-10 17:54:01,139.157719,35.253606,54.00,1008.8647,3.926491,-8.973468,-0.239420,9.797846
1269 2016-08-10 17:54:14,139.157695,35.253699,56.00,1009.0002,3.275268,-8.753201,2.959233,9.803213
1270 2016-08-10 17:54:22,139.157687,35.253798,58.00,1008.9575,4.022259,-8.925584,0.430956,9.799507
1271 2016-08-10 17:55:03,139.157596,35.253840,56.00,1009.0061,4.041412,-8.858546,1.139640,9.803348
1272 2016-08-10 17:55:10,139.157553,35.253926,55.00,1008.9382,4.481946,-8.714894,-0.268151,9.803526
1273 2016-08-10 17:55:16,139.157613,35.254017,59.00,1008.9836,4.261679,-8.801085,0.660800,9.800902
1274 2016-08-10 17:55:22,139.157693,35.254056,70.00,1008.9753,4.012682,-8.935161,0.287304,9.799044
1275 2016-08-10 17:55:42,139.157575,35.254262,79.00,1008.8889,3.524265,-9.126697,-0.545878,9.798725
1276 2016-08-10 17:55:57,139.157620,35.254353,78.00,1008.9617,3.380613,-9.174581,0.679953,9.801215
1277 2016-08-10 17:56:02,139.157649,35.254381,78.00,1008.9792,3.974375,-8.944737,0.430956,9.797434
1278 2016-08-10 17:56:11,139.157720,35.254463,76.00,1008.9656,4.299986,-8.801085,0.057461,9.795524
1279 2016-08-10 17:56:18,139.157732,35.254556,70.00,1008.8838,4.702212,-8.590396,0.344765,9.799213
1280 2016-08-10 17:56:22,139.157709,35.254624,67.00,1008.9004,3.869030,-8.992621,-0.526724,9.803778
1281 2016-08-10 17:56:32,139.157625,35.254684,69.00,1008.8506,4.817134,-8.523358,0.392649,9.798295
1282 2016-08-10 17:56:40,139.157676,35.254768,68.00,1009.0747,3.438074,-9.174581,0.229843,9.800312
1283 2016-08-10 17:56:43,139.157680,35.254806,65.00,1008.9546,4.079720,-8.906430,-0.067038,9.796586
1284 2016-08-10 17:56:55,139.157705,35.254895,63.00,1009.0488,4.730943,-8.580819,0.239420,9.801510
1285 2016-08-10 17:57:01,139.157651,35.254993,60.00,1008.9995,3.782839,-8.992621,0.852336,9.793038
1286 2016-08-10 17:57:12,139.157511,35.254992,59.00,1008.9678,4.635174,-8.619126,0.459687,9.797219
1287 2016-08-10 17:57:16,139.157530,35.255097,67.00,1008.9180,4.089296,-8.906430,-0.038307,9.800424
1288 2016-08-10 18:01:04,139.157320,35.255154,45.00,1008.6487,4.865018,-8.475474,-0.660800,9.794831
1289 2016-08-10 18:01:09,139.156757,35.255196,36.00,1008.5903,4.376601,-8.657434,-1.388637,9.799699
1290 2016-08-10 18:01:11,139.156507,35.255223,34.00,1008.6050,4.903325,-8.293514,-1.800440,9.801355
1291 2016-08-10 18:01:24,139.156236,35.255315,0.00,1008.6802,3.945644,-8.944737,-0.622492,9.796118
1292 2016-08-10 18:02:23,139.156315,35.255419,0.00,1008.6782,4.884171,-8.494628,0.086191,9.799044
1293 2016-08-10 18:02:43,139.156236,35.255674,0.00,1008.5894,4.778827,-8.552089,0.067038,9.796933
1294 2016-08-10 18:03:45,139.156396,35.255938,70.00,1008.6790,4.050989,-8.781932,-1.580173,9.799479
1295 2016-08-10 18:03:57,139.156288,35.255961,75.00,1008.7498,4.960786,-8.437167,-0.469264,9.798745
1296 2016-08-10 18:04:04,139.156258,35.255896,83.00,1008.7078,4.424485,-8.734048,0.287304,9.795009
1297 2016-08-10 18:04:25,139.156289,35.255816,96.00,1008.3672,4.347870,-8.494628,2.212242,9.795749
1298 2016-08-10 18:05:08,139.156438,35.255987,88.00,1008.1157,4.185065,-8.858546,-0.277727,9.801313
1299 2016-08-10 18:05:11,139.156552,35.255923,85.00,1008.0479,4.434062,-8.686164,-0.948104,9.798431
1300 2016-08-10 18:05:20,139.156487,35.255848,90.00,1008.0674,4.510676,-8.695741,-0.248997,9.799189
1301 2016-08-10 18:06:07,139.156433,35.255934,81.00,1008.0962,4.730943,-8.571242,-0.440533,9.800106
1302 2016-08-10 18:06:45,139.156356,35.255874,76.00,1008.1199,4.108450,-8.868123,-0.737414,9.801365
1303 2016-08-10 18:07:00,139.156228,35.255898,71.00,1008.0769,4.797980,-8.523358,-0.526724,9.795187
1304 2016-08-10 18:08:25,139.156169,35.255911,65.00,1008.1240,4.606444,-8.638280,-0.526724,9.803910
1305 2016-08-10 18:09:06,139.156184,35.255906,68.00,1007.6792,4.730943,-8.580819,-0.153229,9.799783
1306 2016-08-10 18:09:44,139.155841,35.256014,0.00,1007.7156,4.836287,-8.475474,-0.814029,9.792139
1307 2016-08-10 18:10:06,139.155762,35.256126,0.00,1007.6914,4.137180,-8.868123,-0.517148,9.799352
1308 2016-08-10 18:10:26,139.155762,35.256126,0.00,1007.8418,4.060566,-8.896853,0.612916,9.798870
1309 2016-08-10 18:10:35,139.155767,35.256219,40.00,1007.6931,4.663905,-8.599973,-0.497994,9.795894
1310 2016-08-10 18:10:46,139.155525,35.256387,0.00,1007.7771,3.169923,-9.270349,0.095768,9.797803
1311 2016-08-10 18:11:06,139.155525,35.256387,0.00,1007.6731,4.299986,-8.743625,-1.034295,9.798501
1312 2016-08-10 18:13:34,139.155925,35.256289,18.00,1008.7866,4.424485,-8.734048,0.440533,9.800700
1313 2016-08-10 18:13:38,139.155860,35.256404,16.00,1008.6626,4.070143,-8.916007,0.210690,9.803348
1314 2016-08-10 18:13:39,139.155795,35.256479,6.00,1008.6299,4.003105,-8.925584,-0.565032,9.798477
1315 2016-08-10 18:13:46,139.155400,35.256652,41.00,1008.6409,3.696647,-9.059659,0.555455,9.800569
1316 2016-08-10 18:13:48,139.155303,35.256712,50.00,1008.4526,4.290410,-8.810662,-0.076614,9.800064
1317 2016-08-10 18:13:51,139.155186,35.256761,58.00,1008.6216,3.629610,-9.097966,0.181959,9.796947
1318 2016-08-10 18:13:59,139.154842,35.256780,79.00,1008.5242,3.524265,-9.145850,0.028730,9.801420
1319 2016-08-10 18:14:03,139.154710,35.256794,79.00,1008.4656,3.610456,-9.069236,0.814029,9.795360
1320 2016-08-10 18:14:10,139.154613,35.256717,69.00,1008.5408,4.098873,-8.858546,0.804452,9.793965
1321 2016-08-10 18:14:13,139.154622,35.256614,62.00,1008.4924,3.744531,-9.050082,-0.229843,9.796853
1322 2016-08-10 18:14:19,139.154609,35.256509,65.00,1008.4819,3.447650,-9.136273,-0.785298,9.796656
1323 2016-08-10 18:14:25,139.154506,35.256475,63.00,1008.5059,4.424485,-8.734048,0.411803,9.799451
1324 2016-08-10 18:14:29,139.154470,35.256488,65.00,1008.4688,3.658340,-9.040505,0.995988,9.803376
1325 2016-08-10 18:14:42,139.154364,35.256526,70.00,1008.5269,4.740520,-8.571242,0.248997,9.797996
1326 2016-08-10 18:14:45,139.154273,35.256600,71.00,1008.5679,3.754108,-8.973468,1.168370,9.797017
1327 2016-08-10 18:14:50,139.154180,35.256651,70.00,1008.3601,3.955221,-8.963891,-0.172383,9.799226
1328 2016-08-10 18:14:54,139.154084,35.256703,67.00,1008.2454,3.916914,-8.944737,0.804452,9.797841
1329 2016-08-10 18:15:02,139.153987,35.256762,65.00,1008.4204,3.236961,-9.241618,0.191536,9.793983
1330 2016-08-10 18:15:12,139.153871,35.256770,66.00,1008.3979,3.840300,-9.011775,-0.153229,9.797115
1331 2016-08-10 18:16:07,139.153865,35.256714,0.00,1008.4143,3.275268,-9.078813,1.704672,9.800925
1332 2016-08-10 18:21:08,139.154247,35.255372,0.00,1008.4026,3.208230,-9.088389,1.762132,9.797789
1333 2016-08-10 18:21:28,139.153944,35.256746,0.00,1008.3337,3.198653,-9.078813,1.829170,9.798065
1334 2016-08-10 18:22:08,139.153944,35.256746,0.00,1008.3225,3.160346,-9.097966,1.781286,9.794578
1335 2016-08-10 18:28:12,139.153944,35.256746,0.00,1008.5029,1.723825,-8.992621,3.485958,9.797485
1336 2016-08-10 18:35:37,139.153944,35.256746,0.00,1008.6182,1.800440,-8.820239,3.859453,9.794569
1337 2016-08-10 18:36:20,139.153944,35.256818,0.00,1008.6292,1.838747,-8.753201,3.993528,9.795295
1338 2016-08-10 18:39:00,139.153905,35.256838,0.00,1008.7224,2.164358,-8.590396,4.185065,9.797659
1339 2016-08-10 18:40:40,139.153944,35.256746,0.00,1008.7705,2.126051,-8.437167,4.501099,9.796212
1340 2016-08-10 18:43:40,139.154173,35.256812,0.00,1008.7922,0.507571,-8.130709,5.439626,9.795692
1341 2016-08-10 18:44:00,139.153865,35.256714,0.00,1008.8105,0.469264,-8.092402,5.506664,9.799516
1342 2016-08-10 18:48:03,139.153865,35.256714,0.00,1008.8682,0.306458,-7.948750,5.726931,9.801748
1343 2016-08-10 18:48:24,139.153865,35.256714,0.00,1008.8918,0.316035,-7.967903,5.698200,9.800859
1344 2016-08-10 18:49:04,139.154235,35.256915,0.00,1008.9238,0.335188,-7.996634,5.659893,9.802698
1345 2016-08-10 18:49:24,139.154235,35.256915,0.00,1008.9336,0.210690,-7.910442,5.774815,9.796324
1346 2016-08-10 18:55:24,139.153984,35.256798,0.00,1008.9246,0.220267,-7.910442,5.774815,9.796535
1347 2016-08-10 18:57:47,139.154003,35.256704,71.00,1008.9263,-4.271256,7.450756,4.730943,9.805060
1348 2016-08-10 18:58:18,139.153994,35.256763,82.00,1008.8979,-4.252102,7.498640,4.663905,9.801121
1349 2016-08-10 18:58:30,139.154075,35.256733,104.00,1008.8486,-3.907337,8.887277,1.340753,9.800438
1350 2016-08-10 18:59:03,139.154080,35.256740,74.00,1008.8899,-4.481946,8.389283,2.365471,9.801192
1351 2016-08-10 18:59:06,139.153961,35.256759,69.00,1008.9150,-4.903325,7.824251,3.275268,9.797392
1352 2016-08-10 18:59:11,139.153831,35.256763,66.00,1008.7546,-6.924031,6.263232,2.978387,9.800055
1353 2016-08-10 18:59:23,139.153881,35.256857,73.00,1008.9363,-6.579266,6.742072,2.710236,9.802431
1354 2016-08-10 18:59:27,139.153960,35.256877,78.00,1008.9482,-5.573701,7.623138,2.624045,9.801224
1355 2016-08-10 18:59:34,139.154080,35.256879,78.00,1008.8708,-6.272809,7.029376,2.700660,9.800705
1356 2016-08-10 18:59:43,139.154188,35.256852,78.00,1008.8689,-5.104438,7.977480,2.528277,9.802431
1357 2016-08-10 18:59:47,139.154208,35.256851,81.00,1008.9407,-6.809110,6.493075,2.748544,9.801963
1358 2016-08-10 18:59:53,139.154246,35.256758,79.00,1008.9626,-6.502652,6.885724,2.518700,9.800078
1359 2016-08-10 18:59:58,139.154274,35.256655,76.00,1009.0618,-6.560112,6.789956,2.700660,9.819987
1360 2016-08-10 19:00:28,139.154289,35.256639,75.00,1009.0667,-6.569689,6.675035,2.892196,9.802127
1361 2016-08-10 19:00:33,139.154321,35.256741,74.00,1009.0237,-5.554548,7.508216,2.978387,9.802913
1362 2016-08-10 19:00:45,139.154395,35.256810,77.00,1009.0208,-5.975927,7.240066,2.806004,9.798159
1363 2016-08-10 19:00:55,139.154530,35.256753,76.00,1009.0579,-6.694188,6.579266,2.825158,9.802062
1364 2016-08-10 19:01:28,139.155386,35.256492,0.00,1008.4275,-6.014235,7.594408,1.513135,9.804877
1365 2016-08-10 19:01:55,139.155561,35.256597,73.00,1008.1882,-5.449203,7.718906,2.585738,9.795987
1366 2016-08-10 19:02:41,139.155727,35.256262,71.00,1008.2195,-6.742072,6.991069,1.331176,9.803194
1367 2016-08-10 19:02:48,139.155683,35.256165,0.00,1008.2397,-6.818686,6.943185,1.158794,9.800260
1368 2016-08-10 19:02:54,139.155788,35.256158,68.00,1008.2322,-6.828263,6.818686,1.733402,9.804302
1369 2016-08-10 19:03:00,139.155691,35.256111,67.00,1008.2158,-6.924031,6.742072,1.628057,9.800424
1370 2016-08-10 19:03:03,139.155570,35.256124,67.00,1008.2258,-6.531382,7.144298,1.522712,9.798908
1371 2016-08-10 19:03:10,139.155486,35.256109,67.00,1008.2163,-6.751649,6.971915,1.388637,9.804115
1372 2016-08-10 19:03:29,139.155525,35.256316,0.00,1008.2207,-6.579266,6.742072,2.710236,9.802431
1373 2016-08-10 19:04:09,139.155560,35.256466,53.00,1008.1990,-6.531382,6.991069,2.116474,9.798646
1374 2016-08-10 19:04:29,139.155683,35.256165,0.00,1008.2048,-6.512228,7.105990,1.762132,9.798435
1375 2016-08-10 19:04:45,139.155764,35.256086,59.00,1008.1531,-7.613562,6.004658,1.388637,9.795435
1376 2016-08-10 19:04:48,139.155758,35.255977,58.00,1008.2693,-6.311116,7.048530,2.557007,9.800522
1377 2016-08-10 19:04:50,139.155770,35.255937,59.00,1008.2009,-5.841852,7.316680,2.892196,9.799278
1378 2016-08-10 19:05:09,139.155826,35.255917,70.00,1008.1985,-6.426037,6.665458,3.217807,9.801865
1379 2016-08-10 19:05:25,139.155790,35.255829,61.00,1008.2021,-6.742072,6.780379,2.164358,9.803751
1380 2016-08-10 19:05:30,139.155782,35.255815,59.00,1008.2341,-6.560112,6.981492,2.087744,9.804845
1381 2016-08-10 19:05:44,139.155667,35.255803,57.00,1008.5471,-6.119579,7.125144,2.806004,9.802581
1382 2016-08-10 19:05:47,139.155554,35.255787,53.00,1008.5618,-6.770802,6.627151,2.480393,9.793633
1383 2016-08-10 19:05:49,139.155453,35.255766,52.00,1008.6794,-6.952762,6.761226,1.398214,9.798473
1384 2016-08-10 19:06:11,139.155438,35.255716,56.00,1008.9182,-6.684611,6.895301,1.944092,9.798403
1385 2016-08-10 19:06:25,139.155330,35.255745,55.00,1008.8430,-6.435614,6.799533,2.911349,9.804424
1386 2016-08-10 19:06:49,139.155149,35.256216,0.00,1008.8633,-6.627151,6.646304,2.825158,9.801735
1387 2016-08-10 19:07:17,139.155860,35.256172,82.00,1009.0405,-6.081272,5.353435,5.516241,9.801533
1388 2016-08-10 19:07:19,139.155852,35.256274,84.00,1008.8904,-6.023811,7.163452,2.920926,9.804752
1389 2016-08-10 19:07:27,139.155920,35.256347,82.00,1008.8828,-6.406884,7.163452,1.905785,9.797715
1390 2016-08-10 19:11:52,139.155960,35.256554,75.00,1009.1521,-2.183512,5.133168,8.063671,9.805097
1391 2016-08-10 19:12:28,139.156090,35.256723,75.00,1009.2732,-2.432509,4.874595,8.149862,9.803011
1392 2016-08-10 19:12:29,139.156260,35.257228,75.00,1009.2903,-2.518700,4.989516,8.054094,9.803446
1393 2016-08-10 19:12:30,139.156459,35.257553,72.00,1009.2900,-2.547431,4.960786,8.063671,9.804162
1394 2016-08-10 19:12:31,139.156607,35.257667,71.00,1009.2732,-2.489970,4.999093,8.054094,9.800985
1395 2016-08-10 19:12:33,139.156653,35.257687,66.00,1009.2932,-2.499547,4.941632,8.092402,9.805836
1396 2016-08-10 19:12:35,139.156764,35.257732,54.00,1009.2866,-2.422932,4.893748,8.140285,9.802225
1397 2016-08-10 19:12:36,139.156864,35.257872,57.00,1009.3005,-2.595315,5.114015,7.958326,9.809371
1398 2016-08-10 19:12:36,139.156940,35.257960,60.00,1009.2842,-1.762132,4.683059,8.437167,9.809278
1399 2016-08-10 19:12:38,139.157040,35.258070,60.00,1009.3213,-1.675941,4.912902,8.322245,9.808422
1400 2016-08-10 19:12:39,139.157200,35.258255,59.00,1009.3215,-1.790863,4.740520,8.389283,9.801010
1401 2016-08-10 19:12:41,139.157309,35.258442,55.00,1009.3530,-2.604892,5.315128,7.814674,9.803325
1402 2016-08-10 19:12:44,139.157428,35.258591,52.00,1009.3330,-2.327164,5.248090,7.948750,9.805140
1403 2016-08-10 19:12:45,139.157480,35.258686,53.00,1009.3369,-2.853889,5.592855,7.527370,9.802347
1404 2016-08-10 19:12:46,139.157651,35.258917,54.00,1009.3369,-2.250550,5.190629,8.006210,9.803418
1405 2016-08-10 19:12:47,139.157747,35.259053,54.00,1009.3301,-2.193089,5.075707,8.092402,9.800990
1406 2016-08-10 19:12:48,139.157829,35.259167,55.00,1009.3696,-2.403779,5.219360,7.939173,9.800527
1407 2016-08-10 19:12:49,139.157909,35.259252,70.00,1009.3481,-2.317587,5.066131,8.063671,9.801004
1408 2016-08-10 19:12:50,139.157991,35.259335,68.00,1009.3445,-2.116474,5.171476,8.054094,9.802656
1409 2016-08-10 19:12:52,139.158129,35.259565,64.00,1009.3396,-2.173935,5.171476,8.034941,9.799512
1410 2016-08-10 19:12:54,139.158206,35.259702,63.00,1009.1973,-4.548983,7.134721,4.951209,9.803671
1411 2016-08-10 19:12:56,139.158443,35.259922,61.00,1009.2913,4.223372,-0.507571,8.839393,9.809657
1412 2016-08-10 19:12:57,139.158567,35.260074,60.00,1009.1777,3.888184,-0.967257,8.944737,9.801117
1413 2016-08-10 19:12:59,139.158666,35.260187,60.00,1009.1421,4.108450,0.009577,8.906430,9.808361
1414 2016-08-10 19:13:00,139.158795,35.260294,62.00,1009.2527,4.041412,-1.417367,8.820239,9.805027
1415 2016-08-10 19:13:02,139.158911,35.260438,61.00,1009.2737,4.434062,-1.647211,8.590396,9.806585
1416 2016-08-10 19:13:03,139.159022,35.260488,60.00,1009.3430,-0.134075,5.152322,8.341399,9.805271
1417 2016-08-10 19:13:06,139.159196,35.260673,60.00,1009.1477,9.002198,3.763685,0.967257,9.805125
1418 2016-08-10 19:13:07,139.159338,35.260847,72.00,1009.2065,2.987964,4.817134,8.006210,9.809797
1419 2016-08-10 19:13:10,139.159526,35.260992,71.00,1009.2214,2.624045,4.654328,8.226477,9.809348
1420 2016-08-10 19:13:10,139.159611,35.261117,68.00,1009.1914,2.135628,4.663905,8.350976,9.800598
1421 2016-08-10 19:13:11,139.159697,35.261203,67.00,1009.2039,1.656788,3.888184,8.848969,9.806486
1422 2016-08-10 19:13:12,139.159785,35.261282,66.00,1009.1780,1.206678,4.347870,8.705317,9.805233
1423 2016-08-10 19:13:13,139.159869,35.261382,64.00,1009.1655,1.235408,4.424485,8.667010,9.809147
1424 2016-08-10 19:13:14,139.159974,35.261505,61.00,1009.1606,0.316035,4.922479,8.475474,9.806342
1425 2016-08-10 19:13:15,139.160120,35.261621,61.00,1009.2034,0.603339,4.750096,8.561666,9.809666
1426 2016-08-10 19:13:17,139.160217,35.261740,57.00,1009.1777,0.603339,4.654328,8.609550,9.805668
1427 2016-08-10 19:13:18,139.160344,35.261852,57.00,1009.1758,0.746991,4.663905,8.599973,9.811704
1428 2016-08-10 19:13:19,139.160470,35.261964,55.00,1009.1809,0.699107,4.577713,8.638280,9.801229
1429 2016-08-10 19:13:19,139.160625,35.262099,54.00,1009.1799,0.890643,4.443638,8.695741,9.805869
1430 2016-08-10 19:13:20,139.160773,35.262230,53.00,1009.1987,0.928950,4.501099,8.667010,9.810194
1431 2016-08-10 19:13:21,139.160909,35.262351,52.00,1009.1824,1.005565,4.443638,8.686164,9.808493
1432 2016-08-10 19:13:22,139.161031,35.262470,52.00,1009.1758,1.647211,4.118027,8.743625,9.804204
1433 2016-08-10 19:13:23,139.161168,35.262600,53.00,1009.1792,0.373495,4.912902,8.475474,9.803559
1434 2016-08-10 19:13:24,139.161316,35.262740,54.00,1009.2087,0.746991,4.711789,8.571242,9.809442
1435 2016-08-10 19:13:25,139.161449,35.262875,53.00,1009.2224,0.478840,4.855441,8.504205,9.804392
1436 2016-08-10 19:13:26,139.161584,35.263015,55.00,1009.2119,0.593762,4.740520,8.561666,9.804448
1437 2016-08-10 19:13:27,139.161729,35.263153,57.00,1009.2397,0.603339,4.644751,8.619126,9.809540
1438 2016-08-10 19:13:28,139.161879,35.263298,56.00,1009.2546,0.708684,4.759673,8.542512,9.804654
1439 2016-08-10 19:13:29,139.162027,35.263445,56.00,1009.2625,0.603339,4.510676,8.686164,9.806103
1440 2016-08-10 19:13:31,139.162185,35.263586,55.00,1009.2637,0.670376,4.692636,8.580819,9.803096
1441 2016-08-10 19:13:32,139.162324,35.263739,52.00,1009.2659,0.622492,4.654328,8.609550,9.806865
1442 2016-08-10 19:13:33,139.162484,35.263893,51.00,1009.3096,0.574608,4.616021,8.628703,9.802670
1443 2016-08-10 19:13:33,139.162643,35.264041,49.00,1009.3188,0.651223,4.558560,8.657434,9.805902
1444 2016-08-10 19:13:34,139.162799,35.264200,46.00,1009.3596,0.785298,4.568137,8.638280,9.803288
1445 2016-08-10 19:13:35,139.162959,35.264353,45.00,1009.3645,0.574608,4.673482,8.599973,9.804649
1446 2016-08-10 19:13:36,139.163127,35.264517,43.00,1009.4299,0.679953,4.596867,8.638280,9.808843
1447 2016-08-10 19:13:37,139.163295,35.264671,42.00,1009.4609,0.737414,4.635174,8.609550,9.805762
1448 2016-08-10 19:13:38,139.163461,35.264825,41.00,1009.5112,0.651223,4.692636,8.580819,9.801805
1449 2016-08-10 19:13:39,139.163614,35.264972,41.00,1009.5557,0.651223,4.778827,8.542512,9.809984
1450 2016-08-10 19:13:40,139.163755,35.265127,41.00,1009.6091,0.679953,4.625597,8.619126,9.805500
1451 2016-08-10 19:13:41,139.163994,35.265311,43.00,1009.6440,0.660800,4.654328,8.609550,9.809371
1452 2016-08-10 19:13:42,139.164184,35.265478,43.00,1009.6670,0.679953,4.491522,8.695741,9.810811
1453 2016-08-10 19:13:44,139.164347,35.265642,44.00,1009.7192,0.775721,4.663905,8.590396,9.805542
1454 2016-08-10 19:13:45,139.164499,35.265802,45.00,1009.7253,0.699107,4.692636,8.580819,9.805103
1455 2016-08-10 19:13:46,139.164677,35.265966,50.00,1009.7812,0.622492,4.721366,8.571242,9.805355
1456 2016-08-10 19:13:46,139.164868,35.266156,50.00,1009.7886,0.756568,4.606444,8.628703,9.810517
1457 2016-08-10 19:13:47,139.165243,35.266356,50.00,1009.8267,0.775721,4.635174,8.609550,9.808717
1458 2016-08-10 19:13:48,139.165452,35.266553,50.00,1009.8442,0.881066,4.635174,8.599973,9.809212
1459 2016-08-10 19:13:49,139.165637,35.266731,48.00,1009.8579,0.852336,4.654328,8.590396,9.807352
1460 2016-08-10 19:13:50,139.165864,35.266927,48.00,1009.8511,0.881066,4.568137,8.628703,9.802993
1461 2016-08-10 19:13:51,139.166059,35.267106,47.00,1009.7861,0.785298,4.673482,8.580819,9.802478
1462 2016-08-10 19:13:52,139.166235,35.267327,47.00,1009.7793,0.756568,4.644751,8.609550,9.811751
1463 2016-08-10 19:13:53,139.166432,35.267522,47.00,1009.7532,0.823605,4.424485,8.714894,9.808352
1464 2016-08-10 19:13:54,139.166680,35.267710,48.00,1009.7234,0.766145,4.596867,8.628703,9.806767
1465 2016-08-10 19:13:55,139.166893,35.267876,49.00,1009.6499,0.814029,4.568137,8.638280,9.805631
1466 2016-08-10 19:13:57,139.167103,35.268083,50.00,1009.6138,0.718261,4.999093,8.408437,9.808600
1467 2016-08-10 19:13:58,139.167306,35.268285,48.00,1009.6006,0.766145,4.558560,8.647857,9.805757
1468 2016-08-10 19:13:59,139.167498,35.268474,49.00,1009.5457,0.660800,4.654328,8.609550,9.809371
1469 2016-08-10 19:13:59,139.167706,35.268675,48.00,1009.5579,0.593762,4.501099,8.695741,9.809605
1470 2016-08-10 19:14:00,139.167909,35.268865,47.00,1009.6812,0.689530,4.721366,8.571242,9.809839
1471 2016-08-10 19:14:01,139.168106,35.269057,46.00,1009.5806,0.651223,4.510676,8.686164,9.809166
1472 2016-08-10 19:14:02,139.168319,35.269261,45.00,1009.6013,0.612916,4.568137,8.657434,9.807889
1473 2016-08-10 19:14:03,139.168542,35.269470,44.00,1009.6067,0.574608,4.941632,8.446744,9.802928
1474 2016-08-10 19:14:04,139.168748,35.269667,43.00,1009.6116,0.679953,4.386178,8.743625,9.805706
1475 2016-08-10 19:14:05,139.168949,35.269867,43.00,1009.6313,0.699107,4.558560,8.657434,9.809198
1476 2016-08-10 19:14:06,139.169147,35.270053,42.00,1009.6558,0.641646,4.539406,8.667010,9.804845
1477 2016-08-10 19:14:07,139.169323,35.270249,42.00,1009.6592,0.670376,4.529830,8.676587,9.810806
1478 2016-08-10 19:14:08,139.169563,35.270460,42.00,1009.6633,0.842759,4.434062,8.705317,9.805799
1479 2016-08-10 19:14:09,139.169809,35.270679,42.00,1009.6511,0.814029,4.692636,8.571242,9.805594
1480 2016-08-10 19:14:10,139.170053,35.270888,43.00,1009.6580,0.708684,4.663905,8.599973,9.808862
1481 2016-08-10 19:14:12,139.170265,35.271095,42.00,1009.6809,0.344765,4.577713,8.667010,9.807721
1482 2016-08-10 19:14:12,139.170496,35.271312,42.00,1009.6809,0.440533,4.702212,8.599973,9.811442
1483 2016-08-10 19:14:13,139.170714,35.271522,43.00,1009.6628,0.363919,4.491522,8.714894,9.810993
1484 2016-08-10 19:14:14,139.170925,35.271729,42.00,1009.6379,0.325611,4.510676,8.705317,9.809932
1485 2016-08-10 19:14:15,139.171135,35.271929,41.00,1009.5986,0.373495,4.481946,8.714894,9.806973
1486 2016-08-10 19:14:16,139.171342,35.272134,40.00,1009.6335,0.507571,4.616021,8.638280,9.807403
1487 2016-08-10 19:14:17,139.171589,35.272337,43.00,1009.6616,0.363919,4.328717,8.791509,9.806164
1488 2016-08-10 19:14:18,139.171807,35.272534,42.00,1009.6394,0.239420,4.759673,8.571242,9.807039
1489 2016-08-10 19:14:19,139.172022,35.272731,43.00,1009.6531,0.354342,4.319140,8.801085,9.810180
1490 2016-08-10 19:14:20,139.172230,35.272911,43.00,1009.6655,0.373495,4.960786,8.446744,9.802876
1491 2016-08-10 19:14:21,139.172457,35.273104,44.00,1009.6580,0.440533,4.491522,8.705317,9.805631
1492 2016-08-10 19:14:22,139.172682,35.273310,45.00,1009.6904,0.507571,4.529830,8.686164,9.809507
1493 2016-08-10 19:14:23,139.172900,35.273492,45.00,1009.7520,0.430956,4.414908,8.743625,9.804494
1494 2016-08-10 19:14:24,139.173111,35.273657,45.00,1009.7554,0.354342,4.529830,8.695741,9.811260
1495 2016-08-10 19:14:26,139.173337,35.273815,45.00,1009.8269,0.718261,4.338294,8.762778,9.804232
1496 2016-08-10 19:14:26,139.173579,35.274000,45.00,1009.8333,0.823605,4.395754,8.724471,9.803947
1497 2016-08-10 19:14:27,139.173800,35.274198,46.00,1009.8640,0.766145,4.347870,8.762778,9.812096
1498 2016-08-10 19:14:28,139.174017,35.274349,45.00,1009.9016,0.756568,4.405331,8.724471,9.802843
1499 2016-08-10 19:14:29,139.174296,35.274417,45.00,1009.9292,0.746991,4.347870,8.753201,9.802067
1500 2016-08-10 19:14:30,139.174555,35.274549,45.00,1009.8882,0.861913,4.357447,8.743625,9.807202
1501 2016-08-10 19:14:31,139.174821,35.274635,45.00,1009.9194,0.699107,4.338294,8.772355,9.811409
1502 2016-08-10 19:14:32,139.175089,35.274719,45.00,1009.9360,0.794875,4.510676,8.667010,9.802810
1503 2016-08-10 19:14:33,139.175365,35.274811,45.00,1009.9119,0.421380,4.395754,8.753201,9.804017
1504 2016-08-10 19:14:34,139.175631,35.274870,46.00,1009.9072,0.114922,4.491522,8.714894,9.804915
1505 2016-08-10 19:14:35,139.175902,35.274966,45.00,1009.8896,0.067038,4.443638,8.743625,9.808231
1506 2016-08-10 19:14:36,139.176185,35.275040,45.00,1009.8943,0.134075,4.568137,8.676587,9.806580
1507 2016-08-10 19:14:37,139.176431,35.275107,46.00,1009.8638,0.162806,4.558560,8.686164,9.811035
1508 2016-08-10 19:14:38,139.176704,35.275168,45.00,1009.8862,-0.028730,4.548983,8.686164,9.805280
1509 2016-08-10 19:14:39,139.176955,35.275246,48.00,1009.8804,-0.124498,4.548983,8.686164,9.806028
1510 2016-08-10 19:14:40,139.177200,35.275302,45.00,1009.8364,-0.162806,4.529830,8.695741,9.806211
1511 2016-08-10 19:14:41,139.177439,35.275351,46.00,1009.8613,-0.181959,4.299986,8.810662,9.805649
1512 2016-08-10 19:14:42,139.177673,35.275355,46.00,1009.8550,-0.134075,4.568137,8.676587,9.806580
1513 2016-08-10 19:14:43,139.177901,35.275377,47.00,1009.7842,-0.268151,4.750096,8.571242,9.803138
1514 2016-08-10 19:14:44,139.178117,35.275410,47.00,1009.7766,-0.392649,4.673482,8.609550,9.804078
1515 2016-08-10 19:14:45,139.178331,35.275475,48.00,1009.7937,-0.277727,4.644751,8.628703,9.803334
1516 2016-08-10 19:14:46,139.178530,35.275520,49.00,1009.7727,-0.057461,4.539406,8.695741,9.809456
1517 2016-08-10 19:14:47,139.178726,35.275555,50.00,1009.7832,-0.181959,4.625597,8.647857,9.808909
1518 2016-08-10 19:14:48,139.178900,35.275573,49.00,1009.7654,-0.258574,4.625597,8.647857,9.810629
1519 2016-08-10 19:14:49,139.179019,35.275579,49.00,1009.7122,-0.277727,4.702212,8.599973,9.805481
1520 2016-08-10 19:14:50,139.179130,35.275606,50.00,1009.7668,-0.095768,4.692636,8.609550,9.805832
1521 2016-08-10 19:14:52,139.179357,35.275656,51.00,1009.7734,0.086191,4.807557,8.542512,9.802782
1522 2016-08-10 19:14:53,139.179536,35.275755,51.00,1009.6699,0.143652,4.893748,8.494628,9.804494
1523 2016-08-10 19:14:56,139.179663,35.275758,52.00,1009.6875,0.000000,4.970363,8.446744,9.800612
1524 2016-08-10 19:14:56,139.179791,35.275786,51.00,1009.6875,0.153229,4.797980,8.552089,9.807258
1525 2016-08-10 19:14:57,139.179915,35.275791,49.00,1009.6604,0.210690,4.663905,8.628703,9.810755
1526 2016-08-10 19:14:59,139.180077,35.275813,50.00,1009.6360,0.134075,4.568137,8.676587,9.806580
1527 2016-08-10 19:15:01,139.180230,35.275837,52.00,1009.6599,0.086191,4.587290,8.667010,9.806515
1528 2016-08-10 19:15:04,139.180386,35.275843,52.00,1009.6572,-0.009577,4.577713,8.676587,9.810133
1529 2016-08-10 19:15:08,139.180495,35.275829,51.00,1009.6472,0.325611,4.491522,8.714894,9.809647
1530 2016-08-10 19:15:10,139.180594,35.275878,48.00,1009.6470,0.287304,4.539406,8.686164,9.805009
1531 2016-08-10 19:15:12,139.180714,35.275929,49.00,1009.6746,0.038307,4.625597,8.647857,9.807296
1532 2016-08-10 19:15:16,139.180857,35.275982,49.00,1009.6704,0.430956,4.635174,8.638280,9.812769
1533 2016-08-10 19:16:02,139.181108,35.275987,45.00,1009.6655,1.522712,4.951209,8.331821,9.810829
1534 2016-08-10 19:16:03,139.181223,35.276000,45.00,1009.6743,1.446098,4.836287,8.408437,9.807277
1535 2016-08-10 19:16:04,139.181337,35.275989,45.00,1009.6782,1.522712,4.836287,8.389283,9.802469
1536 2016-08-10 19:16:06,139.181549,35.276015,45.00,1009.7061,1.522712,4.865018,8.379706,9.808493
1537 2016-08-10 19:16:08,139.181763,35.276038,45.00,1009.7451,1.675941,4.692636,8.446744,9.806992
1538 2016-08-10 19:16:09,139.181922,35.276086,45.00,1009.7249,1.656788,4.635174,8.485051,9.809479
1539 2016-08-10 19:16:10,139.182066,35.276122,46.00,1009.7395,1.723825,4.711789,8.427590,9.807997
1540 2016-08-10 19:16:12,139.182206,35.276140,45.00,1009.7834,1.407791,4.711789,8.485051,9.807085
1541 2016-08-10 19:16:12,139.182356,35.276161,45.00,1009.7078,1.513135,4.644751,8.504205,9.807384
1542 2016-08-10 19:16:13,139.182494,35.276186,48.00,1009.7412,1.417367,4.759673,8.456321,9.806772
1543 2016-08-10 19:16:14,139.182649,35.276226,49.00,1009.7444,1.522712,4.865018,8.379706,9.808493
1544 2016-08-10 19:16:15,139.182779,35.276266,51.00,1009.7688,1.666364,4.807557,8.379706,9.803512
1545 2016-08-10 19:16:16,139.182941,35.276272,50.00,1009.7720,1.455675,4.778827,8.437167,9.805201
1546 2016-08-10 19:16:17,139.183107,35.276302,51.00,1009.7642,1.513135,4.778827,8.427590,9.805664
1547 2016-08-10 19:16:18,139.183288,35.276363,50.00,1009.8252,1.455675,4.769250,8.446744,9.808783
1548 2016-08-10 19:16:19,139.183494,35.276434,51.00,1009.7871,1.762132,4.912902,8.303091,9.807295
1549 2016-08-10 19:16:20,139.183751,35.276522,51.00,1009.7925,1.340753,4.683059,8.513782,9.808829
1550 2016-08-10 19:16:21,139.183925,35.276546,55.00,1009.7502,1.618480,4.797980,8.398860,9.807188
1551 2016-08-10 19:16:22,139.184061,35.276516,55.00,1009.7927,1.484405,4.683059,8.485051,9.804621
1552 2016-08-10 19:16:23,139.184238,35.276534,57.00,1009.8076,1.513135,4.663905,8.494628,9.808175
1553 2016-08-10 19:16:24,139.184483,35.276586,56.00,1009.7981,1.474828,4.740520,8.456321,9.805968
1554 2016-08-10 19:16:25,139.184673,35.276604,55.00,1009.8589,1.522712,4.750096,8.446744,9.809666
1555 2016-08-10 19:16:27,139.184863,35.276632,55.00,1009.8384,1.446098,4.730943,8.465898,9.805327
1556 2016-08-10 19:16:28,139.185073,35.276663,54.00,1009.8503,1.503559,4.750096,8.446744,9.806711
1557 2016-08-10 19:16:28,139.185292,35.276697,53.00,1009.8208,1.513135,4.750096,8.446744,9.808184
1558 2016-08-10 19:16:29,139.185495,35.276735,55.00,1009.8428,1.465251,4.730943,8.465898,9.808170
1559 2016-08-10 19:16:30,139.185695,35.276768,55.00,1009.8870,1.513135,4.807557,8.418014,9.811480
1560 2016-08-10 19:16:31,139.185904,35.276800,55.00,1009.8381,1.474828,4.750096,8.456321,9.810601
1561 2016-08-10 19:16:32,139.186147,35.276824,55.00,1009.8508,1.503559,4.721366,8.465898,9.809353
1562 2016-08-10 19:16:33,139.186393,35.276861,56.00,1009.8879,1.407791,4.788404,8.446744,9.811125
1563 2016-08-10 19:16:34,139.186609,35.276892,57.00,1009.8892,1.493982,4.702212,8.475474,9.806959
1564 2016-08-10 19:16:35,139.186837,35.276944,57.00,1009.8843,1.369483,4.817134,8.427590,9.803292
1565 2016-08-10 19:16:36,139.187089,35.277008,57.00,1009.9197,1.589750,4.711789,8.446744,9.801824
1566 2016-08-10 19:16:37,139.187310,35.277026,56.00,1009.8970,1.484405,4.826711,8.408437,9.808282
1567 2016-08-10 19:16:38,139.187553,35.277066,56.00,1009.9124,1.551443,4.711789,8.456321,9.803943
1568 2016-08-10 19:16:39,139.187810,35.277102,57.00,1009.8674,1.331176,4.912902,8.379706,9.804495
1569 2016-08-10 19:16:40,139.188046,35.277155,56.00,1009.9722,1.541866,4.778827,8.427590,9.810138
1570 2016-08-10 19:16:41,139.188291,35.277197,58.00,1009.9565,1.197101,4.788404,8.475474,9.807932
1571 2016-08-10 19:16:42,139.188550,35.277232,57.00,1009.9197,1.426944,4.826711,8.418014,9.807969
1572 2016-08-10 19:16:43,139.188813,35.277273,57.00,1009.9675,1.455675,4.711789,8.475474,9.805795
1573 2016-08-10 19:16:45,139.189065,35.277313,56.00,1010.0049,1.493982,4.836287,8.398860,9.806248
1574 2016-08-10 19:16:45,139.189329,35.277351,56.00,1010.0295,1.436521,4.855441,8.398860,9.807128
1575 2016-08-10 19:16:46,139.189596,35.277396,57.00,1010.0359,1.417367,4.683059,8.504205,9.811293
1576 2016-08-10 19:16:47,139.189880,35.277440,52.00,1010.0833,1.426944,4.874595,8.389283,9.807034
1577 2016-08-10 19:16:48,139.190167,35.277488,52.00,1010.0679,1.426944,4.673482,8.504205,9.808114
1578 2016-08-10 19:16:49,139.190437,35.277543,54.00,1010.0627,1.417367,4.845864,8.408437,9.807810
1579 2016-08-10 19:16:50,139.190726,35.277600,55.00,1010.1199,1.426944,4.654328,8.513782,9.807314
1580 2016-08-10 19:16:51,139.191001,35.277635,56.00,1010.1042,1.225831,4.740520,8.494628,9.804789
1581 2016-08-10 19:16:53,139.191591,35.277714,56.00,1010.1340,1.455675,4.778827,8.437167,9.805201
1582 2016-08-10 19:16:54,139.191814,35.277734,57.00,1010.1416,1.455675,4.692636,8.485051,9.804892
1583 2016-08-10 19:16:55,139.192035,35.277775,58.00,1010.1379,1.426944,4.778827,8.437167,9.800977
1584 2016-08-10 19:16:56,139.192393,35.277834,57.00,1010.1345,1.388637,4.692636,8.494628,9.803461
1585 2016-08-10 19:16:57,139.192709,35.277880,57.00,1010.1897,1.503559,4.663905,8.494628,9.806702
1586 2016-08-10 19:16:58,139.193011,35.277932,56.00,1010.0750,1.398214,4.769250,8.456321,9.808675
1587 2016-08-10 19:16:59,139.193361,35.277999,54.00,1010.1362,1.465251,4.635174,8.513782,9.803891
1588 2016-08-10 19:17:00,139.193657,35.278047,53.00,1010.1711,1.331176,4.759673,8.465898,9.802956
1589 2016-08-10 19:17:01,139.193969,35.278107,53.00,1010.1726,1.417367,4.788404,8.437167,9.804261
1590 2016-08-10 19:17:02,139.194272,35.278155,53.00,1010.1616,1.379060,4.740520,8.475474,9.808568
1591 2016-08-10 19:17:04,139.194595,35.278202,52.00,1010.1821,1.465251,4.893748,8.370130,9.805856
1592 2016-08-10 19:17:04,139.194902,35.278252,52.00,1010.1924,1.398214,4.769250,8.456321,9.808675
1593 2016-08-10 19:17:05,139.195208,35.278301,53.00,1010.2749,1.455675,4.644751,8.513782,9.806996
1594 2016-08-10 19:17:06,139.195517,35.278351,52.00,1010.1975,1.436521,4.855441,8.398860,9.807128
1595 2016-08-10 19:17:07,139.195837,35.278420,51.00,1010.1812,1.541866,4.663905,8.485051,9.804359
1596 2016-08-10 19:17:08,139.196154,35.278477,51.00,1010.2183,1.359907,4.941632,8.360553,9.806524
1597 2016-08-10 19:17:09,139.196488,35.278547,51.00,1010.1946,1.474828,4.740520,8.456321,9.805968
1598 2016-08-10 19:17:10,139.196804,35.278584,51.00,1010.1802,1.465251,4.730943,8.465898,9.808170
1599 2016-08-10 19:17:11,139.197123,35.278619,52.00,1010.1899,1.436521,4.865018,8.389283,9.803676
1600 2016-08-10 19:17:12,139.197444,35.278662,53.00,1010.1860,1.302446,4.558560,8.580819,9.803433
1601 2016-08-10 19:17:13,139.197779,35.278718,54.00,1010.1685,1.350330,4.548983,8.580819,9.805462
1602 2016-08-10 19:17:14,139.198135,35.278766,54.00,1010.2329,1.235408,4.367024,8.695741,9.808824
1603 2016-08-10 19:17:15,139.198474,35.278820,54.00,1010.1707,1.484405,5.142745,8.216900,9.806566
1604 2016-08-10 19:17:16,139.198818,35.278878,54.00,1010.1785,1.235408,5.037400,8.322245,9.806191
1605 2016-08-10 19:17:17,139.199149,35.278940,55.00,1010.1377,1.244985,4.941632,8.379706,9.807609
1606 2016-08-10 19:17:19,139.199439,35.278930,55.00,1010.1033,1.110910,5.075707,8.322245,9.811049
1607 2016-08-10 19:17:19,139.199788,35.278955,55.00,1010.1033,1.321599,4.979939,8.350976,9.812503
1608 2016-08-10 19:17:20,139.200151,35.279010,57.00,1010.1045,1.244985,5.181053,8.236053,9.809479
1609 2016-08-10 19:17:21,139.200489,35.279065,57.00,1010.1523,1.177947,5.114015,8.283937,9.806341
1610 2016-08-10 19:17:22,139.200808,35.279120,58.00,1009.9670,1.206678,5.133168,8.264784,9.803680
1611 2016-08-10 19:17:23,139.201136,35.279175,58.00,1010.0198,1.264138,4.941632,8.379706,9.810059
1612 2016-08-10 19:17:24,139.201466,35.279232,59.00,1009.9868,1.158794,5.037400,8.331821,9.804971
1613 2016-08-10 19:17:25,139.201803,35.279284,56.00,1009.9324,1.235408,5.085284,8.293514,9.806566
1614 2016-08-10 19:17:26,139.202141,35.279346,56.00,1009.9097,1.139640,4.970363,8.379706,9.809320
1615 2016-08-10 19:17:27,139.202506,35.279416,56.00,1009.8638,1.417367,5.075707,8.264784,9.801958
1616 2016-08-10 19:17:28,139.202837,35.279465,58.00,1009.8325,1.379060,5.114015,8.255207,9.808333
1617 2016-08-10 19:17:29,139.203161,35.279512,57.00,1009.7749,1.369483,5.066131,8.283937,9.806364
1618 2016-08-10 19:17:30,139.203508,35.279575,56.00,1009.7234,1.359907,5.066131,8.283937,9.805032
1619 2016-08-10 19:17:31,139.203863,35.279634,58.00,1009.7175,1.379060,5.008670,8.322245,9.810624
1620 2016-08-10 19:17:32,139.204206,35.279693,59.00,1009.6445,1.379060,4.999093,8.322245,9.805738
1621 2016-08-10 19:17:34,139.204876,35.279786,60.00,1009.5852,0.871489,5.142745,8.303091,9.805541
1622 2016-08-10 19:17:36,139.205227,35.279850,60.00,1009.6274,0.909797,5.152322,8.293514,9.805944
1623 2016-08-10 19:17:37,139.205579,35.279935,61.00,1009.5020,0.823605,5.219360,8.264784,9.809521
1624 2016-08-10 19:17:37,139.205911,35.279991,61.00,1009.4773,0.794875,5.276821,8.226477,9.805691
1625 2016-08-10 19:17:38,139.206239,35.280045,62.00,1009.3726,0.718261,5.248090,8.255207,9.808506
1626 2016-08-10 19:17:39,139.206569,35.280102,62.00,1009.4014,0.909797,5.257667,8.226477,9.805392
1627 2016-08-10 19:17:40,139.206911,35.280136,61.00,1009.3647,1.024718,5.544971,8.025364,9.808324
1628 2016-08-10 19:17:41,139.207208,35.280179,60.00,1009.3196,0.852336,5.458780,8.101978,9.806468
1629 2016-08-10 19:17:42,139.207500,35.280263,60.00,1009.2500,0.775721,5.487510,8.092402,9.808235
1630 2016-08-10 19:17:43,139.207833,35.280328,60.00,1009.2278,0.785298,5.736507,7.920019,9.810755
1631 2016-08-10 19:17:44,139.208153,35.280404,59.00,1009.2146,0.699107,5.602432,8.025364,9.812363
1632 2016-08-10 19:17:45,139.208385,35.280416,58.00,1009.1719,0.794875,5.353435,8.178593,9.807164
1633 2016-08-10 19:17:46,139.208632,35.280437,59.00,1009.1785,0.679953,5.181053,8.303091,9.810554
1634 2016-08-10 19:17:47,139.208874,35.280482,61.00,1009.1533,0.785298,5.420473,8.130709,9.803399
1635 2016-08-10 19:17:48,139.209174,35.280567,65.00,1009.1895,0.785298,5.353435,8.178593,9.806393
1636 2016-08-10 19:17:49,139.209453,35.280646,65.00,1009.1729,0.794875,5.353435,8.178593,9.807164
1637 2016-08-10 19:17:50,139.209732,35.280705,65.00,1009.1035,0.861913,4.989516,8.398860,9.807090
1638 2016-08-10 19:17:51,139.210008,35.280764,64.00,1009.1235,0.871489,5.295974,8.207323,9.806477
1639 2016-08-10 19:17:52,139.210269,35.280817,63.00,1009.1223,0.919373,4.826711,8.485051,9.805023
1640 2016-08-10 19:17:53,139.210512,35.280880,64.00,1009.0627,0.823605,4.989516,8.398860,9.803798
1641 2016-08-10 19:17:54,139.210771,35.280940,66.00,1009.0386,0.660800,4.960786,8.427590,9.801547
1642 2016-08-10 19:17:55,139.211046,35.280995,65.00,1009.0342,0.699107,4.970363,8.427590,9.809054
1643 2016-08-10 19:17:56,139.211274,35.281031,65.00,1009.0217,0.823605,5.238513,8.245630,9.803610
1644 2016-08-10 19:17:57,139.211510,35.281071,64.00,1008.9702,0.871489,5.219360,8.255207,9.805593
1645 2016-08-10 19:17:58,139.211757,35.281105,65.00,1008.9258,0.746991,5.066131,8.370130,9.812377
1646 2016-08-10 19:17:59,139.211998,35.281150,64.00,1008.9292,0.469264,5.190629,8.312668,9.811386
1647 2016-08-10 19:18:00,139.212221,35.281192,63.00,1008.9011,0.229843,5.094861,8.379706,9.809685
1648 2016-08-10 19:18:01,139.212437,35.281233,63.00,1008.9102,0.469264,5.056554,8.389283,9.806580
1649 2016-08-10 19:18:02,139.212641,35.281271,63.00,1008.9038,0.306458,5.027823,8.418014,9.809989
1650 2016-08-10 19:18:03,139.212827,35.281318,63.00,1008.8645,0.383072,5.085284,8.379706,9.809502
1651 2016-08-10 19:18:04,139.213004,35.281336,63.00,1008.8989,0.383072,5.152322,8.331821,9.803694
1652 2016-08-10 19:18:06,139.213167,35.281363,63.00,1008.8376,0.450110,5.056554,8.389283,9.805682
1653 2016-08-10 19:18:06,139.213342,35.281395,62.00,1008.8462,0.383072,5.085284,8.379706,9.809502
1654 2016-08-10 19:18:07,139.213494,35.281428,63.00,1008.8625,0.402226,5.114015,8.360553,9.808862
1655 2016-08-10 19:18:08,139.213644,35.281466,63.00,1008.8552,0.507571,5.142745,8.331821,9.804321
1656 2016-08-10 19:18:09,139.213771,35.281497,63.00,1009.0388,0.411803,5.046977,8.398860,9.807263
1657 2016-08-10 19:18:10,139.213904,35.281500,62.00,1008.8401,0.660800,5.171476,8.303091,9.804190
1658 2016-08-10 19:18:11,139.214032,35.281526,62.00,1008.8679,0.306458,5.248090,8.283937,9.811217
1659 2016-08-10 19:18:12,139.214161,35.281543,61.00,1008.8523,0.603339,5.152322,8.322245,9.806641
1660 2016-08-10 19:18:13,139.214271,35.281567,60.00,1008.8474,0.603339,5.219360,8.274361,9.801570
1661 2016-08-10 19:18:14,139.214391,35.281597,60.00,1008.9463,0.699107,5.190629,8.293514,9.808861
1662 2016-08-10 19:18:15,139.214501,35.281620,60.00,1008.8062,0.670376,5.343858,8.197746,9.808632
1663 2016-08-10 19:18:17,139.214673,35.281639,60.00,1008.8342,0.746991,5.324705,8.207323,9.811760
1664 2016-08-10 19:18:19,139.214870,35.281670,61.00,1008.8645,0.622492,5.468357,8.121132,9.810362
1665 2016-08-10 19:18:21,139.215083,35.281715,63.00,1008.9141,0.593762,5.315128,8.216900,9.804110
1666 2016-08-10 19:18:23,139.215215,35.281711,63.00,1008.8389,0.593762,5.372589,8.188169,9.811390
1667 2016-08-10 19:18:25,139.215373,35.281740,66.00,1008.8770,0.411803,5.295974,8.245630,9.808534
1668 2016-08-10 19:18:28,139.215457,35.281800,69.00,1008.8733,0.335188,5.353435,8.207323,9.804681
1669 2016-08-10 19:18:31,139.215573,35.281805,67.00,1008.8442,0.325611,5.382165,8.188169,9.804073
1670 2016-08-10 19:19:14,139.215587,35.281814,68.00,1008.8406,1.091756,5.248090,8.216900,9.810802
1671 2016-08-10 19:19:40,139.215693,35.281829,69.00,1008.7329,6.071695,0.316035,7.699753,9.810788
1672 2016-08-10 19:19:42,139.215870,35.281866,66.00,1008.9397,5.908890,0.995988,7.766790,9.809689
1673 2016-08-10 19:19:44,139.216025,35.281864,64.00,1008.9231,6.856994,1.091756,6.924031,9.805738
1674 2016-08-10 19:19:47,139.216214,35.281886,63.00,1008.9272,6.071695,1.216254,7.603985,9.806393
1675 2016-08-10 19:19:50,139.216522,35.281916,63.00,1008.9714,6.004658,1.704672,7.556100,9.800840
1676 2016-08-10 19:19:50,139.216681,35.281957,63.00,1008.9792,5.956774,1.886631,7.556100,9.804957
1677 2016-08-10 19:19:51,139.216810,35.281962,62.00,1009.0095,5.966351,1.905785,7.546524,9.807108
1678 2016-08-10 19:19:52,139.216932,35.281973,61.00,1009.0168,5.937620,2.011129,7.536947,9.803343
1679 2016-08-10 19:19:53,139.217058,35.281993,59.00,1009.0168,5.899313,2.078167,7.556100,9.808941
1680 2016-08-10 19:19:55,139.217203,35.282029,57.00,1009.0542,5.947197,1.944092,7.546524,9.802993
1681 2016-08-10 19:19:55,139.217356,35.282056,57.00,1009.0488,6.052542,1.752556,7.517793,9.809278
1682 2016-08-10 19:19:57,139.217524,35.282100,58.00,1009.0637,6.071695,1.810017,7.479486,9.802263
1683 2016-08-10 19:19:57,139.217699,35.282141,56.00,1009.0645,6.052542,1.742979,7.517793,9.807571
1684 2016-08-10 19:19:59,139.217869,35.282184,58.00,1009.1270,6.196194,1.407791,7.469909,9.806847
1685 2016-08-10 19:20:00,139.218047,35.282232,58.00,1009.1438,6.713342,1.302446,7.029376,9.807010
1686 2016-08-10 19:20:01,139.218214,35.282283,58.00,1009.1401,6.148310,1.589750,7.479486,9.811816
1687 2016-08-10 19:20:01,139.218365,35.282347,59.00,1009.1401,6.253655,2.020706,7.278373,9.806435
1688 2016-08-10 19:20:04,139.218773,35.282476,57.00,1009.1667,6.416461,1.292869,7.297527,9.802876
1689 2016-08-10 19:20:04,139.218914,35.282545,55.00,1009.1877,6.473921,0.928950,7.307104,9.806547
1690 2016-08-10 19:20:05,139.219100,35.282611,57.00,1009.2112,6.464345,0.928950,7.316680,9.807370
1691 2016-08-10 19:20:06,139.219286,35.282692,57.00,1009.2417,6.454768,0.967257,7.316680,9.804765
1692 2016-08-10 19:20:07,139.219472,35.282763,57.00,1009.2837,6.435614,1.302446,7.287950,9.809572
1693 2016-08-10 19:20:08,139.219667,35.282840,58.00,1009.2505,6.387730,1.216254,7.335834,9.802899
1694 2016-08-10 19:20:09,139.219847,35.282930,57.00,1009.2625,6.320693,1.570596,7.326257,9.802651
1695 2016-08-10 19:20:10,139.220049,35.283013,57.00,1009.2849,6.426037,1.273715,7.297527,9.806641
1696 2016-08-10 19:20:12,139.220257,35.283095,56.00,1009.2983,6.416461,1.292869,7.307104,9.810007
1697 2016-08-10 19:20:12,139.220483,35.283183,57.00,1009.3237,6.426037,1.168370,7.316680,9.807796
1698 2016-08-10 19:20:13,139.220722,35.283277,57.00,1009.2920,6.512228,0.928950,7.278373,9.810545
1699 2016-08-10 19:20:14,139.220940,35.283358,56.00,1009.2786,6.387730,1.302446,7.326257,9.806809
1700 2016-08-10 19:20:15,139.221157,35.283418,58.00,1009.3130,6.483498,1.379060,7.230489,9.809053
1701 2016-08-10 19:20:16,139.221376,35.283496,56.00,1009.3369,6.560112,1.244985,7.182605,9.806879
1702 2016-08-10 19:20:17,139.221584,35.283621,55.00,1009.3799,6.445191,1.522712,7.230489,9.805055
1703 2016-08-10 19:20:18,139.221809,35.283738,57.00,1009.3848,6.531382,1.063026,7.230489,9.801477
1704 2016-08-10 19:20:19,139.222003,35.283849,56.00,1009.4624,6.454768,1.331176,7.259220,9.804709
1705 2016-08-10 19:20:21,139.222250,35.283942,56.00,1009.4895,6.464345,1.235408,7.268796,9.805579
1706 2016-08-10 19:20:21,139.222466,35.284042,55.00,1009.5002,6.445191,1.379060,7.259220,9.805027
1707 2016-08-10 19:20:24,139.222937,35.284249,57.00,1009.5508,6.301539,1.082179,7.441179,9.810792
1708 2016-08-10 19:20:24,139.223186,35.284353,56.00,1009.5928,6.493075,1.235408,7.240066,9.803306
1709 2016-08-10 19:20:26,139.223429,35.284413,57.00,1009.6426,6.387730,1.704672,7.240066,9.804466
1710 2016-08-10 19:20:26,139.223682,35.284518,58.00,1009.6841,6.454768,1.637634,7.201759,9.808731
1711 2016-08-10 19:20:28,139.223960,35.284647,58.00,1009.7168,6.464345,1.771709,7.163452,9.810288
1712 2016-08-10 19:20:28,139.224207,35.284677,57.00,1009.7373,6.493075,1.561020,7.182605,9.807478
1713 2016-08-10 19:20:29,139.224403,35.284870,58.00,1009.7722,6.588843,1.206678,7.153875,9.800349
1714 2016-08-10 19:20:31,139.224663,35.285025,57.00,1009.7793,6.569689,1.302446,7.163452,9.806744
1715 2016-08-10 19:20:32,139.224883,35.285202,58.00,1009.7800,6.512228,1.216254,7.230489,9.806547
1716 2016-08-10 19:20:32,139.225120,35.285360,57.00,1009.7903,6.531382,1.197101,7.220912,9.809872
1717 2016-08-10 19:20:33,139.225370,35.285506,59.00,1009.8259,6.607996,0.804452,7.201759,9.807043
1718 2016-08-10 19:20:34,139.225586,35.285665,59.00,1009.8792,6.569689,0.948104,7.220912,9.808226
1719 2016-08-10 19:20:35,139.225801,35.285817,59.00,1009.8899,6.684611,0.833182,7.125144,9.805402
1720 2016-08-10 19:20:38,139.226269,35.286131,64.00,1009.9265,6.445191,1.513135,7.230489,9.803573
1721 2016-08-10 19:20:40,139.226755,35.286436,61.00,1009.9641,6.454768,1.599327,7.201759,9.802408
1722 2016-08-10 19:20:40,139.227008,35.286583,62.00,1009.9309,6.454768,1.637634,7.192182,9.801702
1723 2016-08-10 19:20:41,139.227265,35.286722,61.00,1009.9253,6.569689,1.149217,7.192182,9.808619
1724 2016-08-10 19:20:43,139.227409,35.286865,61.00,1009.9443,7.077260,1.168370,6.684611,9.804934
1725 2016-08-10 19:20:43,139.227649,35.287044,61.00,1009.9219,7.498640,1.484405,6.148310,9.809932
1726 2016-08-10 19:20:45,139.227900,35.287217,61.00,1009.9495,6.330269,1.628057,7.307104,9.803910
1727 2016-08-10 19:20:46,139.228160,35.287383,61.00,1009.9961,6.253655,1.561020,7.383718,9.801238
1728 2016-08-10 19:20:47,139.228409,35.287574,62.00,1009.9792,6.215348,1.398214,7.460332,9.810306
1729 2016-08-10 19:20:47,139.228646,35.287745,61.00,1009.9763,6.224925,1.599327,7.402872,9.803573
1730 2016-08-10 19:20:49,139.229098,35.288125,61.00,1009.9824,6.330269,1.244985,7.393295,9.812395
1731 2016-08-10 19:20:51,139.229383,35.288287,61.00,1009.9500,6.291962,1.264138,7.412448,9.804653
1732 2016-08-10 19:20:51,139.229656,35.288452,66.00,1009.9590,6.186617,1.551443,7.450756,9.807903
1733 2016-08-10 19:20:52,139.229892,35.288628,66.00,1009.9629,6.215348,1.455675,7.441179,9.804115
1734 2016-08-10 19:20:53,139.230142,35.288793,66.00,1009.9351,6.234501,1.235408,7.469909,9.807894
1735 2016-08-10 19:20:54,139.230388,35.288965,66.00,1009.9792,6.291962,0.928950,7.460332,9.803484
1736 2016-08-10 19:20:55,139.230647,35.289145,65.00,1009.9934,6.205771,1.331176,7.469909,9.802202
1737 2016-08-10 19:20:56,139.230900,35.289316,65.00,1010.0110,6.157887,1.292869,7.527370,9.810830
1738 2016-08-10 19:20:59,139.231461,35.289648,64.00,1009.9968,6.234501,1.446098,7.431602,9.807595
1739 2016-08-10 19:20:59,139.231765,35.289859,64.00,1009.9968,6.253655,1.446098,7.422025,9.812536
1740 2016-08-10 19:21:00,139.231991,35.289927,63.00,1010.0625,6.244078,1.446098,7.422025,9.806435
1741 2016-08-10 19:21:02,139.232278,35.290120,62.00,1010.0706,6.205771,1.522712,7.441179,9.808231
1742 2016-08-10 19:21:02,139.232592,35.290273,60.00,1010.0713,6.205771,1.580173,7.431602,9.810059
1743 2016-08-10 19:21:04,139.232941,35.290361,63.00,1010.0393,6.186617,1.675941,7.422025,9.806603
1744 2016-08-10 19:21:04,139.233235,35.290505,62.00,1010.0488,6.234501,1.484405,7.422025,9.806066
1745 2016-08-10 19:21:05,139.233528,35.290630,61.00,1010.0488,6.167464,1.608904,7.450756,9.805098
1746 2016-08-10 19:21:07,139.233819,35.290774,62.00,1010.0122,6.186617,1.570596,7.441179,9.803680
1747 2016-08-10 19:21:09,139.234439,35.291045,60.00,1009.9451,6.052542,2.078167,7.431602,9.807178
1748 2016-08-10 19:21:09,139.234769,35.291155,61.00,1009.9412,6.090849,2.078167,7.402872,9.809165
1749 2016-08-10 19:21:11,139.235088,35.291287,59.00,1009.8994,6.378153,1.666364,7.268796,9.812900
1750 2016-08-10 19:21:12,139.235392,35.291413,60.00,1009.8923,6.368577,1.580173,7.287950,9.806627
1751 2016-08-10 19:21:12,139.235724,35.291538,62.00,1009.8447,6.215348,1.484405,7.441179,9.808422
1752 2016-08-10 19:21:13,139.236052,35.291673,62.00,1009.7576,6.205771,1.541866,7.431602,9.803961
1753 2016-08-10 19:21:14,139.236369,35.291800,61.00,1009.7161,6.167464,1.465251,7.479486,9.804452
1754 2016-08-10 19:21:15,139.236737,35.292274,0.00,1009.7268,6.196194,1.637634,7.422025,9.806178
1755 2016-08-10 19:21:16,139.236997,35.292065,58.00,1009.6821,6.349423,1.072602,7.402872,9.811634
1756 2016-08-10 19:21:17,139.237315,35.292191,58.00,1009.6528,6.244078,1.551443,7.402872,9.808058
1757 2016-08-10 19:21:18,139.237628,35.292322,58.00,1009.6924,6.291962,1.254562,7.412448,9.803423
1758 2016-08-10 19:21:20,139.237950,35.292467,58.00,1009.5842,6.196194,1.695095,7.402872,9.801463
1759 2016-08-10 19:21:20,139.238307,35.292587,59.00,1009.5789,6.177041,1.781286,7.402872,9.804658
1760 2016-08-10 19:21:21,139.238649,35.292710,58.00,1009.5625,6.224925,1.580173,7.402872,9.800466
1761 2016-08-10 19:21:22,139.238972,35.292828,58.00,1009.5410,6.244078,1.455675,7.422025,9.807852
1762 2016-08-10 19:21:23,139.239285,35.292958,57.00,1009.4619,6.263232,1.465251,7.402872,9.807015
1763 2016-08-10 19:21:24,139.239605,35.293077,58.00,1009.4622,6.263232,1.407791,7.412448,9.805832
1764 2016-08-10 19:21:25,139.239934,35.293198,56.00,1009.3857,6.282385,1.426944,7.393295,9.806393
1765 2016-08-10 19:21:26,139.240249,35.293322,56.00,1009.3616,6.253655,1.446098,7.412448,9.805294
1766 2016-08-10 19:21:29,139.240923,35.293602,56.00,1009.3022,6.320693,1.388637,7.364564,9.803891
1767 2016-08-10 19:21:30,139.241251,35.293726,59.00,1009.2996,6.263232,1.340753,7.422025,9.803680
1768 2016-08-10 19:21:31,139.241562,35.293859,60.00,1009.2341,6.454768,1.225831,7.287950,9.812283
1769 2016-08-10 19:21:31,139.241894,35.293987,60.00,1009.2368,6.339846,1.197101,7.383718,9.805406
1770 2016-08-10 19:21:32,139.242235,35.294109,61.00,1009.1965,6.359000,1.522712,7.307104,9.805575
1771 2016-08-10 19:21:33,139.242557,35.294247,62.00,1009.1978,6.464345,1.513135,7.220912,9.809124
1772 2016-08-10 19:21:34,139.242877,35.294351,63.00,1009.1809,6.263232,1.570596,7.374141,9.801674
1773 2016-08-10 19:21:35,139.243187,35.294465,63.00,1009.0718,6.397307,1.417367,7.297527,9.807567
1774 2016-08-10 19:21:36,139.243512,35.294562,64.00,1009.0530,6.291962,1.666364,7.335834,9.807141
1775 2016-08-10 19:21:37,139.243813,35.294677,64.00,1008.9617,6.330269,1.570596,7.316680,9.801678
1776 2016-08-10 19:21:38,139.244164,35.294789,64.00,1008.9724,6.320693,1.484405,7.345411,9.803554
1777 2016-08-10 19:21:40,139.244495,35.294855,65.00,1008.9053,6.416461,1.656788,7.230489,9.807950
1778 2016-08-10 19:21:41,139.244798,35.294961,65.00,1008.9165,6.397307,1.810017,7.201759,9.801379
1779 2016-08-10 19:21:41,139.245124,35.295072,64.00,1008.8901,6.368577,1.944092,7.201759,9.808343
1780 2016-08-10 19:21:43,139.245459,35.295152,64.00,1008.8914,6.416461,1.513135,7.259220,9.805958
1781 2016-08-10 19:21:43,139.245783,35.295256,64.00,1008.8740,6.454768,1.532289,7.220912,9.805790
1782 2016-08-10 19:21:45,139.246106,35.295336,64.00,1008.9204,6.416461,1.618480,7.240066,9.808619
1783 2016-08-10 19:21:47,139.246762,35.295508,63.00,1008.8474,6.483498,1.608904,7.182605,9.808880
1784 2016-08-10 19:21:47,139.247078,35.295574,63.00,1008.8416,6.885724,1.484405,6.828263,9.810292
1785 2016-08-10 19:21:49,139.247385,35.295642,64.00,1008.8623,6.751649,1.522712,6.943185,9.803634
1786 2016-08-10 19:21:50,139.247681,35.295719,65.00,1008.8745,6.742072,1.484405,6.971915,9.811554
1787 2016-08-10 19:21:52,139.248297,35.295860,66.00,1008.8655,6.569689,1.149217,7.182605,9.801599
1788 2016-08-10 19:21:52,139.248596,35.295948,65.00,1008.9243,6.617573,1.570596,7.067683,9.808731
1789 2016-08-10 19:21:54,139.248873,35.296067,65.00,1008.9346,6.607996,1.455675,7.096414,9.805289
1790 2016-08-10 19:21:54,139.249165,35.296135,65.00,1008.9282,6.607996,1.455675,7.096414,9.805289
1791 2016-08-10 19:21:55,139.249441,35.296239,66.00,1008.9778,6.560112,1.465251,7.144298,9.809334
1792 2016-08-10 19:21:56,139.249734,35.296304,67.00,1009.0232,6.579266,1.474828,7.115568,9.802712
1793 2016-08-10 19:21:58,139.250029,35.296392,65.00,1009.0244,6.598420,1.379060,7.125144,9.808600
1794 2016-08-10 19:21:58,139.250297,35.296455,67.00,1009.0701,6.646304,1.474828,7.067683,9.813288
1795 2016-08-10 19:21:59,139.250567,35.296513,67.00,1009.0930,6.607996,1.628057,7.058106,9.804746
1796 2016-08-10 19:22:00,139.250822,35.296564,69.00,1009.1179,6.742072,1.436521,6.971915,9.804424
1797 2016-08-10 19:22:02,139.251101,35.296618,69.00,1009.0955,6.598420,1.608904,7.067683,9.802033
1798 2016-08-10 19:22:02,139.251365,35.296673,69.00,1009.1096,6.521805,1.541866,7.163452,9.809502
1799 2016-08-10 19:22:04,139.251610,35.296736,68.00,1009.0857,6.598420,1.589750,7.077260,9.805817
1800 2016-08-10 19:22:04,139.251828,35.296829,69.00,1009.1294,6.502652,1.513135,7.182605,9.806318
1801 2016-08-10 19:22:05,139.252071,35.296888,69.00,1009.1399,6.607996,1.493982,7.096414,9.811049
1802 2016-08-10 19:22:06,139.252295,35.296985,68.00,1009.1587,6.617573,1.493982,7.077260,9.803666
1803 2016-08-10 19:22:07,139.252531,35.297068,67.00,1009.1257,6.627151,1.570596,7.058106,9.808301
1804 2016-08-10 19:22:09,139.252783,35.297117,67.00,1009.1572,6.627151,1.493982,7.077260,9.810133
1805 2016-08-10 19:22:10,139.253020,35.297156,67.00,1009.1487,6.588843,1.465251,7.115568,9.807707
1806 2016-08-10 19:22:11,139.253256,35.297164,67.00,1009.1375,6.579266,1.350330,7.144298,9.805668
1807 2016-08-10 19:22:11,139.253476,35.297212,67.00,1009.1763,6.579266,1.436521,7.125144,9.803980
1808 2016-08-10 19:22:13,139.253709,35.297296,67.00,1009.1577,6.493075,1.953669,7.086837,9.808165
1809 2016-08-10 19:22:14,139.253978,35.297321,66.00,1009.1687,6.598420,1.915361,6.991069,9.802183
1810 2016-08-10 19:22:14,139.254171,35.297381,68.00,1009.2002,6.560112,2.059013,6.991069,9.805593
1811 2016-08-10 19:22:15,139.254379,35.297446,69.00,1009.1650,6.742072,1.953669,6.847417,9.806094
1812 2016-08-10 19:22:16,139.254571,35.297521,70.00,1009.1887,6.694188,1.934515,6.904878,9.809783
1813 2016-08-10 19:22:17,139.254756,35.297596,70.00,1009.1716,6.770802,1.953669,6.818686,9.805869
1814 2016-08-10 19:22:18,139.254950,35.297658,69.00,1009.1580,6.818686,1.752556,6.828263,9.807707
1815 2016-08-10 19:22:19,139.255087,35.297741,68.00,1009.1816,6.943185,1.379060,6.780379,9.802202
1816 2016-08-10 19:22:20,139.255272,35.297795,68.00,1009.1663,6.971915,1.465251,6.742072,9.808675
1817 2016-08-10 19:22:21,139.255447,35.297849,68.00,1009.1680,6.962338,1.436521,6.751649,9.804209
1818 2016-08-10 19:22:22,139.255572,35.297916,68.00,1009.1519,6.991069,1.436521,6.722919,9.804910
1819 2016-08-10 19:22:23,139.255709,35.297971,69.00,1009.1555,6.895301,1.503559,6.809110,9.806622
1820 2016-08-10 19:22:25,139.255822,35.298028,69.00,1009.1462,6.646304,0.995988,7.134721,9.801510
1821 2016-08-10 19:22:25,139.255962,35.298079,69.00,1009.1582,6.991069,0.957681,6.809110,9.805925
1822 2016-08-10 19:22:26,139.256070,35.298111,68.00,1009.1624,6.426037,1.752556,7.192182,9.802698
1823 2016-08-10 19:22:30,139.256367,35.298249,68.00,1009.1738,6.464345,1.398214,7.240066,9.806187
1824 2016-08-10 19:22:31,139.256537,35.298336,66.00,1009.1418,6.368577,1.407791,7.326257,9.808909
1825 2016-08-10 19:22:33,139.256695,35.298391,67.00,1009.0532,6.416461,1.369483,7.297527,9.813274
1826 2016-08-10 19:22:34,139.256802,35.298427,68.00,1009.0271,6.406884,1.321599,7.307104,9.807576
1827 2016-08-10 19:22:36,139.256935,35.298486,70.00,1009.0483,6.397307,1.273715,7.326257,9.809278
1828 2016-08-10 19:22:38,139.257085,35.298568,69.00,1009.0659,6.569689,1.264138,7.173028,9.808731
1829 2016-08-10 19:22:41,139.257196,35.298612,69.00,1008.9988,6.435614,1.312023,7.278373,9.803736
1830 2016-08-10 19:22:46,139.257299,35.298666,69.00,1008.9827,6.406884,1.225831,7.316680,9.802277
1831 2016-08-10 19:22:56,139.257400,35.298644,68.00,1008.9810,6.071695,1.053449,7.632715,9.809872
1832 2016-08-10 19:23:03,139.257483,35.298731,69.00,1008.9744,6.023811,0.785298,7.699753,9.807609
1833 2016-08-10 19:23:09,139.257372,35.298753,73.00,1008.9714,6.282385,1.024718,7.460332,9.806884
1834 2016-08-10 19:23:36,139.257335,35.298868,86.00,1008.9756,6.090849,1.072602,7.613562,9.808937
1835 2016-08-10 19:23:56,139.257419,35.298915,81.00,1008.9705,4.845864,-2.557007,8.130709,9.804545
1836 2016-08-10 19:24:13,139.257198,35.298839,76.00,1008.9963,4.539406,-2.240973,8.398860,9.806580
1837 2016-08-10 19:24:16,139.257599,35.299066,0.00,1009.0146,4.491522,-2.451663,8.360553,9.802207
1838 2016-08-10 19:24:19,139.258046,35.299067,70.00,1009.0452,4.711789,-2.193089,8.312668,9.803624
1839 2016-08-10 19:24:19,139.258182,35.299121,70.00,1009.0422,4.711789,-2.250550,8.293514,9.800424
1840 2016-08-10 19:24:21,139.258363,35.299117,68.00,1009.0203,4.769250,-2.221819,8.274361,9.805471
1841 2016-08-10 19:24:24,139.258546,35.299213,67.00,1009.0349,4.740520,-2.279280,8.274361,9.804728
1842 2016-08-10 19:24:26,139.258766,35.299281,62.00,1009.0198,4.730943,-2.365471,8.255207,9.804372
1843 2016-08-10 19:24:27,139.258896,35.299315,61.00,1009.0508,4.443638,-2.576161,8.350976,9.804148
1844 2016-08-10 19:24:27,139.259021,35.299326,60.00,1009.0508,4.405331,-2.576161,8.370130,9.803194
1845 2016-08-10 19:24:28,139.259155,35.299400,58.00,1009.0645,4.548983,-2.633622,8.274361,9.802768
1846 2016-08-10 19:24:29,139.259297,35.299448,57.00,1009.0625,4.558560,-2.394202,8.341399,9.802633
1847 2016-08-10 19:24:30,139.259421,35.299495,56.00,1009.0640,4.654328,-2.394202,8.293514,9.807005
1848 2016-08-10 19:24:31,139.259559,35.299560,55.00,1009.0588,4.797980,-2.126051,8.283937,9.806341
1849 2016-08-10 19:24:33,139.259705,35.299624,54.00,1009.0740,4.730943,-2.279280,8.274361,9.800101
1850 2016-08-10 19:24:33,139.259870,35.299690,53.00,1009.0559,4.759673,-2.020706,8.331821,9.805967
1851 2016-08-10 19:24:34,139.260019,35.299747,52.00,1009.0769,4.692636,-2.442086,8.255207,9.804747
1852 2016-08-10 19:24:35,139.260162,35.299794,53.00,1009.0745,4.788404,-2.240973,8.255207,9.803020
1853 2016-08-10 19:24:36,139.260332,35.299852,53.00,1009.0771,4.960786,-1.934515,8.226477,9.799320
1854 2016-08-10 19:24:38,139.260512,35.299942,54.00,1009.0754,4.730943,-1.982399,8.360553,9.808699
1855 2016-08-10 19:24:38,139.260678,35.300011,53.00,1009.0754,5.008670,-2.422932,8.073248,9.804831
1856 2016-08-10 19:24:39,139.260863,35.300102,54.00,1009.0876,5.066131,-2.461239,8.025364,9.804583
1857 2016-08-10 19:24:40,139.261049,35.300191,54.00,1009.0828,5.238513,-2.365471,7.939173,9.801426
1858 2016-08-10 19:24:41,139.261266,35.300297,54.00,1009.0999,5.257667,-2.413355,7.910442,9.800125
1859 2016-08-10 19:24:42,139.261455,35.300335,52.00,1009.0728,5.209783,-2.365471,7.958326,9.801645
1860 2016-08-10 19:24:43,139.261685,35.300467,50.00,1009.0896,5.190629,-2.403779,7.958326,9.800803
1861 2016-08-10 19:24:44,139.261822,35.300475,52.00,1009.0784,5.295974,-2.317587,7.920019,9.805369
1862 2016-08-10 19:24:46,139.262019,35.300553,53.00,1009.0969,5.343858,-2.327164,7.881712,9.802749
1863 2016-08-10 19:24:47,139.262244,35.300636,51.00,1009.1245,5.248090,-2.384625,7.929596,9.803437
1864 2016-08-10 19:24:47,139.262446,35.300714,52.00,1009.1436,5.401319,-2.193089,7.881712,9.803329
1865 2016-08-10 19:24:48,139.262659,35.300801,52.00,1009.1663,5.315128,-2.375048,7.881712,9.798613
1866 2016-08-10 19:24:49,139.262910,35.300953,61.00,1009.1650,5.315128,-2.336741,7.900866,9.804826
1867 2016-08-10 19:24:52,139.263348,35.301159,57.00,1009.1567,5.420473,-2.308010,7.833828,9.801903
1868 2016-08-10 19:24:53,139.263576,35.301254,55.00,1009.1528,5.305551,-2.154782,7.958326,9.804433
1869 2016-08-10 19:24:53,139.263774,35.301282,52.00,1009.1428,4.788404,-2.375048,8.216900,9.802403
1870 2016-08-10 19:24:54,139.263998,35.301374,52.00,1009.1672,5.449203,-2.059013,7.881712,9.800752
1871 2016-08-10 19:24:56,139.264480,35.301588,50.00,1009.1699,5.458780,-2.547431,7.738060,9.806388
1872 2016-08-10 19:24:58,139.264934,35.301749,49.00,1009.1477,5.401319,-2.231396,7.872135,9.804279
1873 2016-08-10 19:24:59,139.265189,35.301841,49.00,1009.1887,5.343858,-2.145205,7.939173,9.807609
1874 2016-08-10 19:25:01,139.265450,35.301959,49.00,1009.2180,5.363012,-2.595315,7.785944,9.804003
1875 2016-08-10 19:25:01,139.265692,35.302071,50.00,1009.2024,5.372589,-2.327164,7.862558,9.803072
1876 2016-08-10 19:25:02,139.265942,35.302174,50.00,1009.2241,5.477933,-2.413355,7.766790,9.805869
1877 2016-08-10 19:25:03,139.266200,35.302293,50.00,1009.2100,5.458780,-2.413355,7.785944,9.810376
1878 2016-08-10 19:25:04,139.266465,35.302409,50.00,1009.2061,5.458780,-2.432509,7.776367,9.807511
1879 2016-08-10 19:25:06,139.266716,35.302516,49.00,1009.2080,5.449203,-2.518700,7.757214,9.808773
1880 2016-08-10 19:25:06,139.266986,35.302616,50.00,1009.1997,5.430049,-2.537854,7.757214,9.803086
1881 2016-08-10 19:25:07,139.267250,35.302725,51.00,1009.2327,5.477933,-2.442086,7.757214,9.805402
1882 2016-08-10 19:25:08,139.267520,35.302838,51.00,1009.2400,5.420473,-2.413355,7.805098,9.804354
1883 2016-08-10 19:25:10,139.267780,35.302937,50.00,1009.2527,5.525817,-2.451663,7.718906,9.804429
1884 2016-08-10 19:25:10,139.268067,35.303051,50.00,1009.2458,5.439626,-2.365471,7.814674,9.810919
1885 2016-08-10 19:25:12,139.268333,35.303175,50.00,1009.2668,5.468357,-2.547431,7.728483,9.804172
1886 2016-08-10 19:25:12,139.268610,35.303272,50.00,1009.2908,5.382165,-2.442086,7.824251,9.805631
1887 2016-08-10 19:25:13,139.268897,35.303391,51.00,1009.2720,5.583278,-2.691083,7.594408,9.802548
1888 2016-08-10 19:25:14,139.269163,35.303498,51.00,1009.2827,5.544971,-2.346318,7.738060,9.804564
1889 2016-08-10 19:25:16,139.269439,35.303628,51.00,1009.2759,5.564125,-2.576161,7.642292,9.797996
1890 2016-08-10 19:25:16,139.269724,35.303731,51.00,1009.2888,5.554548,-2.413355,7.709330,9.803624
1891 2016-08-10 19:25:17,139.270007,35.303825,50.00,1009.3196,5.640739,-2.576161,7.594408,9.804569
1892 2016-08-10 19:25:18,139.270304,35.303948,50.00,1009.2854,5.612009,-2.288857,7.709330,9.806491
1893 2016-08-10 19:25:19,139.270571,35.304069,50.00,1009.2864,6.167464,-2.279280,7.268796,9.801435
1894 2016-08-10 19:25:20,139.270863,35.304166,49.00,1009.3035,5.841852,-2.719813,7.393295,9.807417
1895 2016-08-10 19:25:22,139.271490,35.304383,50.00,1009.2747,5.736507,-2.806004,7.441179,9.805729
1896 2016-08-10 19:25:24,139.271787,35.304461,51.00,1009.3142,5.899313,-2.557007,7.402872,9.805238
1897 2016-08-10 19:25:24,139.272090,35.304584,52.00,1009.3203,6.033388,-2.480393,7.316680,9.802445
1898 2016-08-10 19:25:26,139.272421,35.304692,53.00,1009.3079,6.234501,-2.528277,7.125144,9.799432
1899 2016-08-10 19:25:28,139.273073,35.304836,55.00,1009.3333,6.291962,-2.633622,7.038953,9.801613
1900 2016-08-10 19:25:29,139.273410,35.304848,55.00,1009.4143,6.090849,-2.604892,7.230489,9.806318
1901 2016-08-10 19:25:29,139.273731,35.304945,55.00,1009.4604,6.196194,-2.624045,7.134721,9.807277
1902 2016-08-10 19:25:31,139.274036,35.304979,54.00,1009.4609,6.234501,-2.566584,7.125144,9.809386
1903 2016-08-10 19:25:32,139.274387,35.305085,56.00,1009.5820,6.282385,-2.432509,7.125144,9.805771
1904 2016-08-10 19:25:32,139.274692,35.305145,56.00,1009.5552,6.311116,-2.394202,7.105990,9.800892
1905 2016-08-10 19:25:33,139.275026,35.305194,57.00,1009.5549,6.282385,-2.432509,7.125144,9.805771
1906 2016-08-10 19:25:34,139.275334,35.305223,56.00,1009.5413,6.090849,-2.604892,7.230489,9.806318
1907 2016-08-10 19:25:35,139.275667,35.305248,55.00,1009.5925,5.793968,-2.691083,7.431602,9.800036
1908 2016-08-10 19:25:36,139.275990,35.305285,57.00,1009.6021,5.947197,-2.681506,7.316680,9.802726
1909 2016-08-10 19:25:37,139.276317,35.305318,57.00,1009.6492,5.880159,-2.806004,7.326257,9.804284
1910 2016-08-10 19:25:38,139.276650,35.305359,57.00,1009.6655,5.956774,-2.624045,7.326257,9.800143
1911 2016-08-10 19:25:39,139.276984,35.305394,56.00,1009.7112,5.947197,-2.738967,7.297527,9.804335
1912 2016-08-10 19:25:40,139.277329,35.305431,56.00,1009.7053,6.052542,-2.614468,7.259220,9.806374
1913 2016-08-10 19:25:41,139.277653,35.305481,56.00,1009.7332,5.947197,-2.729390,7.297527,9.801664
1914 2016-08-10 19:25:43,139.277960,35.305503,57.00,1009.7808,5.908890,-2.767697,7.316680,9.803517
1915 2016-08-10 19:25:44,139.278305,35.305556,58.00,1009.8411,6.004658,-2.748544,7.240066,9.799437
1916 2016-08-10 19:25:45,139.278969,35.305684,57.00,1009.8479,5.832275,-2.786851,7.364564,9.798917
1917 2016-08-10 19:25:47,139.279298,35.305711,56.00,1009.8972,5.985504,-2.432509,7.374141,9.804148
1918 2016-08-10 19:25:47,139.279635,35.305733,56.00,1009.9451,5.937620,-2.700660,7.316680,9.802179
1919 2016-08-10 19:25:48,139.279971,35.305781,56.00,1009.9861,6.014235,-2.633622,7.278373,9.802127
1920 2016-08-10 19:25:50,139.280299,35.305811,57.00,1010.0142,5.870583,-2.729390,7.364564,9.805617
1921 2016-08-10 19:25:50,139.280618,35.305818,56.00,1010.0234,6.023811,-2.729390,7.240066,9.805836
1922 2016-08-10 19:25:52,139.280963,35.305901,51.00,1010.0835,5.947197,-2.671929,7.316680,9.800111
1923 2016-08-10 19:25:53,139.281301,35.305923,52.00,1010.1218,6.042965,-2.576161,7.278373,9.804527
1924 2016-08-10 19:25:53,139.281651,35.305947,52.00,1010.1262,5.966351,-2.633622,7.326257,9.808534
1925 2016-08-10 19:25:55,139.282018,35.305969,52.00,1010.1567,5.918467,-2.662352,7.345411,9.801603
1926 2016-08-10 19:25:56,139.282374,35.306016,53.00,1010.1675,5.937620,-2.604892,7.354988,9.804929
1927 2016-08-10 19:25:56,139.282734,35.306071,52.00,1010.1929,5.688623,-2.652776,7.527370,9.800967
1928 2016-08-10 19:25:57,139.283052,35.306105,52.00,1010.1631,5.937620,-2.758120,7.297527,9.803900
1929 2016-08-10 19:25:59,139.283397,35.306154,54.00,1010.1814,5.315128,-2.796427,7.747637,9.802881
1930 2016-08-10 19:26:00,139.283733,35.306199,54.00,1010.1653,5.650316,-2.116474,7.728483,9.804845
1931 2016-08-10 19:26:00,139.284065,35.306230,56.00,1010.1384,5.468357,-2.585738,7.709330,9.799119
1932 2016-08-10 19:26:02,139.284409,35.306266,57.00,1010.1392,5.477933,-2.298434,7.795521,9.801056
1933 2016-08-10 19:26:02,139.284746,35.306291,57.00,1010.1609,5.372589,-2.557007,7.795521,9.806790
1934 2016-08-10 19:26:04,139.285078,35.306328,56.00,1010.1482,5.382165,-2.422932,7.824251,9.800878
1935 2016-08-10 19:26:06,139.285737,35.306414,55.00,1010.0745,5.324705,-2.336741,7.891289,9.802310
1936 2016-08-10 19:26:07,139.286067,35.306448,54.00,1010.0205,5.506664,-2.576161,7.690176,9.802997
1937 2016-08-10 19:26:09,139.286744,35.306534,53.00,1009.9397,5.046977,-2.528277,8.015787,9.803928
1938 2016-08-10 19:26:09,139.287118,35.306540,52.00,1009.9290,5.161899,-2.652776,7.900866,9.803372
1939 2016-08-10 19:26:10,139.287417,35.306617,52.00,1009.8960,5.248090,-2.738967,7.814674,9.803751
1940 2016-08-10 19:26:11,139.287772,35.306662,51.00,1009.8572,5.449203,-2.355895,7.805098,9.806304
1941 2016-08-10 19:26:12,139.288100,35.306700,51.00,1009.8262,5.391742,-2.614468,7.757214,9.802076
1942 2016-08-10 19:26:14,139.288417,35.306733,51.00,1009.7603,5.477933,-2.509123,7.738060,9.807193
1943 2016-08-10 19:26:14,139.288749,35.306790,51.00,1009.7563,5.487510,-2.566584,7.709330,9.804789
1944 2016-08-10 19:26:15,139.289062,35.306821,52.00,1009.7104,5.458780,-2.470816,7.757214,9.801917
1945 2016-08-10 19:26:17,139.289398,35.306877,51.00,1009.6909,5.564125,-2.518700,7.671022,9.805504
1946 2016-08-10 19:26:18,139.289708,35.306937,52.00,1009.6362,5.449203,-2.499547,7.757214,9.803872
1947 2016-08-10 19:26:18,139.290009,35.306988,53.00,1009.6030,5.372589,-2.604892,7.776367,9.804186
1948 2016-08-10 19:26:19,139.290326,35.307024,53.00,1009.5640,6.004658,-2.681506,7.268796,9.802132
1949 2016-08-10 19:26:20,139.290659,35.307076,52.00,1009.4937,6.100426,-2.863465,7.125144,9.807258
1950 2016-08-10 19:26:21,139.290961,35.307106,52.00,1009.4814,6.014235,-2.738967,7.240066,9.802628
1951 2016-08-10 19:26:22,139.291263,35.307126,52.00,1009.4712,5.908890,-2.892196,7.268796,9.803835
1952 2016-08-10 19:26:24,139.291897,35.307187,51.00,1009.4753,6.138733,-2.470816,7.240066,9.808544
1953 2016-08-10 19:26:25,139.292207,35.307240,52.00,1009.4651,6.071695,-2.518700,7.278373,9.807347
1954 2016-08-10 19:26:27,139.292506,35.307266,52.00,1009.4519,5.937620,-2.633622,7.335834,9.798253
1955 2016-08-10 19:26:29,139.293115,35.307339,52.00,1009.4509,6.081272,-2.576161,7.249643,9.806926
1956 2016-08-10 19:26:30,139.293407,35.307375,52.00,1009.3914,5.918467,-2.643199,7.354988,9.803601
1957 2016-08-10 19:26:31,139.293722,35.307413,53.00,1009.3994,5.995081,-2.643199,7.287950,9.800087
1958 2016-08-10 19:26:31,139.294018,35.307447,53.00,1009.3994,6.004658,-2.643199,7.287950,9.805949
1959 2016-08-10 19:26:32,139.294328,35.307486,55.00,1009.4158,6.023811,-2.528277,7.307104,9.801645
1960 2016-08-10 19:26:33,139.294620,35.307520,55.00,1009.3948,6.090849,-2.518700,7.259220,9.805027
1961 2016-08-10 19:26:35,139.294915,35.307562,55.00,1009.4248,6.052542,-2.604892,7.259220,9.803825
1962 2016-08-10 19:26:35,139.295213,35.307578,54.00,1009.4221,5.985504,-2.604892,7.307104,9.798239
1963 2016-08-10 19:26:36,139.295503,35.307609,54.00,1009.4172,6.004658,-2.547431,7.316680,9.801996
1964 2016-08-10 19:26:37,139.295840,35.307663,54.00,1009.4070,6.033388,-2.576161,7.287950,9.805743
1965 2016-08-10 19:26:39,139.296448,35.307755,53.00,1009.4143,5.966351,-2.691083,7.297527,9.802712
1966 2016-08-10 19:26:41,139.296754,35.307791,53.00,1009.3999,5.947197,-2.748544,7.287950,9.799891
1967 2016-08-10 19:26:41,139.297086,35.307845,57.00,1009.4033,5.947197,-2.738967,7.297527,9.804335
1968 2016-08-10 19:26:42,139.297380,35.307884,57.00,1009.3694,6.081272,-2.537854,7.259220,9.804022
1969 2016-08-10 19:26:44,139.297690,35.307922,58.00,1009.3796,6.062119,-2.489970,7.297527,9.808319
1970 2016-08-10 19:26:44,139.297988,35.307959,59.00,1009.4128,6.033388,-2.643199,7.259220,9.802272
1971 2016-08-10 19:26:45,139.298285,35.307997,60.00,1009.3982,5.995081,-2.662352,7.287950,9.805271
1972 2016-08-10 19:26:46,139.298588,35.308031,60.00,1009.3608,6.100426,-2.499547,7.249643,9.798992
1973 2016-08-10 19:26:47,139.298888,35.308066,60.00,1009.3508,6.215348,-2.489970,7.153875,9.798389
1974 2016-08-10 19:26:48,139.299179,35.308105,60.00,1009.3645,6.110003,-2.643199,7.192182,9.800312
1975 2016-08-10 19:26:49,139.299480,35.308153,61.00,1009.3943,5.832275,-2.442086,7.498640,9.808609
1976 2016-08-10 19:26:50,139.299786,35.308194,61.00,1009.3762,5.803545,-2.375048,7.536947,9.804466
1977 2016-08-10 19:26:51,139.300097,35.308230,61.00,1009.3777,5.832275,-2.499547,7.469909,9.801159
1978 2016-08-10 19:26:53,139.300697,35.308300,64.00,1009.3860,5.899313,-2.480393,7.431602,9.807291
1979 2016-08-10 19:26:54,139.300991,35.308337,64.00,1009.3955,5.793968,-2.394202,7.536947,9.803460
1980 2016-08-10 19:26:55,139.301288,35.308375,64.00,1009.4060,5.755661,-2.489970,7.536947,9.804751
1981 2016-08-10 19:26:56,139.301576,35.308417,64.00,1009.3931,5.765238,-2.403779,7.556100,9.803610
1982 2016-08-10 19:26:57,139.301845,35.308458,66.00,1009.3711,5.793968,-2.422932,7.527370,9.803161
1983 2016-08-10 19:26:58,139.302126,35.308489,67.00,1009.4199,5.803545,-2.403779,7.527370,9.804111
1984 2016-08-10 19:26:59,139.302400,35.308517,66.00,1009.4277,5.784391,-2.470816,7.527370,9.809455
1985 2016-08-10 19:27:00,139.302711,35.308556,66.00,1009.3774,5.746084,-2.384625,7.575254,9.802469
1986 2016-08-10 19:27:01,139.303007,35.308592,67.00,1009.4094,5.726931,-2.499547,7.556100,9.805107
1987 2016-08-10 19:27:03,139.303600,35.308664,67.00,1009.4141,5.650316,-2.451663,7.623138,9.800457
1988 2016-08-10 19:27:05,139.304182,35.308712,67.00,1009.4077,5.621585,-2.394202,7.661446,9.799601
1989 2016-08-10 19:27:06,139.304462,35.308744,68.00,1009.3872,5.688623,-2.451663,7.603985,9.807735
1990 2016-08-10 19:27:08,139.304771,35.308789,67.00,1009.4480,5.612009,-2.442086,7.661446,9.805925
1991 2016-08-10 19:27:10,139.305357,35.308855,66.00,1009.4333,5.286397,-2.193089,7.958326,9.802581
1992 2016-08-10 19:27:10,139.305640,35.308908,67.00,1009.4133,5.679047,-2.250550,7.661446,9.798688
1993 2016-08-10 19:27:12,139.305909,35.308917,66.00,1009.4014,5.621585,-2.604892,7.594408,9.801159
1994 2016-08-10 19:27:13,139.306193,35.308951,66.00,1009.4312,5.765238,-2.777274,7.431602,9.807136
1995 2016-08-10 19:27:14,139.306489,35.308973,65.00,1009.4614,5.410896,-1.493982,8.034941,9.801533
1996 2016-08-10 19:27:14,139.306777,35.309012,65.00,1009.1665,5.803545,-1.685518,7.718906,9.803245
1997 2016-08-10 19:27:15,139.307061,35.309041,65.00,1009.3083,5.640739,-1.704672,7.833828,9.802689
1998 2016-08-10 19:27:16,139.307345,35.309104,64.00,1009.5308,6.521805,3.600879,6.368577,9.800972
1999 2016-08-10 19:27:18,139.307613,35.309158,63.00,1009.3164,6.876147,2.681506,6.454768,9.804892
2000 2016-08-10 19:27:19,139.307912,35.309192,65.00,1009.4072,5.956774,4.156334,6.588843,9.806687
2001 2016-08-10 19:27:21,139.308435,35.309233,65.00,1009.2454,5.631162,4.750096,6.473921,9.807398
2002 2016-08-10 19:27:23,139.308976,35.309406,66.00,1009.2871,-3.102885,2.221819,-9.030929,9.804185
2003 2016-08-10 19:27:23,139.309238,35.309434,66.00,1009.2612,-3.246537,1.723825,9.088389,9.803591
2004 2016-08-10 19:27:24,139.309510,35.309493,65.00,1009.2056,-6.368577,1.810017,7.230489,9.803821
2005 2016-08-10 19:27:26,139.310028,35.309592,64.00,1009.2939,0.737414,5.602432,8.015787,9.807337
2006 2016-08-10 19:27:27,139.310280,35.309677,64.00,1009.2654,0.536301,4.616021,8.638280,9.808932
2007 2016-08-10 19:27:28,139.310557,35.309791,64.00,1009.2429,1.149217,4.711789,8.523358,9.806594
2008 2016-08-10 19:27:29,139.310753,35.309877,64.00,1009.2080,0.095768,4.702212,8.609550,9.810419
2009 2016-08-10 19:27:30,139.310956,35.309959,66.00,1009.1914,0.086191,4.797980,8.552089,9.806440
2010 2016-08-10 19:27:31,139.311181,35.310056,65.00,1009.1992,-0.057461,4.769250,8.571242,9.808937
2011 2016-08-10 19:27:32,139.311378,35.310144,65.00,1009.1736,-0.153229,4.855441,8.523358,9.810526
2012 2016-08-10 19:27:33,139.311584,35.310260,63.00,1009.1743,-0.718261,4.836287,8.504205,9.809540
2013 2016-08-10 19:27:34,139.311758,35.310341,63.00,1009.1370,-0.421380,4.577713,8.657434,9.802254
2014 2016-08-10 19:27:35,139.311878,35.310439,65.00,1009.1487,-0.497994,4.510676,8.695741,9.808675
2015 2016-08-10 19:27:36,139.312047,35.310519,65.00,1009.1543,-0.699107,4.481946,8.695741,9.807777
2016 2016-08-10 19:27:37,139.312216,35.310618,65.00,1009.1558,-0.469264,4.711789,8.590396,9.808979
2017 2016-08-10 19:27:38,139.312358,35.310729,65.00,1009.1272,-0.421380,4.836287,8.523358,9.808918
2018 2016-08-10 19:27:39,139.312514,35.310777,63.00,1009.1213,-0.488417,4.826711,8.523358,9.807310
2019 2016-08-10 19:27:40,139.312638,35.310851,63.00,1009.1265,-0.335188,4.711789,8.590396,9.803479
2020 2016-08-10 19:27:41,139.312727,35.310953,62.00,1009.1187,-0.517148,4.932055,8.456321,9.803161
2021 2016-08-10 19:27:43,139.312840,35.311027,62.00,1009.1370,-0.344765,4.941632,8.456321,9.800406
2022 2016-08-10 19:27:44,139.312937,35.311118,61.00,1009.1311,0.067038,4.932055,8.475474,9.806290
2023 2016-08-10 19:27:44,139.313022,35.311194,61.00,1009.1252,-0.402226,4.874595,8.494628,9.802151
2024 2016-08-10 19:27:45,139.313108,35.311272,61.00,1009.1284,-0.229843,4.979939,8.446744,9.808165
2025 2016-08-10 19:27:46,139.313214,35.311399,61.00,1009.1431,-0.201113,4.797980,8.552089,9.808123
2026 2016-08-10 19:27:48,139.313334,35.311453,61.00,1009.1389,-0.057461,4.740520,8.580819,9.803381
2027 2016-08-10 19:27:48,139.313440,35.311541,60.00,1009.1348,-0.076614,4.711789,8.599973,9.806445
2028 2016-08-10 19:27:50,139.313555,35.311604,59.00,1009.1191,-0.143652,4.539406,8.695741,9.810339
2029 2016-08-10 19:27:52,139.313657,35.311648,59.00,1009.1409,-0.143652,4.654328,8.628703,9.804995
2030 2016-08-10 19:27:55,139.313800,35.311710,59.00,1009.1289,-0.067038,4.596867,8.667010,9.810849
2031 2016-08-10 19:27:57,139.313885,35.311717,60.00,1009.1355,0.229843,4.548983,8.686164,9.807931
2032 2016-08-10 19:27:58,139.313983,35.311811,59.00,1009.1367,-0.258574,4.903325,8.485051,9.803344
2033 2016-08-10 19:28:03,139.314092,35.311864,59.00,1009.0884,0.756568,4.960786,8.427590,9.808469
2034 2016-08-10 19:28:06,139.314203,35.311916,60.00,1009.1597,0.411803,4.855441,8.513782,9.809657
2035 2016-08-10 19:28:10,139.314263,35.312015,59.00,1009.1313,0.363919,4.922479,8.475474,9.808002
2036 2016-08-10 19:28:17,139.314322,35.312033,57.00,1009.0798,0.746991,4.855441,8.494628,9.812849
2037 2016-08-10 19:29:13,139.314511,35.312096,55.00,1009.1558,2.346318,3.916914,8.676587,9.804621
2038 2016-08-10 19:29:14,139.314583,35.312167,56.00,1009.1772,2.489970,3.955221,8.619126,9.804747
2039 2016-08-10 19:29:16,139.314740,35.312225,53.00,1009.2166,2.576161,3.849876,8.647857,9.810381
2040 2016-08-10 19:29:17,139.314819,35.312252,55.00,1009.2200,2.595315,3.754108,8.676587,9.803680
2041 2016-08-10 19:29:18,139.314906,35.312343,54.00,1009.2307,2.470816,3.734955,8.724471,9.806692
2042 2016-08-10 19:29:19,139.315003,35.312404,58.00,1009.2190,2.566584,3.533842,8.781932,9.808044
2043 2016-08-10 19:29:20,139.315105,35.312470,58.00,1009.2776,2.298434,3.620033,8.820239,9.807347
2044 2016-08-10 19:29:21,139.315216,35.312557,57.00,1009.2661,2.355895,3.466804,8.868123,9.808801
2045 2016-08-10 19:29:22,139.315326,35.312649,59.00,1009.2581,2.461239,3.763685,8.714894,9.806753
2046 2016-08-10 19:29:23,139.315441,35.312726,60.00,1009.2900,2.308010,3.572149,8.829816,9.800653
2047 2016-08-10 19:29:25,139.315531,35.312785,63.00,1009.3418,2.355895,3.677494,8.781932,9.807983
2048 2016-08-10 19:29:26,139.315644,35.312861,64.00,1009.2466,2.451663,3.524265,8.810662,9.800962
2049 2016-08-10 19:29:26,139.315768,35.312955,65.00,1009.3042,2.614468,3.418920,8.810662,9.805724
2050 2016-08-10 19:29:27,139.315886,35.313012,64.00,1009.3389,2.451663,3.332729,8.887277,9.803133
2051 2016-08-10 19:29:28,139.316009,35.313096,64.00,1009.3191,2.470816,3.514688,8.810662,9.802333
2052 2016-08-10 19:29:29,139.316140,35.313169,64.00,1009.3406,2.394202,3.620033,8.791509,9.804462
2053 2016-08-10 19:29:30,139.316270,35.313255,65.00,1009.3376,2.336741,3.715801,8.772355,9.809269
2054 2016-08-10 19:29:31,139.316409,35.313361,64.00,1009.4033,2.327164,3.907337,8.686164,9.804714
2055 2016-08-10 19:29:32,139.316566,35.313446,64.00,1009.3782,2.422932,3.629610,8.781932,9.806477
2056 2016-08-10 19:29:33,139.316706,35.313537,65.00,1009.3975,2.413355,3.687071,8.762778,9.808418
2057 2016-08-10 19:29:34,139.316859,35.313617,66.00,1009.4153,2.451663,3.667917,8.762778,9.810736
2058 2016-08-10 19:29:36,139.317010,35.313711,66.00,1009.5212,2.269703,3.667917,8.801085,9.801238
2059 2016-08-10 19:29:37,139.317336,35.313906,66.00,1009.4819,2.413355,3.648763,8.772355,9.802651
2060 2016-08-10 19:29:38,139.317494,35.314001,67.00,1009.5117,2.308010,3.629610,8.810662,9.804527
2061 2016-08-10 19:29:39,139.317676,35.314105,69.00,1009.5403,2.308010,3.677494,8.791509,9.805177
2062 2016-08-10 19:29:40,139.317827,35.314207,68.00,1009.5586,2.365471,3.677494,8.781932,9.810288
2063 2016-08-10 19:29:41,139.317986,35.314325,67.00,1009.5837,2.346318,3.706224,8.772355,9.807931
2064 2016-08-10 19:29:43,139.318198,35.314455,68.00,1009.6223,2.365471,3.620033,8.801085,9.806080
2065 2016-08-10 19:29:43,139.318392,35.314572,68.00,1009.6096,2.346318,3.658340,8.791509,9.807104
2066 2016-08-10 19:29:44,139.318591,35.314708,69.00,1009.7195,2.355895,3.677494,8.781932,9.807983
2067 2016-08-10 19:29:45,139.318793,35.314828,69.00,1009.6418,2.355895,3.706224,8.772355,9.810227
2068 2016-08-10 19:29:46,139.318980,35.314953,69.00,1009.7429,2.346318,3.658340,8.791509,9.807104
2069 2016-08-10 19:29:47,139.319175,35.315080,69.00,1009.7625,1.350330,3.849876,8.916007,9.805107
2070 2016-08-10 19:29:48,139.319361,35.315214,68.00,1009.8088,2.221819,3.964798,8.686164,9.803344
2071 2016-08-10 19:29:49,139.319562,35.315372,67.00,1009.8442,1.905785,3.830723,8.820239,9.803217
2072 2016-08-10 19:29:50,139.319765,35.315487,66.00,1009.8967,2.011129,3.869030,8.781932,9.804915
2073 2016-08-10 19:29:51,139.319954,35.315633,66.00,1009.8821,1.704672,4.060566,8.762778,9.807160
2074 2016-08-10 19:29:52,139.320140,35.315771,67.00,1009.9810,1.790863,3.859453,8.839393,9.810068
2075 2016-08-10 19:29:53,139.320374,35.315916,67.00,1010.0068,1.810017,4.012682,8.762778,9.806328
2076 2016-08-10 19:29:54,139.320594,35.316050,66.00,1010.0417,1.944092,3.936068,8.772355,9.809502
2077 2016-08-10 19:29:55,139.320828,35.316190,67.00,1010.0635,1.877054,4.022259,8.743625,9.805757
2078 2016-08-10 19:29:57,139.321043,35.316331,68.00,1010.0857,1.934515,3.936068,8.772355,9.807609
2079 2016-08-10 19:29:57,139.321278,35.316479,68.00,1010.0857,1.762132,3.974375,8.791509,9.807721
2080 2016-08-10 19:29:58,139.321497,35.316612,68.00,1010.1541,1.742979,3.974375,8.791509,9.804298
2081 2016-08-10 19:29:59,139.321737,35.316767,68.00,1010.1953,1.810017,3.983952,8.781932,9.811746
2082 2016-08-10 19:30:00,139.321983,35.316923,68.00,1010.1914,1.877054,3.916914,8.791509,9.805925
2083 2016-08-10 19:30:01,139.322246,35.317096,68.00,1010.2271,1.886631,3.926491,8.791509,9.811592
2084 2016-08-10 19:30:02,139.322496,35.317269,66.00,1010.3142,1.963245,3.916914,8.772355,9.805649
2085 2016-08-10 19:30:03,139.322751,35.317431,66.00,1010.3711,1.886631,3.926491,8.781932,9.803011
2086 2016-08-10 19:30:04,139.323015,35.317606,66.00,1010.3801,1.762132,4.003105,8.781932,9.810825
2087 2016-08-10 19:30:05,139.323270,35.317761,65.00,1010.3823,1.915361,3.964798,8.762778,9.806861
2088 2016-08-10 19:30:06,139.323519,35.317943,65.00,1010.3816,1.733402,3.840300,8.858546,9.809507
2089 2016-08-10 19:30:07,139.323772,35.318118,65.00,1010.3918,1.704672,3.974375,8.801085,9.806154
2090 2016-08-10 19:30:08,139.324017,35.318285,66.00,1010.4041,1.522712,3.916914,8.858546,9.804831
2091 2016-08-10 19:30:09,139.324263,35.318455,64.00,1010.4197,1.618480,3.859453,8.868123,9.806042
2092 2016-08-10 19:30:10,139.324520,35.318625,64.00,1010.4724,1.599327,3.993528,8.810662,9.804789
2093 2016-08-10 19:30:12,139.324779,35.318780,66.00,1010.4729,1.618480,3.926491,8.839393,9.806716
2094 2016-08-10 19:30:12,139.325034,35.318941,66.00,1010.4729,1.685518,3.849876,8.858546,9.804915
2095 2016-08-10 19:30:13,139.325271,35.319076,65.00,1010.4702,1.608904,3.907337,8.848969,9.806126
2096 2016-08-10 19:30:14,139.325526,35.319246,66.00,1010.5129,1.599327,4.156334,8.734048,9.803905
2097 2016-08-10 19:30:15,139.325777,35.319408,66.00,1010.5173,1.551443,3.840300,8.887277,9.805027
2098 2016-08-10 19:30:16,139.326017,35.319554,66.00,1010.5154,1.647211,3.811569,8.887277,9.809437
2099 2016-08-10 19:30:17,139.326270,35.319717,66.00,1010.5242,1.618480,3.754108,8.916007,9.808567
2100 2016-08-10 19:30:18,139.326520,35.319887,67.00,1010.5613,1.675941,4.060566,8.762778,9.802207
2101 2016-08-10 19:30:19,139.326785,35.320030,66.00,1010.5261,1.628057,3.811569,8.887277,9.806239
2102 2016-08-10 19:30:20,139.327051,35.320191,65.00,1010.4939,1.618480,3.667917,8.944737,9.802113
2103 2016-08-10 19:30:21,139.327341,35.320362,64.00,1010.4646,1.561020,3.648763,8.973468,9.811900
2104 2016-08-10 19:30:22,139.327642,35.320510,62.00,1010.5081,1.589750,3.572149,8.992621,9.805855
2105 2016-08-10 19:30:24,139.327914,35.320644,62.00,1010.5215,1.656788,3.495534,9.011775,9.806926
2106 2016-08-10 19:30:24,139.328193,35.320769,63.00,1010.5359,1.647211,3.687071,8.935161,9.805350
2107 2016-08-10 19:30:25,139.328485,35.320906,61.00,1010.5220,1.628057,3.591303,8.983045,9.810358
2108 2016-08-10 19:30:26,139.328771,35.321037,65.00,1010.5540,1.647211,3.830723,8.877700,9.808226
2109 2016-08-10 19:30:27,139.329068,35.321159,64.00,1010.5635,1.675941,3.907337,8.839393,9.808717
2110 2016-08-10 19:30:28,139.329347,35.321271,64.00,1010.5425,1.551443,4.031836,8.801085,9.804171
2111 2016-08-10 19:30:29,139.329637,35.321392,63.00,1010.5488,1.666364,3.974375,8.810662,9.808170
2112 2016-08-10 19:30:30,139.329928,35.321508,62.00,1010.5657,1.618480,3.859453,8.868123,9.806042
2113 2016-08-10 19:30:31,139.330218,35.321628,62.00,1010.5598,1.608904,3.801992,8.896853,9.808044
2114 2016-08-10 19:30:32,139.330451,35.321762,63.00,1010.5503,1.599327,3.869030,8.868123,9.806674
2115 2016-08-10 19:30:33,139.330768,35.321898,62.00,1010.4968,1.647211,3.907337,8.839393,9.803849
2116 2016-08-10 19:30:34,139.331092,35.322022,62.00,1010.5459,1.704672,3.993528,8.791509,9.805345
2117 2016-08-10 19:30:35,139.331411,35.322083,62.00,1010.5190,1.599327,3.964798,8.829816,9.810358
2118 2016-08-10 19:30:36,139.331691,35.322241,62.00,1010.5234,1.742979,3.974375,8.791509,9.804298
2119 2016-08-10 19:30:37,139.332032,35.322336,62.00,1010.5095,1.436521,3.869030,8.896853,9.807496
2120 2016-08-10 19:30:38,139.332352,35.322445,61.00,1010.5515,1.522712,4.022259,8.810662,9.804335
2121 2016-08-10 19:30:40,139.332634,35.322577,62.00,1010.5305,1.493982,3.955221,8.848969,9.807141
2122 2016-08-10 19:30:40,139.332912,35.322675,60.00,1010.5276,1.513135,4.022259,8.820239,9.811461
2123 2016-08-10 19:30:41,139.333170,35.322739,61.00,1010.5688,1.647211,3.955221,8.820239,9.805799
2124 2016-08-10 19:30:42,139.333449,35.322848,61.00,1010.5574,1.493982,3.945644,8.848969,9.803283
2125 2016-08-10 19:30:43,139.333699,35.322980,60.00,1010.5684,1.589750,3.926491,8.848969,9.810652
2126 2016-08-10 19:30:44,139.333964,35.323104,61.00,1010.5850,1.541866,4.108450,8.772355,9.808717
2127 2016-08-10 19:30:45,139.334242,35.323235,61.00,1010.5828,1.503559,3.907337,8.868123,9.806711
2128 2016-08-10 19:30:46,139.334577,35.323364,61.00,1010.5762,1.618480,3.945644,8.829816,9.805776
2129 2016-08-10 19:30:47,139.334871,35.323472,61.00,1010.6279,1.465251,3.964798,8.848969,9.806674
2130 2016-08-10 19:30:48,139.335122,35.323580,61.00,1010.5935,1.637634,3.955221,8.820239,9.804195
2131 2016-08-10 19:30:49,139.335382,35.323673,61.00,1010.6160,1.570596,4.022259,8.801085,9.803287
2132 2016-08-10 19:30:50,139.335645,35.323795,61.00,1010.6514,1.628057,3.993528,8.810662,9.809516
2133 2016-08-10 19:30:51,139.335907,35.323914,62.00,1010.6531,1.580173,3.983952,8.820239,9.806398
2134 2016-08-10 19:30:52,139.336182,35.324048,63.00,1010.6658,1.589750,3.936068,8.839393,9.805855
2135 2016-08-10 19:30:54,139.336711,35.324259,64.00,1010.7322,1.446098,3.964798,8.848969,9.803830
2136 2016-08-10 19:30:55,139.337009,35.324380,63.00,1010.8020,1.561020,3.993528,8.820239,9.807225
2137 2016-08-10 19:30:56,139.337274,35.324517,62.00,1010.6663,1.532289,3.983952,8.829816,9.807417
2138 2016-08-10 19:30:57,139.337558,35.324633,62.00,1010.7319,1.656788,4.041412,8.781932,9.808174
2139 2016-08-10 19:30:58,139.337846,35.324749,61.00,1010.7808,1.704672,3.916914,8.829816,9.808862
2140 2016-08-10 19:30:59,139.338140,35.324839,61.00,1010.7659,1.704672,4.041412,8.772355,9.807810
2141 2016-08-10 19:31:00,139.338402,35.324916,62.00,1010.7788,1.810017,4.003105,8.762778,9.802413
2142 2016-08-10 19:31:01,139.338686,35.325019,61.00,1010.7725,1.685518,3.955221,8.820239,9.812307
2143 2016-08-10 19:31:02,139.338977,35.325165,60.00,1010.7600,1.666364,4.031836,8.781932,9.805855
2144 2016-08-10 19:31:03,139.339259,35.325308,60.00,1010.7439,1.800440,3.926491,8.801085,9.803980
2145 2016-08-10 19:31:04,139.339539,35.325412,60.00,1010.7837,1.685518,4.079720,8.753201,9.803245
2146 2016-08-10 19:31:05,139.339823,35.325531,59.00,1010.7786,1.551443,4.012682,8.810662,9.804915
2147 2016-08-10 19:31:06,139.340103,35.325635,59.00,1010.7673,1.561020,3.801992,8.906430,9.808997
2148 2016-08-10 19:31:08,139.340370,35.325727,58.00,1010.8035,1.570596,3.888184,8.868123,9.809605
2149 2016-08-10 19:31:08,139.340645,35.325834,58.00,1010.7776,1.426944,3.801992,8.925584,9.805986
2150 2016-08-10 19:31:09,139.340925,35.325910,58.00,1010.7329,1.484405,3.945644,8.858546,9.810474
2151 2016-08-10 19:31:10,139.341171,35.326003,57.00,1010.7532,1.541866,3.830723,8.896853,9.808455
2152 2016-08-10 19:31:11,139.341431,35.326042,58.00,1010.7285,1.446098,3.859453,8.896853,9.805130
2153 2016-08-10 19:31:12,139.341700,35.326123,56.00,1010.6980,1.331176,3.849876,8.916007,9.802487
2154 2016-08-10 19:31:13,139.341979,35.326189,56.00,1010.6514,1.493982,3.945644,8.858546,9.811928
2155 2016-08-10 19:31:14,139.342262,35.326248,55.00,1010.6689,1.522712,3.715801,8.944737,9.804803
2156 2016-08-10 19:31:15,139.342542,35.326301,55.00,1010.6013,1.436521,3.888184,8.887277,9.806388
2157 2016-08-10 19:31:16,139.342801,35.326361,55.00,1010.6057,1.283292,3.964798,8.877700,9.807141
2158 2016-08-10 19:31:17,139.343060,35.326416,54.00,1010.5620,1.321599,4.003105,8.858546,9.810470
2159 2016-08-10 19:31:18,139.343306,35.326466,54.00,1010.5830,1.407791,3.983952,8.848969,9.806019
2160 2016-08-10 19:31:19,139.343546,35.326523,54.00,1010.6475,1.474828,4.223372,8.724471,9.804508
2161 2016-08-10 19:31:20,139.343822,35.326588,53.00,1010.5095,1.398214,4.089296,8.801085,9.804920
2162 2016-08-10 19:31:21,139.344064,35.326634,53.00,1010.5203,1.187524,4.089296,8.829816,9.802969
2163 2016-08-10 19:31:22,139.344303,35.326681,54.00,1010.4636,1.426944,3.744531,8.954314,9.810068
2164 2016-08-10 19:31:23,139.344535,35.326712,55.00,1010.5068,1.110910,3.993528,8.887277,9.806430
2165 2016-08-10 19:31:25,139.344792,35.326754,56.00,1010.4106,1.292869,3.993528,8.858546,9.802735
2166 2016-08-10 19:31:25,139.345020,35.326806,57.00,1010.4866,1.091756,4.070143,8.858546,9.809783
2167 2016-08-10 19:31:26,139.345248,35.326868,58.00,1010.4214,1.292869,3.983952,8.868123,9.807496
2168 2016-08-10 19:31:27,139.345485,35.326910,58.00,1010.4856,1.187524,4.012682,8.868123,9.805888
2169 2016-08-10 19:31:28,139.345697,35.326941,58.00,1010.4104,1.302446,4.165911,8.781932,9.806809
2170 2016-08-10 19:31:29,139.345916,35.326979,58.00,1010.5149,1.369483,3.993528,8.848969,9.804489
2171 2016-08-10 19:31:30,139.346106,35.327005,58.00,1010.4089,0.919373,4.137180,8.848969,9.811512
2172 2016-08-10 19:31:31,139.346317,35.327038,59.00,1010.5034,1.264138,4.003105,8.858546,9.802894
2173 2016-08-10 19:31:32,139.346521,35.327068,59.00,1010.3945,1.110910,4.012682,8.877700,9.805575
2174 2016-08-10 19:31:33,139.346701,35.327100,59.00,1010.3928,1.216254,4.003105,8.868123,9.805495
2175 2016-08-10 19:31:34,139.346871,35.327122,61.00,1010.4268,0.871489,4.108450,8.858546,9.803708
2176 2016-08-10 19:31:35,139.347043,35.327150,60.00,1010.3425,1.130063,4.089296,8.839393,9.804807
2177 2016-08-10 19:31:36,139.347224,35.327179,63.00,1010.3613,1.197101,4.108450,8.829816,9.812138
2178 2016-08-10 19:31:37,139.347396,35.327208,63.00,1010.4038,1.244985,4.098873,8.820239,9.805476
2179 2016-08-10 19:31:38,139.347572,35.327238,64.00,1010.3533,0.976834,4.050989,8.877700,9.807052
2180 2016-08-10 19:31:39,139.347752,35.327262,63.00,1010.3845,0.852336,4.050989,8.887277,9.804115
2181 2016-08-10 19:31:40,139.347925,35.327280,63.00,1010.3669,0.670376,4.022259,8.916007,9.804242
2182 2016-08-10 19:31:41,139.348094,35.327309,63.00,1010.3789,1.426944,4.060566,8.810662,9.805720
2183 2016-08-10 19:31:43,139.348234,35.327334,63.00,1010.3433,1.072602,4.060566,8.858546,9.803699
2184 2016-08-10 19:31:43,139.348347,35.327367,65.00,1010.3433,1.082179,4.108450,8.839393,9.807412
2185 2016-08-10 19:31:44,139.348488,35.327411,64.00,1010.3589,1.053449,4.079720,8.858546,9.809572
2186 2016-08-10 19:31:45,139.348615,35.327445,65.00,1010.3540,1.197101,4.041412,8.848969,9.801547
2187 2016-08-10 19:31:47,139.348820,35.327502,69.00,1010.3220,2.164358,3.974375,8.695741,9.802857
2188 2016-08-10 19:31:49,139.349029,35.327552,70.00,1010.2847,0.976834,4.156334,8.829816,9.807903
2189 2016-08-10 19:31:51,139.349190,35.327591,71.00,1010.3169,0.976834,4.041412,8.877700,9.803100
2190 2016-08-10 19:31:53,139.349361,35.327614,72.00,1010.3276,0.861913,4.175488,8.829816,9.805266
2191 2016-08-10 19:31:55,139.349500,35.327663,70.00,1010.3013,0.948104,4.252102,8.781932,9.803143
2192 2016-08-10 19:31:57,139.349630,35.327673,70.00,1010.3054,0.938527,4.319140,8.753201,9.805832
2193 2016-08-10 19:32:00,139.349744,35.327648,68.00,1010.2756,1.101333,4.194642,8.801085,9.811578
2194 2016-08-10 19:32:03,139.349865,35.327678,69.00,1010.2964,1.072602,4.261679,8.762778,9.802993
2195 2016-08-10 19:32:08,139.349995,35.327754,68.00,1010.2766,0.814029,4.242526,8.801085,9.804120
2196 2016-08-10 19:32:15,139.350055,35.327827,73.00,1010.2734,1.216254,4.271256,8.743625,9.806828
2197 2016-08-10 19:32:27,139.350166,35.327845,72.00,1010.2729,0.258574,-4.970363,8.446744,9.804022
2198 2016-08-10 19:34:15,139.350206,35.327927,66.00,1010.4587,0.632069,-4.070143,8.896853,9.804059
2199 2016-08-10 19:34:35,139.350204,35.327927,66.00,1010.3511,0.718261,-3.849876,8.983045,9.799619
2200 2016-08-10 19:34:55,139.350549,35.328008,64.00,1010.4519,1.254562,-3.122039,9.203311,9.799081
2201 2016-08-10 19:34:55,139.350891,35.328032,64.00,1010.4563,0.995988,-3.179500,9.222465,9.805869
2202 2016-08-10 19:34:56,139.351193,35.327946,65.00,1010.4453,0.967257,-3.122039,9.241618,9.802562
2203 2016-08-10 19:34:57,139.351413,35.327948,62.00,1010.4221,1.283292,-3.064578,9.222465,9.802670
2204 2016-08-10 19:34:58,139.351608,35.327920,61.00,1010.4192,1.474828,-3.093309,9.184157,9.802674
2205 2016-08-10 19:34:59,139.351813,35.327939,63.00,1010.3950,1.110910,-3.160346,9.212888,9.803020
2206 2016-08-10 19:35:00,139.352011,35.327968,62.00,1010.3865,1.513135,-3.150769,9.165004,9.808885
2207 2016-08-10 19:35:02,139.352152,35.328060,63.00,1010.3896,1.082179,-3.227384,9.193734,9.803666
2208 2016-08-10 19:35:03,139.352318,35.328098,62.00,1010.4153,0.976834,-3.275268,9.193734,9.808483
2209 2016-08-10 19:35:04,139.352677,35.328128,65.00,1010.4199,1.063026,-3.313575,9.165004,9.803423
2210 2016-08-10 19:35:05,139.352789,35.328239,66.00,1010.4146,0.967257,-3.284845,9.184157,9.801762
2211 2016-08-10 19:35:07,139.352980,35.328260,67.00,1010.4482,0.699107,-2.968810,9.318233,9.804696
2212 2016-08-10 19:35:07,139.353172,35.328339,66.00,1010.4375,0.833182,-3.265691,9.203311,9.801013
2213 2016-08-10 19:35:09,139.353335,35.328350,66.00,1010.4375,1.158794,-3.361459,9.136273,9.803760
2214 2016-08-10 19:35:09,139.353535,35.328386,65.00,1010.4407,1.082179,-3.342306,9.155427,9.806323
2215 2016-08-10 19:35:11,139.353735,35.328491,67.00,1010.4202,1.302446,-3.323152,9.126697,9.799811
2216 2016-08-10 19:35:12,139.353945,35.328555,67.00,1010.4563,1.053449,-3.303998,9.165004,9.799156
2217 2016-08-10 19:35:12,139.354137,35.328582,66.00,1010.4502,1.369483,-3.303998,9.126697,9.802473
2218 2016-08-10 19:35:13,139.354353,35.328607,65.00,1010.4565,1.225831,-3.294421,9.155427,9.807024
2219 2016-08-10 19:35:14,139.354577,35.328616,64.00,1010.4390,1.254562,-3.390190,9.117120,9.807608
2220 2016-08-10 19:35:15,139.354796,35.328621,63.00,1010.4780,0.890643,-3.418920,9.145850,9.804531
2221 2016-08-10 19:35:16,139.355008,35.328661,62.00,1010.4802,1.599327,-3.323152,9.078813,9.799287
2222 2016-08-10 19:35:18,139.355244,35.328693,61.00,1010.6597,1.580173,-2.183512,9.423578,9.801454
2223 2016-08-10 19:35:18,139.355451,35.328788,62.00,1010.4380,0.497994,-2.183512,9.548077,9.807216
2224 2016-08-10 19:35:19,139.355695,35.328818,61.00,1010.4514,0.852336,-3.495534,9.117120,9.801383
2225 2016-08-10 19:35:20,139.355944,35.328862,63.00,1010.5696,0.756568,-2.614468,9.414001,9.799554
2226 2016-08-10 19:35:22,139.356185,35.328894,62.00,1010.5093,0.603339,-3.418920,9.165004,9.800527
2227 2016-08-10 19:35:23,139.356428,35.328985,62.00,1010.4587,0.890643,-3.399766,9.145850,9.797869
2228 2016-08-10 19:35:23,139.356646,35.329010,61.00,1010.5999,0.890643,-3.418920,9.145850,9.804531
2229 2016-08-10 19:35:27,139.357437,35.329097,61.00,1010.6111,1.312023,-3.351882,9.117120,9.801959
2230 2016-08-10 19:35:27,139.357683,35.329146,59.00,1010.6243,0.794875,-3.620033,9.078813,9.806187
2231 2016-08-10 19:35:29,139.357927,35.329186,59.00,1010.6565,0.411803,-3.706224,9.069236,9.805953
2232 2016-08-10 19:35:30,139.358180,35.329251,57.00,1010.6724,0.737414,-3.495534,9.126697,9.800976
2233 2016-08-10 19:35:31,139.358433,35.329308,56.00,1010.7158,0.660800,-3.600879,9.088389,9.798051
2234 2016-08-10 19:35:32,139.358686,35.329384,58.00,1010.7256,0.718261,-3.610456,9.088389,9.805616
2235 2016-08-10 19:35:32,139.358952,35.329441,57.00,1010.7122,0.995988,-3.552995,9.078813,9.800031
2236 2016-08-10 19:35:33,139.359236,35.329496,56.00,1010.7283,0.881066,-3.610456,9.069236,9.801159
2237 2016-08-10 19:35:34,139.359511,35.329538,55.00,1010.7305,1.283292,-3.371036,9.117120,9.804723
2238 2016-08-10 19:35:36,139.360077,35.329658,56.00,1010.7620,1.340753,-3.313575,9.126697,9.801734
2239 2016-08-10 19:35:37,139.360379,35.329712,56.00,1010.7563,0.881066,-3.610456,9.069236,9.801159
2240 2016-08-10 19:35:38,139.360662,35.329760,57.00,1010.6836,1.053449,-3.457227,9.117120,9.807347
2241 2016-08-10 19:35:39,139.360961,35.329789,56.00,1010.6709,0.660800,-3.600879,9.097966,9.806935
2242 2016-08-10 19:35:40,139.361234,35.329823,56.00,1010.6204,0.632069,-3.591303,9.097966,9.801528
2243 2016-08-10 19:35:41,139.361533,35.329870,56.00,1010.6238,0.411803,-3.744531,9.050082,9.802810
2244 2016-08-10 19:35:42,139.361812,35.329944,57.00,1010.5273,0.536301,-3.754108,9.040505,9.803657
2245 2016-08-10 19:35:44,139.362105,35.330020,58.00,1010.5442,0.718261,-3.706224,9.050082,9.805916
2246 2016-08-10 19:35:44,139.362408,35.330087,58.00,1010.5413,0.890643,-3.562572,9.088389,9.802244
2247 2016-08-10 19:35:45,139.362708,35.330138,57.00,1010.5105,0.928950,-3.648763,9.050082,9.802062
2248 2016-08-10 19:35:47,139.363005,35.330203,57.00,1010.4500,0.938527,-3.639187,9.059659,9.808258
2249 2016-08-10 19:35:49,139.363591,35.330344,56.00,1010.3867,1.350330,-3.227384,9.165004,9.810030
2250 2016-08-10 19:35:49,139.363887,35.330410,55.00,1010.3965,1.312023,-3.457227,9.078813,9.802992
2251 2016-08-10 19:35:50,139.364194,35.330463,55.00,1010.3792,1.130063,-3.447650,9.107543,9.803605
2252 2016-08-10 19:35:51,139.364508,35.330523,56.00,1010.3750,0.881066,-3.524265,9.107543,9.805308
2253 2016-08-10 19:35:53,139.364802,35.330571,57.00,1010.3896,1.063026,-3.476381,9.097966,9.797359
2254 2016-08-10 19:35:54,139.365111,35.330642,58.00,1010.3748,0.842759,-3.562572,9.097966,9.806893
2255 2016-08-10 19:35:54,139.365426,35.330707,57.00,1010.3962,0.823605,-3.639187,9.069236,9.806786
2256 2016-08-10 19:35:55,139.365745,35.330756,56.00,1010.3940,1.053449,-3.773262,8.992621,9.808899
2257 2016-08-10 19:35:56,139.366054,35.330817,57.00,1010.3818,0.823605,-3.667917,9.050082,9.799792
2258 2016-08-10 19:35:57,139.366370,35.330876,58.00,1010.3093,1.484405,-4.252102,8.705317,9.801346
2259 2016-08-10 19:35:58,139.366683,35.330938,58.00,1010.4258,1.206678,-3.687071,9.002198,9.802557
2260 2016-08-10 19:35:59,139.366990,35.330992,59.00,1010.4009,1.015141,-3.830723,8.963891,9.800831
2261 2016-08-10 19:36:00,139.367304,35.331048,60.00,1010.3894,1.177947,-3.878607,8.916007,9.794199
2262 2016-08-10 19:36:01,139.367619,35.331114,60.00,1010.4062,1.350330,-4.031836,8.829816,9.800242
2263 2016-08-10 19:36:02,139.367920,35.331181,60.00,1010.3955,1.436521,-3.974375,8.839393,9.797658
2264 2016-08-10 19:36:03,139.368226,35.331225,59.00,1010.3806,1.244985,-4.079720,8.829816,9.806108
2265 2016-08-10 19:36:05,139.368531,35.331276,59.00,1010.3899,1.321599,-3.916914,8.887277,9.801659
2266 2016-08-10 19:36:05,139.368849,35.331323,60.00,1010.3875,1.225831,-4.031836,8.848969,9.801154
2267 2016-08-10 19:36:06,139.369134,35.331379,60.00,1010.3547,1.426944,-3.792415,8.925584,9.802277
2268 2016-08-10 19:36:07,139.369397,35.331447,60.00,1010.3745,1.599327,-3.639187,8.963891,9.805757
2269 2016-08-10 19:36:08,139.369688,35.331493,60.00,1010.4087,1.359907,-3.792415,8.935161,9.801472
2270 2016-08-10 19:36:10,139.370285,35.331588,59.00,1010.5654,0.785298,-3.907337,8.954314,9.801210
2271 2016-08-10 19:36:11,139.370559,35.331642,59.00,1010.3760,0.948104,-3.600879,9.069236,9.803891
2272 2016-08-10 19:36:12,139.370864,35.331676,59.00,1010.3760,0.727837,-3.639187,9.069236,9.799207
2273 2016-08-10 19:36:13,139.371153,35.331710,59.00,1010.3552,0.871489,-3.696647,9.040505,9.805888
2274 2016-08-10 19:36:14,139.371401,35.331841,58.00,1010.3706,0.459687,-3.725378,9.059659,9.806486
2275 2016-08-10 19:36:15,139.371653,35.331832,58.00,1010.3994,0.593762,-3.754108,9.030929,9.798140
2276 2016-08-10 19:36:16,139.371927,35.331880,58.00,1010.3750,0.555455,-3.754108,9.040505,9.804723
2277 2016-08-10 19:36:17,139.372205,35.331939,58.00,1010.4531,0.612916,-3.706224,9.050082,9.798763
2278 2016-08-10 19:36:18,139.372453,35.331981,58.00,1010.4597,1.005565,-3.505111,9.097966,9.801528
2279 2016-08-10 19:36:19,139.372715,35.332016,59.00,1010.5376,0.995988,-3.514688,9.097966,9.803979
2280 2016-08-10 19:36:20,139.372928,35.331993,57.00,1010.5330,1.130063,-3.466804,9.097966,9.801467
2281 2016-08-10 19:36:21,139.373221,35.331979,57.00,1010.5369,0.967257,-3.524265,9.097966,9.804541
2282 2016-08-10 19:36:22,139.373581,35.331901,58.00,1010.5874,1.158794,-3.476381,9.088389,9.799329
2283 2016-08-10 19:36:23,139.373849,35.331889,57.00,1010.6309,1.072602,-3.476381,9.107543,9.807295
2284 2016-08-10 19:36:24,139.374112,35.331876,56.00,1010.6282,0.861913,-3.533842,9.097966,9.798159
2285 2016-08-10 19:36:25,139.374386,35.331850,56.00,1010.6768,1.015141,-3.562572,9.078813,9.805472
2286 2016-08-10 19:36:27,139.374953,35.331731,55.00,1010.7231,1.015141,-3.428497,9.126697,9.802127
2287 2016-08-10 19:36:28,139.375244,35.331674,54.00,1010.7588,1.072602,-3.485958,9.097966,9.801804
2288 2016-08-10 19:36:29,139.375506,35.331578,53.00,1010.8242,1.082179,-3.505111,9.088389,9.800803
2289 2016-08-10 19:36:31,139.375794,35.331526,52.00,1010.8186,0.995988,-3.600879,9.059659,9.799783
2290 2016-08-10 19:36:32,139.376360,35.331326,50.00,1010.8735,0.603339,-3.610456,9.097966,9.806753
2291 2016-08-10 19:36:33,139.376629,35.331246,50.00,1010.8943,0.756568,-3.610456,9.078813,9.799624
2292 2016-08-10 19:36:34,139.376916,35.331150,50.00,1010.9690,0.536301,-3.725378,9.050082,9.801533
2293 2016-08-10 19:36:35,139.377219,35.331060,49.00,1010.9546,0.689530,-3.677494,9.059659,9.801879
2294 2016-08-10 19:36:36,139.377502,35.330968,49.00,1010.9529,0.497994,-3.763685,9.040505,9.805308
2295 2016-08-10 19:36:37,139.377741,35.330942,49.00,1010.9832,0.584185,-3.734955,9.040505,9.799076
2296 2016-08-10 19:36:38,139.377986,35.330836,49.00,1011.0007,0.746991,-3.715801,9.040505,9.802852
2297 2016-08-10 19:36:39,139.378282,35.330713,49.00,1011.0632,0.555455,-3.687071,9.069236,9.805818
2298 2016-08-10 19:36:40,139.378516,35.330670,49.00,1011.0466,0.727837,-3.629610,9.078813,9.804522
2299 2016-08-10 19:36:41,139.378793,35.330560,48.00,1011.0239,0.469264,-3.552995,9.126697,9.805130
2300 2016-08-10 19:36:42,139.379069,35.330482,49.00,1011.0530,0.430956,-3.524265,9.136273,9.801921
2301 2016-08-10 19:36:43,139.379346,35.330385,50.00,1011.0410,0.325611,-3.533842,9.136273,9.801304
2302 2016-08-10 19:36:44,139.379643,35.330288,50.00,1011.0452,0.699107,-3.390190,9.174581,9.805869
2303 2016-08-10 19:36:46,139.380181,35.330112,48.00,1011.0759,0.459687,-3.313575,9.212888,9.801449
2304 2016-08-10 19:36:47,139.380445,35.330043,47.00,1011.0396,0.411803,-3.265691,9.232041,9.801271
2305 2016-08-10 19:36:48,139.380723,35.329954,48.00,1010.9834,1.082179,-2.987964,9.270349,9.799918
2306 2016-08-10 19:36:49,139.381020,35.329880,47.00,1011.0220,0.296881,-3.418920,9.184157,9.804382
2307 2016-08-10 19:36:51,139.381463,35.329711,48.00,1010.9392,0.143652,-3.409343,9.193734,9.806580
2308 2016-08-10 19:36:53,139.381723,35.329619,48.00,1010.8909,0.459687,-3.361459,9.203311,9.808754
2309 2016-08-10 19:36:54,139.382269,35.329404,45.00,1010.8540,0.718261,-3.763685,9.021352,9.801327
2310 2016-08-10 19:36:56,139.383092,35.329139,45.00,1010.8281,0.727837,-3.744531,9.030929,9.803516
2311 2016-08-10 19:36:57,139.383462,35.329036,45.00,1010.8977,0.373495,-3.763685,9.040505,9.799774
2312 2016-08-10 19:36:58,139.383793,35.328934,45.00,1010.9324,0.421380,-3.763685,9.040505,9.801715
2313 2016-08-10 19:36:59,139.384103,35.328848,45.00,1010.9604,0.191536,-3.792415,9.040505,9.805602
2314 2016-08-10 19:37:00,139.384424,35.328836,0.00,1011.0020,0.210690,-3.677494,9.088389,9.806486
2315 2016-08-10 19:37:01,139.384665,35.328704,44.00,1011.0479,-0.057461,-3.706224,9.078813,9.806337
2316 2016-08-10 19:37:02,139.384961,35.328653,45.00,1011.0459,0.603339,-3.505111,9.136273,9.804148
2317 2016-08-10 19:37:03,139.385244,35.328613,46.00,1011.0757,0.076614,-3.648763,9.097966,9.802670
2318 2016-08-10 19:37:04,139.385536,35.328563,46.00,1011.0591,0.143652,-3.648763,9.097966,9.803423
2319 2016-08-10 19:37:05,139.385870,35.328528,47.00,1011.0090,0.114922,-3.715801,9.069236,9.801603
2320 2016-08-10 19:37:06,139.386157,35.328506,47.00,1011.0073,0.565032,-3.639187,9.088389,9.806210
2321 2016-08-10 19:37:08,139.386462,35.328481,47.00,1011.0171,0.756568,-3.591303,9.088389,9.801463
2322 2016-08-10 19:37:08,139.386808,35.328429,47.00,1010.9727,0.373495,-3.706224,9.069236,9.804419
2323 2016-08-10 19:37:09,139.387148,35.328385,47.00,1010.9890,0.421380,-3.734955,9.059659,9.808408
2324 2016-08-10 19:37:10,139.387505,35.328323,46.00,1010.9651,0.718261,-3.696647,9.050082,9.802300
2325 2016-08-10 19:37:11,139.387811,35.328277,46.00,1010.9324,0.689530,-3.667917,9.069236,9.807146
2326 2016-08-10 19:37:13,139.388155,35.328200,45.00,1010.9082,0.488417,-3.658340,9.078813,9.800349
2327 2016-08-10 19:37:14,139.388795,35.328085,45.00,1010.9070,0.459687,-3.706224,9.059659,9.799226
2328 2016-08-10 19:37:15,139.389077,35.328061,46.00,1010.9392,0.325611,-3.620033,9.107543,9.806019
2329 2016-08-10 19:37:16,139.389366,35.328014,46.00,1010.9023,0.660800,-3.552995,9.107543,9.798355
2330 2016-08-10 19:37:17,139.389620,35.327973,46.00,1010.9023,0.402226,-3.677494,9.078813,9.803601
2331 2016-08-10 19:37:18,139.389922,35.327942,47.00,1010.8940,0.287304,-3.744531,9.050082,9.798370
2332 2016-08-10 19:37:19,139.390205,35.327896,45.00,1010.9382,0.632069,-3.533842,9.117120,9.798440
2333 2016-08-10 19:37:20,139.390515,35.327855,45.00,1010.9465,1.005565,-3.428497,9.126697,9.801140
2334 2016-08-10 19:37:21,139.390808,35.327818,45.00,1010.7148,1.091756,-3.562572,9.069236,9.804840
2335 2016-08-10 19:37:22,139.391106,35.327800,44.00,1010.9426,1.053449,-3.696647,9.021352,9.806108
2336 2016-08-10 19:37:23,139.391409,35.327781,43.00,1010.9575,0.699107,-3.821146,9.002198,9.804564
2337 2016-08-10 19:37:24,139.391705,35.327756,42.00,1010.9639,0.976834,-3.639187,9.050082,9.803156
2338 2016-08-10 19:37:25,139.391968,35.327734,43.00,1010.9348,0.565032,-3.840300,9.002198,9.803404
2339 2016-08-10 19:37:26,139.392182,35.327705,43.00,1010.9431,0.909797,-3.734955,9.021352,9.806243
2340 2016-08-10 19:37:27,139.392490,35.327652,42.00,1010.9221,0.679953,-3.811569,9.002198,9.799488
2341 2016-08-10 19:37:28,139.392695,35.327669,43.00,1010.8535,1.235408,-3.533842,9.059659,9.802637
2342 2016-08-10 19:37:30,139.393311,35.327611,43.00,1010.9395,0.871489,-3.734955,9.021352,9.802763
2343 2016-08-10 19:37:31,139.393655,35.327567,44.00,1010.9792,0.411803,-3.648763,9.088389,9.802136
2344 2016-08-10 19:37:32,139.393947,35.327527,43.00,1010.9773,0.995988,-3.773262,8.992621,9.802894
2345 2016-08-10 19:37:34,139.394590,35.327467,46.00,1010.9292,0.660800,-4.022259,8.916007,9.803591
2346 2016-08-10 19:37:36,139.394911,35.327429,46.00,1010.9324,1.072602,-3.658340,9.030929,9.802632
2347 2016-08-10 19:37:37,139.395207,35.327403,46.00,1010.9622,0.641646,-3.964798,8.944737,9.805083
2348 2016-08-10 19:37:37,139.395489,35.327376,46.00,1010.9160,0.967257,-3.840300,8.973468,9.808497
2349 2016-08-10 19:37:38,139.395774,35.327345,46.00,1010.9299,0.363919,-4.050989,8.916007,9.799905
2350 2016-08-10 19:37:39,139.396056,35.327323,49.00,1010.9019,0.622492,-3.907337,8.963891,9.798271
2351 2016-08-10 19:37:40,139.396348,35.327292,51.00,1010.8901,0.641646,-3.945644,8.944737,9.797354
2352 2016-08-10 19:37:41,139.396637,35.327275,50.00,1010.8411,0.478840,-4.012682,8.935161,9.806528
2353 2016-08-10 19:37:42,139.396897,35.327274,49.00,1010.8394,0.670376,-3.955221,8.944737,9.803138
2354 2016-08-10 19:37:43,139.397204,35.327279,49.00,1010.8701,0.603339,-3.993528,8.935161,9.805579
2355 2016-08-10 19:37:44,139.397512,35.327333,50.00,1010.8337,0.497994,-4.022259,8.925584,9.802684
2356 2016-08-10 19:37:45,139.397792,35.327357,52.00,1010.8245,0.660800,-4.003105,8.925584,9.804466
2357 2016-08-10 19:37:46,139.398073,35.327394,54.00,1010.8320,0.545878,-4.050989,8.906430,9.799643
2358 2016-08-10 19:37:47,139.398320,35.327462,54.00,1010.8274,0.402226,-4.060566,8.916007,9.805364
2359 2016-08-10 19:37:48,139.398636,35.327471,54.00,1010.8171,0.641646,-3.955221,8.944737,9.801215
2360 2016-08-10 19:37:49,139.398947,35.327501,51.00,1010.7915,0.775721,-3.993528,8.916007,9.800265
2361 2016-08-10 19:37:50,139.399232,35.327582,52.00,1010.8188,0.517148,-4.041412,8.916007,9.802838
2362 2016-08-10 19:37:51,139.399475,35.327719,52.00,1010.8296,0.641646,-4.012682,8.925584,9.807108
2363 2016-08-10 19:37:52,139.399709,35.327805,52.00,1010.7886,0.900220,-3.859453,8.963891,9.800873
2364 2016-08-10 19:37:53,139.399955,35.327890,52.00,1010.7544,0.708684,-4.003105,8.916007,9.799095
2365 2016-08-10 19:37:55,139.400200,35.327976,53.00,1010.7861,0.718261,-4.070143,8.887277,9.801308
2366 2016-08-10 19:37:55,139.400464,35.328065,52.00,1010.7893,0.574608,-4.022259,8.916007,9.798159
2367 2016-08-10 19:37:56,139.400724,35.328146,53.00,1010.8240,0.823605,-3.849876,8.973468,9.799133
2368 2016-08-10 19:37:57,139.400983,35.328232,53.00,1010.7454,0.957681,-3.993528,8.906430,9.807646
2369 2016-08-10 19:37:58,139.401221,35.328322,52.00,1010.8174,0.957681,-3.849876,8.963891,9.802553
2370 2016-08-10 19:37:59,139.401492,35.328427,53.00,1010.7712,0.689530,-3.955221,8.944737,9.804466
2371 2016-08-10 19:38:00,139.401765,35.328494,54.00,1010.7295,1.082179,-3.916914,8.916007,9.798393
2372 2016-08-10 19:38:02,139.402026,35.328608,56.00,1010.6401,0.794875,-3.936068,8.944737,9.804733
2373 2016-08-10 19:38:04,139.402476,35.328684,56.00,1010.6575,1.063026,-3.916914,8.925584,9.805013
2374 2016-08-10 19:38:04,139.402726,35.328765,56.00,1010.6245,0.689530,-4.003105,8.925584,9.806444
2375 2016-08-10 19:38:05,139.402915,35.328910,58.00,1010.6301,0.957681,-4.098873,8.858546,9.807740
2376 2016-08-10 19:38:06,139.403195,35.329009,58.00,1010.5994,0.814029,-4.194642,8.820239,9.800728
2377 2016-08-10 19:38:07,139.403388,35.329049,58.00,1010.5569,1.321599,-4.175488,8.772355,9.804873
2378 2016-08-10 19:38:08,139.403625,35.329140,58.00,1010.5691,0.957681,-4.194642,8.810662,9.805098
2379 2016-08-10 19:38:09,139.403864,35.329213,58.00,1010.5203,1.005565,-4.194642,8.801085,9.801290
2380 2016-08-10 19:38:10,139.404119,35.329322,58.00,1010.5100,1.187524,-4.376601,8.686164,9.798688
2381 2016-08-10 19:38:12,139.404603,35.329555,57.00,1010.4844,1.264138,-4.548983,8.590396,9.802357
2382 2016-08-10 19:38:15,139.405081,35.329739,58.00,1010.4336,1.072602,-4.654328,8.561666,9.803844
2383 2016-08-10 19:38:16,139.405271,35.329810,59.00,1010.4436,1.015141,-4.673482,8.561666,9.806838
2384 2016-08-10 19:38:16,139.405502,35.329880,59.00,1010.4299,0.995988,-4.683059,8.552089,9.801084
2385 2016-08-10 19:38:17,139.405668,35.329996,59.00,1010.4043,1.292869,-4.529830,8.590396,9.797233
2386 2016-08-10 19:38:18,139.405896,35.330088,58.00,1010.3767,1.254562,-4.529830,8.599973,9.800654
2387 2016-08-10 19:38:19,139.406113,35.330175,57.00,1010.3977,1.637634,-4.328717,8.638280,9.799975
2388 2016-08-10 19:38:20,139.406230,35.330165,57.00,1010.3774,1.417367,-4.376601,8.657434,9.803811
2389 2016-08-10 19:38:21,139.406418,35.330248,56.00,1010.3711,1.589750,-4.261679,8.686164,9.805032
2390 2016-08-10 19:38:22,139.406599,35.330329,56.00,1010.3704,1.273715,-4.481946,8.619126,9.797935
2391 2016-08-10 19:38:23,139.406780,35.330409,56.00,1010.3665,1.149217,-4.443638,8.657434,9.798866
2392 2016-08-10 19:38:36,139.407573,35.330286,53.00,1010.4746,0.632069,-4.347870,8.762778,9.802539
2393 2016-08-10 19:38:39,139.407689,35.330358,53.00,1010.3506,0.823605,-4.213795,8.810662,9.801131
2394 2016-08-10 19:38:44,139.407820,35.330427,48.00,1010.2725,1.465251,-3.926491,8.858546,9.799905
2395 2016-08-10 19:39:00,139.407861,35.330440,49.00,1010.2964,0.363919,-3.782839,9.040505,9.806786
2396 2016-08-10 19:39:20,139.407870,35.330464,49.00,1010.3174,0.450110,-3.725378,9.059659,9.806042
2397 2016-08-10 19:39:41,139.407854,35.330477,46.00,1010.3035,0.047884,-2.671929,9.433155,9.804382
2398 2016-08-10 19:40:02,139.407845,35.330469,45.00,1010.3359,0.000000,-2.298434,9.528923,9.802202
2399 2016-08-10 19:40:18,139.407947,35.330527,45.00,1010.4043,-0.593762,-1.838747,9.615114,9.807342
2400 2016-08-10 19:40:19,139.408212,35.330683,46.00,1010.4146,-0.804452,-1.963245,9.567230,9.799662
2401 2016-08-10 19:40:22,139.408340,35.330769,45.00,1010.4114,-0.603339,-2.030283,9.567230,9.798875
2402 2016-08-10 19:40:24,139.408627,35.330880,45.00,1010.3821,-0.469264,-2.106898,9.567230,9.807707
2403 2016-08-10 19:40:25,139.408740,35.330914,48.00,1010.4104,-0.469264,-1.991976,9.586384,9.802394
2404 2016-08-10 19:40:26,139.408871,35.330951,51.00,1010.3855,-0.459687,-2.202666,9.538500,9.800307
2405 2016-08-10 19:40:27,139.409002,35.331017,52.00,1010.4268,-0.373495,-2.049437,9.576807,9.800761
2406 2016-08-10 19:40:28,139.409109,35.331048,50.00,1010.3943,-0.536301,-2.240973,9.528923,9.803568
2407 2016-08-10 19:40:30,139.409513,35.331203,52.00,1010.4158,-0.612916,-1.733402,9.634268,9.808133
2408 2016-08-10 19:40:31,139.409653,35.331290,52.00,1010.3472,-0.239420,-2.260126,9.538500,9.805533
2409 2016-08-10 19:40:32,139.409848,35.331385,56.00,1010.4702,-0.545878,-1.886631,9.605537,9.804270
2410 2016-08-10 19:40:34,139.409996,35.331431,56.00,1010.5298,-1.024718,-1.963245,9.548077,9.801538
2411 2016-08-10 19:40:35,139.410086,35.331486,50.00,1010.4514,-1.015141,-2.145205,9.509769,9.801435
2412 2016-08-10 19:40:35,139.410280,35.331571,52.00,1010.4338,-1.024718,-2.422932,9.442732,9.802338
2413 2016-08-10 19:40:36,139.410431,35.331637,52.00,1010.4338,-1.034295,-2.250550,9.481039,9.799227
2414 2016-08-10 19:40:37,139.410576,35.331703,51.00,1010.4070,-0.967257,-2.087744,9.528923,9.802787
2415 2016-08-10 19:40:38,139.410736,35.331776,53.00,1010.4207,-1.005565,-2.011129,9.538500,9.799938
2416 2016-08-10 19:40:39,139.410950,35.331853,50.00,1010.3684,-0.938527,-2.106898,9.528923,9.804092
2417 2016-08-10 19:40:40,139.411127,35.331926,50.00,1010.4187,-0.823605,-1.924938,9.576807,9.803007
2418 2016-08-10 19:40:42,139.411537,35.332087,51.00,1010.3972,-0.172383,-2.097321,9.576807,9.805290
2419 2016-08-10 19:40:43,139.411999,35.332213,51.00,1010.3972,0.057461,-1.963245,9.605537,9.804284
2420 2016-08-10 19:40:45,139.412170,35.332303,53.00,1010.3972,-0.105345,-2.001553,9.595961,9.803049
2421 2016-08-10 19:40:45,139.412344,35.332379,55.00,1010.3828,0.000000,-2.422932,9.500193,9.804298
2422 2016-08-10 19:40:46,139.412551,35.332462,55.00,1010.3713,-0.124498,-2.557007,9.461885,9.802095
2423 2016-08-10 19:40:48,139.412757,35.332535,55.00,1010.3628,0.019154,-2.183512,9.557653,9.803919
2424 2016-08-10 19:40:49,139.412965,35.332615,55.00,1010.3674,0.114922,-1.963245,9.605537,9.804789
2425 2016-08-10 19:40:51,139.413340,35.332754,58.00,1010.3521,-0.469264,-1.436521,9.691729,9.808843
2426 2016-08-10 19:40:51,139.413561,35.332807,59.00,1010.3337,-0.210690,-1.570596,9.672575,9.801524
2427 2016-08-10 19:40:53,139.414024,35.332965,60.00,1010.4026,-0.229843,-1.896208,9.615114,9.803002
2428 2016-08-10 19:40:54,139.414224,35.333035,60.00,1010.3850,-0.220267,-1.896208,9.615114,9.802782
2429 2016-08-10 19:40:55,139.414434,35.333110,60.00,1010.3730,-0.172383,-1.867477,9.624691,9.805706
2430 2016-08-10 19:40:57,139.414673,35.333209,61.00,1010.3210,-0.028730,-2.126051,9.567230,9.800654
2431 2016-08-10 19:40:58,139.414971,35.333297,60.00,1010.3210,0.134075,-1.800440,9.634268,9.801973
2432 2016-08-10 19:40:58,139.415218,35.333397,60.00,1010.3237,0.000000,-1.934515,9.615114,9.807791
2433 2016-08-10 19:40:59,139.415485,35.333465,60.00,1010.3162,0.067038,-1.819593,9.634268,9.804822
2434 2016-08-10 19:41:00,139.415691,35.333600,60.00,1010.2888,0.000000,-2.269703,9.538500,9.804822
2435 2016-08-10 19:41:02,139.416156,35.333783,57.00,1010.3357,0.105345,-2.451663,9.490616,9.802731
2436 2016-08-10 19:41:03,139.416387,35.333854,57.00,1010.2991,0.162806,-2.183512,9.557653,9.805252
2437 2016-08-10 19:41:04,139.416667,35.333948,58.00,1010.3047,0.105345,-2.049437,9.586384,9.803573
2438 2016-08-10 19:41:05,139.417087,35.334061,58.00,1010.2952,0.076614,-2.030283,9.595961,9.808689
2439 2016-08-10 19:41:06,139.417354,35.334130,58.00,1010.2937,0.057461,-2.212242,9.548077,9.801178
2440 2016-08-10 19:41:07,139.417590,35.334241,59.00,1010.2595,0.057461,-2.173935,9.557653,9.801940
2441 2016-08-10 19:41:08,139.417935,35.334289,62.00,1010.2856,0.095768,-2.212242,9.548077,9.801477
2442 2016-08-10 19:41:10,139.418194,35.334354,63.00,1010.2485,0.105345,-2.106898,9.576807,9.806393
2443 2016-08-10 19:41:11,139.418666,35.334531,62.00,1010.2471,0.086191,-1.800440,9.634268,9.801435
2444 2016-08-10 19:41:14,139.419098,35.334758,61.00,1010.2014,-0.181959,-1.618480,9.672575,9.808736
2445 2016-08-10 19:41:14,139.419311,35.334851,61.00,1010.3191,0.411803,-1.972822,9.595961,9.805308
2446 2016-08-10 19:41:15,139.419524,35.334934,61.00,1010.2388,-0.220267,-2.097321,9.576807,9.806248
2447 2016-08-10 19:41:17,139.419753,35.335018,61.00,1010.2104,-0.172383,-2.298434,9.528923,9.803718
2448 2016-08-10 19:41:18,139.420278,35.335136,60.00,1010.0559,-0.172383,-1.982399,9.605537,9.809484
2449 2016-08-10 19:41:18,139.420504,35.335211,60.00,1010.1499,0.076614,-1.589750,9.672575,9.802647
2450 2016-08-10 19:41:19,139.420769,35.335306,61.00,1010.1965,0.019154,-1.714248,9.653421,9.804466
2451 2016-08-10 19:41:20,139.420913,35.335499,61.00,1010.1804,0.038307,-1.685518,9.662998,9.808974
2452 2016-08-10 19:41:21,139.421205,35.335527,62.00,1010.1680,0.086191,-1.695095,9.653421,9.801496
2453 2016-08-10 19:41:22,139.421488,35.335596,60.00,1010.1487,0.114922,-1.656788,9.662998,9.804677
2454 2016-08-10 19:41:23,139.421740,35.335538,61.00,1010.1689,0.143652,-1.541866,9.682152,9.805205
2455 2016-08-10 19:41:24,139.422054,35.335607,62.00,1010.2075,0.134075,-1.714248,9.653421,9.805364
2456 2016-08-10 19:41:25,139.422398,35.335617,62.00,1010.1838,0.057461,-1.599327,9.672575,9.804073
2457 2016-08-10 19:41:26,139.422661,35.335655,61.00,1010.1770,0.143652,-1.675941,9.662998,9.808310
2458 2016-08-10 19:41:27,139.423053,35.335675,60.00,1010.1902,0.181959,-1.465251,9.691729,9.803554
2459 2016-08-10 19:41:28,139.423360,35.335673,60.00,1010.1965,0.000000,-1.742979,9.643845,9.800087
2460 2016-08-10 19:41:30,139.424008,35.335678,61.00,1010.1626,0.239420,-1.991976,9.595961,9.803456
2461 2016-08-10 19:41:32,139.424323,35.335704,59.00,1010.1929,0.143652,-2.001553,9.595961,9.803536
2462 2016-08-10 19:41:32,139.424637,35.335718,59.00,1010.1738,0.239420,-2.078167,9.576807,9.802619
2463 2016-08-10 19:41:33,139.424959,35.335727,59.00,1010.1946,0.239420,-1.886631,9.615114,9.801384
2464 2016-08-10 19:41:34,139.425281,35.335749,61.00,1010.1980,0.258574,-2.135628,9.567230,9.806103
2465 2016-08-10 19:41:36,139.425884,35.335827,61.00,1010.1624,-0.038307,-1.637634,9.662998,9.800859
2466 2016-08-10 19:41:37,139.426191,35.335824,61.00,1010.2390,-0.162806,-1.369483,9.710882,9.808324
2467 2016-08-10 19:41:38,139.426510,35.335846,60.00,1010.0845,0.248997,-2.154782,9.557653,9.800705
2468 2016-08-10 19:41:39,139.426810,35.335862,60.00,1010.3816,-0.440533,-1.915361,9.605537,9.804541
2469 2016-08-10 19:41:40,139.427127,35.335878,60.00,1010.2021,-0.373495,-1.733402,9.643845,9.805505
2470 2016-08-10 19:41:42,139.427879,35.335939,60.00,1010.1877,-0.325611,-1.704672,9.653421,9.808184
2471 2016-08-10 19:41:43,139.428167,35.335944,61.00,1010.1565,-0.277727,-1.637634,9.662998,9.804719
2472 2016-08-10 19:41:44,139.428408,35.335948,60.00,1010.2026,-0.392649,-1.924938,9.605537,9.804382
2473 2016-08-10 19:41:45,139.428679,35.335962,60.00,1010.1694,-0.402226,-1.867477,9.615114,9.803044
2474 2016-08-10 19:41:46,139.428940,35.335894,60.00,1010.1882,-0.421380,-1.972822,9.595961,9.805715
2475 2016-08-10 19:41:47,139.429247,35.335918,60.00,1010.1462,-0.316035,-1.800440,9.634268,9.806150
2476 2016-08-10 19:41:49,139.429465,35.335870,60.00,1010.2231,-0.440533,-1.944092,9.595961,9.800817
2477 2016-08-10 19:41:50,139.429805,35.335916,60.00,1010.2051,-0.478840,-1.934515,9.595961,9.800719
2478 2016-08-10 19:41:51,139.430144,35.335960,60.00,1010.1943,-0.823605,-2.087744,9.538500,9.798979
2479 2016-08-10 19:41:52,139.430896,35.335944,59.00,1010.2234,-0.067038,-2.566584,9.461885,9.804036
2480 2016-08-10 19:41:53,139.431182,35.335964,61.00,1010.1680,-0.565032,-2.001553,9.576807,9.800036
2481 2016-08-10 19:41:54,139.431483,35.336036,61.00,1010.1780,-0.584185,-2.001553,9.576807,9.801159
2482 2016-08-10 19:41:56,139.431796,35.336101,60.00,1010.1768,-0.497994,-2.030283,9.576807,9.802310
2483 2016-08-10 19:41:56,139.432152,35.336165,61.00,1010.1228,0.181959,-2.087744,9.576807,9.803419
2484 2016-08-10 19:41:58,139.432414,35.336177,61.00,1010.1296,0.000000,-2.116474,9.576807,9.807890
2485 2016-08-10 19:41:58,139.432704,35.336190,61.00,1010.1360,0.181959,-2.154782,9.567230,9.808572
2486 2016-08-10 19:41:59,139.432993,35.336197,61.00,1010.1394,0.229843,-1.963245,9.605537,9.806809
2487 2016-08-10 19:42:00,139.433286,35.336207,61.00,1010.1470,0.172383,-2.087744,9.576807,9.803246
2488 2016-08-10 19:42:01,139.433594,35.336213,61.00,1010.1790,0.181959,-2.001553,9.595961,9.804172
2489 2016-08-10 19:42:02,139.433688,35.336150,0.00,1010.1765,0.229843,-2.059013,9.586384,9.807707
2490 2016-08-10 19:42:02,139.433870,35.336226,62.00,1010.1531,0.086191,-2.327164,9.519346,9.800055
2491 2016-08-10 19:42:03,139.434161,35.336241,63.00,1010.1787,0.277727,-1.944092,9.605537,9.804232
2492 2016-08-10 19:42:04,139.434445,35.336255,63.00,1010.1558,0.181959,-2.336741,9.519346,9.803643
2493 2016-08-10 19:42:05,139.434726,35.336282,63.00,1010.1602,0.440533,-1.838747,9.624691,9.808656
2494 2016-08-10 19:42:06,139.434977,35.336247,62.00,1010.1545,0.057461,-2.422932,9.500193,9.804466
2495 2016-08-10 19:42:07,139.435267,35.336244,62.00,1010.1724,0.134075,-1.742979,9.643845,9.801005
2496 2016-08-10 19:42:08,139.435581,35.336262,61.00,1010.1619,0.114922,-2.221819,9.548077,9.803849
2497 2016-08-10 19:42:09,139.435881,35.336293,60.00,1010.1345,0.000000,-1.886631,9.624691,9.807857
2498 2016-08-10 19:42:10,139.436162,35.336284,57.00,1010.1948,-0.019154,-1.944092,9.605537,9.800317
2499 2016-08-10 19:42:12,139.436460,35.336288,58.00,1010.1677,-0.047884,-1.810017,9.634268,9.802937
2500 2016-08-10 19:42:12,139.436731,35.336296,59.00,1010.1714,-0.038307,-1.723825,9.653421,9.806201
2501 2016-08-10 19:42:13,139.437031,35.336322,61.00,1010.1760,-0.095768,-1.819593,9.634268,9.805060
2502 2016-08-10 19:42:14,139.437335,35.336338,61.00,1010.1492,0.095768,-1.810017,9.634268,9.803288
2503 2016-08-10 19:42:15,139.437626,35.336364,62.00,1010.1689,0.009577,-2.193089,9.557653,9.806042
2504 2016-08-10 19:42:16,139.437915,35.336375,63.00,1010.1790,0.000000,-2.298434,9.528923,9.802202
2505 2016-08-10 19:42:18,139.438222,35.336384,63.00,1010.1675,0.000000,-1.924938,9.615114,9.805907
2506 2016-08-10 19:42:18,139.438516,35.336397,63.00,1010.1226,-0.028730,-2.212242,9.548077,9.801051
2507 2016-08-10 19:42:19,139.438800,35.336444,63.00,1010.0972,0.000000,-1.963245,9.605537,9.804116
2508 2016-08-10 19:42:20,139.439099,35.336455,63.00,1010.1289,0.009577,-2.193089,9.557653,9.806042
2509 2016-08-10 19:42:21,139.439369,35.336473,63.00,1010.1418,-0.009577,-2.193089,9.557653,9.806042
2510 2016-08-10 19:42:22,139.439653,35.336497,64.00,1010.1418,0.047884,-2.212242,9.548077,9.801126
2511 2016-08-10 19:42:23,139.439974,35.336520,65.00,1010.1338,0.000000,-2.173935,9.557653,9.801772
2512 2016-08-10 19:42:24,139.440257,35.336520,65.00,1010.1309,0.019154,-2.327164,9.528923,9.808998
2513 2016-08-10 19:42:25,139.440527,35.336533,64.00,1010.1030,0.153229,-2.240973,9.548077,9.808731
2514 2016-08-10 19:42:26,139.440740,35.336526,65.00,1010.1365,0.114922,-2.384625,9.509769,9.804864
2515 2016-08-10 19:42:27,139.441091,35.336577,64.00,1010.1426,0.229843,-2.145205,9.567230,9.807478
2516 2016-08-10 19:42:28,139.441438,35.336573,63.00,1010.0923,0.229843,-2.432509,9.490616,9.800088
2517 2016-08-10 19:42:31,139.441974,35.336593,62.00,1010.1492,0.268151,-1.838747,9.624691,9.802427
2518 2016-08-10 19:42:31,139.442241,35.336588,62.00,1010.0195,0.794875,-1.838747,9.595961,9.802820
2519 2016-08-10 19:42:33,139.442487,35.336593,61.00,1010.0393,1.628057,-1.666364,9.519346,9.800270
2520 2016-08-10 19:42:33,139.442766,35.336606,61.00,1010.0574,1.810017,-1.991976,9.423578,9.800406
2521 2016-08-10 19:42:34,139.442962,35.336594,62.00,1010.0652,1.043872,-1.991976,9.548077,9.809353
2522 2016-08-10 19:42:35,139.443219,35.336601,62.00,1010.0933,1.053449,-2.327164,9.461885,9.800649
2523 2016-08-10 19:42:37,139.443413,35.336624,62.00,1010.0486,1.235408,-2.260126,9.461885,9.806206
2524 2016-08-10 19:42:38,139.443606,35.336622,62.00,1010.0398,1.292869,-2.336741,9.433155,9.803891
2525 2016-08-10 19:42:38,139.443945,35.336648,62.00,1010.0205,1.292869,-2.269703,9.452309,9.806590
2526 2016-08-10 19:42:39,139.444168,35.336683,62.00,1009.9963,1.130063,-2.566584,9.394848,9.804466
2527 2016-08-10 19:42:40,139.444401,35.336699,62.00,1009.9963,1.024718,-2.662352,9.375694,9.800092
2528 2016-08-10 19:42:41,139.444633,35.336715,62.00,1009.9922,1.024718,-2.758120,9.356541,9.808268
2529 2016-08-10 19:43:22,139.445886,35.337184,0.00,1009.8618,-0.622492,-1.446098,9.672575,9.799867
2530 2016-08-10 19:43:42,139.447117,35.336568,0.00,1009.8640,-0.488417,-1.426944,9.691729,9.808380
2531 2016-08-10 19:44:03,139.447911,35.336674,0.00,1009.9773,-0.660800,-2.001553,9.576807,9.806024
2532 2016-08-10 19:44:43,139.450850,35.337214,0.00,1010.1182,0.335188,-1.723825,9.643845,9.802431
2533 2016-08-10 19:45:24,139.461765,35.337778,0.00,1010.5432,0.057461,-1.101333,9.739613,9.801851
2534 2016-08-10 19:45:29,139.470319,35.338344,60.00,1010.4832,-0.277727,-1.110910,9.739613,9.806697
2535 2016-08-10 19:45:31,139.470668,35.338348,60.00,1010.5232,-0.038307,-1.063026,9.749189,9.807048
2536 2016-08-10 19:46:04,139.474543,35.337849,0.00,1010.2148,0.009577,-1.685518,9.662998,9.808904
2537 2016-08-10 19:46:14,139.483296,35.338638,61.00,1010.1008,0.814029,-1.695095,9.624691,9.806664
2538 2016-08-10 19:46:16,139.483493,35.338656,61.00,1010.0012,0.670376,-1.934515,9.586384,9.802577
2539 2016-08-10 19:46:16,139.483757,35.338675,61.00,1010.0293,0.938527,-1.944092,9.567230,9.807763
2540 2016-08-10 19:46:18,139.484020,35.338694,61.00,1010.0452,1.331176,-2.173935,9.471462,9.808497
2541 2016-08-10 19:46:18,139.484191,35.338700,61.00,1010.0410,1.168370,-2.221819,9.481039,9.807735
2542 2016-08-10 19:46:44,139.486937,35.338700,0.00,1009.9353,0.699107,-1.848324,9.605537,9.806702
2543 2016-08-10 19:48:26,139.487492,35.338596,0.00,1010.6370,-0.019154,-1.503559,9.691729,9.807684
2544 2016-08-10 19:48:46,139.489313,35.338540,0.00,1010.7090,-0.507571,-0.632069,9.768343,9.801921
2545 2016-08-10 19:48:49,139.498598,35.337228,65.00,1010.7131,-0.593762,-0.919373,9.739613,9.800911
2546 2016-08-10 19:48:56,139.502064,35.335979,63.00,1010.7202,-0.976834,-0.517148,9.739613,9.802127
2547 2016-08-10 19:48:57,139.502392,35.335912,63.00,1010.7029,-1.024718,-0.497994,9.739613,9.806024
2548 2016-08-10 19:49:22,139.508301,35.337793,64.00,1010.6741,-0.995988,-0.651223,9.730036,9.802534
2549 2016-08-10 19:50:21,139.523329,35.346563,69.00,1010.7427,-1.177947,-0.679953,9.710882,9.805668
2550 2016-08-10 19:50:22,139.523574,35.346700,69.00,1010.7205,-0.871489,-1.101333,9.701305,9.802436
2551 2016-08-10 19:51:09,139.530474,35.353204,0.00,1010.3188,-0.679953,-1.187524,9.710882,9.806823
2552 2016-08-10 19:51:48,139.530744,35.353765,0.00,1010.2327,-0.651223,-1.024718,9.730036,9.805495
2553 2016-08-10 19:52:08,139.530744,35.354124,0.00,1010.2871,-0.995988,-0.632069,9.730036,9.801281
2554 2016-08-10 19:53:29,139.531082,35.354327,0.00,1010.2751,-0.258574,-0.785298,9.768343,9.803269
2555 2016-08-10 19:54:30,139.531404,35.354745,0.00,1010.3777,-1.187524,-0.430956,9.720459,9.802207
2556 2016-08-10 19:55:10,139.530577,35.359150,0.00,1010.4434,-1.388637,-0.699107,9.682152,9.806178
2557 2016-08-10 19:56:50,139.532927,35.377002,0.00,1010.6685,0.277727,-2.288857,9.528923,9.803896
2558 2016-08-10 19:57:48,139.535687,35.392387,112.00,1010.5908,-1.053449,-1.063026,9.691729,9.806599
2559 2016-08-10 19:57:49,139.535718,35.392670,112.00,1010.5706,-0.881066,-1.072602,9.701305,9.800106
2560 2016-08-10 19:57:50,139.535714,35.393472,0.00,1010.5881,-1.043872,-0.967257,9.701305,9.805130
2561 2016-08-10 19:57:51,139.535851,35.393587,108.00,1010.5339,-1.292869,-0.699107,9.691729,9.802544
2562 2016-08-10 19:57:52,139.535882,35.393896,108.00,1010.6079,-1.177947,-1.082179,9.672575,9.803947
2563 2016-08-10 19:57:53,139.535897,35.394201,108.00,1010.7310,-1.197101,-1.158794,9.662998,9.805579
2564 2016-08-10 19:58:51,139.534265,35.400121,0.00,1010.2388,0.162806,-0.881066,9.768343,9.809348
2565 2016-08-10 19:59:31,139.533687,35.401137,0.00,1010.1909,-1.130063,-1.082179,9.682152,9.807763
2566 2016-08-10 20:00:55,139.533250,35.409972,0.00,1010.1802,-1.235408,-0.478840,9.710882,9.800855
2567 2016-08-10 20:01:11,139.538978,35.413429,0.00,1010.3081,0.210690,-1.790863,9.634268,9.801566
2568 2016-08-10 20:02:53,139.556842,35.431071,0.00,1008.3318,-0.287304,-1.896208,9.615114,9.804518
2569 2016-08-10 20:03:52,139.564443,35.440916,0.00,1007.9653,-0.565032,-1.474828,9.672575,9.800668
2570 2016-08-10 20:04:13,139.570353,35.443548,0.00,1008.5952,-0.335188,-1.331176,9.710882,9.807426
2571 2016-08-10 20:05:34,139.581638,35.444677,0.00,1010.5945,-0.699107,-1.695095,9.634268,9.807202
2572 2016-08-10 20:05:54,139.593528,35.444800,0.00,1010.9546,-0.440533,-1.733402,9.643845,9.808287
2573 2016-08-10 20:06:34,139.600966,35.447721,0.00,1011.4607,-0.191536,-1.991976,9.595961,9.802403
2574 2016-08-10 20:07:14,139.608936,35.453783,0.00,1011.8540,-1.608904,-1.082179,9.605537,9.799287
2575 2016-08-10 20:08:15,139.617481,35.460958,0.00,1011.9309,-0.881066,-1.034295,9.710882,9.805472
2576 2016-08-10 20:08:55,139.622579,35.465693,0.00,1010.9839,-0.948104,-0.948104,9.710882,9.803012
2577 2016-08-10 20:10:36,139.624131,35.467257,0.00,1011.2952,-2.633622,0.009577,9.442732,9.803124
2578 2016-08-10 20:10:56,139.624520,35.467361,130.00,1011.4917,-2.020706,0.067038,9.595961,9.806641
2579 2016-08-10 20:11:39,139.633338,35.478160,0.00,1011.3269,-1.072602,-0.258574,9.739613,9.801907
2580 2016-08-10 20:11:57,139.636704,35.482062,103.00,1011.2690,-1.723825,-0.239420,9.653421,9.809049
2581 2016-08-10 20:11:58,139.636801,35.482162,101.00,1011.2803,-1.331176,-0.201113,9.710882,9.803760
2582 2016-08-10 20:11:59,139.636878,35.482334,105.00,1011.2478,-1.379060,-0.201113,9.701305,9.800897
2583 2016-08-10 20:12:00,139.637098,35.482618,103.00,1011.2441,-1.455675,-0.296881,9.691729,9.804934
2584 2016-08-10 20:12:02,139.637539,35.482945,104.00,1011.2300,-1.436521,-0.134075,9.701305,9.808002
2585 2016-08-10 20:12:03,139.637730,35.483095,104.00,1011.2761,-1.350330,-0.172383,9.710882,9.805832
2586 2016-08-10 20:12:05,139.638123,35.483411,104.00,1011.2783,-1.379060,-0.430956,9.701305,9.808305
2587 2016-08-10 20:12:06,139.638324,35.483573,104.00,1011.2507,-1.273715,-0.086191,9.720459,9.803933
2588 2016-08-10 20:12:07,139.638523,35.483733,104.00,1011.2300,-1.244985,-0.239420,9.720459,9.802787
2589 2016-08-10 20:12:08,139.638783,35.483870,103.00,1011.2371,-1.225831,-0.143652,9.730036,9.808002
2590 2016-08-10 20:12:09,139.639041,35.484010,102.00,1011.2683,-1.216254,-0.191536,9.730036,9.807628
2591 2016-08-10 20:12:10,139.639356,35.484167,103.00,1011.2900,-1.388637,-0.344765,9.701305,9.806248
2592 2016-08-10 20:12:11,139.639591,35.484313,101.00,1011.2881,-1.407791,-0.536301,9.691729,9.808114
2593 2016-08-10 20:12:13,139.640031,35.484578,99.00,1011.2300,-1.340753,-0.143652,9.710882,9.804055
2594 2016-08-10 20:12:15,139.640372,35.484612,93.00,1011.3203,-1.656788,-0.517148,9.653421,9.808207
2595 2016-08-10 20:12:15,139.640585,35.484754,91.00,1011.2825,-1.848324,-0.076614,9.624691,9.800860
2596 2016-08-10 20:12:16,139.640821,35.484896,91.00,1011.3103,-1.733402,-0.172383,9.653421,9.809329
2597 2016-08-10 20:12:19,139.641716,35.484599,71.00,1011.3545,-1.781286,0.047884,9.643845,9.807090
2598 2016-08-10 20:12:20,139.641936,35.484603,71.00,1011.3630,-1.848324,-0.287304,9.624691,9.804770
2599 2016-08-10 20:12:22,139.642158,35.484618,63.00,1011.3972,-1.944092,0.000000,9.605537,9.800298
2600 2016-08-10 20:12:23,139.642360,35.484546,59.00,1011.4255,-1.905785,-0.076614,9.615114,9.802464
2601 2016-08-10 20:12:24,139.642786,35.484585,48.00,1011.4170,-1.896208,-0.258574,9.615114,9.803718
2602 2016-08-10 20:12:25,139.642908,35.484422,55.00,1011.4265,-1.723825,-0.191536,9.653421,9.807997
2603 2016-08-10 20:12:26,139.643158,35.484508,55.00,1011.4646,-1.781286,-0.517148,9.624691,9.801791
2604 2016-08-10 20:12:27,139.643500,35.484813,48.00,1011.5425,-1.446098,-0.067038,9.701305,9.808722
2605 2016-08-10 20:12:29,139.643744,35.484860,48.00,1011.5251,-1.723825,-0.718261,9.624691,9.804190
2606 2016-08-10 20:12:29,139.644011,35.484952,45.00,1011.4993,-1.695095,-0.670376,9.634268,9.805196
2607 2016-08-10 20:12:30,139.644216,35.485009,41.00,1011.4846,-1.704672,-0.737414,9.624691,9.802263
2608 2016-08-10 20:12:33,139.644744,35.485079,42.00,1011.4546,-1.532289,-0.067038,9.682152,9.802881
2609 2016-08-10 20:12:33,139.645040,35.485176,44.00,1011.4829,-1.321599,-0.067038,9.720459,9.810119
2610 2016-08-10 20:12:35,139.645313,35.485196,45.00,1011.4819,-1.244985,-0.076614,9.730036,9.809661
2611 2016-08-10 20:12:35,139.645583,35.485258,45.00,1011.4377,-1.091756,-0.153229,9.739613,9.801809
2612 2016-08-10 20:12:36,139.645942,35.485303,44.00,1011.3513,-1.436521,0.239420,9.691729,9.800537
2613 2016-08-10 20:12:37,139.646254,35.485360,45.00,1011.4099,-1.695095,-0.248997,9.653421,9.804279
2614 2016-08-10 20:12:38,139.646513,35.485375,46.00,1011.3835,-1.561020,-0.134075,9.682152,9.808100
2615 2016-08-10 20:12:39,139.646877,35.485485,47.00,1011.3669,-1.465251,-0.028730,9.691729,9.801907
2616 2016-08-10 20:12:40,139.647195,35.485582,47.00,1011.3501,-1.426944,0.172383,9.701305,9.807202
2617 2016-08-10 20:12:41,139.647493,35.485620,47.00,1011.3025,-1.388637,-0.076614,9.710882,9.809965
2618 2016-08-10 20:12:42,139.647788,35.485669,45.00,1011.2847,-1.426944,0.095768,9.701305,9.806155
2619 2016-08-10 20:12:43,139.648080,35.485686,44.00,1011.2725,-1.388637,0.009577,9.710882,9.809671
2620 2016-08-10 20:12:44,139.648427,35.485668,45.00,1011.2498,-1.206678,0.383072,9.720459,9.802558
2621 2016-08-10 20:12:46,139.648734,35.485685,45.00,1011.2498,-1.379060,0.067038,9.710882,9.808544
2622 2016-08-10 20:12:46,139.648990,35.485650,45.00,1011.2163,-1.570596,-0.411803,9.672575,9.807908
2623 2016-08-10 20:12:47,139.649258,35.485626,47.00,1011.1987,-1.254562,-0.852336,9.682152,9.800228
2624 2016-08-10 20:12:49,139.649760,35.485614,49.00,1011.1934,-1.158794,-0.756568,9.710882,9.808997
2625 2016-08-10 20:12:51,139.650244,35.485608,52.00,1011.1660,-1.340753,-0.612916,9.691729,9.803208
2626 2016-08-10 20:12:52,139.650502,35.485643,54.00,1011.2253,-1.264138,-0.622492,9.701305,9.803105
2627 2016-08-10 20:12:53,139.650770,35.485683,56.00,1011.2747,-1.225831,-0.612916,9.710882,9.807118
2628 2016-08-10 20:12:54,139.650995,35.485704,54.00,1011.2478,-1.331176,-0.679953,9.691729,9.806323
2629 2016-08-10 20:12:55,139.651269,35.485766,54.00,1011.2805,-1.359907,-0.718261,9.682152,9.803535
2630 2016-08-10 20:12:56,139.651542,35.485811,53.00,1011.2939,-1.292869,-0.459687,9.710882,9.807347
2631 2016-08-10 20:12:57,139.651784,35.485864,53.00,1011.3379,-1.331176,-0.708684,9.691729,9.808357
2632 2016-08-10 20:12:58,139.652035,35.485913,53.00,1011.3687,-1.264138,-0.478840,9.710882,9.804518
2633 2016-08-10 20:12:59,139.652254,35.485970,53.00,1011.3755,-1.359907,-0.708684,9.682152,9.802838
2634 2016-08-10 20:13:01,139.652509,35.486041,50.00,1011.3848,-1.379060,-0.478840,9.691729,9.801056
2635 2016-08-10 20:13:03,139.653006,35.486166,51.00,1011.4104,-1.292869,-0.411803,9.710882,9.805219
2636 2016-08-10 20:13:03,139.653252,35.486266,52.00,1011.4009,-1.379060,-0.842759,9.672575,9.806669
2637 2016-08-10 20:13:04,139.653446,35.486340,52.00,1011.4070,-1.474828,-0.967257,9.643845,9.803797
2638 2016-08-10 20:13:05,139.653699,35.486499,53.00,1011.4155,-1.426944,-0.746991,9.672575,9.805757
2639 2016-08-10 20:13:06,139.653941,35.486713,53.00,1011.3672,-1.436521,-1.015141,9.643845,9.802951
2640 2016-08-10 20:13:07,139.654176,35.486817,53.00,1011.3767,-1.206678,-0.478840,9.720459,9.806767
2641 2016-08-10 20:13:08,139.654421,35.486949,52.00,1011.3474,-1.321599,-0.756568,9.682152,9.801178
2642 2016-08-10 20:13:09,139.654656,35.487054,52.00,1011.3501,-1.292869,-0.545878,9.701305,9.802286
2643 2016-08-10 20:13:10,139.654881,35.487181,52.00,1011.3662,-1.359907,-0.354342,9.701305,9.802562
2644 2016-08-10 20:13:11,139.655071,35.487381,53.00,1011.3628,-1.733402,-0.019154,9.653421,9.807833
2645 2016-08-10 20:13:12,139.655292,35.487567,53.00,1011.4092,-1.436521,-0.268151,9.691729,9.801281
2646 2016-08-10 20:13:14,139.655511,35.487725,53.00,1011.3845,-1.379060,-0.277727,9.701305,9.802768
2647 2016-08-10 20:13:14,139.655765,35.487883,53.00,1011.3596,-1.292869,-0.296881,9.710882,9.801065
2648 2016-08-10 20:13:15,139.656005,35.488025,53.00,1011.3516,-1.216254,-0.172383,9.730036,9.807272
2649 2016-08-10 20:13:16,139.656251,35.488169,53.00,1011.3972,-1.254562,-0.038307,9.720459,9.801159
2650 2016-08-10 20:13:19,139.656848,35.488496,52.00,1011.4548,-2.260126,0.565032,9.519346,9.800275
2651 2016-08-10 20:13:19,139.657114,35.488593,51.00,1011.3975,-2.221819,0.517148,9.538500,9.807492
2652 2016-08-10 20:13:20,139.657351,35.488717,51.00,1011.4043,-2.240973,0.651223,9.519346,9.801225
2653 2016-08-10 20:13:21,139.657593,35.488821,52.00,1011.4104,-2.308010,0.526724,9.509769,9.800003
2654 2016-08-10 20:13:22,139.657816,35.488908,51.00,1011.3708,-2.327164,0.517148,9.509769,9.804022
2655 2016-08-10 20:13:23,139.658018,35.488988,51.00,1011.3804,-2.231396,0.421380,9.538500,9.805084
2656 2016-08-10 20:13:24,139.658255,35.489137,52.00,1011.4219,-2.068590,0.545878,9.567230,9.803517
2657 2016-08-10 20:13:25,139.658495,35.489268,52.00,1011.4663,-1.666364,-0.239420,9.662998,9.808549
2658 2016-08-10 20:13:26,139.658743,35.489424,52.00,1011.4746,-1.331176,-0.459687,9.701305,9.802993
2659 2016-08-10 20:13:27,139.659054,35.489548,52.00,1011.4353,-1.513135,-0.019154,9.691729,9.809156
2660 2016-08-10 20:13:28,139.659267,35.489633,52.00,1011.5024,-1.225831,-0.124498,9.730036,9.807740
2661 2016-08-10 20:13:30,139.659801,35.489923,51.00,1011.4890,-1.225831,-0.028730,9.730036,9.806992
2662 2016-08-10 20:13:31,139.660065,35.490063,51.00,1011.5261,-1.407791,-0.258574,9.701305,9.806328
2663 2016-08-10 20:13:33,139.660374,35.490229,51.00,1011.5566,-1.551443,-0.555455,9.662998,9.802502
2664 2016-08-10 20:13:33,139.660638,35.490373,51.00,1011.5784,-1.522712,-0.622492,9.662998,9.802024
2665 2016-08-10 20:13:34,139.660867,35.490518,51.00,1011.6240,-1.417367,-0.335188,9.701305,9.810026
2666 2016-08-10 20:13:35,139.661138,35.490716,54.00,1011.6279,-1.656788,-0.823605,9.624691,9.800916
2667 2016-08-10 20:13:36,139.661350,35.490890,55.00,1011.6218,-1.369483,-0.277727,9.701305,9.801426
2668 2016-08-10 20:13:37,139.661569,35.491035,55.00,1011.6560,-1.647211,-0.823605,9.634268,9.808708
2669 2016-08-10 20:13:40,139.662014,35.491366,53.00,1011.6528,-1.618480,-0.143652,9.672575,9.808100
2670 2016-08-10 20:13:40,139.662219,35.491544,53.00,1011.6650,-1.934515,0.287304,9.605537,9.802614
2671 2016-08-10 20:13:41,139.662390,35.491731,53.00,1011.7295,-1.331176,-0.670376,9.691729,9.805664
2672 2016-08-10 20:13:42,139.662724,35.492129,53.00,1011.7192,-1.829170,0.220267,9.634268,9.808848
2673 2016-08-10 20:13:43,139.662940,35.492318,53.00,1011.7122,-1.752556,-0.210690,9.643845,9.804059
2674 2016-08-10 20:13:46,139.663271,35.492698,55.00,1011.7249,-1.762132,-0.162806,9.643845,9.804864
2675 2016-08-10 20:13:47,139.663613,35.493016,54.00,1011.7458,-1.733402,0.114922,9.653421,9.808488
2676 2016-08-10 20:13:48,139.663831,35.493173,56.00,1011.7222,-1.704672,0.220267,9.653421,9.805252
2677 2016-08-10 20:13:50,139.664240,35.493554,57.00,1011.6899,-1.905785,-0.210690,9.615114,9.804429
2678 2016-08-10 20:13:53,139.664611,35.493948,58.00,1011.6685,-1.714248,-0.009577,9.653421,9.804452
2679 2016-08-10 20:13:53,139.664826,35.494116,55.00,1011.6826,-1.723825,-0.057461,9.653421,9.806295
2680 2016-08-10 20:13:54,139.665080,35.494269,56.00,1011.7217,-1.675941,0.000000,9.662998,9.807258
2681 2016-08-10 20:13:55,139.665321,35.494486,54.00,1011.6868,-1.800440,-0.047884,9.634268,9.801173
2682 2016-08-10 20:13:57,139.665535,35.494651,54.00,1011.7024,-1.130063,-0.172383,9.739613,9.806468
2683 2016-08-10 20:13:58,139.665748,35.494810,55.00,1011.7151,-1.465251,-0.469264,9.682152,9.803634
2684 2016-08-10 20:13:58,139.665935,35.494953,56.00,1011.7446,-1.283292,-0.248997,9.720459,9.807964
2685 2016-08-10 20:13:59,139.666145,35.495121,56.00,1011.7046,-1.264138,0.009577,9.720459,9.802319
2686 2016-08-10 20:14:00,139.666370,35.495316,55.00,1011.7092,-1.398214,-0.612916,9.682152,9.801772
2687 2016-08-10 20:14:01,139.666578,35.495511,56.00,1011.7241,-1.474828,0.000000,9.691729,9.803302
2688 2016-08-10 20:14:03,139.666784,35.495681,55.00,1011.7622,-1.436521,-0.057461,9.701305,9.807253
2689 2016-08-10 20:14:04,139.666999,35.495857,54.00,1011.7266,-1.647211,-0.124498,9.662998,9.803180
2690 2016-08-10 20:14:04,139.667224,35.496023,55.00,1011.7251,-1.647211,-0.316035,9.662998,9.807483
2691 2016-08-10 20:14:05,139.667443,35.496198,55.00,1011.7458,-1.522712,-0.229843,9.682152,9.803854
2692 2016-08-10 20:14:06,139.667655,35.496369,55.00,1011.7825,-1.522712,-0.220267,9.682152,9.803634
2693 2016-08-10 20:14:07,139.667880,35.496554,55.00,1011.7627,-1.283292,-0.450110,9.710882,9.805645
2694 2016-08-10 20:14:08,139.668065,35.496689,54.00,1011.7466,-1.292869,-0.507571,9.701305,9.800228
2695 2016-08-10 20:14:10,139.668238,35.496890,53.00,1011.7231,-1.359907,-0.545878,9.691729,9.801884
2696 2016-08-10 20:14:10,139.668432,35.497065,52.00,1011.7346,-1.359907,-0.411803,9.701305,9.804808
2697 2016-08-10 20:14:11,139.668645,35.497235,51.00,1011.7285,-1.283292,-0.545878,9.701305,9.801028
2698 2016-08-10 20:14:14,139.669058,35.497547,53.00,1011.7090,-1.273715,-0.565032,9.701305,9.800864
2699 2016-08-10 20:14:15,139.669280,35.497736,51.00,1011.7463,-1.244985,-0.181959,9.720459,9.801552
2700 2016-08-10 20:14:15,139.669509,35.497943,52.00,1011.7266,-1.244985,-0.392649,9.720459,9.807726
2701 2016-08-10 20:14:16,139.669733,35.498129,53.00,1011.7256,-1.350330,-0.574608,9.691729,9.802202
2702 2016-08-10 20:14:17,139.669936,35.498308,53.00,1011.7083,-1.302446,-0.555455,9.701305,9.804092
2703 2016-08-10 20:14:20,139.670304,35.498675,53.00,1011.7642,-1.024718,0.047884,9.749189,9.803011
2704 2016-08-10 20:14:21,139.670544,35.498916,51.00,1011.7458,-1.273715,-0.555455,9.701305,9.800317
2705 2016-08-10 20:14:21,139.670780,35.499098,50.00,1011.7554,-1.388637,-0.766145,9.672575,9.801734
2706 2016-08-10 20:14:22,139.671013,35.499264,50.00,1011.7490,-1.216254,-0.593762,9.710882,9.804747
2707 2016-08-10 20:14:23,139.671212,35.499442,49.00,1011.7214,-1.273715,-0.507571,9.710882,9.807202
2708 2016-08-10 20:14:24,139.671423,35.499623,49.00,1011.7229,-1.101333,-0.354342,9.739613,9.808086
2709 2016-08-10 20:14:26,139.671628,35.499785,49.00,1011.7156,-1.082179,-0.478840,9.730036,9.801734
2710 2016-08-10 20:14:27,139.671837,35.499958,49.00,1011.6750,-0.890643,-0.392649,9.758766,9.807188
2711 2016-08-10 20:14:28,139.672027,35.500128,50.00,1011.7175,-2.212242,0.651223,9.528923,9.804003
2712 2016-08-10 20:14:29,139.672256,35.500275,49.00,1011.7346,-1.953669,-0.124498,9.605537,9.802993
2713 2016-08-10 20:14:29,139.672458,35.500453,50.00,1011.7346,-2.413355,0.402226,9.490616,9.800911
2714 2016-08-10 20:14:30,139.672680,35.500664,50.00,1011.6963,-2.154782,0.162806,9.567230,9.808235
2715 2016-08-10 20:14:32,139.672891,35.500838,50.00,1011.6470,-2.116474,0.306458,9.567230,9.803330
2716 2016-08-10 20:14:34,139.673340,35.501214,49.00,1011.6443,-2.106898,0.469264,9.567230,9.807707
2717 2016-08-10 20:14:34,139.673499,35.501345,51.00,1011.6770,-2.039860,0.277727,9.586384,9.804943
2718 2016-08-10 20:14:36,139.673644,35.501529,48.00,1011.6182,-2.250550,0.239420,9.538500,9.803330
2719 2016-08-10 20:14:36,139.673814,35.501729,49.00,1011.5767,-2.269703,0.229843,9.538500,9.807515
2720 2016-08-10 20:14:37,139.673998,35.501938,48.00,1011.5657,-2.346318,0.086191,9.519346,9.804621
2721 2016-08-10 20:14:39,139.674173,35.502141,47.00,1011.5591,-2.279280,0.076614,9.538500,9.807342
2722 2016-08-10 20:14:40,139.674334,35.502364,47.00,1011.5286,-2.279280,0.277727,9.528923,9.801664
2723 2016-08-10 20:14:40,139.674493,35.502559,47.00,1011.5286,-2.336741,0.134075,9.519346,9.802871
2724 2016-08-10 20:14:41,139.674626,35.502801,47.00,1011.5432,-2.308010,0.210690,9.528923,9.806716
2725 2016-08-10 20:14:42,139.674766,35.503010,47.00,1011.5203,-2.288857,0.153229,9.528923,9.801159
2726 2016-08-10 20:14:43,139.674891,35.503207,47.00,1011.5261,-2.221819,0.210690,9.548077,9.805439
2727 2016-08-10 20:14:44,139.675010,35.503444,46.00,1011.5876,-2.298434,0.124498,9.528923,9.802993
2728 2016-08-10 20:14:46,139.675116,35.503655,46.00,1011.5649,-2.250550,0.287304,9.538500,9.804616
2729 2016-08-10 20:14:46,139.675204,35.503875,46.00,1011.5381,-2.202666,0.172383,9.548077,9.800368
2730 2016-08-10 20:14:47,139.675284,35.504057,46.00,1011.5081,-2.202666,0.172383,9.548077,9.800368
2731 2016-08-10 20:14:48,139.675329,35.504202,46.00,1011.4866,-2.279280,0.220267,9.528923,9.800205
2732 2016-08-10 20:14:51,139.675478,35.504689,45.00,1011.4529,-2.537854,-0.191536,9.471462,9.807445
2733 2016-08-10 20:14:52,139.675607,35.505147,44.00,1011.4368,-2.451663,-0.038307,9.490616,9.802240
2734 2016-08-10 20:14:54,139.675655,35.505361,44.00,1011.3965,-1.379060,0.047884,9.710882,9.808432
2735 2016-08-10 20:14:56,139.675746,35.505827,44.00,1011.3809,-1.417367,-0.038307,9.701305,9.804373
2736 2016-08-10 20:14:57,139.675784,35.505988,44.00,1011.4275,-1.484405,-0.239420,9.691729,9.807670
2737 2016-08-10 20:14:57,139.675831,35.506214,45.00,1011.3721,-1.417367,-0.277727,9.701305,9.808231
2738 2016-08-10 20:14:58,139.675883,35.506418,44.00,1011.4041,-1.474828,-0.124498,9.691729,9.804092
2739 2016-08-10 20:14:59,139.675927,35.506637,44.00,1011.3811,-1.379060,-0.153229,9.701305,9.800031
2740 2016-08-10 20:15:00,139.675976,35.506864,43.00,1011.3455,-1.465251,-0.191536,9.691729,9.803737
2741 2016-08-10 20:15:01,139.676030,35.507103,43.00,1011.3835,-1.455675,-0.220267,9.691729,9.802913
2742 2016-08-10 20:15:02,139.676085,35.507316,44.00,1011.3740,-1.350330,-0.105345,9.710882,9.804883
2743 2016-08-10 20:15:03,139.676138,35.507539,43.00,1011.3789,-1.359907,-0.191536,9.710882,9.807511
2744 2016-08-10 20:15:04,139.676191,35.507766,43.00,1011.4001,-1.379060,-0.076614,9.710882,9.808614
2745 2016-08-10 20:15:05,139.676241,35.507982,43.00,1011.3706,-1.158794,-0.105345,9.739613,9.808871
2746 2016-08-10 20:15:06,139.676295,35.508205,43.00,1011.3496,-1.790863,0.047884,9.643845,9.808834
2747 2016-08-10 20:15:07,139.676333,35.508423,43.00,1011.4333,-1.781286,0.296881,9.634268,9.802053
2748 2016-08-10 20:15:09,139.676432,35.508798,42.00,1011.4058,-1.733402,0.325611,9.643845,9.803797
2749 2016-08-10 20:15:10,139.676490,35.509006,42.00,1011.4617,-1.781286,0.172383,9.643845,9.808488
2750 2016-08-10 20:15:11,139.676568,35.509312,40.00,1011.4985,-1.742979,0.124498,9.643845,9.800878
2751 2016-08-10 20:15:12,139.676609,35.509551,41.00,1011.4985,-1.762132,0.191536,9.643845,9.805383
2752 2016-08-10 20:15:13,139.676642,35.509775,40.00,1011.5005,-1.867477,0.086191,9.624691,9.804569
2753 2016-08-10 20:15:15,139.676699,35.509985,40.00,1011.4900,-1.848324,0.162806,9.624691,9.801912
2754 2016-08-10 20:15:16,139.676762,35.510205,39.00,1011.5103,-1.800440,0.124498,9.634268,9.801847
2755 2016-08-10 20:15:16,139.676817,35.510436,39.00,1011.5061,-1.762132,0.306458,9.643845,9.808301
2756 2016-08-10 20:15:17,139.676850,35.510651,38.00,1011.5022,-1.953669,-0.143652,9.605537,9.803255
2757 2016-08-10 20:15:18,139.676883,35.510873,38.00,1011.5215,-2.068590,-0.181959,9.586384,9.808717
2758 2016-08-10 20:15:19,139.676939,35.511025,38.00,1011.5801,-1.944092,-0.095768,9.605537,9.800766
2759 2016-08-10 20:15:20,139.676997,35.511166,38.00,1011.5337,-1.800440,0.239420,9.634268,9.803980
2760 2016-08-10 20:15:21,139.677049,35.511418,39.00,1011.5151,-1.800440,0.028730,9.634268,9.801098
2761 2016-08-10 20:15:22,139.677148,35.511639,39.00,1011.5105,-1.656788,0.517148,9.653421,9.808207
2762 2016-08-10 20:15:23,139.677213,35.511828,39.00,1011.4507,-1.714248,0.383072,9.643845,9.802506
2763 2016-08-10 20:15:24,139.677280,35.512121,40.00,1011.4619,-1.800440,0.277727,9.634268,9.804990
2764 2016-08-10 20:15:26,139.677366,35.512349,41.00,1011.4822,-1.838747,0.153229,9.634268,9.809362
2765 2016-08-10 20:15:26,139.677442,35.512530,42.00,1011.4922,-1.800440,0.114922,9.634268,9.801730
2766 2016-08-10 20:15:27,139.677512,35.512741,42.00,1011.4841,-1.848324,0.000000,9.624691,9.800560
2767 2016-08-10 20:15:29,139.677578,35.512965,41.00,1011.4521,-2.106898,-0.248997,9.576807,9.808988
2768 2016-08-10 20:15:31,139.677803,35.513361,40.00,1011.4463,-2.030283,-0.306458,9.586384,9.803812
2769 2016-08-10 20:15:31,139.677879,35.513573,40.00,1011.4539,-1.915361,0.076614,9.615114,9.804331
2770 2016-08-10 20:15:33,139.677973,35.513774,38.00,1011.5037,-1.944092,0.076614,9.615114,9.809984
2771 2016-08-10 20:15:33,139.678098,35.513942,37.00,1011.4792,-1.752556,0.402226,9.634268,9.800630
2772 2016-08-10 20:15:37,139.678433,35.514546,39.00,1011.5190,-1.848324,0.009577,9.624691,9.800565
2773 2016-08-10 20:15:37,139.678542,35.514733,39.00,1011.4966,-1.848324,0.009577,9.624691,9.800565
2774 2016-08-10 20:15:38,139.678650,35.514925,39.00,1011.4773,-1.790863,0.162806,9.634268,9.800654
2775 2016-08-10 20:15:39,139.678754,35.515128,40.00,1011.4702,-1.857901,0.095768,9.624691,9.802839
2776 2016-08-10 20:15:41,139.678856,35.515291,41.00,1011.4600,-1.848324,0.076614,9.624691,9.800860
2777 2016-08-10 20:15:41,139.678984,35.515495,40.00,1011.4478,-1.819593,-0.009577,9.634268,9.804597
2778 2016-08-10 20:15:42,139.679089,35.515680,40.00,1011.4568,-1.790863,0.162806,9.634268,9.800654
2779 2016-08-10 20:15:43,139.679214,35.515862,41.00,1011.4805,-1.924938,-0.105345,9.615114,9.806473
2780 2016-08-10 20:15:44,139.679332,35.516065,40.00,1011.4993,-2.030283,-0.162806,9.586384,9.800373
2781 2016-08-10 20:15:45,139.679450,35.516270,40.00,1011.5081,-1.982399,-0.210690,9.595961,9.800855
2782 2016-08-10 20:15:46,139.679576,35.516458,40.00,1011.5347,-1.934515,0.067038,9.615114,9.808020
2783 2016-08-10 20:15:48,139.679720,35.516647,39.00,1011.5757,-1.867477,0.306458,9.624691,9.808979
2784 2016-08-10 20:15:48,139.679876,35.516814,39.00,1011.5647,-1.848324,0.316035,9.624691,9.805654
2785 2016-08-10 20:15:50,139.680022,35.516977,38.00,1011.6179,-1.867477,0.306458,9.624691,9.808979
2786 2016-08-10 20:15:52,139.680514,35.517497,39.00,1011.6851,-1.647211,0.478840,9.653421,9.804649
2787 2016-08-10 20:15:53,139.680696,35.517649,40.00,1011.7190,-1.714248,0.392649,9.643845,9.802885
2788 2016-08-10 20:15:54,139.680866,35.517810,41.00,1011.7290,-1.733402,0.363919,9.643845,9.805144
2789 2016-08-10 20:15:55,139.681050,35.517961,41.00,1011.7512,-1.819593,0.057461,9.634268,9.804761
2790 2016-08-10 20:15:56,139.681228,35.518118,41.00,1011.7820,-1.953669,0.172383,9.605537,9.803718
2791 2016-08-10 20:15:57,139.681401,35.518286,41.00,1011.8308,-2.106898,-0.019154,9.576807,9.805846
2792 2016-08-10 20:15:58,139.681587,35.518451,41.00,1011.8179,-1.963245,0.134075,9.605537,9.805032
2793 2016-08-10 20:15:59,139.681744,35.518599,41.00,1011.8623,-1.857901,0.268151,9.624691,9.806038
2794 2016-08-10 20:16:00,139.681917,35.518760,42.00,1011.8035,-1.762132,0.344765,9.634268,9.800158
2795 2016-08-10 20:16:01,139.682119,35.518927,41.00,1011.8157,-1.972822,-0.086191,9.605537,9.806417
2796 2016-08-10 20:16:02,139.682313,35.519071,41.00,1011.8035,-2.126051,-0.134075,9.567230,9.801529
2797 2016-08-10 20:16:04,139.682517,35.519238,40.00,1011.7961,-1.944092,0.028730,9.605537,9.800340
2798 2016-08-10 20:16:05,139.682690,35.519415,40.00,1011.7556,-2.212242,-0.497994,9.538500,9.804335
2799 2016-08-10 20:16:05,139.682847,35.519571,39.00,1011.7441,-2.011129,-0.201113,9.595961,9.806505
2800 2016-08-10 20:16:07,139.683017,35.519728,38.00,1011.7551,-1.800440,0.277727,9.634268,9.804990
2801 2016-08-10 20:16:07,139.683201,35.519883,38.00,1011.7551,-1.704672,0.325611,9.653421,9.808184
2802 2016-08-10 20:16:09,139.683376,35.520020,38.00,1011.7461,-1.733402,-0.258574,9.643845,9.801800
2803 2016-08-10 20:16:09,139.683552,35.520162,37.00,1011.7522,-1.589750,-0.181959,9.672575,9.804036
2804 2016-08-10 20:16:11,139.683721,35.520309,38.00,1011.7490,-2.001553,0.009577,9.595961,9.802488
2805 2016-08-10 20:16:11,139.683896,35.520451,38.00,1011.7500,-1.896208,0.000000,9.615114,9.800307
2806 2016-08-10 20:16:13,139.684078,35.520594,38.00,1011.7534,-1.886631,0.067038,9.624691,9.808086
2807 2016-08-10 20:16:14,139.684240,35.520723,39.00,1011.7559,-1.762132,0.000000,9.643845,9.803512
2808 2016-08-10 20:16:14,139.684446,35.520881,38.00,1011.7480,-1.800440,0.143652,9.634268,9.802109
2809 2016-08-10 20:16:16,139.684626,35.521037,39.00,1011.7485,-1.857901,-0.095768,9.624691,9.802839
2810 2016-08-10 20:16:17,139.684804,35.521181,38.00,1011.7493,-1.838747,0.038307,9.634268,9.808240
2811 2016-08-10 20:16:19,139.685178,35.521467,41.00,1011.7825,-1.848324,0.105345,9.624691,9.801126
2812 2016-08-10 20:16:19,139.685368,35.521630,41.00,1011.7825,-1.848324,0.153229,9.624691,9.801758
2813 2016-08-10 20:16:20,139.685538,35.521775,41.00,1011.7742,-1.877054,0.047884,9.624691,9.806136
2814 2016-08-10 20:16:21,139.685717,35.521916,41.00,1011.7717,-1.800440,0.191536,9.634268,9.802927
2815 2016-08-10 20:16:22,139.685906,35.522066,41.00,1011.7268,-1.838747,0.105345,9.634268,9.808731
2816 2016-08-10 20:16:23,139.686077,35.522211,41.00,1011.7292,-1.790863,0.258574,9.634268,9.802712
2817 2016-08-10 20:16:24,139.686263,35.522367,41.00,1011.7380,-1.810017,0.105345,9.634268,9.803386
2818 2016-08-10 20:16:25,139.686428,35.522518,41.00,1011.8132,-1.810017,0.162806,9.634268,9.804172
2819 2016-08-10 20:16:26,139.686610,35.522659,41.00,1011.8174,-1.790863,0.248997,9.634268,9.802464
2820 2016-08-10 20:16:27,139.686775,35.522810,41.00,1011.8271,-1.723825,-0.612916,9.634268,9.806445
2821 2016-08-10 20:16:28,139.686958,35.522933,41.00,1011.8137,-1.915361,0.114922,9.615114,9.804705
2822 2016-08-10 20:16:29,139.687155,35.523112,42.00,1011.7771,-1.867477,0.076614,9.624691,9.804490
2823 2016-08-10 20:16:31,139.687332,35.523269,42.00,1011.7793,-1.714248,0.469264,9.643845,9.806253
2824 2016-08-10 20:16:32,139.687520,35.523428,43.00,1011.8242,-1.723825,0.440533,9.643845,9.806599
2825 2016-08-10 20:16:32,139.687674,35.523560,43.00,1011.7942,-1.647211,0.785298,9.634268,9.805565
2826 2016-08-10 20:16:34,139.687832,35.523730,41.00,1011.7671,-1.733402,0.507571,9.634268,9.802113
2827 2016-08-10 20:16:34,139.688010,35.523912,40.00,1011.7876,-1.991976,-0.220267,9.595961,9.803007
2828 2016-08-10 20:16:36,139.688177,35.524067,42.00,1011.7700,-1.896208,-0.009577,9.615114,9.800312
2829 2016-08-10 20:16:36,139.688366,35.524208,42.00,1011.7517,-1.905785,-0.028730,9.615114,9.802207
2830 2016-08-10 20:16:37,139.688527,35.524351,41.00,1011.7046,-1.666364,0.000000,9.662998,9.805626
2831 2016-08-10 20:16:38,139.688696,35.524492,41.00,1011.7061,-1.810017,0.019154,9.634268,9.802839
2832 2016-08-10 20:16:39,139.688863,35.524616,41.00,1011.6426,-1.561020,-0.191536,9.682152,9.809054
2833 2016-08-10 20:16:40,139.689051,35.524757,41.00,1011.6465,-1.522712,-0.277727,9.682152,9.805093
2834 2016-08-10 20:16:41,139.689229,35.524897,40.00,1011.7056,-1.608904,-0.306458,9.662998,9.800817
2835 2016-08-10 20:16:43,139.689417,35.525041,40.00,1011.6797,-1.541866,-0.459687,9.672575,9.805477
2836 2016-08-10 20:16:44,139.689779,35.525329,39.00,1011.6687,-1.580173,-0.201113,9.672575,9.802862
2837 2016-08-10 20:16:45,139.689958,35.525471,39.00,1011.6709,-1.800440,0.450110,9.624691,9.801982
2838 2016-08-10 20:16:47,139.690132,35.525619,39.00,1011.7197,-1.570596,0.000000,9.682152,9.808712
2839 2016-08-10 20:16:47,139.690322,35.525789,39.00,1011.5222,0.076614,5.669470,7.996634,9.802801
2840 2016-08-10 20:16:49,139.690508,35.525938,39.00,1011.5488,4.960786,3.600879,7.651869,9.804429
2841 2016-08-10 20:16:49,139.690715,35.526010,38.00,1011.5525,5.506664,2.758120,7.632715,9.807595
2842 2016-08-10 20:16:50,139.690850,35.526118,41.00,1011.5830,5.612009,3.236961,7.354988,9.801449
2843 2016-08-10 20:16:52,139.691038,35.526288,40.00,1011.5532,7.096414,3.677494,5.679047,9.804826
2844 2016-08-10 20:16:53,139.691179,35.526404,40.00,1011.6450,6.569689,2.413355,6.866570,9.804840
2845 2016-08-10 20:16:54,139.691304,35.526517,36.00,1011.5967,6.215348,0.919373,7.527370,9.804953
2846 2016-08-10 20:16:55,139.691469,35.526654,36.00,1011.7361,4.434062,-2.719813,8.312668,9.806056
2847 2016-08-10 20:16:56,139.691640,35.526826,35.00,1011.6829,3.256114,-2.221819,8.983045,9.809885
2848 2016-08-10 20:16:57,139.691814,35.526976,35.00,1011.7219,3.303998,-2.422932,8.906430,9.803647
2849 2016-08-10 20:16:57,139.691981,35.527123,35.00,1011.7117,3.342306,-2.537854,8.858546,9.802324
2850 2016-08-10 20:16:58,139.692157,35.527271,35.00,1011.6838,3.409343,-2.557007,8.829816,9.804466
2851 2016-08-10 20:16:59,139.692328,35.527397,35.00,1011.6821,3.428497,-2.528277,8.829816,9.803694
2852 2016-08-10 20:17:00,139.692458,35.527519,35.00,1011.6951,3.150769,-2.758120,8.868123,9.807048
2853 2016-08-10 20:17:02,139.692622,35.527657,35.00,1011.6763,3.543418,-2.097321,8.896853,9.803498
2854 2016-08-10 20:17:03,139.692786,35.527796,35.00,1011.6917,3.284845,-2.901772,8.772355,9.806360
2855 2016-08-10 20:17:03,139.692947,35.527919,35.00,1011.6799,3.476381,-2.825158,8.714894,9.798782
2856 2016-08-10 20:17:06,139.693277,35.528102,35.00,1011.6423,3.562572,-2.758120,8.705317,9.802127
2857 2016-08-10 20:17:07,139.693443,35.528290,35.00,1011.6694,3.524265,-2.873042,8.686164,9.804298
2858 2016-08-10 20:17:08,139.693608,35.528419,35.00,1011.6328,3.696647,-2.825158,8.628703,9.803124
2859 2016-08-10 20:17:10,139.693935,35.528676,35.00,1011.6733,3.572149,-2.863465,8.667010,9.801875
2860 2016-08-10 20:17:10,139.694071,35.528840,35.00,1011.7068,3.332729,-2.777274,8.791509,9.803620
2861 2016-08-10 20:17:12,139.694231,35.528972,35.00,1011.7024,3.562572,-2.595315,8.762778,9.808867
2862 2016-08-10 20:17:13,139.694392,35.529103,35.00,1011.7097,3.505111,-2.652776,8.762778,9.803535
2863 2016-08-10 20:17:21,139.695491,35.530043,36.00,1011.4495,6.684611,4.759673,5.372589,9.808324
2864 2016-08-10 20:17:22,139.695616,35.530250,37.00,1011.4280,4.146757,8.705317,1.781286,9.805668
2865 2016-08-10 20:17:23,139.695764,35.530352,37.00,1011.5583,4.223372,8.762778,1.264138,9.809241
2866 2016-08-10 20:17:25,139.695829,35.530185,38.00,1011.5566,4.606444,8.293514,2.509123,9.813124
2867 2016-08-10 20:17:26,139.695914,35.530323,38.00,1011.5569,4.156334,8.513782,2.537854,9.808175
2868 2016-08-10 20:17:27,139.696005,35.530399,37.00,1011.4688,4.826711,8.418014,1.417367,9.806580
2869 2016-08-10 20:17:28,139.696074,35.530485,37.00,1011.5049,4.137180,8.772355,1.455675,9.807623
2870 2016-08-10 20:17:31,139.696219,35.530627,38.00,1011.5200,4.280833,8.772355,0.967257,9.808941
2871 2016-08-10 20:17:32,139.696313,35.530694,38.00,1011.5200,3.782839,8.925584,1.493982,9.808562
2872 2016-08-10 20:17:33,139.696393,35.530786,38.00,1011.5300,4.156334,8.810662,1.149217,9.809362
2873 2016-08-10 20:17:35,139.696557,35.530989,37.00,1011.5054,4.022259,8.868123,1.130063,9.803021
2874 2016-08-10 20:17:36,139.696751,35.531069,36.00,1011.4578,4.261679,8.781932,0.890643,9.801912
2875 2016-08-10 20:17:37,139.696824,35.531147,36.00,1011.4729,4.185065,8.820239,0.881066,9.802431
2876 2016-08-10 20:17:39,139.696954,35.531267,36.00,1011.4312,4.357447,8.724471,1.072602,9.810923
2877 2016-08-10 20:17:41,139.697094,35.531379,36.00,1011.6062,3.399766,9.184157,0.555455,9.808960
2878 2016-08-10 20:17:43,139.697220,35.531497,37.00,1011.3716,4.050989,8.896853,0.737414,9.803484
2879 2016-08-10 20:17:56,139.697355,35.531656,37.00,1011.4092,3.581726,9.030929,1.331176,9.806042
2880 2016-08-10 20:18:41,139.697285,35.531765,41.00,1011.3708,1.149217,9.270349,2.997540,9.810469
2881 2016-08-10 20:19:08,139.697280,35.531769,42.00,1011.3643,1.503559,8.523358,4.616021,9.808974
2882 2016-08-10 20:19:45,139.697137,35.531585,43.00,1010.6860,0.708684,9.653421,1.608904,9.812204
2883 2016-08-10 20:19:45,139.697052,35.531517,47.00,1010.7119,-0.545878,9.318233,3.016694,9.809582
2884 2016-08-10 20:19:50,139.696931,35.531418,54.00,1010.7405,-0.373495,9.433155,2.671929,9.811377
2885 2016-08-10 20:19:54,139.696876,35.531338,55.00,1010.8213,-0.248997,9.375694,2.873042,9.809180
2886 2016-08-10 20:20:25,139.696763,35.531354,43.00,1011.3193,0.038307,9.117120,3.620033,9.809586
2887 2016-08-10 20:20:28,139.696646,35.531326,34.00,1011.4102,0.622492,9.394848,2.748544,9.808423
2888 2016-08-10 20:20:37,139.696546,35.531286,42.00,1011.4180,0.057461,9.174581,3.457227,9.804522
2889 2016-08-10 20:20:40,139.696461,35.531211,51.00,1011.4368,-0.459687,9.385271,2.796427,9.803807
2890 2016-08-10 20:20:42,139.696438,35.531185,56.00,1011.4377,-1.742979,9.193734,2.920926,9.802782
2891 2016-08-10 20:20:51,139.696386,35.531104,72.00,1011.4202,-1.541866,9.222465,2.940080,9.801799
2892 2016-08-10 20:21:21,139.696264,35.530958,64.00,1011.4971,4.338294,8.647857,1.618480,9.809470
2893 2016-08-10 20:24:04,139.696279,35.530908,84.00,1011.4941,0.440533,9.787497,0.478840,9.809100
2894 2016-08-10 20:24:13,139.696340,35.530999,83.00,1011.4661,0.775721,9.730036,0.995988,9.811592
2895 2016-08-10 20:24:16,139.696425,35.531068,75.00,1011.4819,1.082179,9.720459,0.670376,9.803461
2896 2016-08-10 20:24:18,139.696521,35.531173,77.00,1011.4492,0.842759,9.739613,0.775721,9.806734
2897 2016-08-10 20:24:21,139.696609,35.531284,77.00,1011.4753,1.503559,9.634268,1.063026,9.808661
2898 2016-08-10 20:24:23,139.696654,35.531261,78.00,1011.5037,0.766145,9.777920,0.143652,9.808941
2899 2016-08-10 20:24:25,139.696942,35.531369,79.00,1011.5046,1.398214,9.682152,0.727837,9.809629
2900 2016-08-10 20:24:27,139.697033,35.531443,76.00,1011.5154,1.139640,9.710882,0.689530,9.801809
2901 2016-08-10 20:24:29,139.697150,35.531516,76.00,1011.5549,1.493982,9.682152,0.373495,9.803854
2902 2016-08-10 20:24:29,139.697593,35.531514,74.00,1011.6167,0.871489,9.768343,0.248997,9.810302
2903 2016-08-10 20:24:30,139.697803,35.531766,72.00,1011.6252,0.641646,9.768343,-0.651223,9.811031
2904 2016-08-10 20:24:31,139.698065,35.532255,60.00,1011.6196,-0.191536,9.768343,0.794875,9.802502
2905 2016-08-10 20:24:33,139.698212,35.532502,60.00,1011.6704,0.430956,9.701305,1.350330,9.804307
2906 2016-08-10 20:24:35,139.698504,35.532736,62.00,1011.6418,0.344765,9.758766,0.890643,9.805388
2907 2016-08-10 20:24:35,139.698673,35.532881,63.00,1011.6646,0.325611,9.777920,0.699107,9.808287
2908 2016-08-10 20:24:36,139.698845,35.533015,63.00,1011.6592,0.325611,9.758766,0.909797,9.806491
2909 2016-08-10 20:24:37,139.699025,35.533157,63.00,1011.6736,0.316035,9.777920,0.660800,9.805317
2910 2016-08-10 20:24:38,139.699202,35.533268,64.00,1011.6772,-0.172383,9.797073,0.354342,9.804995
2911 2016-08-10 20:24:39,139.699360,35.533390,65.00,1011.6589,0.459687,9.777920,0.545878,9.803928
2912 2016-08-10 20:24:40,139.699509,35.533508,67.00,1011.6289,0.344765,9.768343,0.746991,9.802927
2913 2016-08-10 20:24:41,139.699662,35.533663,65.00,1011.5615,0.354342,9.787497,0.450110,9.804246
2914 2016-08-10 20:24:42,139.699802,35.533789,66.00,1011.5508,0.124498,9.749189,1.053449,9.806730
2915 2016-08-10 20:24:45,139.700155,35.534073,67.00,1011.5725,0.316035,9.777920,0.718261,9.809357
2916 2016-08-10 20:24:47,139.700517,35.534348,67.00,1011.5261,0.201113,9.768343,0.823605,9.805065
2917 2016-08-10 20:24:48,139.700667,35.534476,68.00,1011.5005,0.114922,9.768343,0.861913,9.806968
2918 2016-08-10 20:24:48,139.700816,35.534600,68.00,1011.5076,0.296881,9.787497,0.488417,9.804171
2919 2016-08-10 20:24:49,139.700951,35.534751,68.00,1011.5256,0.067038,9.797073,0.430956,9.806776
2920 2016-08-10 20:24:51,139.701056,35.534926,69.00,1011.4712,0.239420,9.797073,0.258574,9.803409
2921 2016-08-10 20:24:52,139.701213,35.535088,69.00,1011.4500,0.488417,9.730036,1.101333,9.804340
2922 2016-08-10 20:24:54,139.701501,35.535413,70.00,1011.4021,0.430956,9.768343,0.727837,9.804896
2923 2016-08-10 20:24:54,139.701632,35.535588,71.00,1011.3750,0.201113,9.730036,1.235408,9.810213
2924 2016-08-10 20:24:55,139.701760,35.535790,72.00,1011.3123,0.612916,9.777920,-0.478840,9.808806
2925 2016-08-10 20:24:57,139.702008,35.535990,70.00,1011.2742,1.580173,9.682152,0.114922,9.810923
2926 2016-08-10 20:24:58,139.702251,35.536186,66.00,1011.2866,0.603339,9.777920,0.469264,9.807749
2927 2016-08-10 20:24:58,139.702472,35.536371,68.00,1011.2866,0.861913,9.768343,0.325611,9.811699
2928 2016-08-10 20:24:59,139.702663,35.536529,66.00,1011.2517,1.771709,9.615114,0.785298,9.808469
2929 2016-08-10 20:25:00,139.702856,35.536765,61.00,1011.2209,1.877054,9.576807,1.005565,9.810694
2930 2016-08-10 20:25:01,139.702987,35.536880,60.00,1011.1536,0.574608,9.777920,0.565032,9.811073
2931 2016-08-10 20:25:03,139.703236,35.537166,57.00,1011.1492,0.852336,9.672575,1.369483,9.806155
2932 2016-08-10 20:25:05,139.703566,35.537554,56.00,1011.0642,0.469264,9.730036,1.101333,9.803404
2933 2016-08-10 20:25:06,139.703707,35.537722,58.00,1011.1079,0.746991,9.730036,0.986411,9.808394
2934 2016-08-10 20:25:08,139.703993,35.538093,56.00,1011.0947,0.287304,9.797073,0.402226,9.809535
2935 2016-08-10 20:25:09,139.704162,35.538289,56.00,1011.0791,0.555455,9.768343,0.651223,9.805771
2936 2016-08-10 20:25:10,139.704314,35.538465,58.00,1011.0127,0.009577,9.806650,0.057461,9.806823
2937 2016-08-10 20:25:11,139.704491,35.538674,56.00,1011.0127,0.517148,9.777920,0.469264,9.802824
2938 2016-08-10 20:25:12,139.704640,35.538845,54.00,1011.0244,0.220267,9.797073,0.363919,9.806304
2939 2016-08-10 20:25:14,139.704801,35.539021,54.00,1011.0725,1.522712,9.682152,0.440533,9.811054
2940 2016-08-10 20:25:15,139.705184,35.539420,47.00,1011.0774,0.890643,9.768343,0.076614,9.809161
2941 2016-08-10 20:25:16,139.705362,35.539638,44.00,1011.0774,0.507571,9.777920,0.488417,9.803259
2942 2016-08-10 20:25:17,139.705540,35.539870,43.00,1011.0776,0.411803,9.797073,-0.181959,9.807412
2943 2016-08-10 20:25:18,139.705677,35.540039,43.00,1011.0581,0.517148,9.787497,0.325611,9.806557
2944 2016-08-10 20:25:19,139.705802,35.540210,44.00,1011.0059,0.593762,9.768343,0.660800,9.808656
2945 2016-08-10 20:25:20,139.705943,35.540378,44.00,1011.0132,0.641646,9.787497,0.201113,9.810568
2946 2016-08-10 20:25:21,139.706097,35.540566,43.00,1011.0256,0.814029,9.768343,-0.114922,9.802876
2947 2016-08-10 20:25:22,139.706218,35.540744,44.00,1011.0063,0.402226,9.797073,0.268151,9.808993
2948 2016-08-10 20:25:23,139.706296,35.540905,44.00,1010.9824,-0.114922,9.806650,0.191536,9.809194
2949 2016-08-10 20:25:24,139.706442,35.541083,44.00,1011.0864,1.331176,9.691729,0.679953,9.806323
2950 2016-08-10 20:25:25,139.706619,35.541290,44.00,1011.0710,0.488417,9.797073,0.105345,9.809806
2951 2016-08-10 20:25:26,139.706749,35.541444,45.00,1011.0859,0.660800,9.777920,0.363919,9.806978
2952 2016-08-10 20:25:27,139.706876,35.541640,45.00,1011.0398,0.574608,9.768343,0.593762,9.803227
2953 2016-08-10 20:25:28,139.707025,35.541852,46.00,1010.9915,0.928950,9.643845,1.532289,9.808904
2954 2016-08-10 20:25:29,139.707157,35.542029,46.00,1011.0598,0.622492,9.787497,0.210690,9.809535
2955 2016-08-10 20:25:30,139.707283,35.542220,47.00,1011.0330,0.411803,9.787497,-0.450110,9.806491
2956 2016-08-10 20:25:32,139.707402,35.542389,47.00,1011.1194,1.235408,9.672575,1.053449,9.807889
2957 2016-08-10 20:25:32,139.707527,35.542581,47.00,1011.1272,1.034295,9.739613,0.555455,9.810115
2958 2016-08-10 20:25:33,139.707635,35.542774,48.00,1011.0916,0.565032,9.787497,0.239420,9.806716
2959 2016-08-10 20:25:34,139.707735,35.542959,48.00,1011.0928,0.430956,9.777920,0.670376,9.810344
2960 2016-08-10 20:25:35,139.707837,35.543149,47.00,1011.1882,0.727837,9.768343,0.450110,9.805757
2961 2016-08-10 20:25:36,139.707935,35.543335,47.00,1011.2043,0.430956,9.797073,-0.124498,9.807338
2962 2016-08-10 20:25:37,139.708046,35.543547,47.00,1011.2546,0.143652,9.806650,0.047884,9.807819
2963 2016-08-10 20:25:38,139.708146,35.543771,47.00,1011.2585,0.488417,9.797073,0.201113,9.811302
2964 2016-08-10 20:25:39,139.708236,35.543961,46.00,1011.3096,0.976834,9.758766,0.124498,9.808324
2965 2016-08-10 20:25:40,139.708305,35.544169,47.00,1011.2959,-0.067038,9.806650,-0.287304,9.811087
2966 2016-08-10 20:25:41,139.708410,35.544373,48.00,1011.3342,0.699107,9.768343,0.469264,9.804564
2967 2016-08-10 20:25:42,139.708410,35.544466,0.00,1011.3628,0.814029,9.749189,0.622492,9.802899
2968 2016-08-10 20:25:42,139.708476,35.544568,49.00,1011.4153,0.861913,9.730036,0.842759,9.804424
2969 2016-08-10 20:25:43,139.708548,35.544766,48.00,1011.4348,0.497994,9.787497,0.354342,9.806561
2970 2016-08-10 20:25:44,139.708635,35.544969,48.00,1011.4373,0.612916,9.768343,0.593762,9.805547
2971 2016-08-10 20:25:45,139.708710,35.545168,49.00,1011.4058,0.363919,9.797073,-0.086191,9.804209
2972 2016-08-10 20:25:46,139.708797,35.545397,50.00,1011.4392,0.526724,9.787497,0.095768,9.802127
2973 2016-08-10 20:25:47,139.708850,35.545575,49.00,1011.4451,0.718261,9.777920,-0.028730,9.804307
2974 2016-08-10 20:25:48,139.708937,35.545782,49.00,1011.5396,0.660800,9.777920,0.316035,9.805317
2975 2016-08-10 20:25:51,139.709083,35.546195,50.00,1011.6179,0.344765,9.777920,-0.699107,9.808941
2976 2016-08-10 20:25:52,139.709233,35.546579,51.00,1011.6709,0.354342,9.797073,-0.134075,9.804396
2977 2016-08-10 20:25:54,139.709415,35.547019,51.00,1011.6299,0.718261,9.768343,0.440533,9.804616
2978 2016-08-10 20:25:55,139.709522,35.547194,49.00,1011.6323,0.421380,9.797073,0.287304,9.810339
2979 2016-08-10 20:25:56,139.709616,35.547393,49.00,1011.6577,0.478840,9.777920,0.536301,9.804317
2980 2016-08-10 20:25:57,139.709729,35.547623,49.00,1011.7195,0.201113,9.806650,-0.143652,9.809764
2981 2016-08-10 20:25:58,139.709819,35.547840,49.00,1011.7195,0.708684,9.777920,0.277727,9.807501
2982 2016-08-10 20:25:59,139.709901,35.548031,49.00,1011.6936,0.622492,9.787497,0.229843,9.809965
2983 2016-08-10 20:26:00,139.709999,35.548228,49.00,1011.6484,0.497994,9.777920,-0.478840,9.802296
2984 2016-08-10 20:26:02,139.710230,35.548630,52.00,1011.7195,0.421380,9.797073,-0.172383,9.807646
2985 2016-08-10 20:26:03,139.710318,35.548863,52.00,1011.6907,0.363919,9.797073,0.019154,9.803849
2986 2016-08-10 20:26:04,139.710364,35.549084,52.00,1011.6384,0.545878,9.777920,0.469264,9.804382
2987 2016-08-10 20:26:05,139.710448,35.549308,52.00,1011.6335,0.143652,9.797073,0.306458,9.802918
2988 2016-08-10 20:26:06,139.710533,35.549496,51.00,1011.6755,0.881066,9.768343,0.067038,9.808226
2989 2016-08-10 20:26:07,139.710607,35.549664,51.00,1011.6741,0.938527,9.758766,0.201113,9.805855
2990 2016-08-10 20:26:08,139.710667,35.549834,51.00,1011.6741,0.833182,9.758766,0.526724,9.808422
2991 2016-08-10 20:26:09,139.710782,35.550070,50.00,1011.7058,1.637634,9.643845,0.689530,9.806173
2992 2016-08-10 20:26:10,139.710875,35.550270,46.00,1011.7012,1.130063,9.701305,0.842759,9.803194
2993 2016-08-10 20:26:11,139.710967,35.550470,45.00,1011.6846,1.340753,9.672575,0.890643,9.805589
2994 2016-08-10 20:26:12,139.711067,35.550689,44.00,1011.6924,1.206678,9.653421,1.235408,9.806674
2995 2016-08-10 20:26:13,139.711150,35.550903,47.00,1011.6975,0.928950,9.749189,0.459687,9.804129
2996 2016-08-10 20:26:14,139.711231,35.551110,46.00,1011.6624,0.823605,9.730036,0.871489,9.803643
2997 2016-08-10 20:26:16,139.711392,35.551524,46.00,1011.6951,1.723825,9.653421,0.143652,9.807179
2998 2016-08-10 20:26:17,139.711450,35.551714,45.00,1011.6279,1.436521,9.634268,1.139640,9.807216
2999 2016-08-10 20:26:18,139.711527,35.551899,45.00,1011.6667,1.082179,9.720459,0.737414,9.808273
3000 2016-08-10 20:26:19,139.711620,35.552093,44.00,1011.7261,1.254562,9.701305,0.737414,9.809844
3001 2016-08-10 20:26:20,139.711722,35.552268,44.00,1011.6833,1.072602,9.701305,0.976834,9.809180
3002 2016-08-10 20:26:21,139.711783,35.552442,44.00,1011.6531,1.340753,9.653421,1.101333,9.808114
3003 2016-08-10 20:26:22,139.711856,35.552620,44.00,1011.6404,1.149217,9.710882,0.718261,9.804990
3004 2016-08-10 20:26:23,139.711928,35.552816,43.00,1011.6404,0.881066,9.749189,0.574608,9.805771
3005 2016-08-10 20:26:24,139.711991,35.553000,43.00,1011.6897,1.034295,9.749189,0.287304,9.808109
3006 2016-08-10 20:26:25,139.712048,35.553169,43.00,1011.5964,1.321599,9.701305,0.517148,9.804560
3007 2016-08-10 20:26:26,139.712110,35.553329,46.00,1011.5906,0.919373,9.758766,0.114922,9.802651
3008 2016-08-10 20:26:27,139.712186,35.553508,45.00,1011.6028,0.603339,9.787497,-0.229843,9.808768
3009 2016-08-10 20:26:28,139.712254,35.553671,45.00,1011.5884,1.187524,9.701305,0.842759,9.809984
3010 2016-08-10 20:26:30,139.712400,35.554010,43.00,1011.6147,0.967257,9.730036,0.727837,9.805046
3011 2016-08-10 20:26:33,139.712591,35.554472,46.00,1011.6143,1.005565,9.730036,0.727837,9.808899
3012 2016-08-10 20:26:34,139.712665,35.554632,45.00,1011.6106,0.584185,9.787497,0.229843,9.807609
3013 2016-08-10 20:26:35,139.712742,35.554795,46.00,1011.6106,0.517148,9.787497,0.134075,9.802066
3014 2016-08-10 20:26:36,139.712801,35.554957,46.00,1011.5620,0.746991,9.758766,0.545878,9.802525
3015 2016-08-10 20:26:39,139.713021,35.555423,46.00,1011.5757,0.450110,9.739613,1.024718,9.803708
3016 2016-08-10 20:26:40,139.713074,35.555559,47.00,1011.5498,0.651223,9.739613,0.928950,9.805462
3017 2016-08-10 20:26:44,139.713250,35.555994,47.00,1011.5049,0.852336,9.768343,0.287304,9.809666
3018 2016-08-10 20:26:45,139.713362,35.556239,47.00,1011.5325,0.277727,9.797073,-0.239420,9.803933
3019 2016-08-10 20:26:46,139.713427,35.556368,47.00,1011.5322,0.153229,9.797073,0.296881,9.802768
3020 2016-08-10 20:26:47,139.713495,35.556509,47.00,1011.5786,0.756568,9.749189,0.746991,9.806992
3021 2016-08-10 20:26:49,139.713535,35.556627,47.00,1011.5979,0.344765,9.797073,0.057461,9.803306
3022 2016-08-10 20:26:50,139.713571,35.556750,46.00,1011.5979,0.517148,9.787497,0.421380,9.810203
3023 2016-08-10 20:26:51,139.713589,35.556878,48.00,1011.5896,0.536301,9.777920,0.526724,9.806772
3024 2016-08-10 20:26:51,139.713659,35.556987,47.00,1011.5840,0.785298,9.739613,0.814029,9.805070
3025 2016-08-10 20:26:52,139.713704,35.557128,50.00,1011.5891,0.239420,9.806650,0.057461,9.809741
3026 2016-08-10 20:26:54,139.713816,35.557423,52.00,1011.5830,0.584185,9.787497,-0.220267,9.807389
3027 2016-08-10 20:26:56,139.713844,35.557538,52.00,1011.5740,0.804452,9.758766,0.574608,9.808712
3028 2016-08-10 20:26:57,139.713902,35.557655,54.00,1011.5195,1.771709,9.490616,1.695095,9.802249
3029 2016-08-10 20:26:59,139.714022,35.557925,53.00,1011.5791,2.614468,9.366117,1.244985,9.803550
3030 2016-08-10 20:26:59,139.714045,35.558067,53.00,1011.5798,1.350330,9.615114,1.369483,9.805575
3031 2016-08-10 20:27:00,139.714111,35.558207,54.00,1011.5898,0.909797,9.758766,0.306458,9.805874
3032 2016-08-10 20:27:01,139.714137,35.558332,51.00,1011.5793,0.603339,9.720459,1.139640,9.805617
3033 2016-08-10 20:27:03,139.714240,35.558639,52.00,1011.5520,0.306458,9.787497,0.555455,9.808034
3034 2016-08-10 20:27:04,139.714278,35.558766,51.00,1011.5054,0.536301,9.739613,0.976834,9.803157
3035 2016-08-10 20:27:05,139.714375,35.558901,51.00,1011.5491,0.478840,9.787497,0.335188,9.804934
3036 2016-08-10 20:27:06,139.714411,35.559023,51.00,1011.5620,1.130063,9.653421,1.273715,9.802446
3037 2016-08-10 20:27:08,139.714546,35.559288,52.00,1011.5471,0.507571,9.777920,0.488417,9.803259
3038 2016-08-10 20:27:10,139.714666,35.559538,53.00,1011.5193,0.995988,9.701305,1.063026,9.810063
3039 2016-08-10 20:27:12,139.714717,35.559739,52.00,1011.5342,0.928950,9.749189,0.555455,9.809086
3040 2016-08-10 20:27:14,139.714782,35.559963,53.00,1011.5295,1.043872,9.739613,0.440533,9.805294
3041 2016-08-10 20:27:15,139.714851,35.560089,54.00,1011.5132,1.130063,9.710882,0.794875,9.808675
3042 2016-08-10 20:27:16,139.714864,35.560211,54.00,1011.4968,1.187524,9.701305,0.804452,9.806767
3043 2016-08-10 20:27:17,139.714904,35.560340,55.00,1011.4688,0.871489,9.768343,-0.057461,9.807310
3044 2016-08-10 20:27:18,139.714926,35.560441,55.00,1011.4810,1.532289,9.682152,0.047884,9.802768
3045 2016-08-10 20:27:19,139.714971,35.560542,55.00,1011.4917,1.053449,9.739613,0.469264,9.807651
3046 2016-08-10 20:27:20,139.715032,35.560630,55.00,1011.5090,1.369483,9.701305,0.383072,9.804976
3047 2016-08-10 20:27:22,139.715086,35.560807,57.00,1011.4983,1.379060,9.710882,-0.067038,9.808544
3048 2016-08-10 20:27:23,139.715140,35.560889,58.00,1011.5100,1.589750,9.672575,-0.143652,9.803400
3049 2016-08-10 20:27:25,139.715232,35.561047,61.00,1011.5073,1.513135,9.682152,0.287304,9.803886
3050 2016-08-10 20:27:27,139.715265,35.561169,65.00,1011.5022,1.216254,9.682152,0.986411,9.807974
3051 2016-08-10 20:27:31,139.715390,35.561341,57.00,1011.5186,0.938527,9.710882,1.015141,9.808801
3052 2016-08-10 20:27:33,139.715447,35.561429,57.00,1011.4976,0.775721,9.777920,0.067038,9.808871
3053 2016-08-10 20:27:42,139.715735,35.561735,57.00,1011.5469,1.331176,9.653421,1.072602,9.803624
3054 2016-08-10 20:27:43,139.715748,35.561766,57.00,1011.5347,0.957681,9.710882,0.967257,9.805813
3055 2016-08-10 20:27:53,139.715867,35.561804,60.00,1011.4695,0.354342,9.548077,2.202666,9.805257
3056 2016-08-10 20:27:57,139.715857,35.561913,67.00,1011.4243,0.335188,9.481039,2.480393,9.805855
3057 2016-08-10 20:28:16,139.715742,35.561930,72.00,1010.9036,0.181959,9.423578,2.700660,9.804616
3058 2016-08-10 20:28:23,139.715671,35.561812,0.00,1010.9509,1.618480,9.327810,2.566584,9.808918
3059 2016-08-10 20:29:00,139.715569,35.561765,75.00,1010.8796,0.047884,9.576807,2.126051,9.810077
3060 2016-08-10 20:29:04,139.715152,35.561712,0.00,1010.8982,-0.095768,9.442732,2.633622,9.803587
3061 2016-08-10 20:29:12,139.715035,35.561682,75.00,1011.1216,0.507571,9.481039,2.451663,9.806038
3062 2016-08-10 20:30:00,139.715038,35.561362,67.00,1011.7192,2.001553,9.586384,-0.440533,9.803012
3063 2016-08-10 20:30:17,139.715087,35.561374,69.00,1011.6326,-0.296881,9.471462,2.537854,9.810068
3064 2016-08-10 20:30:25,139.715033,35.561197,0.00,1011.7566,-0.670376,9.461885,2.480393,9.804541
3065 2016-08-10 20:30:41,139.715074,35.561108,77.00,1011.7732,-0.028730,9.433155,2.681506,9.806922
3066 2016-08-10 20:30:45,139.715069,35.561055,78.00,1011.7356,-1.168370,9.414001,2.470816,9.802726
3067 2016-08-10 20:30:55,139.715129,35.560969,82.00,1011.6125,0.574608,9.682152,1.474828,9.810676
3068 2016-08-10 20:31:01,139.715127,35.560874,77.00,1011.7400,3.361459,9.126697,1.264138,9.807856
3069 2016-08-10 20:31:05,139.715080,35.560833,74.00,1011.6636,4.165911,8.571242,2.298434,9.803255
3070 2016-08-10 20:31:15,139.715072,35.560732,72.00,1011.7817,4.098873,8.513782,2.624045,9.806674
3071 2016-08-10 20:31:27,139.715004,35.560654,63.00,1011.6565,-0.095768,3.955221,8.973468,9.806940

データはご自由にお使いなはれや。

なお、kml 化、csv 化は PC にデータを持ってきてから以下:

tokml.py
 1 # -*- coding: utf-8 -*-
 2 from sensor_logging_data import LogPhysical
 3 
 4 
 5 print("""\
 6 <?xml version="1.0" encoding="UTF-8"?>
 7 <kml xmlns="http://www.opengis.net/kml/2.2">
 8 <Document>
 9 <name>{}</name>
10 <Style id="paddle-a">
11 <IconStyle>
12 <Icon>
13 <href>http://maps.google.com/mapfiles/kml/paddle/A.png</href>
14 </Icon>
15 <hotSpot x="32" y="1" xunits="pixels" yunits="pixels"/>
16 </IconStyle>
17 </Style>
18 <Style id="paddle-b">
19 <IconStyle>
20 <Icon>
21 <href>http://maps.google.com/mapfiles/kml/paddle/B.png</href>
22 </Icon>
23 <hotSpot x="32" y="1" xunits="pixels" yunits="pixels"/>
24 </IconStyle>
25 </Style>
26 <Style id="hiker-icon">
27 <IconStyle>
28 <Icon>
29 <href>http://maps.google.com/mapfiles/ms/icons/hiker.png</href>
30 </Icon>
31 <hotSpot x="0" y=".5" xunits="fraction" yunits="fraction"/>
32 </IconStyle>
33 </Style>
34 <Style id="check-hide-children">
35 <ListStyle>
36 <listItemType>checkHideChildren</listItemType>
37 </ListStyle>
38 </Style>
39 <styleUrl>#check-hide-children</styleUrl>
40 """.format("2016-08-10 walking"))
41 
42 print("<Placemark><name>walk</name><LineString><coordinates>")
43 for row in LogPhysical().query_last():
44     time, lon, lat, alt, pressure, grav_x, grav_y, grav_z = row
45     print("{},{}".format(lon, lat))
46 
47 print("</coordinates></LineString></Placemark>")
48 print("""\
49 </Document>
50 </kml>""")
tocsv.py
 1 # -*- coding: utf-8 -*-
 2 from datetime import datetime
 3 from sensor_logging_data import LogPhysical
 4 import math
 5 
 6 
 7 def ts2s(t):
 8     dt = datetime.fromtimestamp(t)
 9     return "%04d-%02d-%02d %02d:%02d:%02d" % (
10         dt.year, dt.month, dt.day,
11         dt.hour, dt.minute, dt.second
12         )
13 
14 print("time, lon, lat, alt, pressure, grav_x, grav_y, grav_z, g_scalar")
15 for row in LogPhysical().query_last():
16     time, lon, lat, alt, pressure, grav_x, grav_y, grav_z = row
17     g = math.sqrt(grav_x**2 + grav_y**2 + grav_z**2)
18     print("""\
19 {},{:.6f},{:.6f},{:.2f},{:.4f},{:.6f},{:.6f},{:.6f},{:.6f}""".format(
20             ts2s(time),
21             lon, lat, alt, pressure, grav_x, grav_y, grav_z, g))