From 9847e2a41751777c3bb80e4ef0d4a43bb2572023 Mon Sep 17 00:00:00 2001 From: gac-alvra Date: Thu, 19 Feb 2026 16:20:33 +0100 Subject: [PATCH] added all before moving to /sf/alvra/ somewhere --- YAG_pp.py | 61 ++ c365.py | 61 ++ correlate.py | 61 ++ diff_2TT.py | 61 ++ dummy | 0 fftpbps.py | 58 ++ file.txt | 0 fluo.py | 61 ++ lutGirderXTrans.txt | 1802 ++++++++++++++++++++++++++++++++++++++++++ lutSi111R155.txt | 1802 ++++++++++++++++++++++++++++++++++++++++++ lutSi220R145.txt | 1802 ++++++++++++++++++++++++++++++++++++++++++ lutSi220R200.txt | 1802 ++++++++++++++++++++++++++++++++++++++++++ lutSi220R75.txt | 1802 ++++++++++++++++++++++++++++++++++++++++++ lutSi333R155.txt | 1603 +++++++++++++++++++++++++++++++++++++ ota.py | 61 ++ panel_122_old.py | 184 +++++ panel_c365.py | 228 ++++++ panel_correlate.py | 163 ++++ panel_diff_2TT.py | 192 +++++ panel_fftpbps.py | 139 ++++ panel_fluo.py | 240 ++++++ panel_fluo_static.py | 241 ++++++ panel_ota.py | 185 +++++ panel_pbps053.py | 191 +++++ panel_pbps110.py | 209 +++++ panel_pbps122.py | 209 +++++ panel_pbps149.py | 209 +++++ panel_ppPrime_xas.py | 176 +++++ panel_ppYAG.py | 157 ++++ panel_psss.py | 377 +++++++++ pbps053.py | 61 ++ pbps110.py | 61 ++ pbps122.py | 61 ++ pbps149.py | 61 ++ prime_pp.py | 61 ++ prime_pp_xas.py | 61 ++ psss.py | 61 ++ 37 files changed, 14564 insertions(+) create mode 100644 YAG_pp.py create mode 100755 c365.py create mode 100755 correlate.py create mode 100755 diff_2TT.py create mode 100644 dummy create mode 100755 fftpbps.py create mode 100644 file.txt create mode 100755 fluo.py create mode 100644 lutGirderXTrans.txt create mode 100644 lutSi111R155.txt create mode 100644 lutSi220R145.txt create mode 100644 lutSi220R200.txt create mode 100644 lutSi220R75.txt create mode 100644 lutSi333R155.txt create mode 100755 ota.py create mode 100644 panel_122_old.py create mode 100644 panel_c365.py create mode 100644 panel_correlate.py create mode 100644 panel_diff_2TT.py create mode 100644 panel_fftpbps.py create mode 100644 panel_fluo.py create mode 100644 panel_fluo_static.py create mode 100644 panel_ota.py create mode 100644 panel_pbps053.py create mode 100644 panel_pbps110.py create mode 100644 panel_pbps122.py create mode 100644 panel_pbps149.py create mode 100644 panel_ppPrime_xas.py create mode 100644 panel_ppYAG.py create mode 100644 panel_psss.py create mode 100755 pbps053.py create mode 100755 pbps110.py create mode 100755 pbps122.py create mode 100755 pbps149.py create mode 100644 prime_pp.py create mode 100644 prime_pp_xas.py create mode 100755 psss.py diff --git a/YAG_pp.py b/YAG_pp.py new file mode 100644 index 0000000..3220db0 --- /dev/null +++ b/YAG_pp.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_ppYAG import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="YAG pp"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/c365.py b/c365.py new file mode 100755 index 0000000..17aabfe --- /dev/null +++ b/c365.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_c365 import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="Coffee 365"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/correlate.py b/correlate.py new file mode 100755 index 0000000..faf8a22 --- /dev/null +++ b/correlate.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_correlate import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="correlations"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/diff_2TT.py b/diff_2TT.py new file mode 100755 index 0000000..f99993f --- /dev/null +++ b/diff_2TT.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_diff_2TT import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="diff 2TT"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/dummy b/dummy new file mode 100644 index 0000000..e69de29 diff --git a/fftpbps.py b/fftpbps.py new file mode 100755 index 0000000..3765e51 --- /dev/null +++ b/fftpbps.py @@ -0,0 +1,58 @@ +#!/usr/bin/env python + +import os +import wx +from slic.gui.persist import Persistence +from bstrd import bsstream +from panel_fftpbps import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="PBPS FFT"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/file.txt b/file.txt new file mode 100644 index 0000000..e69de29 diff --git a/fluo.py b/fluo.py new file mode 100755 index 0000000..0b26278 --- /dev/null +++ b/fluo.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_fluo import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="Fluo"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/lutGirderXTrans.txt b/lutGirderXTrans.txt new file mode 100644 index 0000000..a39f61a --- /dev/null +++ b/lutGirderXTrans.txt @@ -0,0 +1,1802 @@ +Energy 100nm 150nm 200nm +4000 6.20 +4005 6.19 +4010 6.18 +4015 6.18 +4020 6.17 +4025 6.16 +4030 6.15 +4035 6.15 +4040 6.14 +4045 6.13 +4050 6.12 +4055 6.12 +4060 6.11 +4065 6.10 +4070 6.09 +4075 6.09 +4080 6.08 +4085 6.07 +4090 6.06 +4095 6.06 +4100 6.05 +4105 6.04 +4110 6.03 +4115 6.03 +4120 6.02 +4125 6.01 +4130 6.00 +4135 8.00 6.00 +4140 7.99 5.99 +4145 7.98 5.98 +4150 7.97 5.98 +4155 7.96 5.97 +4160 7.95 5.96 +4165 7.94 5.95 +4170 7.93 5.95 +4175 7.92 5.94 +4180 7.91 5.93 +4185 7.90 5.93 +4190 7.89 5.92 +4195 7.88 5.91 +4200 7.87 5.90 +4205 7.86 5.90 +4210 7.85 5.89 +4215 7.85 5.88 +4220 7.84 5.88 +4225 7.83 5.87 +4230 7.82 5.86 +4235 7.81 5.86 +4240 7.80 5.85 +4245 7.79 5.84 +4250 7.78 5.84 +4255 7.77 5.83 +4260 7.76 5.82 +4265 7.75 5.81 +4270 7.74 5.81 +4275 7.73 5.80 +4280 7.73 5.79 +4285 7.72 5.79 +4290 7.71 5.78 +4295 7.70 5.77 +4300 7.69 5.77 +4305 7.68 5.76 +4310 7.67 5.75 +4315 7.66 5.75 +4320 7.65 5.74 +4325 7.65 5.73 +4330 7.64 5.73 +4335 7.63 5.72 +4340 7.62 5.71 +4345 7.61 5.71 +4350 7.60 5.70 +4355 7.59 5.69 +4360 7.58 5.69 +4365 7.58 5.68 +4370 7.57 5.68 +4375 7.56 5.67 +4380 7.55 5.66 +4385 7.54 5.66 +4390 7.53 5.65 +4395 7.52 5.64 +4400 7.52 5.64 +4405 7.51 5.63 +4410 7.50 5.62 +4415 7.49 5.62 +4420 7.48 5.61 +4425 7.47 5.60 +4430 7.46 5.60 +4435 7.46 5.59 +4440 7.45 5.59 +4445 7.44 5.58 +4450 7.43 5.57 +4455 7.42 5.57 +4460 7.41 5.56 +4465 7.41 5.55 +4470 7.40 5.55 +4475 7.39 5.54 +4480 7.38 5.54 +4485 7.37 5.53 +4490 7.36 5.52 +4495 7.36 5.52 +4500 7.35 5.51 +4505 7.34 5.50 +4510 7.33 5.50 +4515 7.32 5.49 +4520 7.32 5.49 +4525 7.31 5.48 +4530 7.30 5.47 +4535 7.29 5.47 +4540 7.28 5.46 +4545 7.28 5.46 +4550 7.27 5.45 +4555 7.26 5.44 +4560 7.25 5.44 +4565 7.24 5.43 +4570 7.24 5.43 +4575 7.23 5.42 +4580 7.22 5.41 +4585 7.21 5.41 +4590 7.20 5.40 +4595 7.20 5.40 +4600 7.19 5.39 +4605 7.18 5.39 +4610 7.17 5.38 +4615 7.17 5.37 +4620 7.16 5.37 +4625 7.15 5.36 +4630 7.14 5.36 +4635 7.13 5.35 +4640 7.13 5.34 +4645 7.12 5.34 +4650 7.11 5.33 +4655 7.10 5.33 +4660 7.10 5.32 +4665 7.09 5.32 +4670 7.08 5.31 +4675 7.07 5.30 +4680 7.07 5.30 +4685 7.06 5.29 +4690 7.05 5.29 +4695 7.04 5.28 +4700 7.04 5.28 +4705 7.03 5.27 +4710 7.02 5.27 +4715 7.01 5.26 +4720 7.01 5.25 +4725 7.00 5.25 +4730 6.99 5.24 +4735 6.98 5.24 +4740 6.98 5.23 +4745 6.97 5.23 +4750 6.96 5.22 +4755 6.95 5.22 +4760 6.95 5.21 +4765 6.94 5.20 +4770 6.93 5.20 +4775 6.92 5.19 +4780 6.92 5.19 +4785 6.91 5.18 +4790 6.90 5.18 +4795 6.90 5.17 +4800 6.89 5.17 +4805 6.88 5.16 +4810 6.87 5.16 +4815 6.87 5.15 +4820 6.86 5.15 +4825 6.85 5.14 +4830 6.85 5.13 +4835 6.84 5.13 +4840 6.83 5.12 +4845 6.82 5.12 +4850 6.82 5.11 +4855 6.81 5.11 +4860 6.80 5.10 +4865 6.80 5.10 +4870 6.79 5.09 +4875 6.78 5.09 +4880 6.78 5.08 +4885 6.77 5.08 +4890 6.76 5.07 +4895 6.76 5.07 +4900 6.75 5.06 +4905 6.74 5.06 +4910 6.73 5.05 +4915 6.73 5.05 +4920 6.72 5.04 +4925 6.71 5.04 +4930 6.71 5.03 +4935 6.70 5.03 +4940 6.69 5.02 +4945 6.69 5.02 +4950 6.68 5.01 +4955 6.67 5.01 +4960 6.67 5.00 +4965 6.66 4.99 +4970 6.65 4.99 +4975 6.65 4.98 +4980 6.64 4.98 +4985 6.63 4.97 +4990 6.63 4.97 +4995 6.62 4.96 +5000 6.61 4.96 +5005 6.61 4.96 +5010 6.60 4.95 +5015 6.59 4.95 +5020 6.59 4.94 +5025 6.58 4.94 +5030 6.57 4.93 +5035 6.57 4.93 +5040 6.56 4.92 +5045 6.55 4.92 +5050 6.55 4.91 +5055 6.54 4.91 +5060 6.53 4.90 +5065 6.53 4.90 +5070 6.52 4.89 +5075 6.52 4.89 +5080 6.51 4.88 +5085 6.50 4.88 +5090 6.50 4.87 +5095 6.49 4.87 +5100 6.48 4.86 +5105 6.48 4.86 +5110 6.47 4.85 +5115 6.46 4.85 +5120 6.46 4.84 +5125 6.45 4.84 +5130 6.45 4.83 +5135 6.44 4.83 +5140 6.43 4.82 +5145 6.43 4.82 +5150 6.42 4.82 +5155 6.41 4.81 +5160 6.41 4.81 +5165 6.40 4.80 +5170 6.40 4.80 +5175 6.39 4.79 +5180 6.38 4.79 +5185 6.38 4.78 +5190 6.37 4.78 +5195 6.37 4.77 +5200 6.36 4.77 +5205 6.35 4.76 +5210 6.35 4.76 +5215 6.34 4.76 +5220 6.33 4.75 +5225 6.33 4.75 +5230 6.32 4.74 +5235 6.32 4.74 +5240 6.31 4.73 +5245 6.30 4.73 +5250 6.30 4.72 +5255 6.29 4.72 +5260 6.29 4.71 +5265 6.28 4.71 +5270 6.27 4.71 +5275 6.27 4.70 +5280 6.26 4.70 +5285 6.26 4.69 +5290 6.25 4.69 +5295 6.24 4.68 +5300 6.24 4.68 +5305 6.23 4.67 +5310 6.23 4.67 +5315 6.22 4.67 +5320 6.22 4.66 +5325 6.21 4.66 +5330 6.20 4.65 +5335 6.20 4.65 +5340 6.19 4.64 +5345 6.19 4.64 +5350 6.18 4.64 +5355 6.17 4.63 +5360 6.17 4.63 +5365 6.16 4.62 +5370 6.16 4.62 +5375 6.15 4.61 +5380 6.15 4.61 +5385 6.14 4.61 +5390 6.13 4.60 +5395 6.13 4.60 +5400 6.12 4.59 +5405 6.12 4.59 +5410 6.11 4.58 +5415 6.11 4.58 +5420 6.10 4.58 +5425 6.10 4.57 +5430 6.09 4.57 +5435 6.08 4.56 +5440 6.08 4.56 +5445 6.07 4.55 +5450 6.07 4.55 +5455 6.06 4.55 +5460 6.06 4.54 +5465 6.05 4.54 +5470 6.05 4.53 +5475 6.04 4.53 +5480 6.03 4.53 +5485 6.03 4.52 +5490 6.02 4.52 +5495 6.02 4.51 +5500 6.01 4.51 +5505 6.01 4.50 +5510 6.00 4.50 +5515 6.00 4.50 +5520 5.99 4.49 +5525 5.98 4.49 +5530 5.98 4.48 +5535 5.97 4.48 +5540 5.97 4.48 +5545 5.96 4.47 +5550 5.96 4.47 +5555 5.95 4.46 +5560 5.95 4.46 +5565 5.94 4.46 +5570 5.94 4.45 +5575 5.93 4.45 +5580 5.93 4.44 +5585 5.92 4.44 +5590 5.92 4.44 +5595 5.91 4.43 +5600 5.90 4.43 +5605 5.90 4.42 +5610 5.89 4.42 +5615 5.89 4.42 +5620 5.88 4.41 +5625 5.88 4.41 +5630 5.87 4.40 +5635 5.87 4.40 +5640 5.86 4.40 +5645 5.86 4.39 +5650 5.85 4.39 +5655 5.85 4.39 +5660 5.84 4.38 +5665 5.84 4.38 +5670 5.83 4.37 +5675 5.83 4.37 +5680 5.82 4.37 +5685 5.82 4.36 +5690 5.81 4.36 +5695 5.81 4.35 +5700 5.80 4.35 +5705 5.80 4.35 +5710 5.79 4.34 +5715 5.79 4.34 +5720 5.78 4.34 +5725 5.78 4.33 +5730 5.77 4.33 +5735 5.77 4.32 +5740 5.76 4.32 +5745 5.76 4.32 +5750 5.75 4.31 +5755 5.75 4.31 +5760 5.74 4.31 +5765 5.74 4.30 +5770 5.73 4.30 +5775 5.73 4.29 +5780 5.72 4.29 +5785 5.72 4.29 +5790 5.71 4.28 +5795 5.71 4.28 +5800 5.70 4.28 +5805 5.70 4.27 +5810 5.69 4.27 +5815 5.69 4.26 +5820 5.68 4.26 +5825 5.68 4.26 +5830 5.67 4.25 +5835 5.67 4.25 +5840 5.66 4.25 +5845 5.66 4.24 +5850 5.65 4.24 +5855 5.65 4.24 +5860 5.64 4.23 +5865 5.64 4.23 +5870 5.63 4.22 +5875 5.63 4.22 +5880 5.62 4.22 +5885 5.62 4.21 +5890 5.61 4.21 +5895 5.61 4.21 +5900 5.60 4.20 +5905 5.60 4.20 +5910 5.60 4.20 +5915 5.59 4.19 +5920 5.59 4.19 +5925 5.58 4.19 +5930 5.58 4.18 +5935 5.57 4.18 +5940 5.57 4.18 +5945 5.56 4.17 +5950 5.56 4.17 +5955 5.55 4.16 +5960 5.55 4.16 +5965 5.54 4.16 +5970 5.54 4.15 +5975 5.53 4.15 +5980 5.53 4.15 +5985 5.52 4.14 +5990 5.52 4.14 +5995 5.52 4.14 +6000 5.51 4.13 +6005 5.51 4.13 +6010 5.50 4.13 +6015 5.50 4.12 +6020 5.49 4.12 +6025 5.49 4.12 +6030 5.48 4.11 +6035 5.48 4.11 +6040 5.47 4.11 +6045 5.47 4.10 +6050 5.47 4.10 +6055 5.46 4.10 +6060 5.46 4.09 +6065 5.45 4.09 +6070 5.45 4.09 +6075 5.44 4.08 +6080 5.44 4.08 +6085 5.43 4.08 +6090 5.43 4.07 +6095 5.43 4.07 +6100 5.42 4.07 +6105 5.42 4.06 +6110 5.41 4.06 +6115 5.41 4.06 +6120 5.40 4.05 +6125 5.40 4.05 +6130 5.39 4.05 +6135 5.39 4.04 +6140 5.39 4.04 +6145 5.38 4.04 +6150 5.38 4.03 +6155 5.37 4.03 +6160 5.37 4.03 +6165 5.36 4.02 +6170 5.36 4.02 +6175 5.35 4.02 +6180 5.35 4.01 +6185 5.35 4.01 +6190 5.34 4.01 +6195 5.34 4.00 +6200 5.33 4.00 +6205 7.99 5.33 4.00 +6210 7.99 5.32 3.99 +6215 7.98 5.32 3.99 +6220 7.97 5.32 3.99 +6225 7.97 5.31 3.98 +6230 7.96 5.31 3.98 +6235 7.96 5.30 3.98 +6240 7.95 5.30 3.97 +6245 7.94 5.29 3.97 +6250 7.94 5.29 3.97 +6255 7.93 5.29 3.96 +6260 7.92 5.28 3.96 +6265 7.92 5.28 3.96 +6270 7.91 5.27 3.96 +6275 7.90 5.27 3.95 +6280 7.90 5.27 3.95 +6285 7.89 5.26 3.95 +6290 7.89 5.26 3.94 +6295 7.88 5.25 3.94 +6300 7.87 5.25 3.94 +6305 7.87 5.24 3.93 +6310 7.86 5.24 3.93 +6315 7.85 5.24 3.93 +6320 7.85 5.23 3.92 +6325 7.84 5.23 3.92 +6330 7.84 5.22 3.92 +6335 7.83 5.22 3.91 +6340 7.82 5.22 3.91 +6345 7.82 5.21 3.91 +6350 7.81 5.21 3.91 +6355 7.80 5.20 3.90 +6360 7.80 5.20 3.90 +6365 7.79 5.20 3.90 +6370 7.79 5.19 3.89 +6375 7.78 5.19 3.89 +6380 7.77 5.18 3.89 +6385 7.77 5.18 3.88 +6390 7.76 5.17 3.88 +6395 7.76 5.17 3.88 +6400 7.75 5.17 3.88 +6405 7.74 5.16 3.87 +6410 7.74 5.16 3.87 +6415 7.73 5.15 3.87 +6420 7.73 5.15 3.86 +6425 7.72 5.15 3.86 +6430 7.71 5.14 3.86 +6435 7.71 5.14 3.85 +6440 7.70 5.13 3.85 +6445 7.70 5.13 3.85 +6450 7.69 5.13 3.84 +6455 7.68 5.12 3.84 +6460 7.68 5.12 3.84 +6465 7.67 5.11 3.84 +6470 7.67 5.11 3.83 +6475 7.66 5.11 3.83 +6480 7.65 5.10 3.83 +6485 7.65 5.10 3.82 +6490 7.64 5.10 3.82 +6495 7.64 5.09 3.82 +6500 7.63 5.09 3.82 +6505 7.62 5.08 3.81 +6510 7.62 5.08 3.81 +6515 7.61 5.08 3.81 +6520 7.61 5.07 3.80 +6525 7.60 5.07 3.80 +6530 7.60 5.06 3.80 +6535 7.59 5.06 3.79 +6540 7.58 5.06 3.79 +6545 7.58 5.05 3.79 +6550 7.57 5.05 3.79 +6555 7.57 5.04 3.78 +6560 7.56 5.04 3.78 +6565 7.56 5.04 3.78 +6570 7.55 5.03 3.77 +6575 7.54 5.03 3.77 +6580 7.54 5.03 3.77 +6585 7.53 5.02 3.77 +6590 7.53 5.02 3.76 +6595 7.52 5.01 3.76 +6600 7.52 5.01 3.76 +6605 7.51 5.01 3.75 +6610 7.50 5.00 3.75 +6615 7.50 5.00 3.75 +6620 7.49 4.99 3.75 +6625 7.49 4.99 3.74 +6630 7.48 4.99 3.74 +6635 7.48 4.98 3.74 +6640 7.47 4.98 3.73 +6645 7.46 4.98 3.73 +6650 7.46 4.97 3.73 +6655 7.45 4.97 3.73 +6660 7.45 4.96 3.72 +6665 7.44 4.96 3.72 +6670 7.44 4.96 3.72 +6675 7.43 4.95 3.72 +6680 7.43 4.95 3.71 +6685 7.42 4.95 3.71 +6690 7.41 4.94 3.71 +6695 7.41 4.94 3.70 +6700 7.40 4.94 3.70 +6705 7.40 4.93 3.70 +6710 7.39 4.93 3.70 +6715 7.39 4.92 3.69 +6720 7.38 4.92 3.69 +6725 7.38 4.92 3.69 +6730 7.37 4.91 3.68 +6735 7.36 4.91 3.68 +6740 7.36 4.91 3.68 +6745 7.35 4.90 3.68 +6750 7.35 4.90 3.67 +6755 7.34 4.90 3.67 +6760 7.34 4.89 3.67 +6765 7.33 4.89 3.67 +6770 7.33 4.88 3.66 +6775 7.32 4.88 3.66 +6780 7.32 4.88 3.66 +6785 7.31 4.87 3.66 +6790 7.30 4.87 3.65 +6795 7.30 4.87 3.65 +6800 7.29 4.86 3.65 +6805 7.29 4.86 3.64 +6810 7.28 4.86 3.64 +6815 7.28 4.85 3.64 +6820 7.27 4.85 3.64 +6825 7.27 4.84 3.63 +6830 7.26 4.84 3.63 +6835 7.26 4.84 3.63 +6840 7.25 4.83 3.63 +6845 7.25 4.83 3.62 +6850 7.24 4.83 3.62 +6855 7.24 4.82 3.62 +6860 7.23 4.82 3.62 +6865 7.23 4.82 3.61 +6870 7.22 4.81 3.61 +6875 7.21 4.81 3.61 +6880 7.21 4.81 3.60 +6885 7.20 4.80 3.60 +6890 7.20 4.80 3.60 +6895 7.19 4.80 3.60 +6900 7.19 4.79 3.59 +6905 7.18 4.79 3.59 +6910 7.18 4.79 3.59 +6915 7.17 4.78 3.59 +6920 7.17 4.78 3.58 +6925 7.16 4.77 3.58 +6930 7.16 4.77 3.58 +6935 7.15 4.77 3.58 +6940 7.15 4.76 3.57 +6945 7.14 4.76 3.57 +6950 7.14 4.76 3.57 +6955 7.13 4.75 3.57 +6960 7.13 4.75 3.56 +6965 7.12 4.75 3.56 +6970 7.12 4.74 3.56 +6975 7.11 4.74 3.56 +6980 7.11 4.74 3.55 +6985 7.10 4.73 3.55 +6990 7.10 4.73 3.55 +6995 7.09 4.73 3.55 +7000 7.09 4.72 3.54 +7005 7.08 4.72 3.54 +7010 7.08 4.72 3.54 +7015 7.07 4.71 3.54 +7020 7.07 4.71 3.53 +7025 7.06 4.71 3.53 +7030 7.06 4.70 3.53 +7035 7.05 4.70 3.53 +7040 7.05 4.70 3.52 +7045 7.04 4.69 3.52 +7050 7.04 4.69 3.52 +7055 7.03 4.69 3.52 +7060 7.03 4.68 3.51 +7065 7.02 4.68 3.51 +7070 7.02 4.68 3.51 +7075 7.01 4.67 3.51 +7080 7.01 4.67 3.50 +7085 7.00 4.67 3.50 +7090 7.00 4.66 3.50 +7095 6.99 4.66 3.50 +7100 6.99 4.66 3.49 +7105 6.98 4.65 3.49 +7110 6.98 4.65 3.49 +7115 6.97 4.65 3.49 +7120 6.97 4.64 3.48 +7125 6.96 4.64 3.48 +7130 6.96 4.64 3.48 +7135 6.95 4.63 3.48 +7140 6.95 4.63 3.47 +7145 6.94 4.63 3.47 +7150 6.94 4.62 3.47 +7155 6.93 4.62 3.47 +7160 6.93 4.62 3.46 +7165 6.92 4.62 3.46 +7170 6.92 4.61 3.46 +7175 6.91 4.61 3.46 +7180 6.91 4.61 3.45 +7185 6.90 4.60 3.45 +7190 6.90 4.60 3.45 +7195 6.89 4.60 3.45 +7200 6.89 4.59 3.44 +7205 6.88 4.59 3.44 +7210 6.88 4.59 3.44 +7215 6.87 4.58 3.44 +7220 6.87 4.58 3.43 +7225 6.87 4.58 3.43 +7230 6.86 4.57 3.43 +7235 6.86 4.57 3.43 +7240 6.85 4.57 3.43 +7245 6.85 4.56 3.42 +7250 6.84 4.56 3.42 +7255 6.84 4.56 3.42 +7260 6.83 4.55 3.42 +7265 6.83 4.55 3.41 +7270 6.82 4.55 3.41 +7275 6.82 4.55 3.41 +7280 6.81 4.54 3.41 +7285 6.81 4.54 3.40 +7290 6.80 4.54 3.40 +7295 6.80 4.53 3.40 +7300 6.79 4.53 3.40 +7305 6.79 4.53 3.39 +7310 6.79 4.52 3.39 +7315 6.78 4.52 3.39 +7320 6.78 4.52 3.39 +7325 6.77 4.51 3.39 +7330 6.77 4.51 3.38 +7335 6.76 4.51 3.38 +7340 6.76 4.50 3.38 +7345 6.75 4.50 3.38 +7350 6.75 4.50 3.37 +7355 6.74 4.50 3.37 +7360 6.74 4.49 3.37 +7365 6.73 4.49 3.37 +7370 6.73 4.49 3.36 +7375 6.73 4.48 3.36 +7380 6.72 4.48 3.36 +7385 6.72 4.48 3.36 +7390 6.71 4.47 3.36 +7395 6.71 4.47 3.35 +7400 6.70 4.47 3.35 +7405 6.70 4.47 3.35 +7410 6.69 4.46 3.35 +7415 6.69 4.46 3.34 +7420 6.68 4.46 3.34 +7425 6.68 4.45 3.34 +7430 6.68 4.45 3.34 +7435 6.67 4.45 3.34 +7440 6.67 4.44 3.33 +7445 6.66 4.44 3.33 +7450 6.66 4.44 3.33 +7455 6.65 4.44 3.33 +7460 6.65 4.43 3.32 +7465 6.64 4.43 3.32 +7470 6.64 4.43 3.32 +7475 6.64 4.42 3.32 +7480 6.63 4.42 3.32 +7485 6.63 4.42 3.31 +7490 6.62 4.41 3.31 +7495 6.62 4.41 3.31 +7500 6.61 4.41 3.31 +7505 6.61 4.41 3.30 +7510 6.60 4.40 3.30 +7515 6.60 4.40 3.30 +7520 6.60 4.40 3.30 +7525 6.59 4.39 3.30 +7530 6.59 4.39 3.29 +7535 6.58 4.39 3.29 +7540 6.58 4.39 3.29 +7545 6.57 4.38 3.29 +7550 6.57 4.38 3.28 +7555 6.57 4.38 3.28 +7560 6.56 4.37 3.28 +7565 6.56 4.37 3.28 +7570 6.55 4.37 3.28 +7575 6.55 4.37 3.27 +7580 6.54 4.36 3.27 +7585 6.54 4.36 3.27 +7590 6.53 4.36 3.27 +7595 6.53 4.35 3.27 +7600 6.53 4.35 3.26 +7605 6.52 4.35 3.26 +7610 6.52 4.35 3.26 +7615 6.51 4.34 3.26 +7620 6.51 4.34 3.25 +7625 6.50 4.34 3.25 +7630 6.50 4.33 3.25 +7635 6.50 4.33 3.25 +7640 6.49 4.33 3.25 +7645 6.49 4.33 3.24 +7650 6.48 4.32 3.24 +7655 6.48 4.32 3.24 +7660 6.48 4.32 3.24 +7665 6.47 4.31 3.24 +7670 6.47 4.31 3.23 +7675 6.46 4.31 3.23 +7680 6.46 4.31 3.23 +7685 6.45 4.30 3.23 +7690 6.45 4.30 3.22 +7695 6.45 4.30 3.22 +7700 6.44 4.29 3.22 +7705 6.44 4.29 3.22 +7710 6.43 4.29 3.22 +7715 6.43 4.29 3.21 +7720 6.42 4.28 3.21 +7725 6.42 4.28 3.21 +7730 6.42 4.28 3.21 +7735 6.41 4.27 3.21 +7740 6.41 4.27 3.20 +7745 6.40 4.27 3.20 +7750 6.40 4.27 3.20 +7755 6.40 4.26 3.20 +7760 6.39 4.26 3.20 +7765 6.39 4.26 3.19 +7770 6.38 4.26 3.19 +7775 6.38 4.25 3.19 +7780 6.38 4.25 3.19 +7785 6.37 4.25 3.19 +7790 6.37 4.24 3.18 +7795 6.36 4.24 3.18 +7800 6.36 4.24 3.18 +7805 6.35 4.24 3.18 +7810 6.35 4.23 3.18 +7815 6.35 4.23 3.17 +7820 6.34 4.23 3.17 +7825 6.34 4.23 3.17 +7830 6.33 4.22 3.17 +7835 6.33 4.22 3.17 +7840 6.33 4.22 3.16 +7845 6.32 4.22 3.16 +7850 6.32 4.21 3.16 +7855 6.31 4.21 3.16 +7860 6.31 4.21 3.16 +7865 6.31 4.20 3.15 +7870 6.30 4.20 3.15 +7875 6.30 4.20 3.15 +7880 6.29 4.20 3.15 +7885 6.29 4.19 3.15 +7890 6.29 4.19 3.14 +7895 6.28 4.19 3.14 +7900 6.28 4.19 3.14 +7905 6.27 4.18 3.14 +7910 6.27 4.18 3.14 +7915 6.27 4.18 3.13 +7920 6.26 4.18 3.13 +7925 6.26 4.17 3.13 +7930 6.25 4.17 3.13 +7935 6.25 4.17 3.13 +7940 6.25 4.16 3.12 +7945 6.24 4.16 3.12 +7950 6.24 4.16 3.12 +7955 6.24 4.16 3.12 +7960 6.23 4.15 3.12 +7965 6.23 4.15 3.11 +7970 6.22 4.15 3.11 +7975 6.22 4.15 3.11 +7980 6.22 4.14 3.11 +7985 6.21 4.14 3.11 +7990 6.21 4.14 3.10 +7995 6.20 4.14 3.10 +8000 6.20 4.13 3.10 +8005 6.20 4.13 3.10 +8010 6.19 4.13 3.10 +8015 6.19 4.13 3.09 +8020 6.18 4.12 3.09 +8025 6.18 4.12 3.09 +8030 6.18 4.12 3.09 +8035 6.17 4.12 3.09 +8040 6.17 4.11 3.08 +8045 6.17 4.11 3.08 +8050 6.16 4.11 3.08 +8055 6.16 4.11 3.08 +8060 6.15 4.10 3.08 +8065 6.15 4.10 3.08 +8070 6.15 4.10 3.07 +8075 6.14 4.09 3.07 +8080 6.14 4.09 3.07 +8085 6.13 4.09 3.07 +8090 6.13 4.09 3.07 +8095 6.13 4.08 3.06 +8100 6.12 4.08 3.06 +8105 6.12 4.08 3.06 +8110 6.12 4.08 3.06 +8115 6.11 4.07 3.06 +8120 6.11 4.07 3.05 +8125 6.10 4.07 3.05 +8130 6.10 4.07 3.05 +8135 6.10 4.06 3.05 +8140 6.09 4.06 3.05 +8145 6.09 4.06 3.04 +8150 6.09 4.06 3.04 +8155 6.08 4.05 3.04 +8160 6.08 4.05 3.04 +8165 6.07 4.05 3.04 +8170 6.07 4.05 3.04 +8175 6.07 4.04 3.03 +8180 6.06 4.04 3.03 +8185 6.06 4.04 3.03 +8190 6.06 4.04 3.03 +8195 6.05 4.03 3.03 +8200 6.05 4.03 3.02 +8205 6.05 4.03 3.02 +8210 6.04 4.03 3.02 +8215 6.04 4.03 3.02 +8220 6.03 4.02 3.02 +8225 6.03 4.02 3.02 +8230 6.03 4.02 3.01 +8235 6.02 4.02 3.01 +8240 6.02 4.01 3.01 +8245 6.02 4.01 3.01 +8250 6.01 4.01 3.01 +8255 6.01 4.01 +8260 6.00 4.00 +8265 6.00 4.00 +8270 6.00 4.00 +8275 5.99 4.00 +8280 5.99 3.99 +8285 5.99 3.99 +8290 5.98 3.99 +8295 5.98 3.99 +8300 5.98 3.98 +8305 5.97 3.98 +8310 5.97 3.98 +8315 5.97 3.98 +8320 5.96 3.97 +8325 5.96 3.97 +8330 5.95 3.97 +8335 5.95 3.97 +8340 5.95 3.96 +8345 5.94 3.96 +8350 5.94 3.96 +8355 5.94 3.96 +8360 5.93 3.96 +8365 5.93 3.95 +8370 5.93 3.95 +8375 5.92 3.95 +8380 5.92 3.95 +8385 5.92 3.94 +8390 5.91 3.94 +8395 5.91 3.94 +8400 5.90 3.94 +8405 5.90 3.93 +8410 5.90 3.93 +8415 5.89 3.93 +8420 5.89 3.93 +8425 5.89 3.92 +8430 5.88 3.92 +8435 5.88 3.92 +8440 5.88 3.92 +8445 5.87 3.92 +8450 5.87 3.91 +8455 5.87 3.91 +8460 5.86 3.91 +8465 5.86 3.91 +8470 5.86 3.90 +8475 5.85 3.90 +8480 5.85 3.90 +8485 5.85 3.90 +8490 5.84 3.89 +8495 5.84 3.89 +8500 5.84 3.89 +8505 5.83 3.89 +8510 5.83 3.89 +8515 5.83 3.88 +8520 5.82 3.88 +8525 5.82 3.88 +8530 5.81 3.88 +8535 5.81 3.87 +8540 5.81 3.87 +8545 5.80 3.87 +8550 5.80 3.87 +8555 5.80 3.87 +8560 5.79 3.86 +8565 5.79 3.86 +8570 5.79 3.86 +8575 5.78 3.86 +8580 5.78 3.85 +8585 5.78 3.85 +8590 5.77 3.85 +8595 5.77 3.85 +8600 5.77 3.84 +8605 5.76 3.84 +8610 5.76 3.84 +8615 5.76 3.84 +8620 5.75 3.84 +8625 5.75 3.83 +8630 5.75 3.83 +8635 5.74 3.83 +8640 5.74 3.83 +8645 5.74 3.82 +8650 5.73 3.82 +8655 5.73 3.82 +8660 5.73 3.82 +8665 5.72 3.82 +8670 5.72 3.81 +8675 5.72 3.81 +8680 5.71 3.81 +8685 5.71 3.81 +8690 5.71 3.81 +8695 5.70 3.80 +8700 5.70 3.80 +8705 5.70 3.80 +8710 5.69 3.80 +8715 5.69 3.79 +8720 5.69 3.79 +8725 5.68 3.79 +8730 5.68 3.79 +8735 5.68 3.79 +8740 5.68 3.78 +8745 5.67 3.78 +8750 5.67 3.78 +8755 5.67 3.78 +8760 5.66 3.77 +8765 5.66 3.77 +8770 5.66 3.77 +8775 5.65 3.77 +8780 5.65 3.77 +8785 5.65 3.76 +8790 5.64 3.76 +8795 5.64 3.76 +8800 5.64 3.76 +8805 5.63 3.76 +8810 5.63 3.75 +8815 5.63 3.75 +8820 5.62 3.75 +8825 5.62 3.75 +8830 5.62 3.74 +8835 5.61 3.74 +8840 5.61 3.74 +8845 5.61 3.74 +8850 5.60 3.74 +8855 5.60 3.73 +8860 5.60 3.73 +8865 5.60 3.73 +8870 5.59 3.73 +8875 5.59 3.73 +8880 5.59 3.72 +8885 5.58 3.72 +8890 5.58 3.72 +8895 5.58 3.72 +8900 5.57 3.72 +8905 5.57 3.71 +8910 5.57 3.71 +8915 5.56 3.71 +8920 5.56 3.71 +8925 5.56 3.70 +8930 5.55 3.70 +8935 5.55 3.70 +8940 5.55 3.70 +8945 5.55 3.70 +8950 5.54 3.69 +8955 5.54 3.69 +8960 5.54 3.69 +8965 5.53 3.69 +8970 5.53 3.69 +8975 5.53 3.68 +8980 5.52 3.68 +8985 5.52 3.68 +8990 5.52 3.68 +8995 5.51 3.68 +9000 5.51 3.67 +9005 5.51 3.67 +9010 5.50 3.67 +9015 5.50 3.67 +9020 5.50 3.67 +9025 5.50 3.66 +9030 5.49 3.66 +9035 5.49 3.66 +9040 5.49 3.66 +9045 5.48 3.66 +9050 5.48 3.65 +9055 5.48 3.65 +9060 5.47 3.65 +9065 5.47 3.65 +9070 5.47 3.65 +9075 5.47 3.64 +9080 5.46 3.64 +9085 5.46 3.64 +9090 5.46 3.64 +9095 5.45 3.64 +9100 5.45 3.63 +9105 5.45 3.63 +9110 5.44 3.63 +9115 5.44 3.63 +9120 5.44 3.63 +9125 5.44 3.62 +9130 5.43 3.62 +9135 5.43 3.62 +9140 5.43 3.62 +9145 5.42 3.62 +9150 5.42 3.61 +9155 5.42 3.61 +9160 5.41 3.61 +9165 5.41 3.61 +9170 5.41 3.61 +9175 5.41 3.60 +9180 5.40 3.60 +9185 5.40 3.60 +9190 5.40 3.60 +9195 5.39 3.60 +9200 5.39 3.59 +9205 5.39 3.59 +9210 5.39 3.59 +9215 5.38 3.59 +9220 5.38 3.59 +9225 5.38 3.58 +9230 5.37 3.58 +9235 5.37 3.58 +9240 5.37 3.58 +9245 5.37 3.58 +9250 5.36 3.57 +9255 5.36 3.57 +9260 5.36 3.57 +9265 5.35 3.57 +9270 5.35 3.57 +9275 5.35 3.57 +9280 5.34 3.56 +9285 5.34 3.56 +9290 5.34 3.56 +9295 5.34 3.56 +9300 5.33 3.56 +9305 5.33 3.55 +9310 5.33 3.55 +9315 5.32 3.55 +9320 5.32 3.55 +9325 5.32 3.55 +9330 5.32 3.54 +9335 5.31 3.54 +9340 5.31 3.54 +9345 5.31 3.54 +9350 5.30 3.54 +9355 5.30 3.53 +9360 5.30 3.53 +9365 5.30 3.53 +9370 5.29 3.53 +9375 5.29 3.53 +9380 5.29 3.53 +9385 5.29 3.52 +9390 5.28 3.52 +9395 5.28 3.52 +9400 5.28 3.52 +9405 5.27 3.52 +9410 5.27 3.51 +9415 5.27 3.51 +9420 5.27 3.51 +9425 5.26 3.51 +9430 5.26 3.51 +9435 5.26 3.50 +9440 5.25 3.50 +9445 5.25 3.50 +9450 5.25 3.50 +9455 5.25 3.50 +9460 5.24 3.50 +9465 5.24 3.49 +9470 5.24 3.49 +9475 5.23 3.49 +9480 5.23 3.49 +9485 5.23 3.49 +9490 5.23 3.48 +9495 5.22 3.48 +9500 5.22 3.48 +9505 5.22 3.48 +9510 5.22 3.48 +9515 5.21 3.48 +9520 5.21 3.47 +9525 5.21 3.47 +9530 5.20 3.47 +9535 5.20 3.47 +9540 5.20 3.47 +9545 5.20 3.46 +9550 5.19 3.46 +9555 5.19 3.46 +9560 5.19 3.46 +9565 5.19 3.46 +9570 5.18 3.46 +9575 5.18 3.45 +9580 5.18 3.45 +9585 5.17 3.45 +9590 5.17 3.45 +9595 5.17 3.45 +9600 5.17 3.44 +9605 5.16 3.44 +9610 5.16 3.44 +9615 5.16 3.44 +9620 5.16 3.44 +9625 5.15 3.44 +9630 5.15 3.43 +9635 5.15 3.43 +9640 5.15 3.43 +9645 5.14 3.43 +9650 5.14 3.43 +9655 5.14 3.42 +9660 5.13 3.42 +9665 5.13 3.42 +9670 5.13 3.42 +9675 5.13 3.42 +9680 5.12 3.42 +9685 5.12 3.41 +9690 5.12 3.41 +9695 5.12 3.41 +9700 5.11 3.41 +9705 5.11 3.41 +9710 5.11 3.41 +9715 5.11 3.40 +9720 5.10 3.40 +9725 5.10 3.40 +9730 5.10 3.40 +9735 5.10 3.40 +9740 5.09 3.39 +9745 5.09 3.39 +9750 5.09 3.39 +9755 5.08 3.39 +9760 5.08 3.39 +9765 5.08 3.39 +9770 5.08 3.38 +9775 5.07 3.38 +9780 5.07 3.38 +9785 5.07 3.38 +9790 5.07 3.38 +9795 5.06 3.38 +9800 5.06 3.37 +9805 5.06 3.37 +9810 5.06 3.37 +9815 5.05 3.37 +9820 5.05 3.37 +9825 5.05 3.37 +9830 5.05 3.36 +9835 5.04 3.36 +9840 5.04 3.36 +9845 5.04 3.36 +9850 5.04 3.36 +9855 5.03 3.36 +9860 5.03 3.35 +9865 5.03 3.35 +9870 5.03 3.35 +9875 5.02 3.35 +9880 5.02 3.35 +9885 5.02 3.35 +9890 5.02 3.34 +9895 5.01 3.34 +9900 5.01 3.34 +9905 5.01 3.34 +9910 5.01 3.34 +9915 5.00 3.34 +9920 5.00 3.33 +9925 5.00 3.33 +9930 4.99 3.33 +9935 4.99 3.33 +9940 4.99 3.33 +9945 4.99 3.32 +9950 4.98 3.32 +9955 4.98 3.32 +9960 4.98 3.32 +9965 4.98 3.32 +9970 4.97 3.32 +9975 4.97 3.31 +9980 4.97 3.31 +9985 4.97 3.31 +9990 4.96 3.31 +9995 4.96 3.31 +10000 4.96 3.31 +10005 4.96 3.31 +10010 4.96 3.30 +10015 4.95 3.30 +10020 4.95 3.30 +10025 4.95 3.30 +10030 4.95 3.30 +10035 4.94 3.30 +10040 4.94 3.29 +10045 4.94 3.29 +10050 4.94 3.29 +10055 4.93 3.29 +10060 4.93 3.29 +10065 4.93 3.29 +10070 4.93 3.28 +10075 4.92 3.28 +10080 4.92 3.28 +10085 4.92 3.28 +10090 4.92 3.28 +10095 4.91 3.28 +10100 4.91 3.27 +10105 4.91 3.27 +10110 4.91 3.27 +10115 4.90 3.27 +10120 4.90 3.27 +10125 4.90 3.27 +10130 4.90 3.26 +10135 4.89 3.26 +10140 4.89 3.26 +10145 4.89 3.26 +10150 4.89 3.26 +10155 4.88 3.26 +10160 4.88 3.25 +10165 4.88 3.25 +10170 4.88 3.25 +10175 4.87 3.25 +10180 4.87 3.25 +10185 4.87 3.25 +10190 4.87 3.25 +10195 4.87 3.24 +10200 4.86 3.24 +10205 4.86 3.24 +10210 4.86 3.24 +10215 4.86 3.24 +10220 4.85 3.24 +10225 4.85 3.23 +10230 4.85 3.23 +10235 4.85 3.23 +10240 4.84 3.23 +10245 4.84 3.23 +10250 4.84 3.23 +10255 4.84 3.22 +10260 4.83 3.22 +10265 4.83 3.22 +10270 4.83 3.22 +10275 4.83 3.22 +10280 4.82 3.22 +10285 4.82 3.22 +10290 4.82 3.21 +10295 4.82 3.21 +10300 4.82 3.21 +10305 4.81 3.21 +10310 4.81 3.21 +10315 4.81 3.21 +10320 4.81 3.20 +10325 4.80 3.20 +10330 4.80 3.20 +10335 4.80 3.20 +10340 4.80 3.20 +10345 4.79 3.20 +10350 4.79 3.19 +10355 4.79 3.19 +10360 4.79 3.19 +10365 4.79 3.19 +10370 4.78 3.19 +10375 4.78 3.19 +10380 4.78 3.19 +10385 4.78 3.18 +10390 4.77 3.18 +10395 4.77 3.18 +10400 4.77 3.18 +10405 4.77 3.18 +10410 4.76 3.18 +10415 4.76 3.17 +10420 4.76 3.17 +10425 4.76 3.17 +10430 4.76 3.17 +10435 4.75 3.17 +10440 4.75 3.17 +10445 4.75 3.17 +10450 4.75 3.16 +10455 4.74 3.16 +10460 4.74 3.16 +10465 4.74 3.16 +10470 4.74 3.16 +10475 4.74 3.16 +10480 4.73 3.16 +10485 4.73 3.15 +10490 4.73 3.15 +10495 4.73 3.15 +10500 4.72 3.15 +10505 4.72 3.15 +10510 4.72 3.15 +10515 4.72 3.14 +10520 4.71 3.14 +10525 4.71 3.14 +10530 4.71 3.14 +10535 4.71 3.14 +10540 4.71 3.14 +10545 4.70 3.14 +10550 4.70 3.13 +10555 4.70 3.13 +10560 4.70 3.13 +10565 4.69 3.13 +10570 4.69 3.13 +10575 4.69 3.13 +10580 4.69 3.13 +10585 4.69 3.12 +10590 4.68 3.12 +10595 4.68 3.12 +10600 4.68 3.12 +10605 4.68 3.12 +10610 4.67 3.12 +10615 4.67 3.12 +10620 4.67 3.11 +10625 4.67 3.11 +10630 4.67 3.11 +10635 4.66 3.11 +10640 4.66 3.11 +10645 4.66 3.11 +10650 4.66 3.10 +10655 4.66 3.10 +10660 4.65 3.10 +10665 4.65 3.10 +10670 4.65 3.10 +10675 4.65 3.10 +10680 4.64 3.10 +10685 4.64 3.09 +10690 4.64 3.09 +10695 4.64 3.09 +10700 4.64 3.09 +10705 4.63 3.09 +10710 4.63 3.09 +10715 4.63 3.09 +10720 4.63 3.08 +10725 4.62 3.08 +10730 4.62 3.08 +10735 4.62 3.08 +10740 4.62 3.08 +10745 4.62 3.08 +10750 4.61 3.08 +10755 4.61 3.07 +10760 4.61 3.07 +10765 4.61 3.07 +10770 4.61 3.07 +10775 4.60 3.07 +10780 4.60 3.07 +10785 4.60 3.07 +10790 4.60 3.06 +10795 4.59 3.06 +10800 4.59 3.06 +10805 4.59 3.06 +10810 4.59 3.06 +10815 4.59 3.06 +10820 4.58 3.06 +10825 4.58 3.05 +10830 4.58 3.05 +10835 4.58 3.05 +10840 4.58 3.05 +10845 4.57 3.05 +10850 4.57 3.05 +10855 4.57 3.05 +10860 4.57 3.04 +10865 4.57 3.04 +10870 4.56 3.04 +10875 4.56 3.04 +10880 4.56 3.04 +10885 4.56 3.04 +10890 4.55 3.04 +10895 4.55 3.04 +10900 4.55 3.03 +10905 4.55 3.03 +10910 4.55 3.03 +10915 4.54 3.03 +10920 4.54 3.03 +10925 4.54 3.03 +10930 4.54 3.03 +10935 4.54 3.02 +10940 4.53 3.02 +10945 4.53 3.02 +10950 4.53 3.02 +10955 4.53 3.02 +10960 4.53 3.02 +10965 4.52 3.02 +10970 4.52 3.01 +10975 4.52 3.01 +10980 4.52 3.01 +10985 4.52 3.01 +10990 4.51 3.01 +10995 4.51 3.01 +11000 4.51 3.01 +11005 4.51 +11010 4.50 +11015 4.50 +11020 4.50 +11025 4.50 +11030 4.50 +11035 4.49 +11040 4.49 +11045 4.49 +11050 4.49 +11055 4.49 +11060 4.48 +11065 4.48 +11070 4.48 +11075 4.48 +11080 4.48 +11085 4.47 +11090 4.47 +11095 4.47 +11100 4.47 +11105 4.47 +11110 4.46 +11115 4.46 +11120 4.46 +11125 4.46 +11130 4.46 +11135 4.45 +11140 4.45 +11145 4.45 +11150 4.45 +11155 4.45 +11160 4.44 +11165 4.44 +11170 4.44 +11175 4.44 +11180 4.44 +11185 4.43 +11190 4.43 +11195 4.43 +11200 4.43 +11205 4.43 +11210 4.42 +11215 4.42 +11220 4.42 +11225 4.42 +11230 4.42 +11235 4.41 +11240 4.41 +11245 4.41 +11250 4.41 +11255 4.41 +11260 4.40 +11265 4.40 +11270 4.40 +11275 4.40 +11280 4.40 +11285 4.40 +11290 4.39 +11295 4.39 +11300 4.39 +11305 4.39 +11310 4.39 +11315 4.38 +11320 4.38 +11325 4.38 +11330 4.38 +11335 4.38 +11340 4.37 +11345 4.37 +11350 4.37 +11355 4.37 +11360 4.37 +11365 4.36 +11370 4.36 +11375 4.36 +11380 4.36 +11385 4.36 +11390 4.35 +11395 4.35 +11400 4.35 +11405 4.35 +11410 4.35 +11415 4.35 +11420 4.34 +11425 4.34 +11430 4.34 +11435 4.34 +11440 4.34 +11445 4.33 +11450 4.33 +11455 4.33 +11460 4.33 +11465 4.33 +11470 4.32 +11475 4.32 +11480 4.32 +11485 4.32 +11490 4.32 +11495 4.31 +11500 4.31 +11505 4.31 +11510 4.31 +11515 4.31 +11520 4.31 +11525 4.30 +11530 4.30 +11535 4.30 +11540 4.30 +11545 4.30 +11550 4.29 +11555 4.29 +11560 4.29 +11565 4.29 +11570 4.29 +11575 4.29 +11580 4.28 +11585 4.28 +11590 4.28 +11595 4.28 +11600 4.28 +11605 4.27 +11610 4.27 +11615 4.27 +11620 4.27 +11625 4.27 +11630 4.26 +11635 4.26 +11640 4.26 +11645 4.26 +11650 4.26 +11655 4.26 +11660 4.25 +11665 4.25 +11670 4.25 +11675 4.25 +11680 4.25 +11685 4.24 +11690 4.24 +11695 4.24 +11700 4.24 +11705 4.24 +11710 4.24 +11715 4.23 +11720 4.23 +11725 4.23 +11730 4.23 +11735 4.23 +11740 4.22 +11745 4.22 +11750 4.22 +11755 4.22 +11760 4.22 +11765 4.22 +11770 4.21 +11775 4.21 +11780 4.21 +11785 4.21 +11790 4.21 +11795 4.21 +11800 4.20 +11805 4.20 +11810 4.20 +11815 4.20 +11820 4.20 +11825 4.19 +11830 4.19 +11835 4.19 +11840 4.19 +11845 4.19 +11850 4.19 +11855 4.18 +11860 4.18 +11865 4.18 +11870 4.18 +11875 4.18 +11880 4.18 +11885 4.17 +11890 4.17 +11895 4.17 +11900 4.17 +11905 4.17 +11910 4.16 +11915 4.16 +11920 4.16 +11925 4.16 +11930 4.16 +11935 4.16 +11940 4.15 +11945 4.15 +11950 4.15 +11955 4.15 +11960 4.15 +11965 4.15 +11970 4.14 +11975 4.14 +11980 4.14 +11985 4.14 +11990 4.14 +11995 4.14 +12000 4.13 +12005 4.13 +12010 4.13 +12015 4.13 +12020 4.13 +12025 4.12 +12030 4.12 +12035 4.12 +12040 4.12 +12045 4.12 +12050 4.12 +12055 4.11 +12060 4.11 +12065 4.11 +12070 4.11 +12075 4.11 +12080 4.11 +12085 4.10 +12090 4.10 +12095 4.10 +12100 4.10 +12105 4.10 +12110 4.10 +12115 4.09 +12120 4.09 +12125 4.09 +12130 4.09 +12135 4.09 +12140 4.09 +12145 4.08 +12150 4.08 +12155 4.08 +12160 4.08 +12165 4.08 +12170 4.08 +12175 4.07 +12180 4.07 +12185 4.07 +12190 4.07 +12195 4.07 +12200 4.07 +12205 4.06 +12210 4.06 +12215 4.06 +12220 4.06 +12225 4.06 +12230 4.06 +12235 4.05 +12240 4.05 +12245 4.05 +12250 4.05 +12255 4.05 +12260 4.05 +12265 4.04 +12270 4.04 +12275 4.04 +12280 4.04 +12285 4.04 +12290 4.04 +12295 4.03 +12300 4.03 +12305 4.03 +12310 4.03 +12315 4.03 +12320 4.03 +12325 4.02 +12330 4.02 +12335 4.02 +12340 4.02 +12345 4.02 +12350 4.02 +12355 4.01 +12360 4.01 +12365 4.01 +12370 4.01 +12375 4.01 +12380 4.01 +12385 4.00 +12390 4.00 +12395 4.00 +12400 4.00 +12405 4.00 +12410 4.00 +12415 4.00 +12420 3.99 +12425 3.99 +12430 3.99 +12435 3.99 +12440 3.99 +12445 3.99 +12450 3.98 +12455 3.98 +12460 3.98 +12465 3.98 +12470 3.98 +12475 3.98 +12480 3.97 +12485 3.97 +12490 3.97 +12495 3.97 +12500 3.97 +12505 3.97 +12510 3.96 +12515 3.96 +12520 3.96 +12525 3.96 +12530 3.96 +12535 3.96 +12540 3.96 +12545 3.95 +12550 3.95 +12555 3.95 +12560 3.95 +12565 3.95 +12570 3.95 +12575 3.94 +12580 3.94 +12585 3.94 +12590 3.94 +12595 3.94 +12600 3.94 +12605 3.93 +12610 3.93 +12615 3.93 +12620 3.93 +12625 3.93 +12630 3.93 +12635 3.93 +12640 3.92 +12645 3.92 +12650 3.92 +12655 3.92 +12660 3.92 +12665 3.92 +12670 3.91 +12675 3.91 +12680 3.91 +12685 3.91 +12690 3.91 +12695 3.91 +12700 3.91 +12705 3.90 +12710 3.90 +12715 3.90 +12720 3.90 +12725 3.90 +12730 3.90 +12735 3.89 +12740 3.89 +12745 3.89 +12750 3.89 +12755 3.89 +12760 3.89 +12765 3.89 +12770 3.88 +12775 3.88 +12780 3.88 +12785 3.88 +12790 3.88 +12795 3.88 +12800 3.88 +12805 3.87 +12810 3.87 +12815 3.87 +12820 3.87 +12825 3.87 +12830 3.87 +12835 3.86 +12840 3.86 +12845 3.86 +12850 3.86 +12855 3.86 +12860 3.86 +12865 3.86 +12870 3.85 +12875 3.85 +12880 3.85 +12885 3.85 +12890 3.85 +12895 3.85 +12900 3.84 +12905 3.84 +12910 3.84 +12915 3.84 +12920 3.84 +12925 3.84 +12930 3.84 +12935 3.83 +12940 3.83 +12945 3.83 +12950 3.83 +12955 3.83 +12960 3.83 +12965 3.83 +12970 3.82 +12975 3.82 +12980 3.82 +12985 3.82 +12990 3.82 +12995 3.82 +13000 3.82 diff --git a/lutSi111R155.txt b/lutSi111R155.txt new file mode 100644 index 0000000..cae7c4a --- /dev/null +++ b/lutSi111R155.txt @@ -0,0 +1,1802 @@ +Energy CamArmRot CristBendRot CamPosX EvPerPix CamPosX_100nm CamPosX_150nm CamPosX_200nm +4000 59.00223 29.27606 -11.32353 0.00783 -11.32353 -11.32353 -9.7735281381 +4005 58.92099 29.23299 -11.32379 0.00784 -11.32379 -11.32379 -9.7757232262 +4010 58.83998 29.19005 -11.32394 0.00786 -11.32394 -11.32394 -9.7778034886 +4015 58.75921 29.14724 -11.32399 0.00788 -11.32399 -11.32399 -9.7797789434 +4020 58.67867 29.10455 -11.32393 0.00791 -11.32393 -11.32393 -9.7816396085 +4025 58.59837 29.06199 -11.32377 0.00793 -11.32377 -11.32377 -9.7833955017 +4030 58.51829 29.01955 -11.32351 0.00795 -11.32351 -11.32351 -9.7850466409 +4035 58.43844 28.97724 -11.32315 0.00797 -11.32315 -11.32315 -9.7865930436 +4040 58.35883 28.93505 -11.3227 0.00800 -11.3227 -11.3227 -9.7880447275 +4045 58.27944 28.89298 -11.32214 0.00802 -11.32214 -11.32214 -9.78938171 +4050 58.20027 28.85104 -11.32149 0.00804 -11.32149 -11.32149 -9.7906240086 +4055 58.12134 28.80921 -11.32074 0.00807 -11.32074 -11.32074 -9.7917616407 +4060 58.04262 28.76751 -11.31989 0.00809 -11.31989 -11.31989 -9.7927946233 +4065 57.96413 28.72593 -11.31895 0.00811 -11.31895 -11.31895 -9.7937329738 +4070 57.88587 28.68446 -11.31791 0.00814 -11.31791 -11.31791 -9.7945667091 +4075 57.80782 28.64312 -11.31678 0.00816 -11.31678 -11.31678 -9.7953058463 +4080 57.73 28.6019 -11.31556 0.00818 -11.31556 -11.31556 -9.7959504023 +4085 57.65239 28.56079 -11.31425 0.00820 -11.31425 -11.31425 -9.7965003939 +4090 57.57501 28.5198 -11.31284 0.00823 -11.31284 -11.31284 -9.7969458378 +4095 57.49784 28.47893 -11.31135 0.00825 -11.31135 -11.31135 -9.7973067506 +4100 57.42089 28.43817 -11.30976 0.00827 -11.30976 -11.30976 -9.7975631491 +4105 57.34415 28.39753 -11.30809 0.00830 -11.30809 -11.30809 -9.7977350495 +4110 57.26763 28.35701 -11.30633 0.00832 -11.30633 -11.30633 -9.7978124685 +4115 57.19133 28.3166 -11.30448 0.00834 -11.30448 -11.30448 -9.7977954223 +4120 57.11523 28.27631 -11.30255 0.00837 -11.30255 -11.30255 -9.7976939271 +4125 57.03935 28.23613 -11.30053 0.00839 -11.30053 -11.30053 -9.7974979992 +4130 56.96368 28.19606 -11.29843 0.00841 -11.29843 -11.29843 -9.7972176547 +4135 56.88822 28.15611 -11.29624 0.00844 -11.29624 -9.2970421314 -9.7968429095 +4140 56.81297 28.11627 -11.29397 0.00846 -11.29397 -9.2971866312 -9.7963837796 +4145 56.73792 28.07654 -11.29161 0.00848 -11.29161 -9.2972353059 -9.7958302809 +4150 56.66309 28.03692 -11.28918 0.00851 -11.28918 -9.2972081765 -9.7952024291 +4155 56.58846 27.99742 -11.28666 0.00853 -11.28666 -9.297085264 -9.7944802401 +4160 56.51403 27.95802 -11.28406 0.00855 -11.28406 -9.2968765892 -9.7936737294 +4165 56.43981 27.91874 -11.28139 0.00858 -11.28139 -9.296592173 -9.7927929125 +4170 56.3658 27.87956 -11.27863 0.00860 -11.27863 -9.2962120358 -9.7918178051 +4175 56.29198 27.84049 -11.2758 0.00863 -11.2758 -9.2957561984 -9.7907684224 +4180 56.21837 27.80153 -11.27289 0.00865 -11.27289 -9.2952146811 -9.7896347799 +4185 56.14496 27.76268 -11.2699 0.00867 -11.2699 -9.2945875043 -9.7884168927 +4190 56.07175 27.72394 -11.26683 0.00870 -11.26683 -9.2938746883 -9.7871147762 +4195 55.99874 27.6853 -11.26369 0.00872 -11.26369 -9.2930862533 -9.7857384454 +4200 55.92593 27.64677 -11.26047 0.00874 -11.26047 -9.2922122192 -9.7842779154 +4205 55.85332 27.60835 -11.25718 0.00877 -11.25718 -9.2912626061 -9.7827432011 +4210 55.7809 27.57003 -11.25382 0.00879 -11.25382 -9.2902374339 -9.7811343175 +4215 55.70868 27.53182 -11.25038 0.00882 -11.25038 -9.2891267223 -9.7794412794 +4220 55.63666 27.49371 -11.24688 0.00884 -11.24688 -9.287950491 -9.7776841015 +4225 55.56483 27.45571 -11.24329 0.00886 -11.24329 -9.2866787597 -9.7758327987 +4230 55.49319 27.41781 -11.23964 0.00889 -11.23964 -9.2853415477 -9.7739173854 +4235 55.42174 27.38002 -11.23592 0.00891 -11.23592 -9.2839288747 -9.7719278762 +4240 55.35049 27.34232 -11.23213 0.00894 -11.23213 -9.2824407598 -9.7698642857 +4245 55.27943 27.30473 -11.22827 0.00896 -11.22827 -9.2808772222 -9.7677266283 +4250 55.20856 27.26725 -11.22434 0.00898 -11.22434 -9.2792382812 -9.7655149183 +4255 55.13787 27.22986 -11.22034 0.00901 -11.22034 -9.2775239558 -9.76322917 +4260 55.06738 27.19257 -11.21627 0.00903 -11.21627 -9.2757342649 -9.7608693976 +4265 54.99708 27.15539 -11.21214 0.00906 -11.21214 -9.2738792274 -9.7584456152 +4270 54.92696 27.11831 -11.20794 0.00908 -11.20794 -9.2719488621 -9.7559478371 +4275 54.85702 27.08132 -11.20368 0.00910 -11.20368 -9.2699531877 -9.7533860771 +4280 54.78728 27.04444 -11.19935 0.00913 -11.19935 -9.2678822228 -9.7507503493 +4285 54.71772 27.00765 -11.19495 0.00915 -11.19495 -9.2657359859 -9.7480406674 +4290 54.64834 26.97097 -11.19049 0.00918 -11.19049 -9.2635244954 -9.7452670455 +4295 54.57914 26.93438 -11.18597 0.00920 -11.18597 -9.2612477698 -9.7424294971 +4300 54.51013 26.89789 -11.18139 0.00923 -11.18139 -9.2589058272 -9.7395280361 +4305 54.4413 26.86149 -11.17674 0.00925 -11.17674 -9.2564886858 -9.736552676 +4310 54.37265 26.8252 -11.17203 0.00927 -11.17203 -9.2540063637 -9.7335134304 +4315 54.30418 26.789 -11.16726 0.00930 -11.16726 -9.251458879 -9.7304103128 +4320 54.23589 26.7529 -11.16243 0.00932 -11.16243 -9.2488462495 -9.7272433367 +4325 54.16778 26.71689 -11.15754 0.00935 -11.15754 -9.2461684931 -9.7240125155 +4330 54.09985 26.68098 -11.15259 0.00937 -11.15259 -9.2434256277 -9.7207178624 +4335 54.03209 26.64516 -11.14758 0.00940 -11.14758 -9.2406176707 -9.7173593907 +4340 53.96451 26.60944 -11.14251 0.00942 -11.14251 -9.2377446399 -9.7139371137 +4345 53.89711 26.57381 -11.13738 0.00945 -11.13738 -9.2348065527 -9.7104510444 +4350 53.82988 26.53827 -11.1322 0.00947 -11.1322 -9.2318134267 -9.706911196 +4355 53.76283 26.50283 -11.12696 0.00949 -11.12696 -9.228755279 -9.7033075814 +4360 53.69595 26.46748 -11.12166 0.00952 -11.12166 -9.2256321271 -9.6996402136 +4365 53.62924 26.43223 -11.11631 0.00954 -11.11631 -9.2224539882 -9.6959191055 +4370 53.56271 26.39707 -11.1109 0.00957 -11.1109 -9.2192108792 -9.69213427 +4375 53.49634 26.36199 -11.10543 0.00959 -11.10543 -9.2159028174 -9.6882857198 +4380 53.43015 26.32701 -11.09991 0.00962 -11.09991 -9.2125398196 -9.6843834677 +4385 53.36413 26.29213 -11.09434 0.00964 -11.09434 -9.2091219027 -9.6804275263 +4390 53.29828 26.25733 -11.08871 0.00967 -11.08871 -9.2056390835 -9.6764079081 +4395 53.23259 26.22262 -11.08303 0.00969 -11.08303 -9.2021013789 -9.6723346259 +4400 53.16708 26.188 -11.0773 0.00972 -11.0773 -9.1985088053 -9.668207692 +4405 53.10173 26.15348 -11.07151 0.00974 -11.07151 -9.1948513794 -9.6640171189 +4410 53.03655 26.11904 -11.06568 0.00977 -11.06568 -9.1911491178 -9.659782919 +4415 52.97153 26.08469 -11.05979 0.00979 -11.05979 -9.1873820367 -9.6554851045 +4420 52.90668 26.05043 -11.05385 0.00982 -11.05385 -9.1835601527 -9.6511336879 +4425 52.842 26.01625 -11.04786 0.00984 -11.04786 -9.179683482 -9.6467286812 +4430 52.77748 25.98217 -11.04182 0.00987 -11.04182 -9.1757520407 -9.6422700966 +4435 52.71312 25.94817 -11.03573 0.00989 -11.03573 -9.171765845 -9.6377579462 +4440 52.64893 25.91426 -11.0296 0.00992 -11.0296 -9.167734911 -9.6332022422 +4445 52.58489 25.88044 -11.02341 0.00994 -11.02341 -9.1636392547 -9.6285829964 +4450 52.52102 25.8467 -11.01717 0.00997 -11.01717 -9.159488892 -9.6239102208 +4455 52.45731 25.81305 -11.01089 0.00999 -11.01089 -9.1552938387 -9.6191939272 +4460 52.39377 25.77948 -11.00456 0.01002 -11.00456 -9.1510441106 -9.6144241277 +4465 52.33038 25.746 -10.99819 0.01004 -10.99819 -9.1467497234 -9.6096108338 +4470 52.26715 25.71261 -10.99176 0.01007 -10.99176 -9.1423906928 -9.6047340573 +4475 52.20407 25.6793 -10.98529 0.01009 -10.98529 -9.1379870342 -9.5998138099 +4480 52.14116 25.64607 -10.97878 0.01012 -10.97878 -9.1335387633 -9.5948501033 +4485 52.0784 25.61293 -10.97222 0.01014 -10.97222 -9.1290358954 -9.5898329489 +4490 52.0158 25.57987 -10.96561 0.01017 -10.96561 -9.1244784459 -9.5847623584 +4495 51.95336 25.5469 -10.95896 0.01020 -10.95896 -9.1198764301 -9.5796483431 +4500 51.89107 25.51401 -10.95227 0.01022 -10.95227 -9.1152298632 -9.5744909145 +4505 51.82893 25.4812 -10.94553 0.01025 -10.94553 -9.1105287604 -9.569280084 +4510 51.76695 25.44847 -10.93875 0.01027 -10.93875 -9.1057831367 -9.5640258628 +4515 51.70513 25.41583 -10.93193 0.01030 -10.93193 -9.1009930071 -9.5587282623 +4520 51.64345 25.38327 -10.92506 0.01032 -10.92506 -9.0961483867 -9.5533772937 +4525 51.58193 25.35079 -10.91815 0.01035 -10.91815 -9.0912592902 -9.547982968 +4530 51.52056 25.31839 -10.9112 0.01037 -10.9112 -9.0863257326 -9.5425452965 +4535 51.45934 25.28607 -10.90421 0.01040 -10.90421 -9.0813477286 -9.5370642902 +4540 51.39827 25.25383 -10.89718 0.01043 -10.89718 -9.0763252928 -9.53153996 +4545 51.33736 25.22167 -10.8901 0.01045 -10.8901 -9.0712484399 -9.5259623171 +4550 51.27659 25.18959 -10.88299 0.01048 -10.88299 -9.0661371845 -9.5203513723 +4555 51.21597 25.15759 -10.87584 0.01050 -10.87584 -9.060981541 -9.5146971365 +4560 51.1555 25.12567 -10.86864 0.01053 -10.86864 -9.0557715239 -9.5089896204 +4565 51.09517 25.09383 -10.86141 0.01055 -10.86141 -9.0505271476 -9.503248835 +4570 51.035 25.06207 -10.85414 0.01058 -10.85414 -9.0452384264 -9.4974647909 +4575 50.97497 25.03038 -10.84683 0.01061 -10.84683 -9.0399053744 -9.4916374987 +4580 50.91509 24.99878 -10.83949 0.01063 -10.83949 -9.034538006 -9.4857769692 +4585 50.85535 24.96725 -10.8321 0.01066 -10.8321 -9.0291163352 -9.479863213 +4590 50.79575 24.9358 -10.82468 0.01068 -10.82468 -9.0236603761 -9.4739162405 +4595 50.73631 24.90442 -10.81722 0.01071 -10.81722 -9.0181601426 -9.4679260623 +4600 50.677 24.87313 -10.80972 0.01073 -10.80972 -9.0126156488 -9.4618926888 +4605 50.61784 24.8419 -10.80219 0.01076 -10.80219 -9.0070369084 -9.4558261304 +4610 50.55882 24.81076 -10.79462 0.01079 -10.79462 -9.0014139354 -9.4497163976 +4615 50.49994 24.77969 -10.78701 0.01081 -10.78701 -8.9957467435 -9.4435635005 +4620 50.44121 24.7487 -10.77937 0.01084 -10.77937 -8.9900453463 -9.4373774496 +4625 50.38262 24.71778 -10.7717 0.01087 -10.7717 -8.9843097575 -9.4311582549 +4630 50.32416 24.68694 -10.76399 0.01089 -10.76399 -8.9785299907 -9.4248959268 +4635 50.26585 24.65617 -10.75624 0.01092 -10.75624 -8.9727060594 -9.4185904753 +4640 50.20768 24.62548 -10.74847 0.01094 -10.74847 -8.9668579771 -9.4122619106 +4645 50.14964 24.59486 -10.74065 0.01097 -10.74065 -8.9609557571 -9.4058802426 +4650 50.09175 24.56431 -10.73281 0.01100 -10.73281 -8.9550294129 -9.3994754815 +4655 50.03399 24.53384 -10.72493 0.01102 -10.72493 -8.9490589577 -9.3930276371 +4660 49.97637 24.50344 -10.71702 0.01105 -10.71702 -8.9430544047 -9.3865467194 +4665 49.91889 24.47312 -10.70907 0.01107 -10.70907 -8.9370057672 -9.3800227383 +4670 49.86154 24.44287 -10.70109 0.01110 -10.70109 -8.9309230582 -9.3734657036 +4675 49.80433 24.41269 -10.69308 0.01113 -10.69308 -8.9248062908 -9.3668756252 +4680 49.74726 24.38258 -10.68504 0.01115 -10.68504 -8.918655478 -9.3602525127 +4685 49.69032 24.35255 -10.67697 0.01118 -10.67697 -8.9124706327 -9.3535963759 +4690 49.63351 24.32258 -10.66887 0.01121 -10.66887 -8.906251768 -9.3469072244 +4695 49.57684 24.29269 -10.66073 0.01123 -10.66073 -8.8999888965 -9.3401750679 +4700 49.5203 24.26287 -10.65257 0.01126 -10.65257 -8.8937020311 -9.3334199161 +4705 49.4639 24.23312 -10.64438 0.01129 -10.64438 -8.8873811846 -9.3266317783 +4710 49.40763 24.20344 -10.63615 0.01131 -10.63615 -8.8810163696 -9.3198006642 +4715 49.35149 24.17383 -10.6279 0.01134 -10.6279 -8.8746275986 -9.3129465832 +4720 49.29548 24.14429 -10.61961 0.01137 -10.61961 -8.8681948844 -9.3060495447 +4725 49.2396 24.11482 -10.6113 0.01139 -10.6113 -8.8617382394 -9.2991295582 +4730 49.18385 24.08542 -10.60296 0.01142 -10.60296 -8.8552476761 -9.2921766329 +4735 49.12824 24.05609 -10.59459 0.01145 -10.59459 -8.8487232069 -9.2851907782 +4740 49.07275 24.02683 -10.58619 0.01147 -10.58619 -8.8421648442 -9.2781720034 +4745 49.01739 23.99764 -10.57776 0.01150 -10.57776 -8.8355726002 -9.2711203177 +4750 48.96216 23.96852 -10.56931 0.01153 -10.56931 -8.8289564872 -9.2640457302 +4755 48.90706 23.93946 -10.56083 0.01155 -10.56083 -8.8223065175 -9.2569382502 +4760 48.85209 23.91048 -10.55232 0.01158 -10.55232 -8.8156227031 -9.2497978867 +4765 48.79725 23.88156 -10.54378 0.01161 -10.54378 -8.8089050562 -9.2426246488 +4770 48.74253 23.85271 -10.53522 0.01163 -10.53522 -8.8021635889 -9.2354285456 +4775 48.68794 23.82392 -10.52663 0.01166 -10.52663 -8.7953883131 -9.2281995861 +4780 48.63347 23.79521 -10.51801 0.01169 -10.51801 -8.7885792408 -9.2209377792 +4785 48.57913 23.76656 -10.50937 0.01172 -10.50937 -8.7817463838 -9.2136531338 +4790 48.52491 23.73797 -10.50071 0.01174 -10.50071 -8.7748897542 -9.2063456589 +4795 48.47082 23.70946 -10.49201 0.01177 -10.49201 -8.7679893635 -9.1989953633 +4800 48.41686 23.68101 -10.48329 0.01180 -10.48329 -8.7610652237 -9.1916222558 +4805 48.36301 23.65262 -10.47455 0.01182 -10.47455 -8.7541173463 -9.1842263452 +4810 48.30929 23.6243 -10.46578 0.01185 -10.46578 -8.7471357432 -9.1767976402 +4815 48.2557 23.59605 -10.45699 0.01188 -10.45699 -8.7401304257 -9.1693461496 +4820 48.20222 23.56786 -10.44818 0.01190 -10.44818 -8.7331014056 -9.1618718819 +4825 48.14887 23.53974 -10.43934 0.01193 -10.43934 -8.7260386944 -9.1543648459 +4830 48.09564 23.51168 -10.43047 0.01196 -10.43047 -8.7189423034 -9.1468250501 +4835 48.04253 23.48368 -10.42159 0.01199 -10.42159 -8.7118322442 -9.1392725031 +4840 47.98954 23.45575 -10.41267 0.01201 -10.41267 -8.704678528 -9.1316772134 +4845 47.93667 23.42789 -10.40374 0.01204 -10.40374 -8.6975111662 -9.1240691896 +4850 47.88392 23.40009 -10.39478 0.01207 -10.39478 -8.6903101701 -9.11642844 +4855 47.83129 23.37235 -10.38581 0.01210 -10.38581 -8.6830955509 -9.1087749731 +4860 47.77878 23.34467 -10.3768 0.01212 -10.3768 -8.6758373199 -9.1010787973 +4865 47.72639 23.31706 -10.36778 0.01215 -10.36778 -8.668565488 -9.0933699209 +4870 47.67412 23.28951 -10.35873 0.01218 -10.35873 -8.6612600664 -9.0856283523 +4875 47.62196 23.26203 -10.34967 0.01221 -10.34967 -8.6539410662 -9.0778740997 +4880 47.56993 23.2346 -10.34058 0.01223 -10.34058 -8.6465884984 -9.0700871713 +4885 47.518 23.20724 -10.33147 0.01226 -10.33147 -8.6392123739 -9.0622775755 +4890 47.4662 23.17994 -10.32234 0.01229 -10.32234 -8.6318127036 -9.0544453204 +4895 47.41451 23.1527 -10.31318 0.01232 -10.31318 -8.6243794984 -9.046580414 +4900 47.36294 23.12553 -10.30401 0.01234 -10.30401 -8.6169327692 -9.0387028647 +4905 47.31148 23.09841 -10.29482 0.01237 -10.29482 -8.6094625266 -9.0308026803 +4910 47.26014 23.07136 -10.2856 0.01240 -10.2856 -8.6019587814 -9.0228698691 +4915 47.20891 23.04436 -10.27637 0.01243 -10.27637 -8.5944415444 -9.0149244389 +4920 47.1578 23.01743 -10.26712 0.01245 -10.26712 -8.5869008261 -9.0069563978 +4925 47.1068 22.99056 -10.25784 0.01248 -10.25784 -8.5793266372 -8.9989557537 +4930 47.05591 22.96375 -10.24855 0.01251 -10.24855 -8.5717389882 -8.9909425146 +4935 47.00514 22.937 -10.23924 0.01254 -10.23924 -8.5641278896 -8.9829066884 +4940 46.95447 22.91031 -10.22991 0.01257 -10.22991 -8.556493352 -8.9748482828 +4945 46.90392 22.88368 -10.22056 0.01259 -10.22056 -8.5488353857 -8.9667673057 +4950 46.85349 22.8571 -10.21119 0.01262 -10.21119 -8.5411540011 -8.958663765 +4955 46.80316 22.83059 -10.20181 0.01265 -10.20181 -8.5334592086 -8.9505476683 +4960 46.75295 22.80414 -10.1924 0.01268 -10.1924 -8.5257310185 -8.9423990234 +4965 46.70284 22.77774 -10.18298 0.01271 -10.18298 -8.5179894411 -8.9342378381 +4970 46.65285 22.75141 -10.17354 0.01273 -10.17354 -8.5102244865 -8.9260541199 +4975 46.60296 22.72513 -10.16408 0.01276 -10.16408 -8.502436165 -8.9178478765 +4980 46.55319 22.69891 -10.1546 0.01279 -10.1546 -8.4946244867 -8.9096191155 +4985 46.50353 22.67275 -10.14511 0.01282 -10.14511 -8.4867994617 -8.9013778445 +4990 46.45397 22.64664 -10.1356 0.01285 -10.1356 -8.4789511001 -8.893114071 +4995 46.40452 22.6206 -10.12607 0.01287 -10.12607 -8.4710794118 -8.8848278026 +5000 46.35518 22.59461 -10.11653 0.01290 -10.11653 -8.463194407 -8.8765290467 +5005 46.30595 22.56868 -10.10697 0.01293 -10.10697 -8.4552860954 -8.8682078108 +5010 46.25682 22.5428 -10.09739 0.01296 -10.09739 -8.447354487 -8.8598641023 +5015 46.20781 22.51698 -10.0878 0.01299 -10.0878 -8.4394095917 -8.8515079286 +5020 46.15889 22.49122 -10.07819 0.01301 -10.07819 -8.4314414193 -8.8431292971 +5025 46.11009 22.46552 -10.06857 0.01304 -10.06857 -8.4234599795 -8.8347382151 +5030 46.06139 22.43987 -10.05892 0.01307 -10.05892 -8.4154452821 -8.8263146899 +5035 46.0128 22.41428 -10.04927 0.01310 -10.04927 -8.4074273369 -8.8178887288 +5040 45.96431 22.38874 -10.0396 0.01313 -10.0396 -8.3993861535 -8.809440339 +5045 45.91592 22.36326 -10.02991 0.01316 -10.02991 -8.3913217414 -8.8009695279 +5050 45.86764 22.33784 -10.02021 0.01319 -10.02021 -8.3832441104 -8.7924863024 +5055 45.81947 22.31247 -10.01049 0.01321 -10.01049 -8.3751432699 -8.7839806699 +5060 45.7714 22.28715 -10.00076 0.01324 -10.00076 -8.3670292295 -8.7754626375 +5065 45.72343 22.26189 -9.99102 0.01327 -9.99102 -8.3589019986 -8.7669322122 +5070 45.67556 22.23669 -9.98126 0.01330 -9.98126 -8.3507515867 -8.7583794012 +5075 45.6278 22.21154 -9.97148 0.01333 -9.97148 -8.3425780032 -8.7498042115 +5080 45.58014 22.18644 -9.96169 0.01336 -9.96169 -8.3343912575 -8.7412166501 +5085 45.53259 22.1614 -9.95189 0.01339 -9.95189 -8.3261913588 -8.732616724 +5090 45.48513 22.13642 -9.94207 0.01341 -9.94207 -8.3179683165 -8.7239944402 +5095 45.43778 22.11148 -9.93224 0.01344 -9.93224 -8.3097321398 -8.7153598056 +5100 45.39052 22.0866 -9.9224 0.01347 -9.9224 -8.3014828379 -8.7067128272 +5105 45.34337 22.06178 -9.91255 0.01350 -9.91255 -8.2932204201 -8.6980535118 +5110 45.29632 22.037 -9.90268 0.01353 -9.90268 -8.2849348955 -8.6893718662 +5115 45.24936 22.01228 -9.89279 0.01356 -9.89279 -8.2766262731 -8.6806678974 +5120 45.20251 21.98762 -9.8829 0.01359 -9.8829 -8.2683145622 -8.6719616122 +5125 45.15576 21.963 -9.87299 0.01362 -9.87299 -8.2599797716 -8.6632330172 +5130 45.1091 21.93844 -9.86307 0.01364 -9.86307 -8.2516319104 -8.6544921193 +5135 45.06255 21.91393 -9.85314 0.01367 -9.85314 -8.2432709876 -8.6457389252 +5140 45.01609 21.88947 -9.84319 0.01370 -9.84319 -8.234887012 -8.6369634415 +5145 44.96973 21.86507 -9.83324 0.01373 -9.83324 -8.2264999927 -8.6281856751 +5150 44.92347 21.84072 -9.82327 0.01376 -9.82327 -8.2180899385 -8.6193856324 +5155 44.87731 21.81642 -9.81329 0.01379 -9.81329 -8.2096668582 -8.6105733202 +5160 44.83124 21.79217 -9.8033 0.01382 -9.8033 -8.2012307606 -8.601748745 +5165 44.78527 21.76797 -9.79329 0.01385 -9.79329 -8.1927716544 -8.5929019135 +5170 44.7394 21.74382 -9.78328 0.01388 -9.78328 -8.1843095485 -8.5840528321 +5175 44.69362 21.71973 -9.77325 0.01391 -9.77325 -8.1758244514 -8.5751815073 +5180 44.64794 21.69568 -9.76322 0.01393 -9.76322 -8.1673363719 -8.5663079457 +5185 44.60236 21.67169 -9.75317 0.01396 -9.75317 -8.1588253185 -8.5574121538 +5190 44.55687 21.64774 -9.74311 0.01399 -9.74311 -8.1503013 -8.548504138 +5195 44.51147 21.62385 -9.73304 0.01402 -9.73304 -8.1417643248 -8.5395839046 +5200 44.46617 21.60001 -9.72296 0.01405 -9.72296 -8.1332144014 -8.5306514602 +5205 44.42097 21.57622 -9.71287 0.01408 -9.71287 -8.1246515384 -8.521706811 +5210 44.37585 21.55247 -9.70277 0.01411 -9.70277 -8.1160757442 -8.5127499635 +5215 44.33084 21.52878 -9.69266 0.01414 -9.69266 -8.1074870273 -8.5037809239 +5220 44.28591 21.50514 -9.68254 0.01417 -9.68254 -8.098885396 -8.4947996986 +5225 44.24108 21.48154 -9.67241 0.01420 -9.67241 -8.0902708587 -8.4858062938 +5230 44.19634 21.458 -9.66227 0.01423 -9.66227 -8.0816434238 -8.4768007158 +5235 44.1517 21.4345 -9.65212 0.01426 -9.65212 -8.0730030996 -8.4677829707 +5240 44.10714 21.41105 -9.64196 0.01429 -9.64196 -8.0643498943 -8.4587530649 +5245 44.06268 21.38766 -9.63179 0.01432 -9.63179 -8.0556838161 -8.4497110044 +5250 44.01831 21.36431 -9.62161 0.01435 -9.62161 -8.0470048734 -8.4406567955 +5255 43.97403 21.34101 -9.61142 0.01438 -9.61142 -8.0383130742 -8.4315904443 +5260 43.92984 21.31775 -9.60123 0.01441 -9.60123 -8.0296184266 -8.4225219568 +5265 43.88575 21.29455 -9.59102 0.01444 -9.59102 -8.0209009389 -8.4134313393 +5270 43.84174 21.27139 -9.58081 0.01446 -9.58081 -8.0121806191 -8.4043385976 +5275 43.79782 21.24829 -9.57058 0.01449 -9.57058 -8.0034374753 -8.3952237379 +5280 43.754 21.22523 -9.56035 0.01452 -9.56035 -7.9946915154 -8.3861067662 +5285 43.71026 21.20221 -9.55011 0.01455 -9.55011 -7.9859327475 -8.3769776885 +5290 43.66661 21.17925 -9.53987 0.01458 -9.53987 -7.9771711795 -8.3678465107 +5295 43.62306 21.15633 -9.52961 0.01461 -9.52961 -7.9683868194 -8.3586932389 +5300 43.57959 21.13346 -9.51935 0.01464 -9.51935 -7.959599675 -8.3495378788 +5305 43.53621 21.11063 -9.50907 0.01467 -9.50907 -7.9507897543 -8.3403604365 +5310 43.49291 21.08786 -9.49879 0.01470 -9.49879 -7.9419770651 -8.3311809178 +5315 43.44971 21.06512 -9.48851 0.01473 -9.48851 -7.9331616151 -8.3219993286 +5320 43.40659 21.04244 -9.47821 0.01476 -9.47821 -7.9243234122 -8.3127956747 +5325 43.36356 21.0198 -9.46791 0.01479 -9.46791 -7.9154824642 -8.303589962 +5330 43.32062 20.99721 -9.4576 0.01482 -9.4576 -7.9066287787 -8.2943721961 +5335 43.27777 20.97466 -9.44728 0.01485 -9.44728 -7.8977623635 -8.285142383 +5340 43.235 20.95216 -9.43696 0.01488 -9.43696 -7.8888932262 -8.2759105283 +5345 43.19232 20.92971 -9.42663 0.01491 -9.42663 -7.8800113744 -8.2666666378 +5350 43.14972 20.9073 -9.41629 0.01494 -9.41629 -7.8711168158 -8.2574107171 +5355 43.10721 20.88494 -9.40594 0.01497 -9.40594 -7.862209558 -8.2481427721 +5360 43.06479 20.86262 -9.39559 0.01500 -9.39559 -7.8532996085 -8.2388728082 +5365 43.02245 20.84035 -9.38523 0.01503 -9.38523 -7.8443769748 -8.2295908313 +5370 42.98019 20.81812 -9.37487 0.01506 -9.37487 -7.8354516645 -8.2203068469 +5375 42.93802 20.79594 -9.3645 0.01509 -9.3645 -7.8265136849 -8.2110108605 +5380 42.89594 20.7738 -9.35412 0.01512 -9.35412 -7.8175630436 -8.2017028779 +5385 42.85394 20.75171 -9.34374 0.01516 -9.34374 -7.8086097479 -8.1923929045 +5390 42.81202 20.72966 -9.33335 0.01519 -9.33335 -7.7996438053 -8.1830709459 +5395 42.77019 20.70766 -9.32295 0.01522 -9.32295 -7.7906652231 -8.1737370076 +5400 42.72844 20.6857 -9.31255 0.01525 -9.31255 -7.7816840086 -8.1644010951 +5405 42.68677 20.66378 -9.30214 0.01528 -9.30214 -7.7726901692 -8.1550532139 +5410 42.64519 20.64191 -9.29173 0.01531 -9.29173 -7.7636937121 -8.1457033694 +5415 42.60369 20.62008 -9.28131 0.01534 -9.28131 -7.7546846446 -8.1363415671 +5420 42.56227 20.5983 -9.27088 0.01537 -9.27088 -7.7456629738 -8.1269678125 +5425 42.52093 20.57656 -9.26045 0.01540 -9.26045 -7.736638707 -8.1175921108 +5430 42.47968 20.55486 -9.25002 0.01543 -9.25002 -7.7276118515 -8.1082144675 +5435 42.4385 20.53321 -9.23958 0.01546 -9.23958 -7.7185724142 -8.0988248879 +5440 42.39741 20.5116 -9.22913 0.01549 -9.22913 -7.7095204023 -8.0894233774 +5445 42.3564 20.49003 -9.21868 0.01552 -9.21868 -7.700465823 -8.0800199414 +5450 42.31547 20.46851 -9.20822 0.01555 -9.20822 -7.6913986832 -8.070604585 +5455 42.27462 20.44702 -9.19776 0.01558 -9.19776 -7.6823289901 -8.0611873136 +5460 42.23386 20.42558 -9.1873 0.01561 -9.1873 -7.6732567506 -8.0517681324 +5465 42.19317 20.40419 -9.17683 0.01564 -9.17683 -7.6641719718 -8.0423370467 +5470 42.15256 20.38283 -9.16635 0.01568 -9.16635 -7.6550746605 -8.0328940617 +5475 42.11203 20.36152 -9.15587 0.01571 -9.15587 -7.6459748238 -8.0234491826 +5480 42.07158 20.34025 -9.14539 0.01574 -9.14539 -7.6368724685 -8.0140024146 +5485 42.03122 20.31902 -9.1349 0.01577 -9.1349 -7.6277576016 -8.0045437628 +5490 41.99093 20.29784 -9.12441 0.01580 -9.12441 -7.6186402298 -7.9950832325 +5495 41.95071 20.27669 -9.11391 0.01583 -9.11391 -7.6095103601 -7.9856108287 +5500 41.91058 20.25559 -9.10341 0.01586 -9.10341 -7.6003779992 -7.9761365565 +5505 41.87053 20.23453 -9.09291 0.01589 -9.09291 -7.591243154 -7.966660421 +5510 41.83055 20.21351 -9.0824 0.01592 -9.0824 -7.5820958311 -7.9571724274 +5515 41.79065 20.19253 -9.07189 0.01595 -9.07189 -7.5729460374 -7.9476825806 +5520 41.75083 20.17159 -9.06137 0.01598 -9.06137 -7.5637837796 -7.9381808857 +5525 41.71109 20.15069 -9.05085 0.01602 -9.05085 -7.5546190643 -7.9286773477 +5530 41.67142 20.12984 -9.04033 0.01605 -9.04033 -7.5454518981 -7.9191719717 +5535 41.63183 20.10902 -9.0298 0.01608 -9.0298 -7.5362722879 -7.9096547625 +5540 41.59232 20.08825 -9.01927 0.01611 -9.01927 -7.5270902401 -7.9001357252 +5545 41.55288 20.06751 -9.00873 0.01614 -9.00873 -7.5178957613 -7.8906048646 +5550 41.51352 20.04682 -8.9982 0.01617 -8.9982 -7.5087088582 -7.8810821858 +5555 41.47423 20.02616 -8.98766 0.01620 -8.98766 -7.4995095373 -7.8715476937 +5560 41.43503 20.00555 -8.97711 0.01623 -8.97711 -7.4902978051 -7.862001393 +5565 41.39589 19.98498 -8.96657 0.01627 -8.96657 -7.481093668 -7.8524632888 +5570 41.35683 19.96444 -8.95602 0.01630 -8.95602 -7.4718771327 -7.8429133858 +5575 41.31785 19.94395 -8.94547 0.01633 -8.94547 -7.4626582054 -7.833361689 +5580 41.27894 19.9235 -8.93491 0.01636 -8.93491 -7.4534268927 -7.823798203 +5585 41.24011 19.90308 -8.92435 0.01639 -8.92435 -7.444193201 -7.8142329328 +5590 41.20135 19.88271 -8.91379 0.01642 -8.91379 -7.4349571367 -7.8046658831 +5595 41.16267 19.86237 -8.90323 0.01645 -8.90323 -7.425718706 -7.7950970587 +5600 41.12406 19.84207 -8.89267 0.01649 -8.89267 -7.4164779154 -7.7855264643 +5605 41.08552 19.82181 -8.8821 0.01652 -8.8821 -7.4072247711 -7.7759441047 +5610 41.04706 19.8016 -8.87153 0.01655 -8.87153 -7.3979692796 -7.7663599846 +5615 41.00867 19.78142 -8.86096 0.01658 -8.86096 -7.3887114469 -7.7567741087 +5620 40.97035 19.76127 -8.85038 0.01661 -8.85038 -7.3794412794 -7.7471764817 +5625 40.93211 19.74117 -8.8398 0.01664 -8.8398 -7.3701687833 -7.7375771082 +5630 40.89394 19.72111 -8.82923 0.01668 -8.82923 -7.3609039648 -7.727985993 +5635 40.85584 19.70108 -8.81864 0.01671 -8.81864 -7.3516168301 -7.7183731406 +5640 40.81781 19.68109 -8.80806 0.01674 -8.80806 -7.3423373854 -7.7087685556 +5645 40.77986 19.66114 -8.79748 0.01677 -8.79748 -7.3330556367 -7.6991622428 +5650 40.74197 19.64123 -8.78689 0.01680 -8.78689 -7.3237615903 -7.6895442066 +5655 40.70416 19.62136 -8.7763 0.01683 -8.7763 -7.3144652521 -7.6799244516 +5660 40.66642 19.60152 -8.76571 0.01687 -8.76571 -7.3051666283 -7.6703029824 +5665 40.62876 19.58173 -8.75512 0.01690 -8.75512 -7.2958657249 -7.6606798035 +5670 40.59116 19.56196 -8.74453 0.01693 -8.74453 -7.286562548 -7.6510549195 +5675 40.55363 19.54224 -8.73393 0.01696 -8.73393 -7.2772471036 -7.6414183348 +5680 40.51618 19.52256 -8.72334 0.01699 -8.72334 -7.2679393976 -7.6317900539 +5685 40.47879 19.50291 -8.71274 0.01703 -8.71274 -7.258619436 -7.6221500814 +5690 40.44148 19.4833 -8.70214 0.01706 -8.70214 -7.2492972248 -7.6125084217 +5695 40.40423 19.46372 -8.69154 0.01709 -8.69154 -7.2399727698 -7.6028650792 +5700 40.36706 19.44418 -8.68094 0.01712 -8.68094 -7.2306460771 -7.5932200583 +5705 40.32995 19.42468 -8.67034 0.01715 -8.67034 -7.2213171524 -7.5835733635 +5710 40.29291 19.40522 -8.65974 0.01719 -8.65974 -7.2119860017 -7.5739249991 +5715 40.25595 19.38579 -8.64913 0.01722 -8.64913 -7.2026426308 -7.5642649696 +5720 40.21905 19.3664 -8.63853 0.01725 -8.63853 -7.1933070455 -7.5546132794 +5725 40.18222 19.34705 -8.62792 0.01728 -8.62792 -7.1839592516 -7.5449499326 +5730 40.14546 19.32773 -8.61732 0.01731 -8.61732 -7.1746192548 -7.5352949338 +5735 40.10877 19.30845 -8.60671 0.01735 -8.60671 -7.1652670611 -7.5256282872 +5740 40.07214 19.2892 -8.5961 0.01738 -8.5961 -7.155912676 -7.5159599971 +5745 40.03559 19.26999 -8.5855 0.01741 -8.5855 -7.1465661053 -7.5063000678 +5750 39.9991 19.25082 -8.57489 0.01744 -8.57489 -7.1372073548 -7.4966285036 +5755 39.96268 19.23168 -8.56428 0.01748 -8.56428 -7.12784643 -7.4869553088 +5760 39.92633 19.21258 -8.55367 0.01751 -8.55367 -7.1184833367 -7.4772804876 +5765 39.89004 19.19351 -8.54306 0.01754 -8.54306 -7.1091180806 -7.4676040441 +5770 39.85382 19.17448 -8.53245 0.01757 -8.53245 -7.0997506671 -7.4579259828 +5775 39.81767 19.15549 -8.52184 0.01761 -8.52184 -7.090381102 -7.4482463077 +5780 39.78158 19.13653 -8.51123 0.01764 -8.51123 -7.0810093907 -7.438565023 +5785 39.74557 19.1176 -8.50062 0.01767 -8.50062 -7.071635539 -7.428882133 +5790 39.70961 19.09871 -8.49 0.01770 -8.49 -7.0622495523 -7.4191876417 +5795 39.67373 19.07985 -8.47939 0.01774 -8.47939 -7.0528714361 -7.4095015533 +5800 39.63791 19.06103 -8.46878 0.01777 -8.46878 -7.043491196 -7.399813872 +5805 39.60215 19.04225 -8.45817 0.01780 -8.45817 -7.0341088374 -7.3901246019 +5810 39.56646 19.0235 -8.44756 0.01783 -8.44756 -7.0247243658 -7.380433747 +5815 39.53084 19.00478 -8.43695 0.01787 -8.43695 -7.0153377867 -7.3707413114 +5820 39.49528 18.9861 -8.42634 0.01790 -8.42634 -7.0059491055 -7.3610472993 +5825 39.45979 18.96745 -8.41573 0.01793 -8.41573 -6.9965583277 -7.3513517147 +5830 39.42436 18.94884 -8.40512 0.01797 -8.40512 -6.9871654585 -7.3416545616 +5835 39.389 18.93026 -8.39451 0.01800 -8.39451 -6.9777705034 -7.3319558441 +5840 39.3537 18.91171 -8.3839 0.01803 -8.3839 -6.9683734677 -7.3222555661 +5845 39.31846 18.8932 -8.37329 0.01806 -8.37329 -6.9589743568 -7.3125537317 +5850 39.28329 18.87472 -8.36269 0.01810 -8.36269 -6.949583176 -7.302860345 +5855 39.24818 18.85628 -8.35208 0.01813 -8.35208 -6.9401799306 -7.2931554097 +5860 39.21314 18.83787 -8.34147 0.01816 -8.34147 -6.9307746259 -7.28344893 +5865 39.17816 18.81949 -8.33087 0.01820 -8.33087 -6.9213772671 -7.2737509098 +5870 39.14325 18.80115 -8.32026 0.01823 -8.32026 -6.9119678596 -7.2640413529 +5875 39.10839 18.78284 -8.30966 0.01826 -8.30966 -6.9025664085 -7.2543402634 +5880 39.0736 18.76457 -8.29906 0.01830 -8.29906 -6.893162919 -7.2446376451 +5885 39.03888 18.74632 -8.28845 0.01833 -8.28845 -6.8837473963 -7.234923502 +5890 39.00421 18.72811 -8.27785 0.01836 -8.27785 -6.8743398457 -7.2252178379 +5895 38.96961 18.70994 -8.26725 0.01839 -8.26725 -6.8649302723 -7.2155106566 +5900 38.93507 18.69179 -8.25665 0.01843 -8.25665 -6.8555186812 -7.2058019622 +5905 38.90059 18.67368 -8.24605 0.01846 -8.24605 -6.8461050775 -7.1960917583 +5910 38.86618 18.65561 -8.23546 0.01849 -8.23546 -6.8366994664 -7.1863900488 +5915 38.83182 18.63756 -8.22486 0.01853 -8.22486 -6.8272818529 -7.1766768375 +5920 38.79753 18.61955 -8.21426 0.01856 -8.21426 -6.8178622422 -7.1669621283 +5925 38.7633 18.60157 -8.20367 0.01859 -8.20367 -6.8084506392 -7.157255925 +5930 38.72913 18.58362 -8.19308 0.01863 -8.19308 -6.799037049 -7.1475482312 +5935 38.69502 18.56571 -8.18249 0.01866 -8.18249 -6.7896214767 -7.1378390509 +5940 38.66098 18.54782 -8.1719 0.01869 -8.1719 -6.7802039272 -7.1281283877 +5945 38.62699 18.52997 -8.16131 0.01873 -8.16131 -6.7707844056 -7.1184162453 +5950 38.59307 18.51215 -8.15072 0.01876 -8.15072 -6.7613629168 -7.1087026276 +5955 38.5592 18.49437 -8.14014 0.01879 -8.14014 -6.7519494657 -7.0989975381 +5960 38.5254 18.47661 -8.12956 0.01883 -8.12956 -6.7425340573 -7.0892909808 +5965 38.49165 18.45889 -8.11897 0.01886 -8.11897 -6.7331066965 -7.0795729591 +5970 38.45797 18.4412 -8.10839 0.01890 -8.10839 -6.7236873883 -7.0698634768 +5975 38.42434 18.42354 -8.09782 0.01893 -8.09782 -6.7142761375 -7.0601625376 +5980 38.39078 18.40591 -8.08724 0.01896 -8.08724 -6.7048529489 -7.0504501451 +5985 38.35727 18.38831 -8.07666 0.01900 -8.07666 -6.6954278275 -7.040736303 +5990 38.32383 18.37074 -8.06609 0.01903 -8.06609 -6.6860107781 -7.0310310148 +5995 38.29044 18.35321 -8.05552 0.01906 -8.05552 -6.6765918055 -7.0213242843 +6000 38.25711 18.33571 -8.04495 0.01910 -8.04495 -6.6671709145 -7.011616115 +6005 38.22384 18.31823 -8.03438 0.01913 -8.03438 -6.6577481099 -7.0019065105 +6010 38.19063 18.30079 -8.02382 0.01917 -8.02382 -6.6483333965 -6.9922054744 +6015 38.15748 18.28338 -8.01325 0.01920 -8.01325 -6.6389067791 -6.9824930102 +6020 38.12439 18.266 -8.00269 0.01923 -8.00269 -6.6294882623 -6.9727891216 +6025 38.09135 18.24866 -7.99213 0.01927 -7.99213 -6.620067851 -6.963083812 +6030 38.05838 18.23134 -7.98158 0.01930 -7.98158 -6.6106555498 -6.953387085 +6035 38.02546 18.21405 -7.97102 0.01933 -7.97102 -6.6012313634 -6.9436789442 +6040 37.9926 18.19679 -7.96047 0.01937 -7.96047 -6.5918152965 -6.933979393 +6045 37.95979 18.17957 -7.94992 0.01940 -7.94992 -6.5823973538 -6.9242784349 +6050 37.92705 18.16237 -7.93937 0.01944 -7.93937 -6.5729775399 -6.9145760735 +6055 37.89436 18.14521 -7.92882 0.01947 -7.92882 -6.5635558595 -6.9048723121 +6060 37.86173 18.12807 -7.91828 0.01950 -7.91828 -6.5541423171 -6.8951771543 +6065 37.82915 18.11096 -7.90774 0.01954 -7.90774 -6.5447269175 -6.8854806035 +6070 37.79663 18.09389 -7.8972 0.01957 -7.8972 -6.5353096651 -6.8757826632 +6075 37.76417 18.07684 -7.88667 0.01961 -7.88667 -6.5259005646 -6.8660933368 +6080 37.73177 18.05983 -7.87613 0.01964 -7.87613 -6.5164796204 -6.8563926277 +6085 37.69942 18.04284 -7.8656 0.01968 -7.8656 -6.5070668373 -6.8467005393 +6090 37.66713 18.02589 -7.85507 0.01971 -7.85507 -6.4976522196 -6.837007075 +6095 37.63489 18.00896 -7.84455 0.01974 -7.84455 -6.4882457719 -6.8273222383 +6100 37.60271 17.99206 -7.83402 0.01978 -7.83402 -6.4788274987 -6.8176260324 +6105 37.57059 17.9752 -7.8235 0.01981 -7.8235 -6.4694174045 -6.8079384607 +6110 37.53852 17.95836 -7.81298 0.01985 -7.81298 -6.4600054938 -6.7982495267 +6115 37.50651 17.94155 -7.80247 0.01988 -7.80247 -6.450601771 -6.7885692336 +6120 37.47455 17.92477 -7.79196 0.01992 -7.79196 -6.4411962405 -6.7788875847 +6125 37.44265 17.90802 -7.78145 0.01995 -7.78145 -6.4317889068 -6.7692045834 +6130 37.4108 17.8913 -7.77094 0.01999 -7.77094 -6.4223797743 -6.7595202331 +6135 37.37901 17.8746 -7.76044 0.02002 -7.76044 -6.4129788474 -6.7498445369 +6140 37.34727 17.85794 -7.74994 0.02005 -7.74994 -6.4035761304 -6.7401674982 +6145 37.31559 17.84131 -7.73944 0.02009 -7.73944 -6.3941716278 -6.7304891203 +6150 37.28396 17.8247 -7.72894 0.02012 -7.72894 -6.3847653439 -6.7208094064 +6155 37.25238 17.80812 -7.71845 0.02016 -7.71845 -6.3753672831 -6.7111383598 +6160 37.22086 17.79158 -7.70796 0.02019 -7.70796 -6.3659674496 -6.7014659837 +6165 37.1894 17.77506 -7.69748 0.02023 -7.69748 -6.3565758478 -6.6918022814 +6170 37.15798 17.75856 -7.68699 0.02026 -7.68699 -6.3471724819 -6.682127256 +6175 37.12663 17.7421 -7.67651 0.02030 -7.67651 -6.3377773564 -6.6724609109 +6180 37.09532 17.72567 -7.66604 0.02033 -7.66604 -6.3283904753 -6.6628032492 +6185 37.06407 17.70926 -7.65557 0.02037 -7.65557 -6.3190018431 -6.653144274 +6190 37.03287 17.69288 -7.6451 0.02040 -7.6451 -6.3096114639 -6.6434839887 +6195 37.00173 17.67653 -7.63463 0.02044 -7.63463 -6.3002193419 -6.6338223963 +6200 36.97064 17.66021 -7.62417 0.02047 -7.62417 -6.2908354815 -6.6241695 +6205 36.9396 17.64391 -7.6137 0.02051 -5.6153076132 -6.2814398867 -6.614505303 +6210 36.90861 17.62765 -7.60325 0.02054 -5.6064666312 -6.2720625618 -6.6048598084 +6215 36.87768 17.61141 -7.59279 0.02058 -5.5976130603 -6.262673511 -6.5952030193 +6220 36.8468 17.5952 -7.58234 0.02061 -5.5887669066 -6.2532927383 -6.5855549389 +6225 36.81597 17.57901 -7.5719 0.02065 -5.5799281765 -6.243920248 -6.5759155703 +6230 36.78519 17.56286 -7.56145 0.02068 -5.5710768761 -6.2345360443 -6.5662649165 +6235 36.75447 17.54673 -7.55102 0.02072 -5.5622430116 -6.2251701311 -6.5566329807 +6240 36.7238 17.53063 -7.54058 0.02075 -5.5533965892 -6.2157925127 -6.546989766 +6245 36.69318 17.51456 -7.53015 0.02079 -5.5445576151 -6.2064231931 -6.5373552753 +6250 36.66261 17.49851 -7.51972 0.02082 -5.5357160952 -6.1970521764 -6.5277195119 +6255 36.63209 17.48249 -7.50929 0.02086 -5.5268720358 -6.1876794666 -6.5180824787 +6260 36.60163 17.4665 -7.49887 0.02089 -5.518035443 -6.1783150679 -6.5084541788 +6265 36.57121 17.45054 -7.48845 0.02093 -5.5091963227 -6.1689489843 -6.4988246152 +6270 36.54085 17.4346 -7.47804 0.02096 -5.5003646811 -6.1595912198 -6.4892037909 +6275 36.51054 17.41869 -7.46763 0.02100 -5.4915305242 -6.1502317785 -6.4795817089 +6280 36.48028 17.4028 -7.45722 0.02103 -5.4826938579 -6.1408706642 -6.4699583724 +6285 36.45007 17.38695 -7.44682 0.02107 -5.4738646883 -6.1315178811 -6.4603437841 +6290 36.41991 17.37112 -7.43642 0.02110 -5.4650330214 -6.1221634331 -6.4507279472 +6295 36.3898 17.35531 -7.42602 0.02114 -5.456198863 -6.1128073241 -6.4411108646 +6300 36.35974 17.33953 -7.41563 0.02117 -5.4473722192 -6.1034595582 -6.4315025393 +6305 36.32973 17.32378 -7.40524 0.02121 -5.4385430958 -6.0941101392 -6.4218929742 +6310 36.29978 17.30806 -7.39486 0.02124 -5.4297214987 -6.0847690712 -6.4122921723 +6315 36.26987 17.29236 -7.38448 0.02128 -5.4208974339 -6.0754263579 -6.4026901365 +6320 36.24001 17.27669 -7.3741 0.02132 -5.4120709071 -6.0660820034 -6.3930868697 +6325 36.2102 17.26105 -7.36373 0.02135 -5.4032519242 -6.0567460115 -6.3834923749 +6330 36.18044 17.24543 -7.35336 0.02139 -5.394430491 -6.0474083861 -6.373896655 +6335 36.15073 17.22983 -7.34299 0.02142 -5.3856066134 -6.038069131 -6.3642997128 +6340 36.12107 17.21427 -7.33263 0.02146 -5.376790297 -6.0287382502 -6.3547115513 +6345 36.09146 17.19873 -7.32228 0.02149 -5.3679815477 -6.0194157474 -6.3451321734 +6350 36.0619 17.18321 -7.31192 0.02153 -5.3591603713 -6.0100816265 -6.3355415818 +6355 36.03239 17.16772 -7.30158 0.02157 -5.3503567734 -6.0007658913 -6.3259697796 +6360 36.00293 17.15226 -7.29123 0.02160 -5.3415407598 -5.9914385456 -6.3163867695 +6365 35.97351 17.13682 -7.28089 0.02164 -5.3327323361 -5.9821195933 -6.3068125544 +6370 35.94414 17.12141 -7.27056 0.02167 -5.323931508 -5.972809038 -6.2972471371 +6375 35.91483 17.10602 -7.26022 0.02171 -5.3151182812 -5.9634868836 -6.2876705204 +6380 35.88556 17.09066 -7.2499 0.02174 -5.3063226614 -5.9541831338 -6.2781127073 +6385 35.85634 17.07533 -7.23957 0.02178 -5.2975146541 -5.9448677925 -6.2685437004 +6390 35.82716 17.06002 -7.22925 0.02182 -5.2887142649 -5.9355608632 -6.2589835026 +6395 35.79804 17.04473 -7.21894 0.02185 -5.2799214995 -5.9262623497 -6.2494321167 +6400 35.76896 17.02947 -7.20863 0.02189 -5.2711263634 -5.9169622558 -6.2398795454 +6405 35.73993 17.01424 -7.19832 0.02192 -5.2623288621 -5.9076605852 -6.2303257916 +6410 35.71095 16.99903 -7.18802 0.02196 -5.2535390013 -5.8983673415 -6.220780858 +6415 35.68202 16.98385 -7.17772 0.02200 -5.2447467863 -5.8890725284 -6.2112347474 +6420 35.65313 16.96869 -7.16743 0.02203 -5.2359622228 -5.8797861496 -6.2016974624 +6425 35.62429 16.95355 -7.15714 0.02207 -5.2271753162 -5.8704982087 -6.192159006 +6430 35.5955 16.93845 -7.14686 0.02211 -5.2183960719 -5.8612187094 -6.1826293807 +6435 35.56676 16.92336 -7.13658 0.02214 -5.2096144954 -5.8519376553 -6.1730985893 +6440 35.53806 16.9083 -7.1263 0.02218 -5.2008305922 -5.8426550501 -6.1635666346 +6445 35.50941 16.89327 -7.11603 0.02221 -5.1920543677 -5.8333808973 -6.1540435192 +6450 35.4808 16.87826 -7.10576 0.02225 -5.1832758272 -5.8241052006 -6.1445192458 +6455 35.45224 16.86327 -7.0955 0.02229 -5.1745049761 -5.8148379635 -6.1350038172 +6460 35.42373 16.84831 -7.08524 0.02232 -5.1657318198 -5.8055691896 -6.125487236 +6465 35.39527 16.83337 -7.07499 0.02236 -5.1569663637 -5.7963088825 -6.1159795049 +6470 35.36685 16.81846 -7.06474 0.02240 -5.1481986131 -5.7870470457 -6.1064706265 +6475 35.33848 16.80357 -7.0545 0.02243 -5.1394385732 -5.7777936828 -6.0969706035 +6480 35.31015 16.78871 -7.04426 0.02247 -5.1306762495 -5.7685387973 -6.0874694386 +6485 35.28187 16.77387 -7.03402 0.02250 -5.1219116472 -5.7592823927 -6.0779671344 +6490 35.25364 16.75906 -7.02379 0.02254 -5.1131547715 -5.7500344726 -6.0684736935 +6495 35.22545 16.74427 -7.01357 0.02258 -5.1044056277 -5.7407950404 -6.0589891186 +6500 35.1973 16.7295 -7.00335 0.02261 -5.095654221 -5.7315540997 -6.0495034122 +6505 35.1692 16.71476 -6.99313 0.02265 -5.0869005567 -5.7223116538 -6.0400165771 +6510 35.14115 16.70004 -6.98292 0.02269 -5.0781546399 -5.7130777063 -6.0305386157 +6515 35.11314 16.68534 -6.97271 0.02272 -5.0694064758 -5.7038422607 -6.0210595307 +6520 35.08518 16.67067 -6.96251 0.02276 -5.0606660697 -5.6946153204 -6.0115893247 +6525 35.05726 16.65602 -6.95232 0.02280 -5.0519334267 -5.6853968887 -6.0021280002 +6530 35.02939 16.6414 -6.94212 0.02283 -5.0431885518 -5.6761669692 -5.9926555598 +6535 35.00156 16.6268 -6.93194 0.02287 -5.0344614503 -5.6669555653 -5.9832020061 +6540 34.97378 16.61222 -6.92175 0.02291 -5.0257221271 -5.6577326803 -5.9737373416 +6545 34.94604 16.59767 -6.91158 0.02294 -5.0170005876 -5.6485283177 -5.9642915689 +6550 34.91835 16.58314 -6.9014 0.02298 -5.0082668366 -5.6393124808 -5.9548346904 +6555 34.8907 16.56863 -6.89123 0.02302 -4.9995408792 -5.6301051731 -5.9453867089 +6560 34.8631 16.55415 -6.88107 0.02306 -4.9908227206 -5.6209063978 -5.9359476267 +6565 34.83553 16.53969 -6.87091 0.02309 -4.9821023657 -5.6117061583 -5.9265074463 +6570 34.80802 16.52525 -6.86076 0.02313 -4.9733898196 -5.6025144581 -5.9170761704 +6575 34.78054 16.51084 -6.85061 0.02317 -4.9646750872 -5.5933213003 -5.9076438013 +6580 34.75311 16.49645 -6.84047 0.02320 -4.9559681735 -5.5841366884 -5.8982203416 +6585 34.72573 16.48208 -6.83033 0.02324 -4.9472590835 -5.5749506256 -5.8887957938 +6590 34.69839 16.46773 -6.82019 0.02328 -4.9385478222 -5.5657631152 -5.8793701603 +6595 34.67109 16.45341 -6.81007 0.02331 -4.9298543945 -5.5565941606 -5.8699634436 +6600 34.64383 16.43911 -6.79994 0.02335 -4.9211488053 -5.547413765 -5.8605456461 +6605 34.61662 16.42484 -6.78982 0.02339 -4.9124510595 -5.5382419317 -5.8511367704 +6610 34.58945 16.41059 -6.77971 0.02343 -4.903761162 -5.5290786639 -5.8417368189 +6615 34.56233 16.39636 -6.7696 0.02346 -4.8950691178 -5.519913965 -5.8323357939 +6620 34.53524 16.38215 -6.7595 0.02350 -4.8863849316 -5.5107578381 -5.822943698 +6625 34.50821 16.36796 -6.7494 0.02354 -4.8776986083 -5.5016002864 -5.8135505336 +6630 34.48121 16.3538 -6.7393 0.02357 -4.8690101527 -5.4924413133 -5.804156303 +6635 34.45425 16.33966 -6.72922 0.02361 -4.8603395697 -5.4833009219 -5.7947810088 +6640 34.42734 16.32554 -6.71913 0.02365 -4.8516568641 -5.4741491155 -5.7853946532 +6645 34.40047 16.31145 -6.70905 0.02369 -4.8429820407 -5.4650058971 -5.7760172387 +6650 34.37365 16.29737 -6.69898 0.02372 -4.8343151042 -5.4558712701 -5.7666487677 +6655 34.34686 16.28332 -6.68891 0.02376 -4.8256460594 -5.4467352375 -5.7572792426 +6660 34.32012 16.2693 -6.67885 0.02380 -4.816984911 -5.4376078026 -5.7479186657 +6665 34.29342 16.25529 -6.66879 0.02384 -4.8083216639 -5.4284789685 -5.7385570394 +6670 34.26676 16.2413 -6.65874 0.02387 -4.7996663226 -5.4193587383 -5.729204366 +6675 34.24014 16.22734 -6.64869 0.02391 -4.791008892 -5.4102371152 -5.719850648 +6680 34.21357 16.2134 -6.63865 0.02395 -4.7823593766 -5.4011241023 -5.7105058876 +6685 34.18704 16.19948 -6.62862 0.02399 -4.7737177813 -5.3920197027 -5.7011700873 +6690 34.16054 16.18559 -6.61858 0.02402 -4.7650641106 -5.3829039196 -5.6918232492 +6695 34.13409 16.17171 -6.60856 0.02406 -4.7564283692 -5.373806756 -5.6824953759 +6700 34.10769 16.15786 -6.59854 0.02410 -4.7477905617 -5.3647082151 -5.6731664695 +6705 34.08132 16.14403 -6.58852 0.02414 -4.7391506928 -5.3556082998 -5.6638365323 +6710 34.05499 16.13022 -6.57851 0.02417 -4.730518767 -5.3465170134 -5.6545155668 +6715 34.02871 16.11643 -6.56851 0.02421 -4.721894789 -5.3374343588 -5.6452035752 +6720 34.00246 16.10267 -6.55851 0.02425 -4.7132687633 -5.328350339 -5.6358905597 +6725 33.97626 16.08892 -6.54851 0.02429 -4.7046406946 -5.3192649573 -5.6265765227 +6730 33.9501 16.0752 -6.53852 0.02433 -4.6960205873 -5.3101882165 -5.6172714664 +6735 33.92397 16.0615 -6.52854 0.02436 -4.6874084459 -5.3011201197 -5.6079753932 +6740 33.89789 16.04782 -6.51856 0.02440 -4.6787942752 -5.2920506699 -5.5986783052 +6745 33.87185 16.03416 -6.50859 0.02444 -4.6701880794 -5.2829898702 -5.5893902047 +6750 33.84585 16.02052 -6.49862 0.02448 -4.6615798632 -5.2739277235 -5.580101094 +6755 33.81989 16.00691 -6.48866 0.02452 -4.652979631 -5.2648742329 -5.5708209753 +6760 33.79397 15.99331 -6.4787 0.02455 -4.6443773874 -5.2558194012 -5.5615398509 +6765 33.76809 15.97974 -6.46875 0.02459 -4.6357831367 -5.2467732315 -5.552267723 +6770 33.74225 15.96618 -6.4588 0.02463 -4.6271868833 -5.2377257268 -5.5429945938 +6775 33.71645 15.95265 -6.44886 0.02467 -4.6185986319 -5.22868689 -5.5337304655 +6780 33.69069 15.93914 -6.43893 0.02471 -4.6100183867 -5.219656724 -5.5244753404 +6785 33.66497 15.92565 -6.429 0.02474 -4.6014361521 -5.2106252318 -5.5152192206 +6790 33.63929 15.91218 -6.41907 0.02478 -4.5928519326 -5.2015924163 -5.5059621083 +6795 33.61365 15.89873 -6.40916 0.02482 -4.5842857326 -5.1925782805 -5.4967240058 +6800 33.58805 15.88531 -6.39924 0.02486 -4.5757075564 -5.1835528272 -5.4874749151 +6805 33.56248 15.8719 -6.38933 0.02490 -4.5671374083 -5.1745360593 -5.4782348386 +6810 33.53696 15.85851 -6.37943 0.02494 -4.5585752928 -5.1655279798 -5.4690037783 +6815 33.51148 15.84515 -6.36954 0.02497 -4.5500212141 -5.1565285916 -5.4597817365 +6820 33.48603 15.8318 -6.35964 0.02501 -4.5414551766 -5.1475178974 -5.4505487153 +6825 33.46063 15.81848 -6.34976 0.02505 -4.5329071845 -5.1385259003 -5.4413347167 +6830 33.43526 15.80518 -6.33988 0.02509 -4.5243572422 -5.129532603 -5.4321197431 +6835 33.40993 15.79189 -6.33 0.02513 -4.5158053539 -5.1205380084 -5.4229037965 +6840 33.38464 15.77863 -6.32014 0.02517 -4.5072715239 -5.1115621193 -5.4137068791 +6845 33.35939 15.76539 -6.31027 0.02520 -4.4987257565 -5.1025749386 -5.4044989929 +6850 33.33418 15.75216 -6.30041 0.02524 -4.4901880559 -5.0935964691 -5.3953001402 +6855 33.309 15.73896 -6.29056 0.02528 -4.4816584264 -5.0846267137 -5.386110323 +6860 33.28387 15.72578 -6.28072 0.02532 -4.4731368721 -5.0756656751 -5.3769295434 +6865 33.25877 15.71262 -6.27088 0.02536 -4.4646133972 -5.0667033561 -5.3677478036 +6870 33.23371 15.69948 -6.26104 0.02540 -4.456088006 -5.0577397596 -5.3585651056 +6875 33.20869 15.68636 -6.25121 0.02544 -4.4475707026 -5.0487848883 -5.3493914515 +6880 33.18371 15.67325 -6.24139 0.02547 -4.4390614913 -5.039838745 -5.3402268434 +6885 33.15876 15.66017 -6.23157 0.02551 -4.4305503761 -5.0308913325 -5.3310612834 +6890 33.13386 15.64711 -6.22176 0.02555 -4.4220473612 -5.0219526536 -5.3219047736 +6895 33.10899 15.63407 -6.21195 0.02559 -4.4135424507 -5.0130127109 -5.3127473159 +6900 33.08415 15.62105 -6.20215 0.02563 -4.4050456488 -5.0040815073 -5.3035989126 +6905 33.05936 15.60804 -6.19235 0.02567 -4.3965469595 -4.9951490455 -5.2944495656 +6910 33.0346 15.59506 -6.18256 0.02571 -4.388056387 -4.9862253282 -5.285309277 +6915 33.00988 15.5821 -6.17278 0.02575 -4.3795739354 -4.9773103581 -5.2761780489 +6920 32.9852 15.56916 -6.163 0.02578 -4.3710896087 -4.968394138 -5.2670458832 +6925 32.96056 15.55623 -6.15323 0.02582 -4.362613411 -4.9594866705 -5.257922782 +6930 32.93595 15.54333 -6.14346 0.02586 -4.3541353463 -4.9505779584 -5.2487987473 +6935 32.91138 15.53044 -6.1337 0.02590 -4.3456654186 -4.9416780044 -5.2396837812 +6940 32.88684 15.51758 -6.12394 0.02594 -4.3371936321 -4.932776811 -5.2305678856 +6945 32.86235 15.50473 -6.11419 0.02598 -4.3287299907 -4.9238843812 -5.2214610625 +6950 32.83789 15.49191 -6.10445 0.02602 -4.3202744984 -4.9150007173 -5.2123633141 +6955 32.81346 15.4791 -6.09471 0.02606 -4.3118171592 -4.9061158223 -5.2032646422 +6960 32.78908 15.46631 -6.08498 0.02610 -4.3033679771 -4.8972396986 -5.1941750489 +6965 32.76473 15.45355 -6.07525 0.02614 -4.294916956 -4.888362349 -5.185084536 +6970 32.74041 15.4408 -6.06553 0.02618 -4.2864741 -4.879493776 -5.1760031058 +6975 32.71613 15.42807 -6.05581 0.02621 -4.2780294129 -4.8706239824 -5.1669207599 +6980 32.69189 15.41536 -6.0461 0.02625 -4.2695928987 -4.8617629707 -5.1578475006 +6985 32.66769 15.40266 -6.0364 0.02629 -4.2611645613 -4.8529107436 -5.1487833297 +6990 32.64352 15.38999 -6.0267 0.02633 -4.2527344047 -4.8440573036 -5.1397182491 +6995 32.61939 15.37734 -6.01701 0.02637 -4.2443124327 -4.8352126534 -5.1306622608 +7000 32.59529 15.3647 -6.00732 0.02641 -4.2358886492 -4.8263667955 -5.1216053669 +7005 32.57123 15.35209 -5.99764 0.02645 -4.2274730582 -4.8175297326 -5.1125575691 +7010 32.5472 15.33949 -5.98797 0.02649 -4.2190656633 -4.8087014672 -5.1035188695 +7015 32.52322 15.32691 -5.9783 0.02653 -4.2106564687 -4.7998720019 -5.0944792699 +7020 32.49926 15.31435 -5.96864 0.02657 -4.202255478 -4.7910513393 -5.0854487724 +7025 32.47534 15.30181 -5.95898 0.02661 -4.1938526951 -4.7822294818 -5.0764173787 +7030 32.45146 15.28929 -5.94933 0.02665 -4.1854581238 -4.7734164321 -5.0673950909 +7035 32.42761 15.27679 -5.93968 0.02669 -4.177061768 -4.7646021927 -5.0583719108 +7040 32.4038 15.2643 -5.93004 0.02673 -4.1686736314 -4.7557967662 -5.0493578403 +7045 32.38003 15.25183 -5.92041 0.02677 -4.1602937179 -4.747000155 -5.0403528813 +7050 32.35628 15.23939 -5.91078 0.02681 -4.1519120311 -4.7382023617 -5.0313470358 +7055 32.33258 15.22696 -5.90116 0.02685 -4.143538575 -4.7294133888 -5.0223503056 +7060 32.30891 15.21455 -5.89154 0.02689 -4.1351633532 -4.7206232389 -5.0133526925 +7065 32.28527 15.20215 -5.88193 0.02692 -4.1267963696 -4.7118419143 -5.0043641985 +7070 32.26167 15.18978 -5.87233 0.02696 -4.1184376277 -4.7030694176 -4.9953848255 +7075 32.2381 15.17742 -5.86273 0.02700 -4.1100771314 -4.6942957513 -4.9864045752 +7080 32.21457 15.16509 -5.85314 0.02704 -4.1017248844 -4.6855309178 -4.9774334495 +7085 32.19107 15.15277 -5.84355 0.02708 -4.0933708904 -4.6767649197 -4.9684614504 +7090 32.16761 15.14047 -5.83397 0.02712 -4.0850251531 -4.6680077594 -4.9594985796 +7095 32.14418 15.12818 -5.8244 0.02716 -4.0766876761 -4.6592594393 -4.950544839 +7100 32.12079 15.11592 -5.81483 0.02720 -4.0683484632 -4.650509962 -4.9415902304 +7105 32.09743 15.10367 -5.80527 0.02724 -4.060017518 -4.6417693298 -4.9326447557 +7110 32.0741 15.09144 -5.79571 0.02728 -4.0516848442 -4.6330275451 -4.9236984167 +7115 32.05081 15.07923 -5.78616 0.02732 -4.0433604453 -4.6242946105 -4.9147612152 +7120 32.02755 15.06704 -5.77661 0.02736 -4.0350343251 -4.6155605283 -4.905823153 +7125 32.00433 15.05486 -5.76708 0.02740 -4.0267264872 -4.606845301 -4.896904232 +7130 31.98114 15.04271 -5.75754 0.02744 -4.0184069351 -4.5981189309 -4.8879744539 +7135 31.95798 15.03057 -5.74802 0.02748 -4.0101056726 -4.5894114204 -4.8790638205 +7140 31.93486 15.01844 -5.73849 0.02752 -4.0017927031 -4.5806927721 -4.8701423337 +7145 31.91177 15.00634 -5.72898 0.02756 -3.9934980303 -4.5719929882 -4.8612399952 +7150 31.88872 14.99425 -5.71947 0.02760 -3.9852016577 -4.5632920711 -4.8523368069 +7155 31.8657 14.98219 -5.70997 0.02764 -3.9769135889 -4.5546000232 -4.8434427704 +7160 31.84271 14.97014 -5.70047 0.02768 -3.9686238274 -4.5459068469 -4.8345478876 +7165 31.81976 14.9581 -5.69098 0.02773 -3.9603423769 -4.5372225445 -4.8256621603 +7170 31.79684 14.94609 -5.68149 0.02777 -3.9520592408 -4.5285371184 -4.8167755902 +7175 31.77395 14.93409 -5.67201 0.02781 -3.9437844226 -4.5198605709 -4.8078981791 +7180 31.75109 14.92211 -5.66254 0.02785 -3.9355179259 -4.5111929045 -4.7990299288 +7185 31.72827 14.91014 -5.65307 0.02789 -3.9272497542 -4.5025241213 -4.7901608409 +7190 31.70548 14.8982 -5.64361 0.02793 -3.9189899109 -4.4938642238 -4.7813009172 +7195 31.68273 14.88627 -5.63416 0.02797 -3.9107383996 -4.4852132143 -4.7724501596 +7200 31.66001 14.87436 -5.62471 0.02801 -3.9024852237 -4.4765610951 -4.7635985696 +7205 31.63732 14.86246 -5.61527 0.02805 -3.8942403867 -4.4679178684 -4.7547561491 +7210 31.61466 14.85059 -5.60583 0.02809 -3.885993892 -4.4592735367 -4.7459128998 +7215 31.59204 14.83873 -5.5964 0.02813 -3.8777557432 -4.4506381022 -4.7370788234 +7220 31.56944 14.82688 -5.58697 0.02817 -3.8695159435 -4.4420015671 -4.7282439216 +7225 31.54689 14.81506 -5.57756 0.02821 -3.8612944965 -4.4333839339 -4.7194281962 +7230 31.52436 14.80325 -5.56814 0.02825 -3.8530614056 -4.4247552047 -4.7106016487 +7235 31.50187 14.79146 -5.55874 0.02829 -3.8448466742 -4.4161453818 -4.7017942811 +7240 31.4794 14.77969 -5.54933 0.02833 -3.8366203057 -4.4075244675 -4.6929760948 +7245 31.45697 14.76793 -5.53994 0.02837 -3.8284123034 -4.3989224641 -4.6841770918 +7250 31.43458 14.75619 -5.53055 0.02841 -3.8202026708 -4.3903193737 -4.6753772735 +7255 31.41221 14.74446 -5.52117 0.02845 -3.8120014112 -4.3817251987 -4.6665866418 +7260 31.38988 14.73276 -5.51179 0.02850 -3.803798528 -4.3731299414 -4.6577951982 +7265 31.36758 14.72107 -5.50242 0.02854 -3.7956040245 -4.3645436038 -4.6490129446 +7270 31.34531 14.7094 -5.49306 0.02858 -3.7874179041 -4.3559661883 -4.6402398824 +7275 31.32307 14.69774 -5.4837 0.02862 -3.7792301701 -4.3473876971 -4.6314660135 +7280 31.30086 14.6861 -5.47435 0.02866 -3.7710508259 -4.3388181324 -4.6227013395 +7285 31.27869 14.67448 -5.465 0.02870 -3.7628698747 -4.3302474964 -4.613935862 +7290 31.25655 14.66287 -5.45566 0.02874 -3.7546973199 -4.3216857913 -4.6051795827 +7295 31.23444 14.65128 -5.44633 0.02878 -3.7465331647 -4.3131330193 -4.5964325032 +7300 31.21236 14.63971 -5.437 0.02882 -3.7383674124 -4.3045791826 -4.5876846252 +7305 31.19031 14.62815 -5.42768 0.02886 -3.7302100664 -4.2960342834 -4.5789459503 +7310 31.16829 14.61661 -5.41836 0.02891 -3.7220511299 -4.2874883238 -4.5702064802 +7315 31.14631 14.60509 -5.40905 0.02895 -3.7139006062 -4.2789513062 -4.5614762164 +7320 31.12435 14.59358 -5.39975 0.02899 -3.7057584984 -4.2704232325 -4.5527551607 +7325 31.10243 14.58209 -5.39045 0.02903 -3.6976148099 -4.261894105 -4.5440333146 +7330 31.08054 14.57062 -5.38116 0.02907 -3.6894795439 -4.2533739258 -4.5353206797 +7335 31.05868 14.55916 -5.37187 0.02911 -3.6813427036 -4.2448526971 -4.5266072577 +7340 31.03685 14.54772 -5.36259 0.02915 -3.6732142923 -4.236340421 -4.5179030502 +7345 31.01505 14.53629 -5.35332 0.02919 -3.6650943131 -4.2278370997 -4.5092080587 +7350 30.99328 14.52488 -5.34405 0.02923 -3.6569727692 -4.2193327353 -4.5005122849 +7355 30.97154 14.51349 -5.33479 0.02928 -3.6488596638 -4.21083733 -4.4918257304 +7360 30.94984 14.50211 -5.32554 0.02932 -3.6407550002 -4.2023508857 -4.4831483968 +7365 30.92816 14.49075 -5.31629 0.02936 -3.6326487814 -4.1938634048 -4.4744702856 +7370 30.90652 14.47941 -5.30705 0.02940 -3.6245510107 -4.1853848892 -4.4658013984 +7375 30.8849 14.46808 -5.29781 0.02944 -3.6164516912 -4.176905341 -4.4571317368 +7380 30.86332 14.45676 -5.28858 0.02948 -3.6083608261 -4.1684347625 -4.4484713024 +7385 30.84176 14.44547 -5.27936 0.02952 -3.6002784185 -4.1599731556 -4.4398200968 +7390 30.82024 14.43419 -5.27014 0.02957 -3.5921944714 -4.1515105225 -4.4311681215 +7395 30.79874 14.42292 -5.26093 0.02961 -3.5841189882 -4.1430568652 -4.4225253781 +7400 30.77728 14.41167 -5.25172 0.02965 -3.5760419718 -4.1346021858 -4.4138818681 +7405 30.75585 14.40044 -5.24252 0.02969 -3.5679734253 -4.1261564864 -4.4052475931 +7410 30.73444 14.38922 -5.23333 0.02973 -3.559913352 -4.1177197691 -4.3966225546 +7415 30.71307 14.37802 -5.22414 0.02977 -3.5518517547 -4.1092820359 -4.3879967542 +7420 30.69173 14.36683 -5.21496 0.02982 -3.5437986368 -4.1008532888 -4.3793801935 +7425 30.67041 14.35566 -5.20578 0.02986 -3.5357440011 -4.0924235299 -4.3707628739 +7430 30.64913 14.34451 -5.19662 0.02990 -3.5277078508 -4.0840127613 -4.362164797 +7435 30.62787 14.33337 -5.18745 0.02994 -3.5196601889 -4.075590985 -4.3535559643 +7440 30.60665 14.32225 -5.1783 0.02998 -3.5116310185 -4.067188203 -4.3449663773 +7445 30.58545 14.31114 -5.16915 0.03003 -3.5036003426 -4.0587844174 -4.3363760376 +7450 30.56429 14.30005 -5.16 0.03007 -3.4955681643 -4.0503796301 -4.3277849467 +7455 30.54315 14.28897 -5.15086 0.03011 -3.4875444865 -4.0419838432 -4.3192031061 +7460 30.52204 14.27791 -5.14173 0.03015 -3.4795293123 -4.0335970587 -4.3106305173 +7465 30.50097 14.26686 -5.1326 0.03019 -3.4715126447 -4.0252092786 -4.3020571817 +7470 30.47992 14.25583 -5.12348 0.03023 -3.4635044867 -4.0168305049 -4.293493101 +7475 30.4589 14.24482 -5.11437 0.03028 -3.4555048413 -4.0084607395 -4.2849382766 +7480 30.43791 14.23382 -5.10526 0.03032 -3.4475037114 -4.0000899846 -4.2763827099 +7485 30.41695 14.22283 -5.09616 0.03036 -3.4395111001 -3.991728242 -4.2678364025 +7490 30.39602 14.21186 -5.08707 0.03040 -3.4315270103 -3.9833755138 -4.2592993559 +7495 30.37512 14.20091 -5.07798 0.03045 -3.4235414449 -3.9750218019 -4.2507615715 +7500 30.35424 14.18997 -5.06889 0.03049 -3.415554407 -3.9666671082 -4.2422230509 +7505 30.3334 14.17905 -5.05982 0.03053 -3.4075858994 -3.9583314348 -4.2337037954 +7510 30.31258 14.16814 -5.05075 0.03057 -3.3996159251 -3.9499947836 -4.2251838065 +7515 30.29179 14.15724 -5.04168 0.03061 -3.391644487 -3.9416571566 -4.2166630858 +7520 30.27104 14.14637 -5.03262 0.03066 -3.3836815881 -3.9333285556 -4.2081516347 +7525 30.25031 14.1355 -5.02357 0.03070 -3.3757272312 -3.9250089827 -4.1996494546 +7530 30.2296 14.12465 -5.01452 0.03074 -3.3677714193 -3.9166884398 -4.1911465469 +7535 30.20893 14.11382 -5.00548 0.03078 -3.3598241552 -3.9083769288 -4.1826529132 +7540 30.18829 14.103 -4.99645 0.03083 -3.3518854418 -3.9000744516 -4.1741685549 +7545 30.16767 14.0922 -4.98742 0.03087 -3.3439452821 -3.8917710101 -4.1656834734 +7550 30.14708 14.08141 -4.9784 0.03091 -3.3360136789 -3.8834766064 -4.1572076701 +7555 30.12652 14.07064 -4.96939 0.03095 -3.3280906351 -3.8751912422 -4.1487411466 +7560 30.10599 14.05988 -4.96038 0.03100 -3.3201661535 -3.8669049195 -4.1402739041 +7565 30.08549 14.04913 -4.95137 0.03104 -3.3122402369 -3.8586176401 -4.1318059442 +7570 30.06501 14.0384 -4.94238 0.03108 -3.3043328883 -3.8503494061 -4.1233572682 +7575 30.04457 14.02769 -4.93339 0.03112 -3.2964241104 -3.8420802192 -4.1149078777 +7580 30.02415 14.01699 -4.9244 0.03117 -3.2885139061 -3.8338100814 -4.1064577739 +7585 30.00375 14.0063 -4.91542 0.03121 +7590 29.98339 13.99563 -4.90645 0.03125 +7595 29.96306 13.98498 -4.89748 0.03129 +7600 29.94275 13.97434 -4.88852 0.03134 +7605 29.92247 13.96371 -4.87957 0.03138 +7610 29.90221 13.9531 -4.87062 0.03142 +7615 29.88199 13.9425 -4.86168 0.03146 +7620 29.86179 13.93192 -4.85275 0.03151 +7625 29.84162 13.92135 -4.84382 0.03155 +7630 29.82148 13.91079 -4.83489 0.03159 +7635 29.80136 13.90025 -4.82598 0.03164 +7640 29.78127 13.88973 -4.81707 0.03168 +7645 29.76121 13.87922 -4.80816 0.03172 +7650 29.74118 13.86872 -4.79926 0.03177 +7655 29.72117 13.85824 -4.79037 0.03181 +7660 29.70119 13.84777 -4.78148 0.03185 +7665 29.68124 13.83731 -4.7726 0.03189 +7670 29.66131 13.82687 -4.76373 0.03194 +7675 29.64142 13.81645 -4.75486 0.03198 +7680 29.62154 13.80603 -4.746 0.03202 +7685 29.6017 13.79564 -4.73714 0.03207 +7690 29.58188 13.78525 -4.72829 0.03211 +7695 29.56209 13.77488 -4.71945 0.03215 +7700 29.54232 13.76452 -4.71061 0.03220 +7705 29.52258 13.75418 -4.70178 0.03224 +7710 29.50287 13.74385 -4.69296 0.03228 +7715 29.48319 13.73354 -4.68414 0.03233 +7720 29.46353 13.72324 -4.67533 0.03237 +7725 29.44389 13.71295 -4.66652 0.03241 +7730 29.42429 13.70268 -4.65772 0.03246 +7735 29.40471 13.69242 -4.64893 0.03250 +7740 29.38515 13.68218 -4.64014 0.03254 +7745 29.36562 13.67195 -4.63136 0.03259 +7750 29.34612 13.66173 -4.62258 0.03263 +7755 29.32664 13.65152 -4.61381 0.03267 +7760 29.30719 13.64133 -4.60505 0.03272 +7765 29.28777 13.63116 -4.59629 0.03276 +7770 29.26837 13.62099 -4.58754 0.03281 +7775 29.249 13.61084 -4.5788 0.03285 +7780 29.22965 13.60071 -4.57006 0.03289 +7785 29.21033 13.59059 -4.56132 0.03294 +7790 29.19104 13.58048 -4.5526 0.03298 +7795 29.17177 13.57038 -4.54388 0.03302 +7800 29.15252 13.5603 -4.53516 0.03307 +7805 29.1333 13.55023 -4.52645 0.03311 +7810 29.11411 13.54017 -4.51775 0.03316 +7815 29.09494 13.53013 -4.50906 0.03320 +7820 29.0758 13.5201 -4.50037 0.03324 +7825 29.05668 13.51009 -4.49168 0.03329 +7830 29.03759 13.50009 -4.483 0.03333 +7835 29.01852 13.4901 -4.47433 0.03338 +7840 28.99948 13.48012 -4.46567 0.03342 +7845 28.98046 13.47016 -4.45701 0.03346 +7850 28.96147 13.46021 -4.44836 0.03351 +7855 28.94251 13.45027 -4.43971 0.03355 +7860 28.92356 13.44035 -4.43107 0.03360 +7865 28.90465 13.43044 -4.42243 0.03364 +7870 28.88576 13.42054 -4.4138 0.03368 +7875 28.86689 13.41066 -4.40518 0.03373 +7880 28.84805 13.40079 -4.39656 0.03377 +7885 28.82923 13.39093 -4.38795 0.03382 +7890 28.81043 13.38109 -4.37935 0.03386 +7895 28.79167 13.37125 -4.37075 0.03391 +7900 28.77292 13.36143 -4.36216 0.03395 +7905 28.7542 13.35163 -4.35357 0.03400 +7910 28.73551 13.34183 -4.34499 0.03404 +7915 28.71684 13.33205 -4.33642 0.03408 +7920 28.69819 13.32229 -4.32785 0.03413 +7925 28.67957 13.31253 -4.31929 0.03417 +7930 28.66097 13.30279 -4.31073 0.03422 +7935 28.6424 13.29306 -4.30218 0.03426 +7940 28.62385 13.28334 -4.29364 0.03431 +7945 28.60532 13.27364 -4.2851 0.03435 +7950 28.58682 13.26395 -4.27657 0.03440 +7955 28.56835 13.25427 -4.26805 0.03444 +7960 28.54989 13.2446 -4.25953 0.03449 +7965 28.53146 13.23495 -4.25102 0.03453 +7970 28.51306 13.22531 -4.24251 0.03458 +7975 28.49468 13.21568 -4.23401 0.03462 +7980 28.47632 13.20606 -4.22551 0.03466 +7985 28.45799 13.19646 -4.21702 0.03471 +7990 28.43968 13.18687 -4.20854 0.03475 +7995 28.42139 13.17729 -4.20006 0.03480 +8000 28.40313 13.16772 -4.19159 0.03484 +8005 28.38489 13.15817 -4.18313 0.03489 +8010 28.36667 13.14863 -4.17467 0.03493 +8015 28.34848 13.1391 -4.16622 0.03498 +8020 28.33031 13.12958 -4.15777 0.03502 +8025 28.31216 13.12007 -4.14933 0.03507 +8030 28.29404 13.11058 -4.1409 0.03511 +8035 28.27594 13.1011 -4.13247 0.03516 +8040 28.25787 13.09163 -4.12405 0.03521 +8045 28.23981 13.08218 -4.11563 0.03525 +8050 28.22179 13.07273 -4.10722 0.03530 +8055 28.20378 13.0633 -4.09881 0.03534 +8060 28.1858 13.05388 -4.09042 0.03539 +8065 28.16784 13.04447 -4.08202 0.03543 +8070 28.1499 13.03508 -4.07364 0.03548 +8075 28.13198 13.0257 -4.06526 0.03552 +8080 28.11409 13.01632 -4.05688 0.03557 +8085 28.09622 13.00697 -4.04852 0.03561 +8090 28.07838 12.99762 -4.04015 0.03566 +8095 28.06055 12.98828 -4.0318 0.03570 +8100 28.04275 12.97896 -4.02345 0.03575 +8105 28.02498 12.96965 -4.0151 0.03580 +8110 28.00722 12.96035 -4.00677 0.03584 +8115 27.98949 12.95106 -3.99843 0.03589 +8120 27.97178 12.94178 -3.99011 0.03593 +8125 27.95409 12.93252 -3.98179 0.03598 +8130 27.93643 12.92327 -3.97347 0.03602 +8135 27.91878 12.91403 -3.96516 0.03607 +8140 27.90116 12.9048 -3.95686 0.03611 +8145 27.88356 12.89558 -3.94857 0.03616 +8150 27.86599 12.88638 -3.94028 0.03621 +8155 27.84843 12.87718 -3.93199 0.03625 +8160 27.8309 12.868 -3.92371 0.03630 +8165 27.81339 12.85883 -3.91544 0.03634 +8170 27.79591 12.84967 -3.90718 0.03639 +8175 27.77844 12.84052 -3.89892 0.03644 +8180 27.761 12.83139 -3.89066 0.03648 +8185 27.74358 12.82226 -3.88241 0.03653 +8190 27.72618 12.81315 -3.87417 0.03657 +8195 27.7088 12.80405 -3.86593 0.03662 +8200 27.69145 12.79496 -3.8577 0.03667 +8205 27.67411 12.78588 -3.84948 0.03671 +8210 27.6568 12.77681 -3.84126 0.03676 +8215 27.63951 12.76776 -3.83305 0.03680 +8220 27.62224 12.75871 -3.82484 0.03685 +8225 27.60499 12.74968 -3.81664 0.03690 +8230 27.58777 12.74066 -3.80845 0.03694 +8235 27.57057 12.73165 -3.80026 0.03699 +8240 27.55338 12.72265 -3.79207 0.03704 +8245 27.53622 12.71366 -3.7839 0.03708 +8250 27.51908 12.70469 -3.77573 0.03713 +8255 27.50196 12.69572 -3.76756 0.03717 +8260 27.48487 12.68677 -3.7594 0.03722 +8265 27.46779 12.67783 -3.75125 0.03727 +8270 27.45074 12.6689 -3.7431 0.03731 +8275 27.43371 12.65998 -3.73496 0.03736 +8280 27.41669 12.65107 -3.72682 0.03741 +8285 27.3997 12.64217 -3.71869 0.03745 +8290 27.38274 12.63328 -3.71057 0.03750 +8295 27.36579 12.62441 -3.70245 0.03755 +8300 27.34886 12.61554 -3.69434 0.03759 +8305 27.33195 12.60669 -3.68623 0.03764 +8310 27.31507 12.59784 -3.67813 0.03769 +8315 27.2982 12.58901 -3.67004 0.03773 +8320 27.28136 12.58019 -3.66195 0.03778 +8325 27.26454 12.57138 -3.65387 0.03783 +8330 27.24774 12.56258 -3.64579 0.03787 +8335 27.23096 12.5538 -3.63772 0.03792 +8340 27.21419 12.54502 -3.62966 0.03797 +8345 27.19746 12.53625 -3.6216 0.03801 +8350 27.18074 12.5275 -3.61354 0.03806 +8355 27.16404 12.51875 -3.6055 0.03811 +8360 27.14736 12.51002 -3.59745 0.03816 +8365 27.1307 12.5013 -3.58942 0.03820 +8370 27.11407 12.49258 -3.58139 0.03825 +8375 27.09745 12.48388 -3.57336 0.03830 +8380 27.08085 12.47519 -3.56535 0.03834 +8385 27.06428 12.46651 -3.55733 0.03839 +8390 27.04772 12.45784 -3.54933 0.03844 +8395 27.03119 12.44918 -3.54133 0.03848 +8400 27.01467 12.44053 -3.53333 0.03853 +8405 26.99818 12.4319 -3.52534 0.03858 +8410 26.9817 12.42327 -3.51736 0.03863 +8415 26.96525 12.41465 -3.50938 0.03867 +8420 26.94882 12.40605 -3.50141 0.03872 +8425 26.9324 12.39745 -3.49344 0.03877 +8430 26.91601 12.38887 -3.48548 0.03882 +8435 26.89963 12.38029 -3.47753 0.03886 +8440 26.88328 12.37173 -3.46958 0.03891 +8445 26.86695 12.36318 -3.46164 0.03896 +8450 26.85063 12.35463 -3.4537 0.03901 +8455 26.83434 12.3461 -3.44577 0.03905 +8460 26.81806 12.33758 -3.43785 0.03910 +8465 26.80181 12.32907 -3.42993 0.03915 +8470 26.78557 12.32057 -3.42201 0.03920 +8475 26.76936 12.31208 -3.41411 0.03924 +8480 26.75316 12.30359 -3.4062 0.03929 +8485 26.73699 12.29512 -3.39831 0.03934 +8490 26.72083 12.28666 -3.39042 0.03939 +8495 26.70469 12.27821 -3.38253 0.03943 +8500 26.68858 12.26978 -3.37465 0.03948 +8505 26.67248 12.26135 -3.36678 0.03953 +8510 26.6564 12.25293 -3.35891 0.03958 +8515 26.64034 12.24452 -3.35105 0.03963 +8520 26.6243 12.23612 -3.34319 0.03967 +8525 26.60828 12.22773 -3.33534 0.03972 +8530 26.59228 12.21935 -3.3275 0.03977 +8535 26.5763 12.21098 -3.31966 0.03982 +8540 26.56034 12.20263 -3.31183 0.03987 +8545 26.54439 12.19428 -3.304 0.03991 +8550 26.52847 12.18594 -3.29618 0.03996 +8555 26.51257 12.17761 -3.28836 0.04001 +8560 26.49668 12.16929 -3.28055 0.04006 +8565 26.48081 12.16099 -3.27275 0.04011 +8570 26.46497 12.15269 -3.26495 0.04015 +8575 26.44914 12.1444 -3.25716 0.04020 +8580 26.43333 12.13612 -3.24937 0.04025 +8585 26.41754 12.12785 -3.24159 0.04030 +8590 26.40176 12.1196 -3.23381 0.04035 +8595 26.38601 12.11135 -3.22604 0.04039 +8600 26.37028 12.10311 -3.21828 0.04044 +8605 26.35456 12.09488 -3.21052 0.04049 +8610 26.33887 12.08666 -3.20277 0.04054 +8615 26.32319 12.07845 -3.19502 0.04059 +8620 26.30753 12.07026 -3.18728 0.04064 +8625 26.29189 12.06207 -3.17954 0.04069 +8630 26.27627 12.05389 -3.17181 0.04073 +8635 26.26066 12.04572 -3.16408 0.04078 +8640 26.24508 12.03756 -3.15636 0.04083 +8645 26.22951 12.02941 -3.14865 0.04088 +8650 26.21396 12.02127 -3.14094 0.04093 +8655 26.19844 12.01314 -3.13324 0.04098 +8660 26.18292 12.00501 -3.12554 0.04103 +8665 26.16743 11.9969 -3.11785 0.04107 +8670 26.15196 11.9888 -3.11017 0.04112 +8675 26.1365 11.98071 -3.10249 0.04117 +8680 26.12107 11.97263 -3.09481 0.04122 +8685 26.10565 11.96455 -3.08715 0.04127 +8690 26.09025 11.95649 -3.07948 0.04132 +8695 26.07486 11.94844 -3.07183 0.04137 +8700 26.0595 11.94039 -3.06417 0.04142 +8705 26.04415 11.93236 -3.05653 0.04146 +8710 26.02882 11.92433 -3.04889 0.04151 +8715 26.01351 11.91632 -3.04125 0.04156 +8720 25.99822 11.90831 -3.03362 0.04161 +8725 25.98295 11.90031 -3.026 0.04166 +8730 25.96769 11.89233 -3.01838 0.04171 +8735 25.95245 11.88435 -3.01077 0.04176 +8740 25.93723 11.87638 -3.00316 0.04181 +8745 25.92203 11.86842 -2.99556 0.04186 +8750 25.90684 11.86047 -2.98797 0.04191 +8755 25.89168 11.85253 -2.98038 0.04196 +8760 25.87653 11.8446 -2.97279 0.04200 +8765 25.8614 11.83668 -2.96521 0.04205 +8770 25.84628 11.82876 -2.95764 0.04210 +8775 25.83119 11.82086 -2.95007 0.04215 +8780 25.81611 11.81297 -2.94251 0.04220 +8785 25.80105 11.80508 -2.93495 0.04225 +8790 25.786 11.79721 -2.9274 0.04230 +8795 25.77098 11.78934 -2.91986 0.04235 +8800 25.75597 11.78148 -2.91231 0.04240 +8805 25.74098 11.77363 -2.90478 0.04245 +8810 25.72601 11.76579 -2.89725 0.04250 +8815 25.71105 11.75797 -2.88973 0.04255 +8820 25.69611 11.75014 -2.88221 0.04260 +8825 25.68119 11.74233 -2.8747 0.04265 +8830 25.66629 11.73453 -2.86719 0.04270 +8835 25.6514 11.72674 -2.85969 0.04275 +8840 25.63653 11.71895 -2.85219 0.04280 +8845 25.62168 11.71118 -2.8447 0.04285 +8850 25.60685 11.70341 -2.83722 0.04290 +8855 25.59203 11.69565 -2.82974 0.04294 +8860 25.57723 11.68791 -2.82226 0.04299 +8865 25.56245 11.68017 -2.81479 0.04304 +8870 25.54768 11.67244 -2.80733 0.04309 +8875 25.53293 11.66472 -2.79987 0.04314 +8880 25.5182 11.657 -2.79242 0.04319 +8885 25.50349 11.6493 -2.78497 0.04324 +8890 25.48879 11.64161 -2.77753 0.04329 +8895 25.47411 11.63392 -2.7701 0.04334 +8900 25.45944 11.62624 -2.76267 0.04339 +8905 25.4448 11.61858 -2.75524 0.04344 +8910 25.43017 11.61092 -2.74782 0.04349 +8915 25.41555 11.60327 -2.74041 0.04354 +8920 25.40096 11.59563 -2.733 0.04359 +8925 25.38638 11.58799 -2.7256 0.04364 +8930 25.37181 11.58037 -2.7182 0.04369 +8935 25.35727 11.57276 -2.71081 0.04374 +8940 25.34274 11.56515 -2.70342 0.04380 +8945 25.32822 11.55755 -2.69604 0.04385 +8950 25.31373 11.54996 -2.68866 0.04390 +8955 25.29925 11.54238 -2.68129 0.04395 +8960 25.28479 11.53481 -2.67393 0.04400 +8965 25.27034 11.52725 -2.66657 0.04405 +8970 25.25591 11.5197 -2.65921 0.04410 +8975 25.2415 11.51215 -2.65186 0.04415 +8980 25.2271 11.50461 -2.64452 0.04420 +8985 25.21272 11.49709 -2.63718 0.04425 +8990 25.19835 11.48957 -2.62985 0.04430 +8995 25.18401 11.48206 -2.62252 0.04435 +9000 25.16967 11.47455 -2.6152 0.04440 +9005 25.15536 11.46706 -2.60788 0.04445 +9010 25.14106 11.45958 -2.60057 0.04450 +9015 25.12678 11.4521 -2.59327 0.04455 +9020 25.11251 11.44463 -2.58597 0.04460 +9025 25.09826 11.43717 -2.57867 0.04465 +9030 25.08403 11.42972 -2.57138 0.04470 +9035 25.06981 11.42228 -2.5641 0.04475 +9040 25.05561 11.41484 -2.55682 0.04481 +9045 25.04142 11.40742 -2.54954 0.04486 +9050 25.02725 11.4 -2.54227 0.04491 +9055 25.0131 11.39259 -2.53501 0.04496 +9060 24.99896 11.38519 -2.52775 0.04501 +9065 24.98484 11.3778 -2.5205 0.04506 +9070 24.97073 11.37042 -2.51325 0.04511 +9075 24.95664 11.36304 -2.50601 0.04516 +9080 24.94257 11.35567 -2.49878 0.04521 +9085 24.92851 11.34832 -2.49154 0.04526 +9090 24.91447 11.34096 -2.48432 0.04532 +9095 24.90044 11.33362 -2.4771 0.04537 +9100 24.88643 11.32629 -2.46988 0.04542 +9105 24.87244 11.31896 -2.46267 0.04547 +9110 24.85846 11.31165 -2.45547 0.04552 +9115 24.8445 11.30434 -2.44827 0.04557 +9120 24.83055 11.29704 -2.44107 0.04562 +9125 24.81662 11.28974 -2.43388 0.04567 +9130 24.8027 11.28246 -2.4267 0.04572 +9135 24.7888 11.27518 -2.41952 0.04578 +9140 24.77492 11.26792 -2.41235 0.04583 +9145 24.76105 11.26066 -2.40518 0.04588 +9150 24.74719 11.2534 -2.39802 0.04593 +9155 24.73335 11.24616 -2.39086 0.04598 +9160 24.71953 11.23893 -2.38371 0.04603 +9165 24.70572 11.2317 -2.37656 0.04608 +9170 24.69193 11.22448 -2.36942 0.04614 +9175 24.67815 11.21727 -2.36228 0.04619 +9180 24.66439 11.21007 -2.35515 0.04624 +9185 24.65065 11.20287 -2.34803 0.04629 +9190 24.63692 11.19568 -2.3409 0.04634 +9195 24.6232 11.1885 -2.33379 0.04639 +9200 24.6095 11.18133 -2.32668 0.04645 +9205 24.59582 11.17417 -2.31957 0.04650 +9210 24.58215 11.16702 -2.31247 0.04655 +9215 24.56849 11.15987 -2.30538 0.04660 +9220 24.55485 11.15273 -2.29829 0.04665 +9225 24.54123 11.1456 -2.2912 0.04670 +9230 24.52762 11.13848 -2.28412 0.04676 +9235 24.51402 11.13136 -2.27705 0.04681 +9240 24.50045 11.12425 -2.26998 0.04686 +9245 24.48688 11.11715 -2.26292 0.04691 +9250 24.47333 11.11006 -2.25586 0.04696 +9255 24.4598 11.10298 -2.24881 0.04702 +9260 24.44628 11.0959 -2.24176 0.04707 +9265 24.43278 11.08883 -2.23471 0.04712 +9270 24.41929 11.08177 -2.22768 0.04717 +9275 24.40581 11.07472 -2.22064 0.04722 +9280 24.39235 11.06768 -2.21362 0.04728 +9285 24.37891 11.06064 -2.20659 0.04733 +9290 24.36548 11.05361 -2.19958 0.04738 +9295 24.35207 11.04659 -2.19256 0.04743 +9300 24.33867 11.03958 -2.18556 0.04749 +9305 24.32528 11.03257 -2.17855 0.04754 +9310 24.31191 11.02557 -2.17156 0.04759 +9315 24.29855 11.01858 -2.16457 0.04764 +9320 24.28521 11.0116 -2.15758 0.04769 +9325 24.27189 11.00463 -2.1506 0.04775 +9330 24.25857 10.99766 -2.14362 0.04780 +9335 24.24528 10.9907 -2.13665 0.04785 +9340 24.23199 10.98375 -2.12968 0.04790 +9345 24.21872 10.9768 -2.12272 0.04796 +9350 24.20547 10.96987 -2.11577 0.04801 +9355 24.19223 10.96294 -2.10882 0.04806 +9360 24.17901 10.95601 -2.10187 0.04811 +9365 24.1658 10.9491 -2.09493 0.04817 +9370 24.1526 10.94219 -2.08799 0.04822 +9375 24.13942 10.9353 -2.08106 0.04827 +9380 24.12625 10.9284 -2.07414 0.04833 +9385 24.1131 10.92152 -2.06722 0.04838 +9390 24.09996 10.91464 -2.0603 0.04843 +9395 24.08684 10.90778 -2.05339 0.04848 +9400 24.07373 10.90091 -2.04648 0.04854 +9405 24.06063 10.89406 -2.03958 0.04859 +9410 24.04755 10.88721 -2.03269 0.04864 +9415 24.03448 10.88037 -2.0258 0.04870 +9420 24.02143 10.87354 -2.01891 0.04875 +9425 24.00839 10.86672 -2.01203 0.04880 +9430 23.99537 10.8599 -2.00516 0.04885 +9435 23.98236 10.85309 -1.99829 0.04891 +9440 23.96936 10.84629 -1.99142 0.04896 +9445 23.95638 10.8395 -1.98456 0.04901 +9450 23.94341 10.83271 -1.97771 0.04907 +9455 23.93045 10.82593 -1.97086 0.04912 +9460 23.91751 10.81916 -1.96401 0.04917 +9465 23.90459 10.81239 -1.95717 0.04923 +9470 23.89168 10.80564 -1.95034 0.04928 +9475 23.87878 10.79889 -1.94351 0.04933 +9480 23.86589 10.79214 -1.93668 0.04939 +9485 23.85302 10.78541 -1.92986 0.04944 +9490 23.84017 10.77868 -1.92304 0.04949 +9495 23.82732 10.77196 -1.91623 0.04955 +9500 23.81449 10.76524 -1.90943 0.04960 +9505 23.80168 10.75854 -1.90263 0.04965 +9510 23.78888 10.75184 -1.89583 0.04971 +9515 23.77609 10.74514 -1.88904 0.04976 +9520 23.76332 10.73846 -1.88226 0.04981 +9525 23.75056 10.73178 -1.87548 0.04987 +9530 23.73781 10.72511 -1.8687 0.04992 +9535 23.72508 10.71845 -1.86193 0.04997 +9540 23.71236 10.71179 -1.85516 0.05003 +9545 23.69965 10.70514 -1.8484 0.05008 +9550 23.68696 10.6985 -1.84165 0.05013 +9555 23.67428 10.69186 -1.83489 0.05019 +9560 23.66162 10.68524 -1.82815 0.05024 +9565 23.64896 10.67862 -1.82141 0.05030 +9570 23.63633 10.672 -1.81467 0.05035 +9575 23.6237 10.6654 -1.80794 0.05040 +9580 23.61109 10.6588 -1.80121 0.05046 +9585 23.59849 10.6522 -1.79449 0.05051 +9590 23.58591 10.64562 -1.78777 0.05056 +9595 23.57334 10.63904 -1.78106 0.05062 +9600 23.56078 10.63247 -1.77435 0.05067 +9605 23.54824 10.6259 -1.76765 0.05073 +9610 23.53571 10.61935 -1.76095 0.05078 +9615 23.52319 10.6128 -1.75426 0.05083 +9620 23.51069 10.60625 -1.74757 0.05089 +9625 23.4982 10.59972 -1.74089 0.05094 +9630 23.48572 10.59319 -1.73421 0.05100 +9635 23.47326 10.58666 -1.72754 0.05105 +9640 23.4608 10.58015 -1.72087 0.05110 +9645 23.44837 10.57364 -1.71421 0.05116 +9650 23.43594 10.56714 -1.70755 0.05121 +9655 23.42353 10.56064 -1.7009 0.05127 +9660 23.41113 10.55415 -1.69425 0.05132 +9665 23.39875 10.54767 -1.6876 0.05138 +9670 23.38638 10.5412 -1.68096 0.05143 +9675 23.37402 10.53473 -1.67433 0.05148 +9680 23.36167 10.52827 -1.6677 0.05154 +9685 23.34934 10.52182 -1.66108 0.05159 +9690 23.33702 10.51537 -1.65446 0.05165 +9695 23.32471 10.50893 -1.64784 0.05170 +9700 23.31242 10.5025 -1.64123 0.05176 +9705 23.30014 10.49607 -1.63462 0.05181 +9710 23.28787 10.48965 -1.62802 0.05187 +9715 23.27561 10.48324 -1.62143 0.05192 +9720 23.26337 10.47683 -1.61484 0.05198 +9725 23.25114 10.47043 -1.60825 0.05203 +9730 23.23892 10.46404 -1.60167 0.05208 +9735 23.22672 10.45765 -1.59509 0.05214 +9740 23.21453 10.45127 -1.58852 0.05219 +9745 23.20235 10.4449 -1.58195 0.05225 +9750 23.19019 10.43853 -1.57539 0.05230 +9755 23.17803 10.43217 -1.56883 0.05236 +9760 23.16589 10.42582 -1.56228 0.05241 +9765 23.15377 10.41948 -1.55573 0.05247 +9770 23.14165 10.41314 -1.54919 0.05252 +9775 23.12955 10.4068 -1.54265 0.05258 +9780 23.11746 10.40048 -1.53611 0.05263 +9785 23.10538 10.39416 -1.52958 0.05269 +9790 23.09332 10.38784 -1.52306 0.05274 +9795 23.08127 10.38154 -1.51654 0.05280 +9800 23.06923 10.37524 -1.51002 0.05285 +9805 23.0572 10.36895 -1.50351 0.05291 +9810 23.04519 10.36266 -1.49701 0.05296 +9815 23.03319 10.35638 -1.4905 0.05302 +9820 23.0212 10.35011 -1.48401 0.05307 +9825 23.00922 10.34384 -1.47752 0.05313 +9830 22.99726 10.33758 -1.47103 0.05318 +9835 22.98531 10.33132 -1.46455 0.05324 +9840 22.97337 10.32508 -1.45807 0.05329 +9845 22.96144 10.31884 -1.45159 0.05335 +9850 22.94952 10.3126 -1.44513 0.05341 +9855 22.93762 10.30637 -1.43866 0.05346 +9860 22.92573 10.30015 -1.4322 0.05352 +9865 22.91386 10.29394 -1.42575 0.05357 +9870 22.90199 10.28773 -1.4193 0.05363 +9875 22.89014 10.28153 -1.41285 0.05368 +9880 22.8783 10.27533 -1.40641 0.05374 +9885 22.86647 10.26914 -1.39998 0.05379 +9890 22.85465 10.26296 -1.39355 0.05385 +9895 22.84285 10.25678 -1.38712 0.05390 +9900 22.83106 10.25061 -1.3807 0.05396 +9905 22.81928 10.24445 -1.37428 0.05402 +9910 22.80751 10.23829 -1.36787 0.05407 +9915 22.79575 10.23214 -1.36146 0.05413 +9920 22.78401 10.22599 -1.35506 0.05418 +9925 22.77228 10.21986 -1.34866 0.05424 +9930 22.76056 10.21372 -1.34226 0.05429 +9935 22.74885 10.2076 -1.33587 0.05435 +9940 22.73716 10.20148 -1.32949 0.05441 +9945 22.72547 10.19537 -1.32311 0.05446 +9950 22.7138 10.18926 -1.31673 0.05452 +9955 22.70214 10.18316 -1.31036 0.05457 +9960 22.69049 10.17706 -1.30399 0.05463 +9965 22.67886 10.17098 -1.29763 0.05469 +9970 22.66724 10.16489 -1.29127 0.05474 +9975 22.65562 10.15882 -1.28492 0.05480 +9980 22.64402 10.15275 -1.27857 0.05485 +9985 22.63244 10.14668 -1.27223 0.05491 +9990 22.62086 10.14063 -1.26589 0.05497 +9995 22.6093 10.13458 -1.25955 0.05502 +10000 22.59774 10.12853 -1.25322 0.05508 +10005 22.5862 10.12249 -1.2469 0.05513 +10010 22.57467 10.11646 -1.24058 0.05519 +10015 22.56316 10.11044 -1.23426 0.05525 +10020 22.55165 10.10442 -1.22795 0.05530 +10025 22.54016 10.0984 -1.22164 0.05536 +10030 22.52868 10.09239 -1.21534 0.05542 +10035 22.51721 10.08639 -1.20904 0.05547 +10040 22.50575 10.0804 -1.20275 0.05553 +10045 22.4943 10.07441 -1.19646 0.05559 +10050 22.48286 10.06842 -1.19017 0.05564 +10055 22.47144 10.06245 -1.18389 0.05570 +10060 22.46003 10.05648 -1.17761 0.05575 +10065 22.44863 10.05051 -1.17134 0.05581 +10070 22.43724 10.04455 -1.16508 0.05587 +10075 22.42586 10.0386 -1.15881 0.05592 +10080 22.4145 10.03265 -1.15256 0.05598 +10085 22.40314 10.02671 -1.1463 0.05604 +10090 22.3918 10.02078 -1.14005 0.05609 +10095 22.38047 10.01485 -1.13381 0.05615 +10100 22.36915 10.00892 -1.12757 0.05621 +10105 22.35784 10.00301 -1.12133 0.05626 +10110 22.34654 9.9971 -1.1151 0.05632 +10115 22.33525 9.99119 -1.10888 0.05638 +10120 22.32398 9.98529 -1.10265 0.05644 +10125 22.31272 9.9794 -1.09644 0.05649 +10130 22.30146 9.97351 -1.09022 0.05655 +10135 22.29022 9.96763 -1.08401 0.05661 +10140 22.27899 9.96176 -1.07781 0.05666 +10145 22.26778 9.95589 -1.07161 0.05672 +10150 22.25657 9.95002 -1.06541 0.05678 +10155 22.24537 9.94417 -1.05922 0.05683 +10160 22.23419 9.93831 -1.05303 0.05689 +10165 22.22302 9.93247 -1.04685 0.05695 +10170 22.21185 9.92663 -1.04067 0.05701 +10175 22.2007 9.92079 -1.0345 0.05706 +10180 22.18956 9.91497 -1.02833 0.05712 +10185 22.17844 9.90914 -1.02217 0.05718 +10190 22.16732 9.90333 -1.01601 0.05723 +10195 22.15621 9.89752 -1.00985 0.05729 +10200 22.14512 9.89171 -1.0037 0.05735 +10205 22.13403 9.88591 -0.99755 0.05741 +10210 22.12296 9.88012 -0.99141 0.05746 +10215 22.1119 9.87433 -0.98527 0.05752 +10220 22.10085 9.86855 -0.97914 0.05758 +10225 22.08981 9.86277 -0.97301 0.05764 +10230 22.07878 9.857 -0.96688 0.05769 +10235 22.06776 9.85124 -0.96076 0.05775 +10240 22.05676 9.84548 -0.95465 0.05781 +10245 22.04576 9.83973 -0.94853 0.05787 +10250 22.03477 9.83398 -0.94243 0.05792 +10255 22.0238 9.82824 -0.93632 0.05798 +10260 22.01284 9.8225 -0.93022 0.05804 +10265 22.00189 9.81677 -0.92413 0.05810 +10270 21.99094 9.81105 -0.91804 0.05815 +10275 21.98001 9.80533 -0.91195 0.05821 +10280 21.96909 9.79962 -0.90587 0.05827 +10285 21.95819 9.79391 -0.89979 0.05833 +10290 21.94729 9.78821 -0.89372 0.05839 +10295 21.9364 9.78251 -0.88765 0.05844 +10300 21.92552 9.77682 -0.88159 0.05850 +10305 21.91466 9.77114 -0.87553 0.05856 +10310 21.9038 9.76546 -0.86947 0.05862 +10315 21.89296 9.75979 -0.86342 0.05867 +10320 21.88213 9.75412 -0.85737 0.05873 +10325 21.8713 9.74846 -0.85133 0.05879 +10330 21.86049 9.7428 -0.84529 0.05885 +10335 21.84969 9.73715 -0.83926 0.05891 +10340 21.8389 9.7315 -0.83323 0.05896 +10345 21.82812 9.72586 -0.8272 0.05902 +10350 21.81735 9.72023 -0.82118 0.05908 +10355 21.80659 9.7146 -0.81516 0.05914 +10360 21.79584 9.70898 -0.80915 0.05920 +10365 21.7851 9.70336 -0.80314 0.05926 +10370 21.77438 9.69775 -0.79713 0.05931 +10375 21.76366 9.69214 -0.79113 0.05937 +10380 21.75295 9.68654 -0.78514 0.05943 +10385 21.74226 9.68094 -0.77915 0.05949 +10390 21.73157 9.67535 -0.77316 0.05955 +10395 21.7209 9.66977 -0.76718 0.05961 +10400 21.71023 9.66419 -0.7612 0.05966 +10405 21.69958 9.65862 -0.75522 0.05972 +10410 21.68893 9.65305 -0.74925 0.05978 +10415 21.6783 9.64749 -0.74329 0.05984 +10420 21.66768 9.64193 -0.73732 0.05990 +10425 21.65707 9.63638 -0.73136 0.05996 +10430 21.64647 9.63083 -0.72541 0.06002 +10435 21.63587 9.62529 -0.71946 0.06007 +10440 21.62529 9.61975 -0.71352 0.06013 +10445 21.61472 9.61422 -0.70758 0.06019 +10450 21.60416 9.6087 -0.70164 0.06025 +10455 21.59361 9.60318 -0.69571 0.06031 +10460 21.58307 9.59767 -0.68978 0.06037 +10465 21.57254 9.59216 -0.68385 0.06043 +10470 21.56202 9.58665 -0.67793 0.06049 +10475 21.55151 9.58116 -0.67202 0.06054 +10480 21.54101 9.57566 -0.66611 0.06060 +10485 21.53052 9.57018 -0.6602 0.06066 +10490 21.52004 9.56469 -0.65429 0.06072 +10495 21.50958 9.55922 -0.6484 0.06078 +10500 21.49912 9.55375 -0.6425 0.06084 +10505 21.48867 9.54828 -0.63661 0.06090 +10510 21.47823 9.54282 -0.63072 0.06096 +10515 21.4678 9.53736 -0.62484 0.06102 +10520 21.45739 9.53191 -0.61896 0.06107 +10525 21.44698 9.52647 -0.61309 0.06113 +10530 21.43658 9.52103 -0.60722 0.06119 +10535 21.42619 9.5156 -0.60135 0.06125 +10540 21.41581 9.51017 -0.59549 0.06131 +10545 21.40545 9.50474 -0.58963 0.06137 +10550 21.39509 9.49933 -0.58378 0.06143 +10555 21.38474 9.49391 -0.57793 0.06149 +10560 21.3744 9.4885 -0.57208 0.06155 +10565 21.36408 9.4831 -0.56624 0.06161 +10570 21.35376 9.4777 -0.5604 0.06167 +10575 21.34345 9.47231 -0.55457 0.06173 +10580 21.33315 9.46692 -0.54874 0.06179 +10585 21.32286 9.46154 -0.54292 0.06185 +10590 21.31259 9.45617 -0.5371 0.06191 +10595 21.30232 9.45079 -0.53128 0.06196 +10600 21.29206 9.44543 -0.52547 0.06202 +10605 21.28181 9.44007 -0.51966 0.06208 +10610 21.27157 9.43471 -0.51385 0.06214 +10615 21.26134 9.42936 -0.50805 0.06220 +10620 21.25112 9.42401 -0.50226 0.06226 +10625 21.24091 9.41867 -0.49646 0.06232 +10630 21.23071 9.41334 -0.49068 0.06238 +10635 21.22053 9.40801 -0.48489 0.06244 +10640 21.21035 9.40268 -0.47911 0.06250 +10645 21.20017 9.39736 -0.47334 0.06256 +10650 21.19001 9.39205 -0.46756 0.06262 +10655 21.17986 9.38674 -0.4618 0.06268 +10660 21.16972 9.38143 -0.45603 0.06274 +10665 21.15959 9.37613 -0.45027 0.06280 +10670 21.14947 9.37084 -0.44452 0.06286 +10675 21.13936 9.36555 -0.43876 0.06292 +10680 21.12925 9.36026 -0.43302 0.06298 +10685 21.11916 9.35498 -0.42727 0.06304 +10690 21.10908 9.34971 -0.42153 0.06310 +10695 21.099 9.34444 -0.4158 0.06316 +10700 21.08894 9.33917 -0.41006 0.06322 +10705 21.07889 9.33391 -0.40434 0.06328 +10710 21.06884 9.32866 -0.39861 0.06334 +10715 21.0588 9.32341 -0.39289 0.06340 +10720 21.04878 9.31816 -0.38718 0.06346 +10725 21.03876 9.31292 -0.38147 0.06352 +10730 21.02876 9.30769 -0.37576 0.06358 +10735 21.01876 9.30246 -0.37005 0.06364 +10740 21.00877 9.29724 -0.36436 0.06370 +10745 20.99879 9.29202 -0.35866 0.06376 +10750 20.98882 9.2868 -0.35297 0.06382 +10755 20.97886 9.28159 -0.34728 0.06388 +10760 20.96891 9.27639 -0.3416 0.06394 +10765 20.95897 9.27119 -0.33592 0.06401 +10770 20.94904 9.26599 -0.33024 0.06407 +10775 20.93912 9.2608 -0.32457 0.06413 +10780 20.92921 9.25562 -0.3189 0.06419 +10785 20.9193 9.25044 -0.31324 0.06425 +10790 20.90941 9.24526 -0.30758 0.06431 +10795 20.89952 9.24009 -0.30192 0.06437 +10800 20.88965 9.23492 -0.29627 0.06443 +10805 20.87978 9.22976 -0.29062 0.06449 +10810 20.86992 9.22461 -0.28497 0.06455 +10815 20.86008 9.21946 -0.27933 0.06461 +10820 20.85024 9.21431 -0.2737 0.06467 +10825 20.84041 9.20917 -0.26806 0.06473 +10830 20.83059 9.20403 -0.26244 0.06479 +10835 20.82078 9.1989 -0.25681 0.06486 +10840 20.81098 9.19377 -0.25119 0.06492 +10845 20.80119 9.18865 -0.24557 0.06498 +10850 20.7914 9.18353 -0.23996 0.06504 +10855 20.78163 9.17842 -0.23435 0.06510 +10860 20.77186 9.17331 -0.22875 0.06516 +10865 20.76211 9.16821 -0.22314 0.06522 +10870 20.75236 9.16311 -0.21755 0.06528 +10875 20.74263 9.15802 -0.21195 0.06534 +10880 20.7329 9.15293 -0.20636 0.06540 +10885 20.72318 9.14785 -0.20078 0.06547 +10890 20.71347 9.14277 -0.1952 0.06553 +10895 20.70377 9.13769 -0.18962 0.06559 +10900 20.69407 9.13262 -0.18404 0.06565 +10905 20.68439 9.12756 -0.17847 0.06571 +10910 20.67472 9.1225 -0.17291 0.06577 +10915 20.66505 9.11744 -0.16734 0.06583 +10920 20.6554 9.11239 -0.16179 0.06589 +10925 20.64575 9.10735 -0.15623 0.06596 +10930 20.63611 9.1023 -0.15068 0.06602 +10935 20.62648 9.09727 -0.14513 0.06608 +10940 20.61686 9.09224 -0.13959 0.06614 +10945 20.60725 9.08721 -0.13405 0.06620 +10950 20.59765 9.08219 -0.12851 0.06626 +10955 20.58806 9.07717 -0.12298 0.06632 +10960 20.57847 9.07216 -0.11745 0.06639 +10965 20.5689 9.06715 -0.11193 0.06645 +10970 20.55933 9.06214 -0.10641 0.06651 +10975 20.54977 9.05714 -0.10089 0.06657 +10980 20.54022 9.05215 -0.09538 0.06663 +10985 20.53068 9.04716 -0.08987 0.06669 +10990 20.52115 9.04217 -0.08437 0.06676 +10995 20.51163 9.03719 -0.07886 0.06682 +11000 20.50212 9.03222 -0.07337 0.06688 +11005 20.49261 9.02724 -0.06787 0.06694 +11010 20.48312 9.02228 -0.06238 0.06700 +11015 20.47363 9.01732 -0.0569 0.06707 +11020 20.46415 9.01236 -0.05141 0.06713 +11025 20.45468 9.0074 -0.04594 0.06719 +11030 20.44522 9.00246 -0.04046 0.06725 +11035 20.43577 8.99751 -0.03499 0.06731 +11040 20.42632 8.99257 -0.02952 0.06738 +11045 20.41689 8.98764 -0.02406 0.06744 +11050 20.40746 8.98271 -0.0186 0.06750 +11055 20.39805 8.97778 -0.01314 0.06756 +11060 20.38864 8.97286 -0.00769 0.06762 +11065 20.37924 8.96794 -0.00224 0.06769 +11070 20.36985 8.96303 0.0032 0.06775 +11075 20.36046 8.95812 0.00864 0.06781 +11080 20.35109 8.95322 0.01408 0.06787 +11085 20.34172 8.94832 0.01952 0.06793 +11090 20.33237 8.94343 0.02494 0.06800 +11095 20.32302 8.93854 0.03037 0.06806 +11100 20.31368 8.93365 0.03579 0.06812 +11105 20.30434 8.92877 0.04121 0.06818 +11110 20.29502 8.92389 0.04663 0.06825 +11115 20.28571 8.91902 0.05204 0.06831 +11120 20.2764 8.91416 0.05745 0.06837 +11125 20.2671 8.90929 0.06285 0.06843 +11130 20.25782 8.90443 0.06825 0.06850 +11135 20.24853 8.89958 0.07365 0.06856 +11140 20.23926 8.89473 0.07904 0.06862 +11145 20.23 8.88989 0.08443 0.06868 +11150 20.22074 8.88504 0.08981 0.06875 +11155 20.2115 8.88021 0.09519 0.06881 +11160 20.20226 8.87538 0.10057 0.06887 +11165 20.19303 8.87055 0.10595 0.06893 +11170 20.18381 8.86573 0.11132 0.06900 +11175 20.17459 8.86091 0.11668 0.06906 +11180 20.16539 8.85609 0.12205 0.06912 +11185 20.15619 8.85128 0.12741 0.06919 +11190 20.14701 8.84648 0.13276 0.06925 +11195 20.13783 8.84168 0.13811 0.06931 +11200 20.12865 8.83688 0.14346 0.06937 +11205 20.11949 8.83209 0.14881 0.06944 +11210 20.11034 8.8273 0.15415 0.06950 +11215 20.10119 8.82251 0.15949 0.06956 +11220 20.09205 8.81773 0.16482 0.06963 +11225 20.08292 8.81296 0.17015 0.06969 +11230 20.0738 8.80819 0.17548 0.06975 +11235 20.06469 8.80342 0.1808 0.06982 +11240 20.05558 8.79866 0.18612 0.06988 +11245 20.04649 8.7939 0.19143 0.06994 +11250 20.0374 8.78915 0.19675 0.07001 +11255 20.02832 8.7844 0.20206 0.07007 +11260 20.01924 8.77965 0.20736 0.07013 +11265 20.01018 8.77491 0.21266 0.07020 +11270 20.00112 8.77018 0.21796 0.07026 +11275 19.99208 8.76544 0.22325 0.07032 +11280 19.98304 8.76072 0.22854 0.07039 +11285 19.97401 8.75599 0.23383 0.07045 +11290 19.96498 8.75127 0.23911 0.07051 +11295 19.95597 8.74656 0.24439 0.07058 +11300 19.94696 8.74185 0.24967 0.07064 +11305 19.93796 8.73714 0.25494 0.07070 +11310 19.92897 8.73244 0.26021 0.07077 +11315 19.91999 8.72774 0.26547 0.07083 +11320 19.91101 8.72305 0.27074 0.07089 +11325 19.90205 8.71836 0.27599 0.07096 +11330 19.89309 8.71367 0.28125 0.07102 +11335 19.88414 8.70899 0.2865 0.07108 +11340 19.87519 8.70431 0.29175 0.07115 +11345 19.86626 8.69964 0.29699 0.07121 +11350 19.85733 8.69497 0.30223 0.07128 +11355 19.84841 8.69031 0.30747 0.07134 +11360 19.8395 8.68565 0.3127 0.07140 +11365 19.8306 8.68099 0.31793 0.07147 +11370 19.8217 8.67634 0.32316 0.07153 +11375 19.81282 8.67169 0.32838 0.07159 +11380 19.80394 8.66705 0.3336 0.07166 +11385 19.79507 8.66241 0.33881 0.07172 +11390 19.7862 8.65777 0.34402 0.07179 +11395 19.77735 8.65314 0.34923 0.07185 +11400 19.7685 8.64851 0.35444 0.07191 +11405 19.75966 8.64389 0.35964 0.07198 +11410 19.75083 8.63927 0.36484 0.07204 +11415 19.74201 8.63466 0.37003 0.07211 +11420 19.73319 8.63005 0.37522 0.07217 +11425 19.72438 8.62544 0.38041 0.07224 +11430 19.71558 8.62084 0.38559 0.07230 +11435 19.70679 8.61624 0.39077 0.07236 +11440 19.69801 8.61164 0.39595 0.07243 +11445 19.68923 8.60705 0.40112 0.07249 +11450 19.68046 8.60247 0.40629 0.07256 +11455 19.6717 8.59789 0.41146 0.07262 +11460 19.66295 8.59331 0.41662 0.07269 +11465 19.6542 8.58873 0.42178 0.07275 +11470 19.64546 8.58416 0.42693 0.07281 +11475 19.63673 8.5796 0.43209 0.07288 +11480 19.62801 8.57504 0.43724 0.07294 +11485 19.61929 8.57048 0.44238 0.07301 +11490 19.61059 8.56592 0.44752 0.07307 +11495 19.60189 8.56137 0.45266 0.07314 +11500 19.5932 8.55683 0.4578 0.07320 +11505 19.58451 8.55229 0.46293 0.07327 +11510 19.57584 8.54775 0.46805 0.07333 +11515 19.56717 8.54322 0.47318 0.07340 +11520 19.55851 8.53869 0.4783 0.07346 +11525 19.54985 8.53416 0.48342 0.07353 +11530 19.54121 8.52964 0.48853 0.07359 +11535 19.53257 8.52512 0.49364 0.07365 +11540 19.52394 8.52061 0.49875 0.07372 +11545 19.51531 8.5161 0.50385 0.07378 +11550 19.5067 8.51159 0.50895 0.07385 +11555 19.49809 8.50709 0.51405 0.07391 +11560 19.48949 8.50259 0.51914 0.07398 +11565 19.4809 8.4981 0.52423 0.07404 +11570 19.47231 8.49361 0.52932 0.07411 +11575 19.46373 8.48912 0.5344 0.07417 +11580 19.45516 8.48464 0.53948 0.07424 +11585 19.4466 8.48016 0.54456 0.07430 +11590 19.43805 8.47569 0.54963 0.07437 +11595 19.4295 8.47122 0.5547 0.07443 +11600 19.42096 8.46675 0.55977 0.07450 +11605 19.41243 8.46229 0.56483 0.07456 +11610 19.4039 8.45783 0.56989 0.07463 +11615 19.39538 8.45338 0.57495 0.07470 +11620 19.38687 8.44892 0.58 0.07476 +11625 19.37837 8.44448 0.58505 0.07483 +11630 19.36987 8.44003 0.59009 0.07489 +11635 19.36138 8.4356 0.59514 0.07496 +11640 19.3529 8.43116 0.60018 0.07502 +11645 19.34443 8.42673 0.60521 0.07509 +11650 19.33596 8.4223 0.61024 0.07515 +11655 19.32751 8.41788 0.61527 0.07522 +11660 19.31905 8.41346 0.6203 0.07528 +11665 19.31061 8.40904 0.62532 0.07535 +11670 19.30217 8.40463 0.63034 0.07542 +11675 19.29374 8.40022 0.63535 0.07548 +11680 19.28532 8.39582 0.64037 0.07555 +11685 19.27691 8.39142 0.64537 0.07561 +11690 19.2685 8.38702 0.65038 0.07568 +11695 19.2601 8.38263 0.65538 0.07574 +11700 19.25171 8.37824 0.66038 0.07581 +11705 19.24332 8.37385 0.66538 0.07587 +11710 19.23494 8.36947 0.67037 0.07594 +11715 19.22657 8.36509 0.67536 0.07601 +11720 19.21821 8.36072 0.68034 0.07607 +11725 19.20985 8.35635 0.68532 0.07614 +11730 19.2015 8.35198 0.6903 0.07620 +11735 19.19316 8.34762 0.69528 0.07627 +11740 19.18483 8.34326 0.70025 0.07634 +11745 19.1765 8.33891 0.70522 0.07640 +11750 19.16818 8.33456 0.71019 0.07647 +11755 19.15987 8.33021 0.71515 0.07653 +11760 19.15156 8.32586 0.72011 0.07660 +11765 19.14326 8.32152 0.72506 0.07667 +11770 19.13497 8.31719 0.73001 0.07673 +11775 19.12668 8.31286 0.73496 0.07680 +11780 19.11841 8.30853 0.73991 0.07686 +11785 19.11014 8.3042 0.74485 0.07693 +11790 19.10187 8.29988 0.74979 0.07700 +11795 19.09362 8.29556 0.75473 0.07706 +11800 19.08537 8.29125 0.75966 0.07713 +11805 19.07713 8.28694 0.76459 0.07720 +11810 19.06889 8.28263 0.76951 0.07726 +11815 19.06066 8.27833 0.77444 0.07733 +11820 19.05244 8.27403 0.77936 0.07740 +11825 19.04423 8.26974 0.78427 0.07746 +11830 19.03602 8.26544 0.78918 0.07753 +11835 19.02782 8.26116 0.79409 0.07759 +11840 19.01963 8.25687 0.799 0.07766 +11845 19.01144 8.25259 0.8039 0.07773 +11850 19.00327 8.24831 0.8088 0.07779 +11855 18.99509 8.24404 0.8137 0.07786 +11860 18.98693 8.23977 0.81859 0.07793 +11865 18.97877 8.2355 0.82348 0.07799 +11870 18.97062 8.23124 0.82837 0.07806 +11875 18.96248 8.22698 0.83325 0.07813 +11880 18.95434 8.22273 0.83813 0.07819 +11885 18.94621 8.21848 0.84301 0.07826 +11890 18.93809 8.21423 0.84789 0.07833 +11895 18.92997 8.20999 0.85276 0.07839 +11900 18.92186 8.20575 0.85762 0.07846 +11905 18.91376 8.20151 0.86249 0.07853 +11910 18.90567 8.19727 0.86735 0.07860 +11915 18.89758 8.19305 0.87221 0.07866 +11920 18.8895 8.18882 0.87706 0.07873 +11925 18.88142 8.1846 0.88191 0.07880 +11930 18.87335 8.18038 0.88676 0.07886 +11935 18.86529 8.17616 0.89161 0.07893 +11940 18.85724 8.17195 0.89645 0.07900 +11945 18.84919 8.16774 0.90129 0.07906 +11950 18.84115 8.16354 0.90612 0.07913 +11955 18.83312 8.15934 0.91095 0.07920 +11960 18.82509 8.15514 0.91578 0.07927 +11965 18.81707 8.15095 0.92061 0.07933 +11970 18.80906 8.14676 0.92543 0.07940 +11975 18.80105 8.14257 0.93025 0.07947 +11980 18.79305 8.13839 0.93507 0.07953 +11985 18.78506 8.13421 0.93988 0.07960 +11990 18.77707 8.13003 0.94469 0.07967 +11995 18.76909 8.12586 0.9495 0.07974 +12000 18.76112 8.12169 0.9543 0.07980 +12005 18.75316 8.11752 0.9591 0.07987 +12010 18.7452 8.11336 0.9639 0.07994 +12015 18.73725 8.1092 0.96869 0.08001 +12020 18.7293 8.10505 0.97348 0.08007 +12025 18.72136 8.1009 0.97827 0.08014 +12030 18.71343 8.09675 0.98306 0.08021 +12035 18.7055 8.0926 0.98784 0.08028 +12040 18.69758 8.08846 0.99262 0.08034 +12045 18.68967 8.08432 0.99739 0.08041 +12050 18.68177 8.08019 1.00216 0.08048 +12055 18.67387 8.07606 1.00693 0.08055 +12060 18.66598 8.07193 1.0117 0.08062 +12065 18.65809 8.06781 1.01646 0.08068 +12070 18.65021 8.06369 1.02122 0.08075 +12075 18.64234 8.05957 1.02598 0.08082 +12080 18.63447 8.05546 1.03073 0.08089 +12085 18.62661 8.05135 1.03548 0.08095 +12090 18.61876 8.04724 1.04023 0.08102 +12095 18.61091 8.04314 1.04497 0.08109 +12100 18.60307 8.03904 1.04971 0.08116 +12105 18.59524 8.03495 1.05445 0.08123 +12110 18.58742 8.03085 1.05919 0.08129 +12115 18.5796 8.02676 1.06392 0.08136 +12120 18.57178 8.02268 1.06865 0.08143 +12125 18.56398 8.0186 1.07337 0.0815 +12130 18.55618 8.01452 1.0781 0.08157 +12135 18.54838 8.01044 1.08281 0.08164 +12140 18.5406 8.00637 1.08753 0.0817 +12145 18.53281 8.0023 1.09224 0.08177 +12150 18.52504 7.99824 1.09695 0.08184 +12155 18.51727 7.99417 1.10166 0.08191 +12160 18.50951 7.99012 1.10636 0.08198 +12165 18.50176 7.98606 1.11107 0.08204 +12170 18.49401 7.98201 1.11576 0.08211 +12175 18.48627 7.97796 1.12046 0.08218 +12180 18.47853 7.97392 1.12515 0.08225 +12185 18.4708 7.96987 1.12984 0.08232 +12190 18.46308 7.96584 1.13452 0.08239 +12195 18.45536 7.9618 1.13921 0.08246 +12200 18.44765 7.95777 1.14389 0.08252 +12205 18.43995 7.95374 1.14856 0.08259 +12210 18.43225 7.94972 1.15324 0.08266 +12215 18.42456 7.9457 1.15791 0.08273 +12220 18.41688 7.94168 1.16257 0.0828 +12225 18.4092 7.93766 1.16724 0.08287 +12230 18.40153 7.93365 1.1719 0.08294 +12235 18.39386 7.92964 1.17656 0.083 +12240 18.38621 7.92564 1.18121 0.08307 +12245 18.37855 7.92164 1.18586 0.08314 +12250 18.37091 7.91764 1.19051 0.08321 +12255 18.36327 7.91364 1.19516 0.08328 +12260 18.35563 7.90965 1.1998 0.08335 +12265 18.34801 7.90566 1.20444 0.08342 +12270 18.34039 7.90168 1.20908 0.08349 +12275 18.33277 7.8977 1.21371 0.08356 +12280 18.32516 7.89372 1.21834 0.08362 +12285 18.31756 7.88974 1.22297 0.08369 +12290 18.30997 7.88577 1.2276 0.08376 +12295 18.30238 7.8818 1.23222 0.08383 +12300 18.29479 7.87784 1.23684 0.0839 +12305 18.28722 7.87388 1.24145 0.08397 +12310 18.27965 7.86992 1.24607 0.08404 +12315 18.27208 7.86596 1.25068 0.08411 +12320 18.26452 7.86201 1.25528 0.08418 +12325 18.25697 7.85806 1.25989 0.08425 +12330 18.24943 7.85412 1.26449 0.08432 +12335 18.24189 7.85017 1.26909 0.08439 +12340 18.23435 7.84623 1.27368 0.08445 +12345 18.22682 7.8423 1.27827 0.08452 +12350 18.2193 7.83837 1.28286 0.08459 +12355 18.21179 7.83444 1.28745 0.08466 +12360 18.20428 7.83051 1.29203 0.08473 +12365 18.19678 7.82659 1.29661 0.0848 +12370 18.18928 7.82267 1.30119 0.08487 +12375 18.18179 7.81875 1.30576 0.08494 +12380 18.17431 7.81484 1.31033 0.08501 +12385 18.16683 7.81093 1.3149 0.08508 +12390 18.15936 7.80702 1.31947 0.08515 +12395 18.15189 7.80312 1.32403 0.08522 +12400 18.14443 7.79922 1.32859 0.08529 +12405 18.13698 7.79532 1.33315 0.08536 +12410 18.12953 7.79142 1.3377 0.08543 +12415 18.12209 7.78753 1.34225 0.0855 +12420 18.11465 7.78365 1.3468 0.08557 +12425 18.10722 7.77976 1.35134 0.08564 +12430 18.0998 7.77588 1.35589 0.08571 +12435 18.09238 7.772 1.36042 0.08578 +12440 18.08497 7.76813 1.36496 0.08585 +12445 18.07757 7.76425 1.36949 0.08592 +12450 18.07017 7.76038 1.37402 0.08599 +12455 18.06277 7.75652 1.37855 0.08606 +12460 18.05539 7.75266 1.38308 0.08613 +12465 18.04801 7.7488 1.3876 0.0862 +12470 18.04063 7.74494 1.39212 0.08627 +12475 18.03326 7.74109 1.39663 0.08634 +12480 18.0259 7.73724 1.40114 0.08641 +12485 18.01854 7.73339 1.40565 0.08648 +12490 18.01119 7.72955 1.41016 0.08655 +12495 18.00384 7.72571 1.41467 0.08662 +12500 17.99651 7.72187 1.41917 0.08669 +12505 17.98917 7.71803 1.42367 0.08676 +12510 17.98184 7.7142 1.42816 0.08683 +12515 17.97452 7.71037 1.43265 0.0869 +12520 17.96721 7.70655 1.43714 0.08697 +12525 17.9599 7.70273 1.44163 0.08704 +12530 17.95259 7.69891 1.44611 0.08711 +12535 17.9453 7.69509 1.45059 0.08718 +12540 17.938 7.69128 1.45507 0.08725 +12545 17.93072 7.68747 1.45955 0.08732 +12550 17.92344 7.68366 1.46402 0.08739 +12555 17.91616 7.67986 1.46849 0.08746 +12560 17.90889 7.67606 1.47296 0.08753 +12565 17.90163 7.67226 1.47742 0.0876 +12570 17.89438 7.66847 1.48188 0.08767 +12575 17.88712 7.66468 1.48634 0.08774 +12580 17.87988 7.66089 1.4908 0.08782 +12585 17.87264 7.6571 1.49525 0.08789 +12590 17.86541 7.65332 1.4997 0.08796 +12595 17.85818 7.64954 1.50414 0.08803 +12600 17.85096 7.64577 1.50859 0.0881 +12605 17.84374 7.64199 1.51303 0.08817 +12610 17.83653 7.63822 1.51747 0.08824 +12615 17.82933 7.63446 1.5219 0.08831 +12620 17.82213 7.63069 1.52634 0.08838 +12625 17.81494 7.62693 1.53076 0.08845 +12630 17.80775 7.62317 1.53519 0.08852 +12635 17.80057 7.61942 1.53962 0.08859 +12640 17.79339 7.61567 1.54404 0.08867 +12645 17.78622 7.61192 1.54846 0.08874 +12650 17.77906 7.60817 1.55287 0.08881 +12655 17.7719 7.60443 1.55728 0.08888 +12660 17.76475 7.60069 1.56169 0.08895 +12665 17.7576 7.59695 1.5661 0.08902 +12670 17.75046 7.59322 1.57051 0.08909 +12675 17.74332 7.58949 1.57491 0.08916 +12680 17.73619 7.58576 1.57931 0.08923 +12685 17.72907 7.58203 1.5837 0.08931 +12690 17.72195 7.57831 1.5881 0.08938 +12695 17.71484 7.57459 1.59249 0.08945 +12700 17.70773 7.57088 1.59687 0.08952 +12705 17.70063 7.56717 1.60126 0.08959 +12710 17.69353 7.56346 1.60564 0.08966 +12715 17.68644 7.55975 1.61002 0.08973 +12720 17.67936 7.55604 1.6144 0.08981 +12725 17.67228 7.55234 1.61877 0.08988 +12730 17.66521 7.54864 1.62314 0.08995 +12735 17.65814 7.54495 1.62751 0.09002 +12740 17.65108 7.54126 1.63187 0.09009 +12745 17.64402 7.53757 1.63624 0.09016 +12750 17.63697 7.53388 1.6406 0.09024 +12755 17.62992 7.5302 1.64495 0.09031 +12760 17.62289 7.52652 1.64931 0.09038 +12765 17.61585 7.52284 1.65366 0.09045 +12770 17.60882 7.51916 1.65801 0.09052 +12775 17.6018 7.51549 1.66235 0.09059 +12780 17.59478 7.51182 1.6667 0.09067 +12785 17.58777 7.50816 1.67104 0.09074 +12790 17.58076 7.50449 1.67538 0.09081 +12795 17.57376 7.50083 1.67971 0.09088 +12800 17.56677 7.49718 1.68404 0.09095 +12805 17.55978 7.49352 1.68837 0.09102 +12810 17.5528 7.48987 1.6927 0.0911 +12815 17.54582 7.48622 1.69702 0.09117 +12820 17.53884 7.48258 1.70135 0.09124 +12825 17.53188 7.47893 1.70566 0.09131 +12830 17.52491 7.47529 1.70998 0.09139 +12835 17.51796 7.47166 1.71429 0.09146 +12840 17.51101 7.46802 1.7186 0.09153 +12845 17.50406 7.46439 1.72291 0.0916 +12850 17.49712 7.46076 1.72722 0.09167 +12855 17.49019 7.45714 1.73152 0.09175 +12860 17.48326 7.45351 1.73582 0.09182 +12865 17.47633 7.44989 1.74012 0.09189 +12870 17.46941 7.44628 1.74441 0.09196 +12875 17.4625 7.44266 1.7487 0.09203 +12880 17.45559 7.43905 1.75299 0.09211 +12885 17.44869 7.43544 1.75728 0.09218 +12890 17.4418 7.43184 1.76156 0.09225 +12895 17.4349 7.42823 1.76584 0.09232 +12900 17.42802 7.42463 1.77012 0.0924 +12905 17.42114 7.42103 1.77439 0.09247 +12910 17.41426 7.41744 1.77867 0.09254 +12915 17.40739 7.41385 1.78294 0.09261 +12920 17.40053 7.41026 1.7872 0.09269 +12925 17.39367 7.40667 1.79147 0.09276 +12930 17.38682 7.40309 1.79573 0.09283 +12935 17.37997 7.39951 1.79999 0.09291 +12940 17.37313 7.39593 1.80425 0.09298 +12945 17.36629 7.39236 1.8085 0.09305 +12950 17.35946 7.38879 1.81275 0.09312 +12955 17.35263 7.38522 1.817 0.0932 +12960 17.34581 7.38165 1.82125 0.09327 +12965 17.33899 7.37809 1.82549 0.09334 +12970 17.33218 7.37453 1.82973 0.09341 +12975 17.32538 7.37097 1.83397 0.09349 +12980 17.31858 7.36741 1.8382 0.09356 +12985 17.31178 7.36386 1.84244 0.09363 +12990 17.30499 7.36031 1.84667 0.09371 +12995 17.29821 7.35676 1.85089 0.09378 +13000 17.29143 7.35322 1.85512 0.09382 diff --git a/lutSi220R145.txt b/lutSi220R145.txt new file mode 100644 index 0000000..1a7dd9e --- /dev/null +++ b/lutSi220R145.txt @@ -0,0 +1,1802 @@ +Energy CamArmRot CristBendRot CamPosX EvPerPix CamPosX_100nm CamPosX_150nm CamPosX_200nm +4000 +4005 +4010 +4015 +4020 +4025 +4030 +4035 +4040 +4045 +4050 +4055 +4060 +4065 +4070 +4075 +4080 +4085 +4090 +4095 +4100 +4105 +4110 +4115 +4120 +4125 +4130 +4135 +4140 +4145 +4150 +4155 +4160 +4165 +4170 +4175 +4180 +4185 +4190 +4195 +4200 +4205 +4210 +4215 +4220 +4225 +4230 +4235 +4240 +4245 +4250 +4255 +4260 +4265 +4270 +4275 +4280 +4285 +4290 +4295 +4300 +4305 +4310 +4315 +4320 +4325 +4330 +4335 +4340 +4345 +4350 +4355 +4360 +4365 +4370 +4375 +4380 +4385 +4390 +4395 +4400 +4405 +4410 +4415 +4420 +4425 +4430 +4435 +4440 +4445 +4450 +4455 +4460 +4465 +4470 +4475 +4480 +4485 +4490 +4495 +4500 +4505 +4510 +4515 +4520 +4525 +4530 +4535 +4540 +4545 +4550 +4555 +4560 +4565 +4570 +4575 +4580 +4585 +4590 +4595 +4600 +4605 +4610 +4615 +4620 +4625 +4630 +4635 +4640 +4645 +4650 +4655 +4660 +4665 +4670 +4675 +4680 +4685 +4690 +4695 +4700 +4705 +4710 +4715 +4720 +4725 +4730 +4735 +4740 +4745 +4750 +4755 +4760 +4765 +4770 +4775 +4780 +4785 +4790 +4795 +4800 +4805 +4810 +4815 +4820 +4825 +4830 +4835 +4840 +4845 +4850 +4855 +4860 +4865 +4870 +4875 +4880 +4885 +4890 +4895 +4900 +4905 +4910 +4915 +4920 +4925 +4930 +4935 +4940 +4945 +4950 +4955 +4960 +4965 +4970 +4975 +4980 +4985 +4990 +4995 +5000 +5005 +5010 +5015 +5020 +5025 +5030 +5035 +5040 +5045 +5050 +5055 +5060 +5065 +5070 +5075 +5080 +5085 +5090 +5095 +5100 +5105 +5110 +5115 +5120 +5125 +5130 +5135 +5140 +5145 +5150 +5155 +5160 +5165 +5170 +5175 +5180 +5185 +5190 +5195 +5200 +5205 +5210 +5215 +5220 +5225 +5230 +5235 +5240 +5245 +5250 +5255 +5260 +5265 +5270 +5275 +5280 +5285 +5290 +5295 +5300 +5305 +5310 +5315 +5320 +5325 +5330 +5335 +5340 +5345 +5350 +5355 +5360 +5365 +5370 +5375 +5380 +5385 +5390 +5395 +5400 +5405 +5410 +5415 +5420 +5425 +5430 +5435 +5440 +5445 +5450 +5455 +5460 +5465 +5470 +5475 +5480 +5485 +5490 +5495 +5500 +5505 +5510 +5515 +5520 +5525 +5530 +5535 +5540 +5545 +5550 +5555 +5560 +5565 +5570 +5575 +5580 +5585 +5590 +5595 +5600 +5605 +5610 +5615 +5620 +5625 +5630 +5635 +5640 +5645 +5650 +5655 +5660 +5665 +5670 +5675 +5680 +5685 +5690 +5695 +5700 +5705 +5710 +5715 +5720 +5725 +5730 +5735 +5740 +5745 +5750 +5755 +5760 +5765 +5770 +5775 +5780 +5785 +5790 +5795 +5800 +5805 +5810 +5815 +5820 +5825 +5830 +5835 +5840 +5845 +5850 +5855 +5860 +5865 +5870 +5875 +5880 +5885 +5890 +5895 +5900 +5905 +5910 +5915 +5920 +5925 +5930 +5935 +5940 +5945 +5950 +5955 +5960 +5965 +5970 +5975 +5980 +5985 +5990 64.92718 33.35385 -34.60511 0.01040 -34.60511 -33.2250307781 -33.5700510148 +5995 64.86611 33.32375 -34.57379 0.01042 -34.57379 -33.1948618055 -33.5395942843 +6000 64.80516 33.2937 -34.54252 0.01044 -34.54252 -33.1647409145 -33.509186115 +6005 64.74433 33.26372 -34.51131 0.01046 -34.51131 -33.1346781099 -33.4788365105 +6010 64.68362 33.2338 -34.48015 0.01048 -34.48015 -33.1046633965 -33.4485354744 +6015 64.62303 33.20394 -34.44904 0.01050 -34.44904 -33.0746967791 -33.4182830102 +6020 64.56257 33.17413 -34.41798 0.01052 -34.41798 -33.0447782623 -33.3880791216 +6025 64.50222 33.14439 -34.38698 0.01055 -34.38698 -33.014917851 -33.357933812 +6030 64.442 33.1147 -34.35603 0.01057 -34.35603 -32.9851055498 -33.327837085 +6035 64.38189 33.08508 -34.32513 0.01059 -34.32513 -32.9553413634 -33.2977889442 +6040 64.32191 33.05551 -34.29428 0.01061 -34.29428 -32.9256252965 -33.267789393 +6045 64.26204 33.026 -34.26348 0.01063 -34.26348 -32.8959573538 -33.2378384349 +6050 64.20229 32.99655 -34.23273 0.01065 -34.23273 -32.8663375399 -33.2079360735 +6055 64.14266 32.96715 -34.20204 0.01067 -34.20204 -32.8367758595 -33.1780923121 +6060 64.08315 32.93782 -34.17139 0.01069 -34.17139 -32.8072523171 -33.1482871543 +6065 64.02376 32.90854 -34.1408 0.01071 -34.1408 -32.7777869175 -33.1185406035 +6070 63.96448 32.87932 -34.11026 0.01074 -34.11026 -32.7483696651 -33.0888426632 +6075 63.90532 32.85015 -34.07977 0.01076 -34.07977 -32.7190005646 -33.0591933368 +6080 63.84628 32.82105 -34.04933 0.01078 -34.04933 -32.6896796204 -33.0295926277 +6085 63.78735 32.792 -34.01894 0.01080 -34.01894 -32.6604068373 -33.0000405393 +6090 63.72854 32.76301 -33.98859 0.01082 -33.98859 -32.6311722196 -32.970527075 +6095 63.66984 32.73407 -33.9583 0.01084 -33.9583 -32.6019957719 -32.9410722383 +6100 63.61126 32.70519 -33.92806 0.01086 -33.92806 -32.5728674987 -32.9116660324 +6105 63.55279 32.67637 -33.89787 0.01088 -33.89787 -32.5437874045 -32.8823084607 +6110 63.49444 32.6476 -33.86773 0.01090 -33.86773 -32.5147554938 -32.8529995267 +6115 63.4362 32.61889 -33.83764 0.01093 -33.83764 -32.485771771 -32.8237392336 +6120 63.37807 32.59023 -33.8076 0.01095 -33.8076 -32.4568362405 -32.7945275847 +6125 63.32006 32.56163 -33.77761 0.01097 -33.77761 -32.4279489068 -32.7653645834 +6130 63.26216 32.53309 -33.74767 0.01099 -33.74767 -32.3991097743 -32.7362502331 +6135 63.20437 32.5046 -33.71778 0.01101 -33.71778 -32.3703188474 -32.7071845369 +6140 63.14669 32.47616 -33.68793 0.01103 -33.68793 -32.3415661304 -32.6781574982 +6145 63.08913 32.44778 -33.65814 0.01105 -33.65814 -32.3128716278 -32.6491891203 +6150 63.03168 32.41946 -33.62839 0.01108 -33.62839 -32.2842153439 -32.6202594064 +6155 62.97434 32.39119 -33.59869 0.01110 -33.59869 -32.2556072831 -32.5913783598 +6160 62.91711 32.36297 -33.56904 0.01112 -33.56904 -32.2270474496 -32.5625459837 +6165 62.85999 32.33481 -33.53944 0.01114 -33.53944 -32.1985358478 -32.5337622814 +6170 62.80298 32.3067 -33.50989 0.01116 -33.50989 -32.1700724819 -32.505027256 +6175 62.74607 32.27865 -33.48039 0.01118 -33.48039 -32.1416573564 -32.4763409109 +6180 62.68928 32.25064 -33.45093 0.01120 -33.45093 -32.1132804753 -32.4476932492 +6185 62.6326 32.2227 -33.42153 0.01123 -33.42153 -32.0849618431 -32.419104274 +6190 62.57603 32.1948 -33.39217 0.01125 -33.39217 -32.0566814639 -32.3905539887 +6195 62.51956 32.16696 -33.36285 0.01127 -33.36285 -32.0284393419 -32.3620423963 +6200 62.4632 32.13918 -33.33359 0.01129 -33.33359 -32.0002554815 -32.3335895 +6205 62.40696 32.11144 -33.30437 0.01131 -31.3059776132 -31.9721098867 -32.305175303 +6210 62.35081 32.08376 -33.2752 0.01133 -31.2784166312 -31.9440125618 -32.2768098084 +6215 62.29478 32.05613 -33.24608 0.01136 -31.2509030603 -31.915963511 -32.2484930193 +6220 62.23885 32.02855 -33.21701 0.01138 -31.2234369066 -31.8879627383 -32.2202249389 +6225 62.18303 32.00103 -33.18798 0.01140 -31.1960081765 -31.860000248 -32.1919955703 +6230 62.12731 31.97355 -33.159 0.01142 -31.1686268761 -31.8320860443 -32.1638149165 +6235 62.0717 31.94613 -33.13006 0.01144 -31.1412830116 -31.8042101311 -32.1356729807 +6240 62.0162 31.91876 -33.10118 0.01146 -31.1139965892 -31.7763925127 -32.107589766 +6245 61.9608 31.89145 -33.07234 0.01149 -31.0867476151 -31.7486131931 -32.0795452753 +6250 61.9055 31.86418 -33.04354 0.01151 -31.0595360952 -31.7208721764 -32.0515395119 +6255 61.85031 31.83696 -33.01479 0.01153 -31.0323720358 -31.6931794666 -32.0235824787 +6260 61.79522 31.8098 -32.98609 0.01155 -31.005255443 -31.6655350679 -31.9956741788 +6265 61.74024 31.78269 -32.95744 0.01157 -30.9781863227 -31.6379389843 -31.9678146152 +6270 61.68536 31.75563 -32.92883 0.01160 -30.9511546811 -31.6103812198 -31.9399937909 +6275 61.63058 31.72861 -32.90026 0.01162 -30.9241605242 -31.5828617785 -31.9122117089 +6280 61.57591 31.70165 -32.87175 0.01164 -30.8972238579 -31.5554006642 -31.8844883724 +6285 61.52134 31.67474 -32.84327 0.01166 -30.8703146883 -31.5279678811 -31.8567937841 +6290 61.46687 31.64788 -32.81485 0.01168 -30.8434630214 -31.5005934331 -31.8291579472 +6295 61.4125 31.62107 -32.78647 0.01170 -30.816648863 -31.4732573241 -31.8015608646 +6300 61.35824 31.59431 -32.75813 0.01173 -30.7898722192 -31.4459595582 -31.7740025393 +6305 61.30408 31.5676 -32.72984 0.01175 -30.7631430958 -31.4187101392 -31.7464929742 +6310 61.25001 31.54094 -32.7016 0.01177 -30.7364614987 -31.3915090712 -31.7190321723 +6315 61.19605 31.51433 -32.6734 0.01179 -30.7098174339 -31.3643463579 -31.6916101365 +6320 61.14219 31.48777 -32.64524 0.01181 -30.6832109071 -31.3372220034 -31.6642268697 +6325 61.08843 31.46126 -32.61713 0.01184 -30.6566519242 -31.3101460115 -31.6368923749 +6330 61.03477 31.43479 -32.58907 0.01186 -30.630140491 -31.2831183861 -31.609606655 +6335 60.98121 31.40838 -32.56105 0.01188 -30.6036666134 -31.256129131 -31.5823597128 +6340 60.92774 31.38201 -32.53307 0.01190 -30.577230297 -31.2291782502 -31.5551515513 +6345 60.87438 31.35569 -32.50514 0.01192 -30.5508415477 -31.2022757474 -31.5279921734 +6350 60.82111 31.32942 -32.47725 0.01195 -30.5244903713 -31.1754116265 -31.5008715818 +6355 60.76795 31.3032 -32.44941 0.01197 -30.4981867734 -31.1485958913 -31.4737997796 +6360 60.71488 31.27703 -32.42161 0.01199 -30.4719207598 -31.1218185456 -31.4467667695 +6365 60.66191 31.25091 -32.39386 0.01201 -30.4457023361 -31.0950895933 -31.4197825544 +6370 60.60904 31.22483 -32.36614 0.01204 -30.419511508 -31.068389038 -31.3928271371 +6375 60.55626 31.1988 -32.33848 0.01206 -30.3933782812 -31.0417468836 -31.3659305204 +6380 60.50358 31.17282 -32.31085 0.01208 -30.3672726614 -31.0151331338 -31.3390627073 +6385 60.451 31.14689 -32.28327 0.01210 -30.3412146541 -30.9885677925 -31.3122437004 +6390 60.39851 31.121 -32.25574 0.01212 -30.3152042649 -30.9620508632 -31.2854735026 +6395 60.34612 31.09516 -32.22824 0.01215 -30.2892214995 -30.9355623497 -31.2587321167 +6400 60.29383 31.06937 -32.20079 0.01217 -30.2632863634 -30.9091222558 -31.2320395454 +6405 60.24163 31.04362 -32.17339 0.01219 -30.2373988621 -30.8827305852 -31.2053957916 +6410 60.18953 31.01792 -32.14602 0.01221 -30.2115390013 -30.8563673415 -31.178780858 +6415 60.13752 30.99227 -32.1187 0.01224 -30.1857267863 -30.8300525284 -31.1522147474 +6420 60.08561 30.96667 -32.09143 0.01226 -30.1599622228 -30.8037861496 -31.1256974624 +6425 60.03379 30.94111 -32.06419 0.01228 -30.1342253162 -30.7775482087 -31.099209006 +6430 59.98206 30.9156 -32.037 0.01230 -30.1085360719 -30.7513587094 -31.0727693807 +6435 59.93043 30.89013 -32.00985 0.01232 -30.0828844954 -30.7252076553 -31.0463685893 +6440 59.87889 30.86471 -31.98274 0.01235 -30.0572705922 -30.6990950501 -31.0200066346 +6445 59.82745 30.83933 -31.95568 0.01237 -30.0317043677 -30.6730308973 -30.9936935192 +6450 59.7761 30.81401 -31.92865 0.01239 -30.0061658272 -30.6469952006 -30.9674092458 +6455 59.72484 30.78872 -31.90167 0.01241 -29.9806749761 -30.6210079635 -30.9411738172 +6460 59.67367 30.76348 -31.87474 0.01244 -29.9552318198 -30.5950691896 -30.914987236 +6465 59.6226 30.73829 -31.84784 0.01246 -29.9298163637 -30.5691588825 -30.8888295049 +6470 59.57162 30.71315 -31.82098 0.01248 -29.9044386131 -30.5432870457 -30.8627106265 +6475 59.52073 30.68804 -31.79417 0.01250 -29.8791085732 -30.5174636828 -30.8366406035 +6480 59.46993 30.66299 -31.7674 0.01253 -29.8538162495 -30.4916787973 -30.8106094386 +6485 59.41922 30.63797 -31.74067 0.01255 -29.8285616472 -30.4659323927 -30.7846171344 +6490 59.36861 30.61301 -31.71398 0.01257 -29.8033447715 -30.4402244726 -30.7586636935 +6495 59.31808 30.58808 -31.68734 0.01259 -29.7781756277 -30.4145650404 -30.7327591186 +6500 59.26765 30.5632 -31.66073 0.01262 -29.753034221 -30.3889340997 -30.7068834122 +6505 59.2173 30.53837 -31.63417 0.01264 -29.7279405567 -30.3633516538 -30.6810565771 +6510 59.16705 30.51358 -31.60764 0.01266 -29.7028746399 -30.3377977064 -30.6552586157 +6515 59.11688 30.48883 -31.58116 0.01268 -29.6778564758 -30.3122922607 -30.6295095307 +6520 59.06681 30.46413 -31.55472 0.01271 -29.6528760697 -30.2868253204 -30.6037993247 +6525 59.01682 30.43947 -31.52832 0.01273 -29.6279334267 -30.2613968887 -30.5781280002 +6530 58.96692 30.41486 -31.50196 0.01275 -29.6030285518 -30.2360069692 -30.5524955598 +6535 58.91712 30.39029 -31.47564 0.01278 -29.5781614503 -30.2106555653 -30.5269020061 +6540 58.8674 30.36576 -31.44936 0.01280 -29.5533321271 -30.1853426803 -30.5013473416 +6545 58.81776 30.34128 -31.42313 0.01282 -29.5285505876 -30.1600783177 -30.4758415689 +6550 58.76822 30.31684 -31.39693 0.01284 -29.5037968366 -30.1348424808 -30.4503646904 +6555 58.71876 30.29244 -31.37077 0.01287 -29.4790808792 -30.1096451731 -30.4249267089 +6560 58.66939 30.26808 -31.34465 0.01289 -29.4544027206 -30.0844863978 -30.3995276267 +6565 58.62011 30.24377 -31.31858 0.01291 -29.4297723657 -30.0593761583 -30.3741774463 +6570 58.57092 30.2195 -31.29254 0.01293 -29.4051698196 -30.0342944581 -30.3488561704 +6575 58.52181 30.19527 -31.26654 0.01296 -29.3806050872 -30.0092513003 -30.3235738013 +6580 58.47279 30.17109 -31.24058 0.01298 -29.3560781735 -29.9842466884 -30.2983303416 +6585 58.42385 30.14695 -31.21467 0.01300 -29.3315990835 -29.9592906256 -30.2731357938 +6590 58.375 30.12285 -31.18879 0.01303 -29.3071478222 -29.9343631152 -30.2479701603 +6595 58.32624 30.09879 -31.16295 0.01305 -29.2827343945 -29.9094741606 -30.2228434436 +6600 58.27756 30.07478 -31.13715 0.01307 -29.2583588053 -29.884623765 -30.1977556461 +6605 58.22896 30.0508 -31.11139 0.01309 -29.2340210595 -29.8598119317 -30.1727067704 +6610 58.18046 30.02687 -31.08567 0.01312 -29.209721162 -29.8350386639 -30.1476968189 +6615 58.13203 30.00298 -31.05999 0.01314 -29.1854591178 -29.810303965 -30.1227257939 +6620 58.08369 29.97913 -31.03434 0.01316 -29.1612249316 -29.7855978381 -30.097783698 +6625 58.03544 29.95533 -31.00874 0.01319 -29.1370386083 -29.7609402864 -30.0728905336 +6630 57.98727 29.93156 -30.98318 0.01321 -29.1128901527 -29.7363213133 -30.048036303 +6635 57.93918 29.90784 -30.95765 0.01323 -29.0887695697 -29.7117309219 -30.0232110088 +6640 57.89118 29.88415 -30.93216 0.01326 -29.0646868641 -29.6871791155 -29.9984246532 +6645 57.84326 29.86051 -30.90671 0.01328 -29.0406420407 -29.6626658971 -29.9736772387 +6650 57.79542 29.83691 -30.8813 0.01330 -29.0166351042 -29.6381912701 -29.9489687677 +6655 57.74767 29.81335 -30.85593 0.01333 -28.9926660594 -29.6137552375 -29.9242992426 +6660 57.7 29.78983 -30.8306 0.01335 -28.968734911 -29.5893578026 -29.8996686657 +6665 57.65241 29.76635 -30.8053 0.01337 -28.9448316639 -29.5649889685 -29.8750670394 +6670 57.6049 29.74291 -30.78005 0.01339 -28.9209763226 -29.5406687383 -29.850514366 +6675 57.55748 29.71951 -30.75483 0.01342 -28.897148892 -29.5163771152 -29.825990648 +6680 57.51014 29.69615 -30.72965 0.01344 -28.8733593766 -29.4921241023 -29.8015058876 +6685 57.46288 29.67283 -30.70451 0.01346 -28.8496077813 -29.4679097027 -29.7770600873 +6690 57.4157 29.64956 -30.6794 0.01349 -28.8258841106 -29.4437239196 -29.7526432492 +6695 57.3686 29.62632 -30.65433 0.01351 -28.8021983692 -29.419576756 -29.7282653759 +6700 57.32158 29.60312 -30.6293 0.01353 -28.7785505617 -29.3954682151 -29.7039264695 +6705 57.27464 29.57996 -30.60431 0.01356 -28.7549406928 -29.3713982998 -29.6796265323 +6710 57.22779 29.55684 -30.57936 0.01358 -28.731368767 -29.3473670134 -29.6553655668 +6715 57.18101 29.53376 -30.55444 0.01360 -28.707824789 -29.3233643588 -29.6311335752 +6720 57.13432 29.51072 -30.52956 0.01363 -28.6843187633 -29.299400339 -29.6069405597 +6725 57.0877 29.48772 -30.50472 0.01365 -28.6608506946 -29.2754749573 -29.5827865227 +6730 57.04116 29.46476 -30.47991 0.01367 -28.6374105873 -29.2515782165 -29.5586614664 +6735 56.99471 29.44183 -30.45515 0.01370 -28.6140184459 -29.2277301197 -29.5345853932 +6740 56.94833 29.41895 -30.43041 0.01372 -28.5906442752 -29.2039006699 -29.5105283052 +6745 56.90203 29.3961 -30.40572 0.01374 -28.5673180794 -29.1801198702 -29.4865202047 +6750 56.85581 29.3733 -30.38106 0.01377 -28.5440198632 -29.1563677235 -29.462541094 +6755 56.80967 29.35053 -30.35644 0.01379 -28.520759631 -29.1326542329 -29.4386009753 +6760 56.7636 29.3278 -30.33186 0.01381 -28.4975373874 -29.1089794012 -29.4146998509 +6765 56.71762 29.30511 -30.30731 0.01384 -28.4743431367 -29.0853332315 -29.390827723 +6770 56.67171 29.28245 -30.2828 0.01386 -28.4511868833 -29.0617257268 -29.3669945938 +6775 56.62588 29.25984 -30.25832 0.01388 -28.4280586319 -29.03814689 -29.3431904655 +6780 56.58013 29.23726 -30.23389 0.01391 -28.4049783867 -29.014616724 -29.3194353404 +6785 56.53446 29.21473 -30.20948 0.01393 -28.3819161521 -28.9911052318 -29.2956992206 +6790 56.48886 29.19222 -30.18512 0.01395 -28.3589019326 -28.9676424163 -29.2720121083 +6795 56.44334 29.16976 -30.16079 0.01398 -28.3359157326 -28.9442082805 -29.2483540058 +6800 56.39789 29.14734 -30.1365 0.01400 -28.3129675564 -28.9208128272 -29.2247349151 +6805 56.35253 29.12495 -30.11224 0.01403 -28.2900474083 -28.8974460593 -29.2011448386 +6810 56.30723 29.1026 -30.08802 0.01405 -28.2671652928 -28.8741179798 -29.1775937783 +6815 56.26202 29.08029 -30.06383 0.01407 -28.2443112141 -28.8508185916 -29.1540717365 +6820 56.21688 29.05801 -30.03968 0.01410 -28.2214951766 -28.8275578974 -29.1305887153 +6825 56.17182 29.03577 -30.01556 0.01412 -28.1987071845 -28.8043259003 -29.1071347167 +6830 56.12683 29.01357 -29.99149 0.01414 -28.1759672422 -28.781142603 -29.0837297431 +6835 56.08191 28.99141 -29.96744 0.01417 -28.1532453539 -28.7579780084 -29.0603437965 +6840 56.03708 28.96928 -29.94343 0.01419 -28.1305615239 -28.7348521193 -29.0369968791 +6845 55.99231 28.94719 -29.91946 0.01422 -28.1079157565 -28.7117649386 -29.0136889929 +6850 55.94762 28.92514 -29.89552 0.01424 -28.0852980559 -28.6887064691 -28.9904101402 +6855 55.90301 28.90312 -29.87162 0.01426 -28.0627184264 -28.6656867137 -28.967170323 +6860 55.85847 28.88114 -29.84775 0.01429 -28.0401668721 -28.6426956751 -28.9439595434 +6865 55.814 28.8592 -29.82392 0.01431 -28.0176533972 -28.6197433561 -28.9207878036 +6870 55.76961 28.83729 -29.80012 0.01433 -27.995168006 -28.5968197596 -28.8976451056 +6875 55.72529 28.81542 -29.77636 0.01436 -27.9727207026 -28.5739348883 -28.8745414515 +6880 55.68105 28.79358 -29.75263 0.01438 -27.9503014913 -28.551078745 -28.8514668434 +6885 55.63688 28.77179 -29.72894 0.01441 -27.9279203761 -28.5282613325 -28.8284312834 +6890 55.59278 28.75002 -29.70528 0.01443 -27.9055673612 -28.5054726536 -28.8054247736 +6895 55.54876 28.7283 -29.68165 0.01445 -27.8832424507 -28.4827127109 -28.7824473159 +6900 55.5048 28.7066 -29.65806 0.01448 -27.8609556488 -28.4599915073 -28.7595089126 +6905 55.46092 28.68495 -29.63451 0.01450 -27.8387069595 -28.4373090455 -28.7366095656 +6910 55.41712 28.66333 -29.61099 0.01453 -27.816486387 -28.4146553282 -28.713739277 +6915 55.37338 28.64174 -29.5875 0.01455 -27.7942939354 -28.3920303581 -28.6908980489 +6920 55.32972 28.6202 -29.56405 0.01457 -27.7721396087 -28.369444138 -28.6680958832 +6925 55.28612 28.59868 -29.54063 0.01460 -27.750013411 -28.3468866705 -28.645322782 +6930 55.2426 28.5772 -29.51724 0.01462 -27.7279153463 -28.3243579584 -28.6225787473 +6935 55.19916 28.55576 -29.49389 0.01465 -27.7058554186 -28.3018680044 -28.5998737812 +6940 55.15578 28.53435 -29.47058 0.01467 -27.6838336321 -28.279416811 -28.5772078856 +6945 55.11247 28.51298 -29.44729 0.01469 -27.6618299907 -28.2569843812 -28.5545610625 +6950 55.06924 28.49164 -29.42404 0.01472 -27.6398644984 -28.2345907173 -28.5319533141 +6955 55.02607 28.47034 -29.40083 0.01474 -27.6179371592 -28.2122358223 -28.5093846422 +6960 54.98298 28.44907 -29.37765 0.01477 -27.5960379771 -28.1899096986 -28.4868450489 +6965 54.93995 28.42783 -29.3545 0.01479 -27.574166956 -28.167612349 -28.464334536 +6970 54.897 28.40663 -29.33138 0.01481 -27.5523241 -28.145343776 -28.4418531058 +6975 54.85412 28.38547 -29.3083 0.01484 -27.5305194129 -28.1231139824 -28.4194107599 +6980 54.8113 28.36434 -29.28525 0.01486 -27.5087428987 -28.1009129707 -28.3969975006 +6985 54.76856 28.34324 -29.26224 0.01489 -27.4870045613 -28.0787507436 -28.3746233297 +6990 54.72588 28.32218 -29.23925 0.01491 -27.4652844047 -28.0566073036 -28.3522682491 +6995 54.68328 28.30115 -29.2163 0.01493 -27.4436024327 -28.0345026534 -28.3299522608 +7000 54.64074 28.28015 -29.19339 0.01496 -27.4219586492 -28.0124367955 -28.3076753669 +7005 54.59827 28.25919 -29.17051 0.01498 -27.4003430582 -27.9903997326 -28.2854275691 +7010 54.55587 28.23827 -29.14765 0.01501 -27.3787456633 -27.9683814672 -28.2631988695 +7015 54.51354 28.21737 -29.12484 0.01503 -27.3571964687 -27.9464120019 -28.2410192699 +7020 54.47128 28.19651 -29.10205 0.01506 -27.335665478 -27.9244613393 -28.2188587724 +7025 54.42909 28.17569 -29.0793 0.01508 -27.3141726951 -27.9025494818 -28.1967373787 +7030 54.38696 28.15489 -29.05658 0.01510 -27.2927081238 -27.8806664321 -28.1746450909 +7035 54.3449 28.13414 -29.03389 0.01513 -27.271271768 -27.8588121928 -28.1525819108 +7040 54.30291 28.11341 -29.01124 0.01515 -27.2498736314 -27.8369967662 -28.1305578403 +7045 54.26099 28.09272 -28.98862 0.01518 -27.2285037179 -27.815210155 -28.1085628813 +7050 54.21914 28.07206 -28.96603 0.01520 -27.2071620311 -27.7934523617 -28.0865970358 +7055 54.17735 28.05143 -28.94347 0.01523 -27.185848575 -27.7717233888 -28.0646603056 +7060 54.13563 28.03084 -28.92094 0.01525 -27.1645633532 -27.7500232389 -28.0427526925 +7065 54.09397 28.01028 -28.89845 0.01528 -27.1433163696 -27.7283619143 -28.0208841985 +7070 54.05238 27.98975 -28.87599 0.01530 -27.1220976277 -27.7067294176 -27.9990448255 +7075 54.01086 27.96925 -28.85356 0.01532 -27.1009071314 -27.6851257513 -27.9772345752 +7080 53.96941 27.94879 -28.83116 0.01535 -27.0797448844 -27.6635509178 -27.9554534495 +7085 53.92802 27.92836 -28.80879 0.01537 -27.0586108904 -27.6420049197 -27.9337014504 +7090 53.8867 27.90797 -28.78646 0.01540 -27.0375151531 -27.6204977594 -27.9119885796 +7095 53.84544 27.8876 -28.76415 0.01542 -27.0164376761 -27.5990094393 -27.890294839 +7100 53.80425 27.86727 -28.74188 0.01545 -26.9953984632 -27.577559962 -27.8686402304 +7105 53.76312 27.84697 -28.71964 0.01547 -26.974387518 -27.5561393298 -27.8470147557 +7110 53.72206 27.8267 -28.69744 0.01550 -26.9534148442 -27.5347575451 -27.8254284167 +7115 53.68107 27.80646 -28.67526 0.01552 -26.9324604453 -27.5133946105 -27.8038612152 +7120 53.64014 27.78626 -28.65311 0.01555 -26.9115343251 -27.4920605283 -27.782323153 +7125 53.59927 27.76609 -28.631 0.01557 -26.8906464872 -27.470765301 -27.760824232 +7130 53.55847 27.74595 -28.60892 0.01560 -26.8697869351 -27.4494989309 -27.7393544539 +7135 53.51774 27.72584 -28.58686 0.01562 -26.8489456726 -27.4282514204 -27.7179038205 +7140 53.47706 27.70576 -28.56484 0.01564 -26.8281427031 -27.4070427721 -27.6964923337 +7145 53.43646 27.68572 -28.54285 0.01567 -26.8073680303 -27.3858629882 -27.6751099952 +7150 53.39591 27.6657 -28.5209 0.01569 -26.7866316577 -27.3647220711 -27.6537668069 +7155 53.35543 27.64572 -28.49897 0.01572 -26.7659135889 -27.3436000232 -27.6324427704 +7160 53.31502 27.62577 -28.47707 0.01574 -26.7452238274 -27.3225068469 -27.6111478876 +7165 53.27467 27.60585 -28.4552 0.01577 -26.7245623769 -27.3014425445 -27.5898821603 +7170 53.23438 27.58596 -28.43337 0.01579 -26.7039392408 -27.2804171184 -27.5686555902 +7175 53.19415 27.5661 -28.41156 0.01582 -26.6833344226 -27.2594105709 -27.5474481791 +7180 53.15399 27.54628 -28.38979 0.01584 -26.6627679259 -27.2384429045 -27.5262799288 +7185 53.11389 27.52648 -28.36805 0.01587 -26.6422297542 -27.2175041213 -27.5051408409 +7190 53.07385 27.50672 -28.34633 0.01589 -26.6217099109 -27.1965842238 -27.4840209172 +7195 53.03388 27.48699 -28.32465 0.01592 -26.6012283996 -27.1757032143 -27.4629401596 +7200 52.99397 27.46728 -28.303 0.01594 -26.5807752237 -27.1548510951 -27.4418885696 +7205 52.95412 27.44761 -28.28137 0.01597 -26.5603403867 -27.1340178684 -27.4208561491 +7210 52.91433 27.42797 -28.25978 0.01599 -26.539943892 -27.1132235367 -27.3998628998 +7215 52.87461 27.40836 -28.23822 0.01602 -26.5195757432 -27.0924581022 -27.3788988234 +7220 52.83494 27.38878 -28.21669 0.01604 -26.4992359435 -27.0717215671 -27.3579639216 +7225 52.79534 27.36923 -28.19518 0.01607 -26.4789144965 -27.0510039339 -27.3370481962 +7230 52.7558 27.34971 -28.17371 0.01609 -26.4586314056 -27.0303252047 -27.3161716487 +7235 52.71633 27.33022 -28.15227 0.01612 -26.4383766742 -27.0096753818 -27.2953242811 +7240 52.67691 27.31076 -28.13086 0.01614 -26.4181503057 -26.9890544675 -27.2745060948 +7245 52.63755 27.29133 -28.10947 0.01617 -26.3979423034 -26.9684524641 -27.2537070918 +7250 52.59826 27.27193 -28.08812 0.01619 -26.3777726708 -26.9478893737 -27.2329472735 +7255 52.55902 27.25256 -28.06679 0.01622 -26.3576214112 -26.9273451987 -27.2122066418 +7260 52.51985 27.23322 -28.0455 0.01624 -26.337508528 -26.9068399414 -27.1915051982 +7265 52.48074 27.21391 -28.02424 0.01627 -26.3174240245 -26.8863636038 -27.1708329446 +7270 52.44169 27.19464 -28.003 0.01629 -26.2973579041 -26.8659061883 -27.1501798824 +7275 52.40269 27.17539 -27.98179 0.01632 -26.2773201701 -26.8454776971 -27.1295560135 +7280 52.36376 27.15616 -27.96062 0.01634 -26.2573208259 -26.8250881324 -27.1089713395 +7285 52.32489 27.13697 -27.93947 0.01637 -26.2373398747 -26.8047174964 -27.088405862 +7290 52.28608 27.11781 -27.91835 0.01639 -26.2173873199 -26.7843757913 -27.0678695827 +7295 52.24733 27.09868 -27.89726 0.01642 -26.1974631647 -26.7640630193 -27.0473625032 +7300 52.20863 27.07958 -27.8762 0.01644 -26.1775674124 -26.7437791826 -27.0268846252 +7305 52.17 27.0605 -27.85517 0.01647 -26.1577000664 -26.7235242834 -27.0064359503 +7310 52.13142 27.04146 -27.83417 0.01650 -26.1378611299 -26.7032983238 -26.9860164802 +7315 52.09291 27.02244 -27.8132 0.01652 -26.1180506062 -26.6831013062 -26.9656262164 +7320 52.05445 27.00346 -27.79225 0.01655 -26.0982584984 -26.6629232325 -26.9452551607 +7325 52.01606 26.9845 -27.77134 0.01657 -26.0785048099 -26.642784105 -26.9249233146 +7330 51.97772 26.96557 -27.75045 0.01660 -26.0587695439 -26.6226639258 -26.9046106797 +7335 51.93944 26.94667 -27.72959 0.01662 -26.0390627036 -26.6025726971 -26.8843272577 +7340 51.90121 26.9278 -27.70876 0.01665 -26.0193842923 -26.582510421 -26.8640730502 +7345 51.86305 26.90896 -27.68796 0.01667 -25.9997343131 -26.5624770997 -26.8438480587 +7350 51.82495 26.89015 -27.66719 0.01670 -25.9801127692 -26.5424727353 -26.8236522849 +7355 51.7869 26.87136 -27.64644 0.01672 -25.9605096638 -26.52248733 -26.8034757304 +7360 51.74891 26.85261 -27.62573 0.01675 -25.9409450002 -26.5025408857 -26.7833383968 +7365 51.71098 26.83388 -27.60504 0.01677 -25.9213987814 -26.4826134048 -26.7632202856 +7370 51.6731 26.81518 -27.58438 0.01680 -25.9018810107 -26.4627148892 -26.7431313984 +7375 51.63529 26.79651 -27.56375 0.01683 -25.8823916912 -26.442845341 -26.7230717368 +7380 51.59753 26.77786 -27.54314 0.01685 -25.8629208261 -26.4229947625 -26.7030313024 +7385 51.55982 26.75925 -27.52257 0.01688 -25.8434884185 -26.4031831556 -26.6830300968 +7390 51.52218 26.74066 -27.50202 0.01690 -25.8240744714 -26.3833905225 -26.6630481215 +7395 51.48459 26.7221 -27.4815 0.01693 -25.8046889882 -26.3636268652 -26.6430953781 +7400 51.44706 26.70357 -27.46101 0.01695 -25.7853319718 -26.3438921858 -26.6231718681 +7405 51.40958 26.68507 -27.44055 0.01698 -25.7660034253 -26.3241864864 -26.6032775931 +7410 51.37216 26.66659 -27.42011 0.01700 -25.746693352 -26.3044997691 -26.5834025546 +7415 51.3348 26.64815 -27.3997 0.01703 -25.7274117547 -26.2848420359 -26.5635567542 +7420 51.2975 26.62973 -27.37932 0.01706 -25.7081586368 -26.2652132888 -26.5437401935 +7425 51.26025 26.61133 -27.35897 0.01708 -25.6889340011 -26.2456135299 -26.5239528739 +7430 51.22305 26.59297 -27.33864 0.01711 -25.6697278508 -26.2260327613 -26.504184797 +7435 51.18591 26.57463 -27.31835 0.01713 -25.6505601889 -26.206490985 -26.4844559643 +7440 51.14883 26.55632 -27.29808 0.01716 -25.6314110185 -26.186968203 -26.4647463773 +7445 51.11181 26.53804 -27.27783 0.01718 -25.6122803426 -26.1674644174 -26.4450560376 +7450 51.07483 26.51979 -27.25762 0.01721 -25.5931881643 -26.1479996301 -26.4254049467 +7455 51.03792 26.50156 -27.23743 0.01724 -25.5741144865 -26.1285538432 -26.4057731061 +7460 51.00106 26.48336 -27.21727 0.01726 -25.5550693123 -26.1091370587 -26.3861705173 +7465 50.96425 26.46518 -27.19713 0.01729 -25.5360426447 -26.0897392786 -26.3665871817 +7470 50.9275 26.44704 -27.17703 0.01731 -25.5170544867 -26.0703805049 -26.347043101 +7475 50.8908 26.42892 -27.15695 0.01734 -25.4980848413 -26.0510407395 -26.3275182766 +7480 50.85416 26.41083 -27.1369 0.01737 -25.4791437114 -26.0317299846 -26.3080227099 +7485 50.81758 26.39276 -27.11687 0.01739 -25.4602211001 -26.012438242 -26.2885464025 +7490 50.78104 26.37472 -27.09687 0.01742 -25.4413270103 -25.9931755138 -26.2690993559 +7495 50.74456 26.35671 -27.0769 0.01744 -25.4224614449 -25.9739418019 -26.2496815715 +7500 50.70814 26.33872 -27.05695 0.01747 -25.403614407 -25.9547271082 -26.2302830509 +7505 50.67177 26.32076 -27.03703 0.01749 -25.3847958994 -25.9355414348 -26.2109137954 +7510 50.63545 26.30283 -27.01714 0.01752 -25.3660059251 -25.9163847836 -26.1915738065 +7515 50.59919 26.28493 -26.99728 0.01755 -25.347244487 -25.8972571566 -26.1722630858 +7520 50.56298 26.26705 -26.97744 0.01757 -25.3285015881 -25.8781485556 -26.1529716347 +7525 50.52683 26.24919 -26.95763 0.01760 -25.3097872312 -25.8590689827 -26.1337094546 +7530 50.49073 26.23137 -26.93784 0.01762 -25.2910914193 -25.8400084398 -26.1144665469 +7535 50.45468 26.21357 -26.91808 0.01765 -25.2724241552 -25.8209769288 -26.0952529132 +7540 50.41868 26.19579 -26.89835 0.01768 -25.2537854418 -25.8019744516 -26.0760685549 +7545 50.38274 26.17804 -26.87864 0.01770 -25.2351652821 -25.7829910101 -26.0569034734 +7550 50.34685 26.16032 -26.85896 0.01773 -25.2165736789 -25.7640366064 -26.0377676701 +7555 50.31102 26.14263 -26.8393 0.01776 -25.1980006351 -25.7451012422 -26.0186511466 +7560 50.27523 26.12496 -26.81968 0.01778 -25.1794661535 -25.7262049195 -25.9995739041 +7565 50.2395 26.10731 -26.80007 0.01781 -25.1609402369 -25.7073176401 -25.9805059442 +7570 50.20382 26.08969 -26.7805 0.01783 -25.1424528883 -25.6884694061 -25.9614772682 +7575 50.16819 26.0721 -26.76095 0.01786 -25.1239841104 -25.6696402192 -25.9424678777 +7580 50.13262 26.05453 -26.74142 0.01789 -25.1055339061 -25.6508300814 -25.9234777739 +7585 50.0971 26.03699 -26.72193 0.01791 -25.0871222782 -25.6320589946 -25.9045269583 +7590 50.06163 26.01948 -26.70245 0.01794 -25.0687192295 -25.6132969605 -25.8855854323 +7595 50.02621 26.00199 -26.68301 0.01796 -25.0503547628 -25.5945739811 -25.8666831974 +7600 49.99084 25.98452 -26.66359 0.01799 -25.032008881 -25.5758700583 -25.8478002549 +7605 49.95553 25.96708 -26.64419 0.01802 -25.0136815867 -25.5571851939 -25.8289366061 +7610 49.92026 25.94967 -26.62482 0.01804 -24.9953828829 -25.5385293897 -25.8101022526 +7615 49.88505 25.93228 -26.60548 0.01807 -24.9771127722 -25.5199026477 -25.7912971957 +7620 49.84989 25.91492 -26.58616 0.01810 -24.9588612575 -25.5012949696 -25.7725114367 +7625 49.81478 25.89758 -26.56686 0.01812 -24.9406283414 -25.4827063574 -25.7537449771 +7630 49.77972 25.88027 -26.5476 0.01815 -24.9224340268 -25.4641568128 -25.7350178182 +7635 49.74472 25.86298 -26.52835 0.01818 -24.9042483165 -25.4456163376 -25.7162999615 +7640 49.70976 25.84572 -26.50914 0.01820 -24.886101213 -25.4271149338 -25.6976214082 +7645 49.67485 25.82848 -26.48995 0.01823 -24.8679727193 -25.4086326031 -25.6789621597 +7650 49.64 25.81127 -26.47078 0.01825 -24.8498628379 -25.3901693473 -25.6603222175 +7655 49.60519 25.79408 -26.45164 0.01828 -24.8317815717 -25.3717351683 -25.6417115828 +7660 49.57044 25.77692 -26.43252 0.01831 -24.8137189233 -25.3533200678 -25.6231202571 +7665 49.53573 25.75978 -26.41343 0.01833 -24.7956848955 -25.3349340477 -25.6045582416 +7670 49.50108 25.74266 -26.39436 0.01836 -24.7776694909 -25.3165671098 -25.5860155377 +7675 49.46647 25.72557 -26.37532 0.01839 -24.7596827122 -25.2982292558 -25.5675021468 +7680 49.43192 25.70851 -26.35631 0.01841 -24.7417245622 -25.2799204876 -25.5490180703 +7685 49.39741 25.69147 -26.33732 0.01844 -24.7237850434 -25.2616308068 -25.5305533093 +7690 49.36296 25.67445 -26.31835 0.01847 -24.7058641586 -25.2433602155 -25.5121078654 +7695 49.32855 25.65746 -26.29941 0.01849 -24.6879719104 -25.2251187151 -25.4936917398 +7700 49.29419 25.6405 -26.28049 0.01852 -24.6700983015 -25.2068963077 -25.4752949338 +7705 49.25989 25.62355 -26.2616 0.01855 -24.6522533345 -25.1887029949 -25.4569274488 +7710 49.22563 25.60663 -26.24273 0.01857 -24.634427012 -25.1705287784 -25.438579286 +7715 49.19142 25.58974 -26.22389 0.01860 -24.6166293368 -25.1523836601 -25.4202604469 +7720 49.15726 25.57287 -26.20507 0.01863 -24.5988503114 -25.1342576417 -25.4019609327 +7725 49.12315 25.55602 -26.18627 0.01865 -24.5810899385 -25.1161507249 -25.3836807447 +7730 49.08909 25.5392 -26.1675 0.01868 -24.5633582207 -25.0980729115 -25.3654298843 +7735 49.05508 25.52241 -26.14876 0.01871 -24.5456551605 -25.0800242033 -25.3472083527 +7740 49.02111 25.50563 -26.13004 0.01873 -24.5279707606 -25.0619946019 -25.3290061513 +7745 48.98719 25.48888 -26.11134 0.01876 -24.5103050236 -25.043984109 -25.3108232813 +7750 48.95333 25.47215 -26.09267 0.01879 -24.492667952 -25.0260027265 -25.292669744 +7755 48.91951 25.45545 -26.07402 0.01881 -24.4750495485 -25.008040456 -25.2745355408 +7760 48.88574 25.43877 -26.0554 0.01884 -24.4574598156 -24.9901072993 -25.2564306728 +7765 48.85201 25.42212 -26.0368 0.01887 -24.4398887559 -24.972193258 -25.2383451415 +7770 48.81834 25.40549 -26.01822 0.01889 -24.4223363719 -24.9542983339 -25.220278948 +7775 48.78471 25.38888 -25.99967 0.01892 -24.4048126662 -24.9364325287 -25.2022420937 +7780 48.75113 25.3723 -25.98114 0.01895 -24.3873076414 -24.9185858441 -25.1842245799 +7785 48.7176 25.35573 -25.96264 0.01898 -24.3698313 -24.9007682817 -25.1662364077 +7790 48.68411 25.3392 -25.94416 0.01900 -24.3523736445 -24.8829698432 -25.1482675785 +7795 48.65067 25.32268 -25.9257 0.01903 -24.3349346774 -24.8651905304 -25.1303180935 +7800 48.61728 25.30619 -25.90727 0.01906 -24.3175244014 -24.847440345 -25.112397954 +7805 48.58394 25.28972 -25.88886 0.01908 -24.3001328188 -24.8297092885 -25.0944971613 +7810 48.55064 25.27328 -25.87048 0.01911 -24.2827699323 -24.8120073627 -25.0766257166 +7815 48.5174 25.25686 -25.85211 0.01914 -24.2654157442 -24.7943145692 -25.0587636211 +7820 48.48419 25.24046 -25.83378 0.01916 -24.2481002571 -24.7766609098 -25.0409408761 +7825 48.45104 25.22409 -25.81546 0.01919 -24.2307934736 -24.759016386 -25.0231274829 +7830 48.41793 25.20773 -25.79717 0.01922 -24.213515396 -24.7414009995 -25.0053434427 +7835 48.38487 25.1914 -25.7789 0.01924 -24.1962560269 -24.723804752 -24.9875787567 +7840 48.35185 25.1751 -25.76066 0.01927 -24.1790253687 -24.7062376451 -24.9698434262 +7845 48.31888 25.15881 -25.74244 0.01930 -24.1618134238 -24.6886896805 -24.9521274524 +7850 48.28596 25.14255 -25.72424 0.01933 -24.1446201949 -24.6711608598 -24.9344308365 +7855 48.25308 25.12632 -25.70607 0.01935 -24.1274556842 -24.6536611846 -24.9167635797 +7860 48.22025 25.1101 -25.68792 0.01938 -24.1103098943 -24.6361806566 -24.8991156834 +7865 48.18747 25.09391 -25.66979 0.01941 -24.0931828276 -24.6187192774 -24.8814871486 +7870 48.15473 25.07774 -25.65169 0.01943 -24.0760844864 -24.6012870486 -24.8638879766 +7875 48.12204 25.06159 -25.63361 0.01946 -24.0590048734 -24.5838739719 -24.8463081687 +7880 48.08939 25.04547 -25.61555 0.01949 -24.0419439908 -24.5664800488 -24.828747726 +7885 48.05679 25.02936 -25.59751 0.01952 -24.0249018411 -24.5491052809 -24.8112066498 +7890 48.02423 25.01328 -25.5795 0.01954 -24.0078884266 -24.53175967 -24.7936949412 +7895 47.99172 24.99723 -25.56151 0.01957 -23.9908937499 -24.5144332174 -24.7762026014 +7900 47.95925 24.98119 -25.54355 0.01960 -23.9739278133 -24.497135925 -24.7587396317 +7905 47.92683 24.96518 -25.5256 0.01963 -23.9569706191 -24.4798477942 -24.7412860333 +7910 47.89446 24.94919 -25.50768 0.01965 -23.9400421699 -24.4625888267 -24.7238618073 +7915 47.86213 24.93322 -25.48978 0.01968 -23.9231324678 -24.4453490239 -24.7064569549 +7920 47.82984 24.91727 -25.47191 0.01971 -23.9062515154 -24.4281383877 -24.6890814773 +7925 47.7976 24.90135 -25.45406 0.01974 -23.889389315 -24.4109469194 -24.6717253757 +7930 47.7654 24.88545 -25.43623 0.01976 -23.8725458689 -24.3937746206 -24.6543886513 +7935 47.73325 24.86957 -25.41842 0.01979 -23.8557211795 -24.376621493 -24.6370713053 +7940 47.70115 24.85371 -25.40063 0.01982 -23.8389152492 -24.3594875381 -24.6197733388 +7945 47.66908 24.83787 -25.38287 0.01984 -23.8221380802 -24.3423827575 -24.602504753 +7950 47.63706 24.82206 -25.36513 0.01987 -23.805379675 -24.3252971527 -24.585255549 +7955 47.60509 24.80626 -25.34742 0.01990 -23.7886500359 -24.3082407253 -24.5680357281 +7960 47.57316 24.79049 -25.32972 0.01993 -23.7719291651 -24.2911934768 -24.5508252914 +7965 47.54127 24.77474 -25.31205 0.01995 -23.7552370651 -24.2741754088 -24.53364424 +7970 47.50943 24.75901 -25.2944 0.01998 -23.738563738 -24.2571765228 -24.5164825752 +7975 47.47763 24.74331 -25.27677 0.02001 -23.7219091863 -24.2401968203 -24.499340298 +7980 47.44588 24.72762 -25.25916 0.02004 -23.7052734122 -24.223236303 -24.4822174096 +7985 47.41417 24.71196 -25.24158 0.02006 -23.6886664181 -24.2063049722 -24.4651239112 +7990 47.3825 24.69632 -25.22402 0.02009 -23.6720782062 -24.1893928296 -24.4480498039 +7995 47.35088 24.6807 -25.20648 0.02012 -23.6555087787 -24.1724998767 -24.4309950889 +8000 47.3193 24.6651 -25.18896 0.02015 -23.6389581381 -24.155626115 -24.4139597673 +8005 47.28776 24.64952 -25.17147 0.02018 -23.6224362865 -24.138781546 -24.3969538401 +8010 47.25627 24.63397 -25.15399 0.02020 -23.6059232262 -24.1219461711 -24.3799573087 +8015 47.22482 24.61843 -25.13654 0.02023 -23.5894389595 -24.1051399921 -24.3629901741 +8020 47.19341 24.60292 -25.11911 0.02026 -23.5729734886 -24.0883530102 -24.3460424373 +8025 47.16204 24.58742 -25.1017 0.02029 -23.5565268158 -24.0715852271 -24.3291140996 +8030 47.13072 24.57195 -25.08432 0.02031 -23.5401089434 -24.0548466442 -24.3122151621 +8035 47.09944 24.5565 -25.06695 0.02034 -23.5236998735 -24.038117263 -24.2953256259 +8040 47.0682 24.54107 -25.04961 0.02037 -23.5073196085 -24.021417085 -24.2784654921 +8045 47.03701 24.52566 -25.03229 0.02040 -23.4909581505 -24.0047361118 -24.2616247618 +8050 47.00586 24.51028 -25.01499 0.02042 -23.4746155017 -23.9880743447 -24.2448034362 +8055 46.97475 24.49491 -24.99771 0.02045 -23.4582916645 -23.9714317852 -24.2280015163 +8060 46.94368 24.47956 -24.98045 0.02048 -23.4419866409 -23.9548084349 -24.2112190032 +8065 46.91266 24.46424 -24.96322 0.02051 -23.4257104332 -23.9382142952 -24.1944658981 +8070 46.88167 24.44893 -24.94601 0.02054 -23.4094530436 -23.9216393675 -24.177732202 +8075 46.85073 24.43365 -24.92881 0.02056 -23.3932044743 -23.9050736534 -24.1610079161 +8080 46.81983 24.41839 -24.91164 0.02059 -23.3769847275 -23.8885371543 -24.1443130414 +8085 46.78898 24.40314 -24.89449 0.02062 -23.3607838053 -23.8720198716 -24.1276375791 +8090 46.75816 24.38792 -24.87737 0.02065 -23.34461171 -23.8555318069 -24.1109915302 +8095 46.72739 24.37272 -24.86026 0.02068 -23.3284484437 -23.8390529614 -24.0943548958 +8100 46.69666 24.35754 -24.84317 0.02070 -23.3123040086 -23.8225933368 -24.077737677 +8105 46.66597 24.34238 -24.82611 0.02073 -23.2961884069 -23.8061629344 -24.0611498749 +8110 46.63532 24.32724 -24.80907 0.02076 -23.2800916407 -23.7897517557 -24.0445814905 +8115 46.60471 24.31212 -24.79204 0.02079 -23.2640037121 -23.7733498021 -24.028022525 +8120 46.57414 24.29702 -24.77504 0.02082 -23.2479446233 -23.756977075 -24.0114929794 +8125 46.54362 24.28194 -24.75806 0.02084 -23.2319043765 -23.740623576 -23.9949828548 +8130 46.51313 24.26688 -24.7411 0.02087 -23.2158829738 -23.7242893063 -23.9784921522 +8135 46.48269 24.25185 -24.72417 0.02090 -23.1998904173 -23.7079842674 -23.9620308727 +8140 46.45229 24.23683 -24.70725 0.02093 -23.1839067091 -23.6916884607 -23.9455790174 +8145 46.42192 24.22183 -24.69035 0.02096 -23.1679418515 -23.6754118877 -23.9291465873 +8150 46.3916 24.20685 -24.67348 0.02098 -23.1520058463 -23.6591645498 -23.9127435836 +8155 46.36132 24.19189 -24.65662 0.02101 -23.1360786959 -23.6429264483 -23.8963500071 +8160 46.33108 24.17696 -24.63979 0.02104 -23.1201804023 -23.6267175847 -23.8799858591 +8165 46.30088 24.16204 -24.62298 0.02107 -23.1043009676 -23.6105279604 -23.8636411405 +8170 46.27073 24.14714 -24.60618 0.02110 -23.0884303939 -23.5943475767 -23.8473058525 +8175 46.24061 24.13226 -24.58941 0.02113 -23.0725886832 -23.5781964351 -23.830999996 +8180 46.21053 24.1174 -24.57266 0.02115 -23.0567658378 -23.5620645369 -23.814713572 +8185 46.18049 24.10256 -24.55593 0.02118 -23.0409618595 -23.5459518836 -23.7984465817 +8190 46.15049 24.08774 -24.53922 0.02121 -23.0251767506 -23.5298584765 -23.7821990261 +8195 46.12053 24.07295 -24.52253 0.02124 -23.0094105131 -23.5137843169 -23.7659709061 +8200 46.09061 24.05817 -24.50586 0.02127 -22.9936631491 -23.4977294064 -23.7497622229 +8205 46.06074 24.04341 -24.48921 0.02129 -22.9779346605 -23.4816937462 -23.7335729774 +8210 46.0309 24.02867 -24.47258 0.02132 -22.9622250495 -23.4656773377 -23.7174031708 +8215 46.0011 24.01394 -24.45598 0.02135 -22.9465443182 -23.4496901823 -23.7012628039 +8220 45.97134 23.99924 -24.43939 0.02138 -22.9308724685 -23.4337122814 -23.6851318779 +8225 45.94162 23.98456 -24.42282 0.02141 -22.9152195025 -23.4177536362 -23.6690203937 +8230 45.91194 23.9699 -24.40627 0.02144 -22.8995854223 -23.4018142482 -23.6529283525 +8235 45.88229 23.95526 -24.38975 0.02147 -22.8839802298 -23.3859041188 -23.636865755 +8240 45.85269 23.94063 -24.37324 0.02149 -22.8683839271 -23.3700032492 -23.6208126025 +8245 45.82313 23.92603 -24.35675 0.02152 -22.8528065163 -23.3541216408 -23.6047788959 +8250 45.79361 23.91144 -24.34029 0.02155 -22.8372579992 -23.3382692949 -23.5887746363 +8255 45.76412 23.89688 -24.32384 0.02158 -22.821718378 -23.322426213 -24.32384 +8260 45.73467 23.88233 -24.30741 0.02161 -22.8061976547 -23.3066023963 -24.30741 +8265 45.70527 23.8678 -24.29101 0.02164 -22.7907058311 -23.2908078461 -24.29101 +8270 45.6759 23.85329 -24.27462 0.02166 -22.7752229095 -23.2750225639 -24.27462 +8275 45.64657 23.8388 -24.25825 0.02169 -22.7597588916 -23.2592565509 -24.25825 +8280 45.61728 23.82433 -24.24191 0.02172 -22.7443237796 -23.2435198084 -24.24191 +8285 45.58802 23.80988 -24.22558 0.02175 -22.7288975753 -23.2277923378 -24.22558 +8290 45.55881 23.79545 -24.20927 0.02178 -22.7134902809 -23.2120841403 -24.20927 +8295 45.52963 23.78103 -24.19298 0.02181 -22.6981018981 -23.1963952174 -24.19298 +8300 45.5005 23.76664 -24.17672 0.02184 -22.6827424291 -23.1807355703 -24.17672 +8305 45.4714 23.75226 -24.16047 0.02186 -22.6673918758 -23.1650852002 -24.16047 +8310 45.44233 23.73791 -24.14424 0.02189 -22.6520602401 -23.1494541087 -24.14424 +8315 45.41331 23.72357 -24.12803 0.02192 -22.636747524 -23.1338422968 -24.12803 +8320 45.38433 23.70925 -24.11184 0.02195 -22.6214537294 -23.118249766 -24.11184 +8325 45.35538 23.69495 -24.09567 0.02198 -22.6061788582 -23.1026765174 -24.09567 +8330 45.32647 23.68067 -24.07952 0.02201 -22.5909229125 -23.0871225525 -24.07952 +8335 45.2976 23.6664 -24.06339 0.02204 -22.5756858942 -23.0715878725 -24.06339 +8340 45.26876 23.65216 -24.04728 0.02207 -22.5604678051 -23.0560724787 -24.04728 +8345 45.23996 23.63793 -24.03119 0.02209 -22.5452686472 -23.0405763723 -24.03119 +8350 45.21121 23.62372 -24.01511 0.02212 -22.5300784224 -23.0250895547 -24.01511 +8355 45.18248 23.60953 -23.99906 0.02215 -22.5149171327 -23.0096320272 -23.99906 +8360 45.1538 23.59536 -23.98303 0.02218 -22.4997747799 -22.9941937909 -23.98303 +8365 45.12515 23.58121 -23.96701 0.02221 -22.4846413659 -22.9787648472 -23.96701 +8370 45.09654 23.56707 -23.95101 0.02224 -22.4695268927 -22.9633551973 -23.95101 +8375 45.06797 23.55296 -23.93504 0.02227 -22.4544413622 -22.9479748425 -23.93504 +8380 45.03943 23.53886 -23.91908 0.02230 -22.4393647762 -22.9326037841 -23.91908 +8385 45.01094 23.52478 -23.90314 0.02233 -22.4243071367 -22.9172520234 -23.90314 +8390 44.98247 23.51072 -23.88722 0.02235 -22.4092684454 -22.9019195615 -23.88722 +8395 44.95405 23.49668 -23.87132 0.02238 -22.3942487044 -22.8866063997 -23.87132 +8400 44.92566 23.48265 -23.85544 0.02241 -22.3792479154 -22.8713125393 -23.85544 +8405 44.89731 23.46864 -23.83958 0.02244 -22.3642660804 -22.8560379816 -23.83958 +8410 44.86899 23.45465 -23.82374 0.02247 -22.3493032011 -22.8407827277 -23.82374 +8415 44.84072 23.44068 -23.80791 0.02250 -22.3343492796 -22.8255367789 -23.80791 +8420 44.81247 23.42673 -23.79211 0.02253 -22.3194243175 -22.8103201365 -23.79211 +8425 44.78427 23.4128 -23.77632 0.02256 -22.3045083168 -22.7951128016 -23.77632 +8430 44.7561 23.39888 -23.76055 0.02259 -22.2896112794 -22.7799247756 -23.76055 +8435 44.72797 23.38498 -23.74481 0.02262 -22.274743207 -22.7647660597 -23.74481 +8440 44.69987 23.3711 -23.72907 0.02265 -22.2598741015 -22.749606655 -23.72907 +8445 44.67181 23.35723 -23.71336 0.02267 -22.2450339648 -22.7344765628 -23.71336 +8450 44.64378 23.34339 -23.69767 0.02270 -22.2302127987 -22.7193657843 -23.69767 +8455 44.6158 23.32956 -23.682 0.02273 -22.2154106049 -22.7042743208 -23.682 +8460 44.58784 23.31575 -23.66634 0.02276 -22.2006173854 -22.6891921734 -23.66634 +8465 44.55993 23.30196 -23.6507 0.02279 -22.1858431419 -22.6741293433 -23.6507 +8470 44.53205 23.28818 -23.63509 0.02282 -22.1710978762 -22.6590958319 -23.63509 +8475 44.5042 23.27443 -23.61949 0.02285 -22.1563615903 -22.6440716402 -23.61949 +8480 44.47639 23.26069 -23.6039 0.02288 -22.1416342857 -22.6290567695 -23.6039 +8485 44.44862 23.24696 -23.58834 0.02291 -22.1269359645 -22.614071221 -23.58834 +8490 44.42088 23.23326 -23.5728 0.02294 -22.1122566283 -22.5991049958 -23.5728 +8495 44.39317 23.21957 -23.55727 0.02297 -22.097586279 -22.5841480953 -23.55727 +8500 44.36551 23.2059 -23.54176 0.02300 -22.0829349183 -22.5692105204 -23.54176 +8505 44.33787 23.19225 -23.52627 0.02303 -22.068302548 -22.5542922726 -23.52627 +8510 44.31028 23.17861 -23.5108 0.02305 -22.05368917 -22.5393933529 -23.5108 +8515 44.28271 23.16499 -23.49535 0.02308 -22.0390947859 -22.5245137625 -23.49535 +8520 44.25519 23.15139 -23.47992 0.02311 -22.0245193976 -22.5096535026 -23.47992 +8525 44.22769 23.13781 -23.4645 0.02314 -22.0099530068 -22.4948025744 -23.4645 +8530 44.20024 23.12424 -23.4491 0.02317 -21.9954056152 -22.479970979 -23.4491 +8535 44.17281 23.1107 -23.43372 0.02320 -21.9808772248 -22.4651587177 -23.43372 +8540 44.14543 23.09716 -23.41836 0.02323 -21.9663678371 -22.4503657916 -23.41836 +8545 44.11807 23.08365 -23.40301 0.02326 -21.9518674539 -22.4355822019 -23.40301 +8550 44.09075 23.07015 -23.38769 0.02329 -21.9373960771 -22.4208279496 -23.38769 +8555 44.06347 23.05667 -23.37238 0.02332 -21.9229337083 -22.4060830361 -23.37238 +8560 44.03622 23.04321 -23.35709 0.02335 -21.9084903493 -22.3913574624 -23.35709 +8565 44.00901 23.02976 -23.34182 0.02338 -21.8940660017 -22.3766512298 -23.34182 +8570 43.98183 23.01633 -23.32656 0.02341 -21.8796506674 -22.3619543393 -23.32656 +8575 43.95468 23.00292 -23.31133 0.02344 -21.8652643481 -22.3472867921 -23.31133 +8580 43.92757 22.98952 -23.29611 0.02347 -21.8508870455 -22.3326285893 -23.29611 +8585 43.90049 22.97614 -23.28091 0.02350 -21.8365287613 -22.3179897322 -23.28091 +8590 43.87345 22.96278 -23.26572 0.02353 -21.8221794971 -22.3033602218 -23.26572 +8595 43.84644 22.94944 -23.25056 0.02356 -21.8078592548 -22.2887600593 -23.25056 +8600 43.81946 22.93611 -23.23541 0.02359 -21.7935480361 -22.2741692458 -23.23541 +8605 43.79252 22.9228 -23.22028 0.02362 -21.7792558426 -22.2595977825 -23.22028 +8610 43.76561 22.9095 -23.20517 0.02365 -21.764982676 -22.2450456705 -23.20517 +8615 43.73874 22.89622 -23.19007 0.02368 -21.750718538 -22.2305029109 -23.19007 +8620 43.7119 22.88296 -23.175 0.02371 -21.7364834304 -22.2159895049 -23.175 +8625 43.68509 22.86972 -23.15994 0.02373 -21.7222573548 -22.2014854535 -23.15994 +8630 43.65832 22.85649 -23.1449 0.02376 -21.7080503128 -22.1870007579 -23.1449 +8635 43.63158 22.84328 -23.12987 0.02379 -21.6938523063 -22.1725254192 -23.12987 +8640 43.60487 22.83008 -23.11487 0.02382 -21.6796833367 -22.1580794386 -23.11487 +8645 43.5782 22.8169 -23.09988 0.02385 -21.6655234059 -22.1436428171 -23.09988 +8650 43.55156 22.80374 -23.0849 0.02388 -21.6513725155 -22.1292155559 -23.0849 +8655 43.52495 22.79059 -23.06995 0.02391 -21.6372506671 -22.114817656 -23.06995 +8660 43.49838 22.77746 -23.05501 0.02394 -21.6231378624 -22.1004291186 -23.05501 +8665 43.47184 22.76435 -23.04009 0.02397 -21.6090441031 -22.0860599448 -23.04009 +8670 43.44533 22.75125 -23.02519 0.02400 -21.5949693907 -22.0717101356 -23.02519 +8675 43.41886 22.73817 -23.0103 0.02403 -21.5809037271 -22.0573696922 -23.0103 +8680 43.39242 22.72511 -22.99543 0.02406 -21.5668571137 -22.0430486157 -22.99543 +8685 43.36601 22.71206 -22.98058 0.02409 -21.5528295523 -22.0287469071 -22.98058 +8690 43.33964 22.69902 -22.96575 0.02412 -21.5388210444 -22.0144645677 -22.96575 +8695 43.31329 22.68601 -22.95093 0.02415 -21.5248215918 -22.0001915983 -22.95093 +8700 43.28698 22.67301 -22.93613 0.02418 -21.510841196 -21.9859380002 -22.93613 +8705 43.26071 22.66002 -22.92135 0.02421 -21.4968798586 -21.9717037744 -22.92135 +8710 43.23446 22.64706 -22.90658 0.02424 -21.4829275814 -21.9574789219 -22.90658 +8715 43.20825 22.63411 -22.89184 0.02427 -21.4690043658 -21.943283444 -22.89184 +8720 43.18207 22.62117 -22.8771 0.02430 -21.4550802136 -21.9290873416 -22.8771 +8725 43.15592 22.60825 -22.86239 0.02433 -21.4411851263 -21.9149206158 -22.86239 +8730 43.12981 22.59535 -22.84769 0.02436 -21.4272991055 -21.9007632677 -22.84769 +8735 43.10373 22.58246 -22.83301 0.02439 -21.4134321529 -21.8866252984 -22.83301 +8740 43.07768 22.56959 -22.81835 0.02442 -21.39958427 -21.8725067089 -22.81835 +8745 43.05166 22.55673 -22.8037 0.02445 -21.3857454585 -21.8583975003 -22.8037 +8750 43.02567 22.54389 -22.78907 0.02448 -21.3719257198 -21.8443076736 -22.78907 +8755 42.99972 22.53106 -22.77446 0.02451 -21.3581250557 -21.83023723 -22.77446 +8760 42.9738 22.51826 -22.75986 0.02454 -21.3443334677 -21.8161761704 -22.75986 +8765 42.94791 22.50546 -22.74528 0.02457 -21.3305609573 -21.8021344959 -22.74528 +8770 42.92205 22.49268 -22.73072 0.02461 -21.3168075263 -21.7881122076 -22.73072 +8775 42.89622 22.47992 -22.71617 0.02464 -21.303063176 -21.7740993066 -22.71617 +8780 42.87043 22.46718 -22.70164 0.02467 -21.2893379081 -21.7601057938 -22.70164 +8785 42.84466 22.45445 -22.68713 0.02470 -21.2756317243 -21.7461316703 -22.68713 +8790 42.81893 22.44173 -22.67263 0.02473 -21.2619346259 -21.7321669371 -22.67263 +8795 42.79323 22.42903 -22.65815 0.02476 -21.2482566146 -21.7182215954 -22.65815 +8800 42.76756 22.41635 -22.64369 0.02479 -21.234597692 -21.7042956461 -22.64369 +8805 42.74192 22.40368 -22.62924 0.02482 -21.2209478596 -21.6903790903 -22.62924 +8810 42.71632 22.39103 -22.61481 0.02485 -21.2073171189 -21.676481929 -22.61481 +8815 42.69074 22.37839 -22.60039 0.02488 -21.1936954715 -21.6625941632 -22.60039 +8820 42.6652 22.36577 -22.586 0.02491 -21.180102919 -21.6487357939 -22.586 +8825 42.63969 22.35316 -22.57161 0.02494 -21.1665094628 -21.6348768223 -22.57161 +8830 42.61421 22.34057 -22.55725 0.02497 -21.1529451045 -21.6210472492 -22.55725 +8835 42.58876 22.32799 -22.5429 0.02500 -21.1393898457 -21.6072270758 -22.5429 +8840 42.56334 22.31543 -22.52857 0.02503 -21.1258536879 -21.593426303 -22.52857 +8845 42.53795 22.30289 -22.51425 0.02506 -21.1123266325 -21.5796349319 -22.51425 +8850 42.51259 22.29036 -22.49995 0.02509 -21.0988186812 -21.5658629635 -22.49995 +8855 42.48727 22.27784 -22.48567 0.02512 -21.0853298354 -21.5521103988 -22.48567 +8860 42.46197 22.26534 -22.4714 0.02515 -21.0718500966 -21.5383672387 -22.4714 +8865 42.43671 22.25286 -22.45715 0.02518 -21.0583894664 -21.5246434844 -22.45715 +8870 42.41147 22.24039 -22.44291 0.02521 -21.0449379462 -21.5109291368 -22.44291 +8875 42.38627 22.22793 -22.42869 0.02524 -21.0315055377 -21.4972341969 -22.42869 +8880 42.36109 22.21549 -22.41449 0.02527 -21.0180922422 -21.4835586657 -22.41449 +8885 42.33595 22.20307 -22.4003 0.02531 -21.0046880612 -21.4698925442 -22.4003 +8890 42.31084 22.19066 -22.38613 0.02534 -20.9913029964 -21.4562458334 -22.38613 +8895 42.28576 22.17827 -22.37198 0.02537 -20.977937049 -21.4426185344 -22.37198 +8900 42.26071 22.16589 -22.35784 0.02540 -20.9645802208 -21.429000648 -22.35784 +8905 42.23569 22.15352 -22.34371 0.02543 -20.951232513 -21.4153921753 -22.34371 +8910 42.21069 22.14117 -22.32961 0.02546 -20.9379139272 -21.4018131173 -22.32961 +8915 42.18573 22.12884 -22.31552 0.02549 -20.924604465 -21.388243475 -22.31552 +8920 42.1608 22.11652 -22.30144 0.02552 -20.9113041277 -21.3746832492 -22.30144 +8925 42.1359 22.10421 -22.28738 0.02555 -20.8980229168 -21.3611424412 -22.28738 +8930 42.11103 22.09192 -22.27334 0.02558 -20.8847608338 -21.3476210517 -22.27334 +8935 42.08619 22.07965 -22.25931 0.02561 -20.8715078801 -21.3341090817 -22.25931 +8940 42.06138 22.06739 -22.2453 0.02564 -20.8582740573 -21.3206165323 -22.2453 +8945 42.0366 22.05514 -22.2313 0.02567 -20.8450493667 -21.3071334045 -22.2313 +8950 42.01185 22.04291 -22.21732 0.02571 -20.8318438099 -21.2936696991 -22.21732 +8955 41.98712 22.03069 -22.20335 0.02574 -20.8186473883 -21.2802154172 -22.20335 +8960 41.96243 22.01849 -22.1894 0.02577 -20.8054701033 -21.2667805597 -22.1894 +8965 41.93777 22.0063 -22.17547 0.02580 -20.7923119563 -21.2533651276 -22.17547 +8970 41.91314 21.99413 -22.16155 0.02583 -20.7791629489 -21.2399591218 -22.16155 +8975 41.88853 21.98197 -22.14765 0.02586 -20.7660330825 -21.2265725434 -22.14765 +8980 41.86396 21.96983 -22.13376 0.02589 -20.7529123584 -21.2131953932 -22.13376 +8985 41.83941 21.9577 -22.11989 0.02592 -20.7398107781 -21.1998376722 -22.11989 +8990 41.8149 21.94558 -22.10603 0.02595 -20.7267183431 -21.1864893814 -22.10603 +8995 41.79041 21.93348 -22.09219 0.02598 -20.7136450548 -21.1731605217 -22.09219 +9000 41.76596 21.9214 -22.07837 0.02601 -20.7005909145 -21.159851094 -22.07837 +9005 41.74153 21.90933 -22.06456 0.02605 -20.6875459238 -21.1465510994 -22.06456 +9010 41.71713 21.89727 -22.05076 0.02608 -20.674510084 -21.1332605387 -22.05076 +9015 41.69276 21.88523 -22.03699 0.02611 -20.6615033965 -21.1199994129 -22.03699 +9020 41.66842 21.8732 -22.02322 0.02614 -20.6484958628 -21.106737723 -22.02322 +9025 41.64411 21.86118 -22.00947 0.02617 -20.6355074843 -21.0934954699 -22.00947 +9030 41.61983 21.84918 -21.99574 0.02620 -20.6225382623 -21.0802726544 -21.99574 +9035 41.59557 21.8372 -21.98202 0.02623 -20.6095781983 -21.0670592776 -21.98202 +9040 41.57135 21.82523 -21.96832 0.02626 -20.5966372937 -21.0538653404 -21.96832 +9045 41.54715 21.81327 -21.95463 0.02629 -20.5837055498 -21.0406808436 -21.95463 +9050 41.52298 21.80133 -21.94096 0.02633 -20.570792968 -21.0275157883 -21.94096 +9055 41.49884 21.7894 -21.9273 0.02636 -20.5578895498 -21.0143601754 -21.9273 +9060 41.47473 21.77748 -21.91366 0.02639 -20.5450052965 -21.0012240058 -21.91366 +9065 41.45065 21.76558 -21.90003 0.02642 -20.5321302095 -20.9880972803 -21.90003 +9070 41.4266 21.75369 -21.88642 0.02645 -20.5192742902 -20.97499 -21.88642 +9075 41.40257 21.74182 -21.87283 0.02648 -20.5064375399 -20.9619021657 -21.87283 +9080 41.37858 21.72996 -21.85924 0.02651 -20.49359996 -20.9488137783 -21.85924 +9085 41.35461 21.71812 -21.84568 0.02655 -20.480791552 -20.9357548389 -21.84568 +9090 41.33067 21.70629 -21.83213 0.02658 -20.4679923171 -20.9227053482 -21.83213 +9095 41.30676 21.69447 -21.81859 0.02661 -20.4552022568 -20.9096653072 -21.81859 +9100 41.28287 21.68267 -21.80507 0.02664 -20.4424313723 -20.8966447167 -21.80507 +9105 41.25902 21.67088 -21.79156 0.02667 -20.4296696651 -20.8836335778 -21.79156 +9110 41.23519 21.6591 -21.77807 0.02670 -20.4169271365 -20.8706418913 -21.77807 +9115 41.21139 21.64734 -21.76459 0.02673 -20.4041937878 -20.8576596581 -21.76459 +9120 41.18762 21.63559 -21.75113 0.02676 -20.3914796204 -20.8446968791 -21.75113 +9125 41.16387 21.62386 -21.73768 0.02680 -20.3787746357 -20.8317435552 -21.73768 +9130 41.14016 21.61214 -21.72425 0.02683 -20.366088835 -20.8188096873 -21.72425 +9135 41.11647 21.60043 -21.71083 0.02686 -20.3534122196 -20.8058852762 -21.71083 +9140 41.09281 21.58874 -21.69743 0.02689 -20.3407547909 -20.792980323 -21.69743 +9145 41.06918 21.57706 -21.68404 0.02692 -20.3281065501 -20.7800848284 -21.68404 +9150 41.04557 21.56539 -21.67067 0.02695 -20.3154774987 -20.7672087934 -21.67067 +9155 41.022 21.55374 -21.65731 0.02699 -20.302857638 -20.7543422188 -21.65731 +9160 40.99845 21.5421 -21.64396 0.02702 -20.2902469692 -20.7414851056 -21.64396 +9165 40.97492 21.53048 -21.63063 0.02705 -20.2776554938 -20.7286474545 -21.63063 +9170 40.95143 21.51887 -21.61732 0.02708 -20.265083213 -20.7158292665 -21.61732 +9175 40.92796 21.50727 -21.60402 0.02711 -20.2525201281 -20.7030205425 -21.60402 +9180 40.90452 21.49568 -21.59073 0.02714 -20.2399662405 -20.6902212834 -21.59073 +9185 40.88111 21.48411 -21.57746 0.02718 -20.2274315514 -20.67744149 -21.57746 +9190 40.85772 21.47256 -21.5642 0.02721 -20.2149060623 -20.6646711631 -21.5642 +9195 40.83437 21.46101 -21.55096 0.02724 -20.2023997743 -20.6519203037 -21.55096 +9200 40.81104 21.44948 -21.53773 0.02727 -20.1899026888 -20.6391789126 -21.53773 +9205 40.78773 21.43796 -21.52452 0.02730 -20.1774248071 -20.6264569907 -21.52452 +9210 40.76446 21.42646 -21.51132 0.02733 -20.1649561304 -20.6137445389 -21.51132 +9215 40.74121 21.41497 -21.49813 0.02737 -20.1524966602 -20.601041558 -21.49813 +9220 40.71798 21.40349 -21.48496 0.02740 -20.1400563976 -20.5883580489 -21.48496 +9225 40.69479 21.39203 -21.47181 0.02743 -20.1276353439 -20.5756940124 -21.47181 +9230 40.67162 21.38058 -21.45866 0.02746 -20.1152135005 -20.5630294494 -21.45866 +9235 40.64848 21.36914 -21.44554 0.02749 -20.1028208687 -20.5503943607 -21.44554 +9240 40.62536 21.35772 -21.43242 0.02752 -20.0904274496 -20.5377587473 -21.43242 +9245 40.60227 21.34631 -21.41932 0.02756 -20.0780532446 -20.5251426099 -21.41932 +9250 40.57921 21.33491 -21.40624 0.02759 -20.0656982549 -20.5125459494 -21.40624 +9255 40.55618 21.32353 -21.39317 0.02762 -20.0533524819 -20.4999587667 -21.39317 +9260 40.53317 21.31215 -21.38011 0.02765 -20.0410159268 -20.4873810625 -21.38011 +9265 40.51018 21.3008 -21.36707 0.02768 -20.0286985909 -20.4748228379 -21.36707 +9270 40.48723 21.28945 -21.35404 0.02772 -20.0163904753 -20.4622740935 -21.35404 +9275 40.4643 21.27812 -21.34103 0.02775 -20.0041015815 -20.4497448302 -21.34103 +9280 40.4414 21.2668 -21.32803 0.02778 -19.9918219106 -20.4372250489 -21.32803 +9285 40.41852 21.25549 -21.31504 0.02781 -19.9795514639 -20.4247147503 -21.31504 +9290 40.39567 21.2442 -21.30207 0.02784 -19.9673002426 -20.4122239355 -21.30207 +9295 40.37285 21.23292 -21.28911 0.02788 -19.9550582481 -20.3997426051 -21.28911 +9300 40.35005 21.22165 -21.27617 0.02791 -19.9428354815 -20.3872807599 -21.27617 +9305 40.32728 21.2104 -21.26324 0.02794 -19.9306219441 -20.374828401 -21.26324 +9310 40.30453 21.19916 -21.25032 0.02797 -19.9184176371 -20.3623855289 -21.25032 +9315 40.28181 21.18793 -21.23742 0.02800 -19.9062325618 -20.3499621447 -21.23742 +9320 40.25912 21.17671 -21.22453 0.02804 -19.8940567194 -20.3375482491 -21.22453 +9325 40.23645 21.16551 -21.21165 0.02807 -19.8818901112 -20.3251438429 -21.21165 +9330 40.21381 21.15432 -21.19879 0.02810 -19.8697427383 -20.312758927 -21.19879 +9335 40.1912 21.14314 -21.18595 0.02813 -19.8576146021 -20.3003935021 -21.18595 +9340 40.16861 21.13198 -21.17311 0.02817 -19.8454857036 -20.2880275691 -21.17311 +9345 40.14604 21.12083 -21.16029 0.02820 -19.8333760443 -20.2756811288 -21.16029 +9350 40.12351 21.10969 -21.14749 0.02823 -19.8212856252 -20.2633541821 -21.14749 +9355 40.10099 21.09856 -21.1347 0.02826 -19.8092044476 -20.2510367296 -21.1347 +9360 40.07851 21.08745 -21.12192 0.02829 -19.7971325127 -20.2387287724 -21.12192 +9365 40.05605 21.07635 -21.10916 0.02833 -19.7850798217 -20.226440311 -21.10916 +9370 40.03361 21.06526 -21.09641 0.02836 -19.7730363759 -20.2141613464 -21.09641 +9375 40.0112 21.05418 -21.08367 0.02839 -19.7610021764 -20.2018918794 -21.08367 +9380 39.98882 21.04312 -21.07094 0.02842 -19.7489772244 -20.1896319108 -21.07094 +9385 39.96646 21.03207 -21.05824 0.02846 -19.7369815212 -20.1774014413 -21.05824 +9390 39.94413 21.02103 -21.04554 0.02849 -19.7249850679 -20.1651704718 -21.04554 +9395 39.92182 21.01 -21.03286 0.02852 -19.7130078658 -20.152959003 -21.03286 +9400 39.89953 20.99899 -21.02019 0.02855 -19.7010399161 -20.1407570358 -21.02019 +9405 39.87728 20.98799 -21.00753 0.02859 -19.6890812198 -20.128564571 -21.00753 +9410 39.85505 20.977 -20.99489 0.02862 -19.6771417783 -20.1163916093 -20.99489 +9415 39.83284 20.96603 -20.98226 0.02865 -19.6652115927 -20.1042281515 -20.98226 +9420 39.81066 20.95506 -20.96965 0.02868 -19.6533006642 -20.0920841985 -20.96965 +9425 39.7885 20.94411 -20.95705 0.02872 -19.641398994 -20.079949751 -20.95705 +9430 39.76637 20.93317 -20.94446 0.02875 -19.6295065832 -20.0678248099 -20.94446 +9435 39.74426 20.92225 -20.93188 0.02878 -19.6176234331 -20.0557093758 -20.93188 +9440 39.72218 20.91133 -20.91932 0.02881 -19.6057595447 -20.0436134495 -20.91932 +9445 39.70012 20.90043 -20.90677 0.02885 -19.5939049194 -20.031527032 -20.90677 +9450 39.67809 20.88954 -20.89424 0.02888 -19.5820695582 -20.0194601238 -20.89424 +9455 39.65608 20.87867 -20.88172 0.02891 -19.5702434623 -20.0074027259 -20.88172 +9460 39.6341 20.8678 -20.86921 0.02894 -19.5584266329 -19.995354839 -20.86921 +9465 39.61214 20.85695 -20.85671 0.02898 -19.5466190712 -19.9833164639 -20.85671 +9470 39.59021 20.84611 -20.84423 0.02901 -19.5348307782 -19.9712976012 -20.84423 +9475 39.5683 20.83528 -20.83176 0.02904 -19.5230517553 -19.9592882519 -20.83176 +9480 39.54642 20.82446 -20.81931 0.02907 -19.5112920034 -19.9472984167 -20.81931 +9485 39.52456 20.81366 -20.80687 0.02911 -19.4995415238 -19.9353180963 -20.80687 +9490 39.50273 20.80287 -20.79444 0.02914 -19.4878003177 -19.9233472916 -20.79444 +9495 39.48092 20.79209 -20.78202 0.02917 -19.4760683861 -19.9113860032 -20.78202 +9500 39.45913 20.78132 -20.76962 0.02920 -19.4643557302 -19.899444232 -20.76962 +9505 39.43737 20.77056 -20.75723 0.02924 -19.4526523512 -19.8875119786 -20.75723 +9510 39.41563 20.75982 -20.74485 0.02927 -19.4409582502 -19.875589244 -20.74485 +9515 39.39392 20.74909 -20.73249 0.02930 -19.4292834283 -19.8636860287 -20.73249 +9520 39.37223 20.73837 -20.72014 0.02934 -19.4176178867 -19.8517923337 -20.72014 +9525 39.35057 20.72766 -20.7078 0.02937 -19.4059616265 -19.8399081596 -20.7078 +9530 39.32893 20.71697 -20.69548 0.02940 -19.3943246488 -19.8280435072 -20.69548 +9535 39.30731 20.70628 -20.68317 0.02943 -19.3826969548 -19.8161883772 -20.68317 +9540 39.28572 20.69561 -20.67087 0.02947 -19.3710785456 -19.8043427704 -20.67087 +9545 39.26415 20.68495 -20.65858 0.02950 -19.3594694224 -19.7925066876 -20.65858 +9550 39.24261 20.6743 -20.64631 0.02953 -19.3478795861 -19.7806901294 -20.64631 +9555 39.22109 20.66367 -20.63405 0.02957 -19.336299038 -19.7688830968 -20.63405 +9560 39.1996 20.65304 -20.6218 0.02960 -19.3247277792 -19.7570855902 -20.6218 +9565 39.17813 20.64243 -20.60957 0.02963 -19.3131758108 -19.7453076107 -20.60957 +9570 39.15668 20.63183 -20.59735 0.02966 -19.3016331338 -19.7335391587 -20.59735 +9575 39.13525 20.62124 -20.58514 0.02970 -19.2900997495 -19.7217802352 -20.58514 +9580 39.11385 20.61066 -20.57295 0.02973 -19.2785856589 -19.7100408409 -20.57295 +9585 39.09248 20.6001 -20.56076 0.02976 -19.2670708632 -19.6983009764 -20.56076 +9590 39.07113 20.58954 -20.54859 0.02980 -19.2555753633 -19.6865806425 -20.54859 +9595 39.0498 20.579 -20.53644 0.02983 -19.2440991605 -19.67487984 -20.53644 +9600 39.02849 20.56847 -20.52429 0.02986 -19.2326222558 -19.6631785696 -20.52429 +9605 39.00721 20.55795 -20.51216 0.02990 -19.2211646504 -19.651496832 -20.51216 +9610 38.98595 20.54744 -20.50004 0.02993 -19.2097163452 -19.639824628 -20.50004 +9615 38.96472 20.53695 -20.48793 0.02996 -19.1982773415 -19.6281619582 -20.48793 +9620 38.94351 20.52646 -20.47584 0.03000 -19.1868576402 -19.6165188234 -20.47584 +9625 38.92232 20.51599 -20.46376 0.03003 -19.1754472426 -19.6048852243 -20.46376 +9630 38.90116 20.50553 -20.45169 0.03006 -19.1640461496 -19.5932611617 -20.45169 +9635 38.88002 20.49508 -20.43963 0.03009 -19.1526543623 -19.5816466363 -20.43963 +9640 38.8589 20.48464 -20.42759 0.03013 -19.1412818819 -19.5700516487 -20.42759 +9645 38.8378 20.47422 -20.41556 0.03016 -19.1299187094 -19.5584661998 -20.41556 +9650 38.81673 20.4638 -20.40354 0.03019 -19.1185648459 -19.5468902902 -20.40354 +9655 38.79568 20.4534 -20.39153 0.03023 -19.1072202924 -19.5353239206 -20.39153 +9660 38.77466 20.443 -20.37954 0.03026 -19.0958950501 -19.5237770918 -20.37954 +9665 38.75366 20.43262 -20.36756 0.03029 -19.08457912 -19.5122398044 -20.36756 +9670 38.73268 20.42225 -20.35559 0.03033 -19.0732725031 -19.5007120592 -20.35559 +9675 38.71173 20.4119 -20.34364 0.03036 -19.0619852006 -19.4892038569 -20.34364 +9680 38.69079 20.40155 -20.33169 0.03039 -19.0506972134 -19.4776951982 -20.33169 +9685 38.66988 20.39121 -20.31976 0.03043 -19.0394285428 -19.4662060838 -20.31976 +9690 38.649 20.38089 -20.30784 0.03046 -19.0281691896 -19.4547265145 -20.30784 +9695 38.62813 20.37058 -20.29593 0.03049 -19.016919155 -19.4432564908 -20.29593 +9700 38.60729 20.36028 -20.28404 0.03053 -19.00568844 -19.4318060135 -20.28404 +9705 38.58647 20.34999 -20.27216 0.03056 -18.9944670457 -19.4203650834 -20.27216 +9710 38.56568 20.33971 -20.26029 0.03059 -18.9832549731 -19.4089337011 -20.26029 +9715 38.54491 20.32944 -20.24843 0.03063 -18.9720522233 -19.3975118673 -20.24843 +9720 38.52416 20.31918 -20.23658 0.03066 -18.9608587973 -19.3860995827 -20.23658 +9725 38.50343 20.30894 -20.22475 0.03070 -18.9496846962 -19.374706848 -20.22475 +9730 38.48273 20.2987 -20.21293 0.03073 -18.9385199209 -19.3633236639 -20.21293 +9735 38.46204 20.28848 -20.20112 0.03076 -18.9273644726 -19.3519500311 -20.20112 +9740 38.44138 20.27827 -20.18933 0.03080 -18.9162283523 -19.3405959503 -20.18933 +9745 38.42075 20.26807 -20.17754 0.03083 -18.9050915609 -19.3292414222 -20.17754 +9750 38.40013 20.25788 -20.16577 0.03086 -18.8939740997 -19.3179064474 -20.16577 +9755 38.37954 20.2477 -20.15401 0.03090 -18.8828659695 -19.3065810267 -20.15401 +9760 38.35897 20.23753 -20.14226 0.03093 -18.8717671713 -19.2952651607 -20.14226 +9765 38.33842 20.22738 -20.13052 0.03096 -18.8606777064 -19.2839588501 -20.13052 +9770 38.3179 20.21723 -20.1188 0.03100 -18.8496075755 -19.2726720956 -20.1188 +9775 38.2974 20.2071 -20.10709 0.03103 -18.8385467798 -19.2613948979 -20.10709 +9780 38.27692 20.19697 -20.09539 0.03107 -18.8274953204 -19.2501272577 -20.09539 +9785 38.25646 20.18686 -20.0837 0.03110 -18.8164531981 -19.2388691756 -20.0837 +9790 38.23602 20.17676 -20.07203 0.03113 -18.805430414 -19.2276306523 -20.07203 +9795 38.21561 20.16667 -20.06036 0.03117 -18.7944069692 -19.2163916885 -20.06036 +9800 38.19522 20.15659 -20.04871 0.03120 -18.7834028647 -19.2051722849 -20.04871 +9805 38.17485 20.14652 -20.03707 0.03123 -18.7724081014 -19.1939624421 -20.03707 +9810 38.1545 20.13646 -20.02544 0.03127 -18.7614226803 -19.1827621609 -20.02544 +9815 38.13417 20.12641 -20.01383 0.03130 -18.7504566026 -19.1715814418 -20.01383 +9820 38.11387 20.11638 -20.00222 0.03134 -18.7394898691 -19.1604002856 -20.00222 +9825 38.09359 20.10635 -19.99063 0.03137 -18.7285424808 -19.1492386928 -19.99063 +9830 38.07333 20.09634 -19.97905 0.03140 -18.7176044389 -19.1380866643 -19.97905 +9835 38.05309 20.08633 -19.96748 0.03144 -18.7066757442 -19.1269442006 -19.96748 +9840 38.03287 20.07634 -19.95592 0.03147 -18.6957563978 -19.1158113024 -19.95592 +9845 38.01268 20.06636 -19.94438 0.03150 -18.6848564006 -19.1046979704 -19.94438 +9850 37.99251 20.05639 -19.93284 0.03154 -18.6739557537 -19.0935842053 -19.93284 +9855 37.97236 20.04643 -19.92132 0.03157 -18.6630744581 -19.0824900076 -19.92132 +9860 37.95223 20.03648 -19.90981 0.03161 -18.6522025146 -19.0714053781 -19.90981 +9865 37.93212 20.02654 -19.89831 0.03164 -18.6413399244 -19.0603303174 -19.89831 +9870 37.91203 20.01661 -19.88683 0.03167 -18.6304966884 -19.0492748261 -19.88683 +9875 37.89197 20.00669 -19.87535 0.03171 -18.6196528075 -19.038218905 -19.87535 +9880 37.87193 19.99678 -19.86389 0.03174 -18.6088282828 -19.0271825546 -19.86389 +9885 37.8519 19.98688 -19.85244 0.03178 -18.5980131152 -19.0161557757 -19.85244 +9890 37.8319 19.977 -19.841 0.03181 -18.5872073057 -19.0051385688 -19.841 +9895 37.81192 19.96712 -19.82957 0.03184 -18.5764108553 -18.9941309347 -19.82957 +9900 37.79197 19.95726 -19.81815 0.03188 -18.565623765 -18.9831328739 -19.81815 +9905 37.77203 19.9474 -19.80675 0.03191 -18.5548560357 -18.9721543871 -19.80675 +9910 37.75212 19.93756 -19.79535 0.03195 -18.5440876683 -18.961175475 -19.79535 +9915 37.73222 19.92772 -19.78397 0.03198 -18.5333386639 -18.9502161382 -19.78397 +9920 37.71235 19.9179 -19.7726 0.03202 -18.5225990234 -18.9392663773 -19.7726 +9925 37.6925 19.90809 -19.76124 0.03205 -18.5118687478 -18.928326193 -19.76124 +9930 37.67267 19.89829 -19.74989 0.03208 -18.5011478381 -18.917395586 -19.74989 +9935 37.65286 19.88849 -19.73856 0.03212 -18.4904462951 -18.9064845568 -19.73856 +9940 37.63307 19.87871 -19.72723 0.03215 -18.4797441199 -18.8955731061 -19.72723 +9945 37.61331 19.86894 -19.71592 0.03219 -18.4690613133 -18.8846812345 -19.71592 +9950 37.59356 19.85918 -19.70462 0.03222 -18.4583878765 -18.8737989427 -19.70462 +9955 37.57384 19.84943 -19.69332 0.03226 -18.4477138102 -18.8629162314 -19.69332 +9960 37.55413 19.83969 -19.68205 0.03229 -18.4370691155 -18.852063101 -19.68205 +9965 37.53445 19.82996 -19.67078 0.03232 -18.4264237933 -18.8412095523 -19.67078 +9970 37.51479 19.82024 -19.65952 0.03236 -18.4157878445 -18.8303655859 -19.65952 +9975 37.49515 19.81053 -19.64828 0.03239 -18.4051712701 -18.8195412025 -19.64828 +9980 37.47553 19.80083 -19.63704 0.03243 -18.394554071 -18.8087164025 -19.63704 +9985 37.45593 19.79115 -19.62582 0.03246 -18.3839562482 -18.7979111868 -19.62582 +9990 37.43635 19.78147 -19.61461 0.03250 -18.3733678026 -18.7871155559 -19.61461 +9995 37.41679 19.7718 -19.60341 0.03253 -18.3627887351 -18.7763295103 -19.60341 +10000 37.39726 19.76214 -19.59222 0.03256 -18.3522190467 -18.7655530509 -19.59222 +10005 37.37774 19.75249 -19.58104 0.03260 -18.3416587383 -18.7547861781 -19.58104 +10010 37.35824 19.74286 -19.56988 0.03263 -18.3311178108 -18.7440388925 -19.56988 +10015 37.33877 19.73323 -19.55872 0.03267 -18.3205762651 -18.7332911949 -19.55872 +10020 37.31931 19.72361 -19.54758 0.03270 -18.3100541023 -18.7225630858 -19.54758 +10025 37.29988 19.71401 -19.53644 0.03274 -18.2995313231 -18.7118345659 -19.53644 +10030 37.28047 19.70441 -19.52532 0.03277 -18.2890279286 -18.7011256357 -19.52532 +10035 37.26107 19.69482 -19.51421 0.03281 -18.2785339196 -18.6904262958 -19.51421 +10040 37.2417 19.68525 -19.50311 0.03284 -18.2680492971 -18.6797365469 -19.50311 +10045 37.22235 19.67568 -19.49202 0.03288 -18.2575740619 -18.6690563896 -19.49202 +10050 37.20302 19.66612 -19.48095 0.03291 -18.2471182151 -18.6583958246 -19.48095 +10055 37.18371 19.65658 -19.46988 0.03294 -18.2366617574 -18.6477348523 -19.46988 +10060 37.16441 19.64704 -19.45882 0.03298 -18.2262146899 -18.6370834734 -19.45882 +10065 37.14514 19.63751 -19.44778 0.03301 -18.2157870134 -18.6264516885 -19.44778 +10070 37.12589 19.628 -19.43675 0.03305 -18.2053687288 -18.6158294983 -19.43675 +10075 37.10666 19.61849 -19.42572 0.03308 -18.194949837 -18.6052069033 -19.42572 +10080 37.08745 19.60899 -19.41471 0.03312 -18.184550339 -18.5946039041 -19.41471 +10085 37.06826 19.59951 -19.40371 0.03315 -18.1741602357 -18.5840105014 -19.40371 +10090 37.04909 19.59003 -19.39272 0.03319 -18.1637795279 -18.5734266956 -19.39272 +10095 37.02994 19.58056 -19.38174 0.03322 -18.1534082165 -18.5628524875 -19.38174 +10100 37.01081 19.57111 -19.37078 0.03326 -18.1430563024 -18.5522978777 -19.37078 +10105 36.9917 19.56166 -19.35982 0.03329 -18.1327037866 -18.5417428666 -19.35982 +10110 36.97261 19.55222 -19.34888 0.03333 -18.1223706699 -18.531207455 -19.34888 +10115 36.95354 19.5428 -19.33794 0.03336 -18.1120369533 -18.5206716434 -19.33794 +10120 36.93449 19.53338 -19.32702 0.03340 -18.1017226375 -18.5101554323 -19.32702 +10125 36.91546 19.52397 -19.3161 0.03343 -18.0914077235 -18.4996388225 -19.3161 +10130 36.89645 19.51457 -19.3052 0.03347 -18.0811122122 -18.4891418145 -19.3052 +10135 36.87746 19.50518 -19.29431 0.03350 -18.0708261045 -18.4786544088 -19.29431 +10140 36.85849 19.49581 -19.28343 0.03354 -18.0605494012 -18.4681766061 -19.28343 +10145 36.83954 19.48644 -19.27256 0.03357 -18.0502821032 -18.457708407 -19.27256 +10150 36.8206 19.47708 -19.2617 0.03361 -18.0400242115 -18.447249812 -19.2617 +10155 36.80169 19.46773 -19.25085 0.03364 -18.0297757268 -18.4368008217 -19.25085 +10160 36.7828 19.45839 -19.24001 0.03368 -18.0195366501 -18.4263614367 -19.24001 +10165 36.76393 19.44906 -19.22918 0.03371 -18.0093069822 -18.4159316576 -19.22918 +10170 36.74508 19.43974 -19.21837 0.03375 -17.999096724 -18.405521485 -19.21837 +10175 36.72624 19.43043 -19.20756 0.03378 -17.9888858764 -18.3951109194 -19.20756 +10180 36.70743 19.42113 -19.19677 0.03382 -17.9786944402 -18.3847199615 -19.19677 +10185 36.68863 19.41184 -19.18598 0.03385 -17.9685024163 -18.3743286117 -19.18598 +10190 36.66986 19.40256 -19.17521 0.03389 -17.9583298056 -18.3639568708 -19.17521 +10195 36.6511 19.39329 -19.16445 0.03392 -17.9481666089 -18.3535947392 -19.16445 +10200 36.63237 19.38402 -19.15369 0.03396 -17.9380028272 -18.3432322175 -19.15369 +10205 36.61365 19.37477 -19.14295 0.03399 -17.9278584611 -18.3328893063 -19.14295 +10210 36.59495 19.36553 -19.13222 0.03403 -17.9177235118 -18.3225560062 -19.13222 +10215 36.57628 19.35629 -19.1215 0.03406 -17.9075979798 -18.3122323178 -19.1215 +10220 36.55762 19.34707 -19.11079 0.03410 -17.8974818662 -18.3019182416 -19.11079 +10225 36.53898 19.33786 -19.10009 0.03413 -17.8873751718 -18.2916137782 -19.10009 +10230 36.52036 19.32865 -19.0894 0.03417 -17.8772778974 -18.2813189281 -19.0894 +10235 36.50176 19.31945 -19.07872 0.03420 -17.8671900439 -18.2710336919 -19.07872 +10240 36.48318 19.31027 -19.06805 0.03424 -17.8571116122 -18.2607580703 -19.06805 +10245 36.46461 19.30109 -19.05739 0.03427 -17.847042603 -18.2504920637 -19.05739 +10250 36.44607 19.29192 -19.04674 0.03431 -17.8369830172 -18.2402356727 -19.04674 +10255 36.42754 19.28277 -19.03611 0.03434 -17.8269428557 -18.2299988978 -19.03611 +10260 36.40904 19.27362 -19.02548 0.03438 -17.8169021193 -18.2197617398 -19.02548 +10265 36.39055 19.26448 -19.01486 0.03442 -17.8068708088 -18.209534199 -19.01486 +10270 36.37209 19.25535 -19.00426 0.03445 -17.7968589252 -18.1993262761 -19.00426 +10275 36.35364 19.24623 -18.99366 0.03449 -17.7868464691 -18.1891179716 -18.99366 +10280 36.33521 19.23712 -18.98308 0.03452 -17.7768534415 -18.178929286 -18.98308 +10285 36.3168 19.22802 -18.9725 0.03456 -17.7668598433 -18.16874022 -18.9725 +10290 36.29841 19.21892 -18.96194 0.03459 -17.7568856751 -18.1585707741 -18.96194 +10295 36.28003 19.20984 -18.95138 0.03463 -17.7469109379 -18.1484009488 -18.95138 +10300 36.26168 19.20077 -18.94084 0.03466 -17.7369556324 -18.1382507447 -18.94084 +10305 36.24334 19.1917 -18.9303 0.03470 -17.7269997596 -18.1281001624 -18.9303 +10310 36.22503 19.18265 -18.91978 0.03473 -17.7170633202 -18.1179692023 -18.91978 +10315 36.20673 19.1736 -18.90927 0.03477 -17.7071363151 -18.1078478651 -18.90927 +10320 36.18845 19.16457 -18.89876 0.03481 -17.697208745 -18.0977261513 -18.89876 +10325 36.17019 19.15554 -18.88827 0.03484 -17.6873006109 -18.0876240614 -18.88827 +10330 36.15195 19.14652 -18.87779 0.03488 -17.6774019135 -18.077531596 -18.87779 +10335 36.13372 19.13751 -18.86731 0.03491 -17.6675026536 -18.0674387556 -18.86731 +10340 36.11552 19.12851 -18.85685 0.03495 -17.6576228321 -18.0573655408 -18.85685 +10345 36.09733 19.11952 -18.8464 0.03498 -17.6477524497 -18.0473019521 -18.8464 +10350 36.07917 19.11054 -18.83596 0.03502 -17.6378915073 -18.03724799 -18.83596 +10355 36.06102 19.10157 -18.82553 0.03505 -17.6280400057 -18.0272036551 -18.82553 +10360 36.04289 19.0926 -18.8151 0.03509 -17.6181879457 -18.017158948 -18.8151 +10365 36.02477 19.08365 -18.80469 0.03513 -17.6083553282 -18.0071338692 -18.80469 +10370 36.00668 19.0747 -18.79429 0.03516 -17.5985321538 -17.9971184192 -18.79429 +10375 35.9886 19.06577 -18.7839 0.03520 -17.5887184235 -17.9871125985 -18.7839 +10380 35.97055 19.05684 -18.77352 0.03523 -17.578914138 -17.9771164077 -18.77352 +10385 35.95251 19.04792 -18.76314 0.03527 -17.5691092981 -17.9671198473 -18.76314 +10390 35.93449 19.03901 -18.75278 0.03530 -17.5593239046 -17.9571429179 -18.75278 +10395 35.91648 19.03011 -18.74243 0.03534 -17.5495479584 -17.9471756199 -18.74243 +10400 35.8985 19.02122 -18.73209 0.03538 -17.5397814602 -17.937217954 -18.73209 +10405 35.88053 19.01234 -18.72176 0.03541 -17.5300244108 -17.9272699206 -18.72176 +10410 35.86259 19.00347 -18.71144 0.03545 -17.520276811 -17.9173315203 -18.71144 +10415 35.84466 18.9946 -18.70112 0.03548 -17.5105286617 -17.9073927537 -18.70112 +10420 35.82675 18.98575 -18.69082 0.03552 -17.5007999635 -17.8974736211 -18.69082 +10425 35.80885 18.9769 -18.68053 0.03556 -17.4910807173 -17.8875641232 -18.68053 +10430 35.79098 18.96806 -18.67025 0.03559 -17.4813709239 -17.8776642605 -18.67025 +10435 35.77312 18.95924 -18.65998 0.03563 -17.4716705841 -17.8677740335 -18.65998 +10440 35.75528 18.95042 -18.64971 0.03566 -17.4619696986 -17.8578834427 -18.64971 +10445 35.73746 18.94161 -18.63946 0.03570 -17.4522882682 -17.8480124887 -18.63946 +10450 35.71966 18.9328 -18.62922 0.03574 -17.4426162938 -17.8381511719 -18.62922 +10455 35.70187 18.92401 -18.61899 0.03577 -17.432953776 -17.828299493 -18.61899 +10460 35.6841 18.91523 -18.60876 0.03581 -17.4232907158 -17.8184474524 -18.60876 +10465 35.66635 18.90645 -18.59855 0.03584 -17.4136471137 -17.8086150506 -18.59855 +10470 35.64862 18.89769 -18.58835 0.03588 -17.4040129707 -17.7987922881 -18.58835 +10475 35.63091 18.88893 -18.57815 0.03592 -17.3943782875 -17.7889691655 -18.57815 +10480 35.61321 18.88018 -18.56797 0.03595 -17.3847630649 -17.7791656834 -18.56797 +10485 35.59553 18.87144 -18.55779 0.03599 -17.3751473036 -17.7693618421 -18.55779 +10490 35.57787 18.86271 -18.54763 0.03602 -17.3655510044 -17.7595776422 -18.54763 +10495 35.56023 18.85399 -18.53748 0.03606 -17.3559641682 -17.7498030842 -18.53748 +10500 35.54261 18.84527 -18.52733 0.03610 -17.3463767955 -17.7400281687 -18.52733 +10505 35.525 18.83657 -18.5172 0.03613 -17.3368088873 -17.7302728961 -18.5172 +10510 35.50741 18.82787 -18.50707 0.03617 -17.3272404443 -17.720517267 -18.50707 +10515 35.48984 18.81918 -18.49695 0.03621 -17.3176814672 -17.7107712818 -18.49695 +10520 35.47228 18.8105 -18.48685 0.03624 -17.3081419568 -17.7010449412 -18.48685 +10525 35.45474 18.80183 -18.47675 0.03628 -17.2986019139 -17.6913182455 -18.47675 +10530 35.43722 18.79317 -18.46666 0.03631 -17.2890713393 -17.6816011952 -18.46666 +10535 35.41972 18.78452 -18.45659 0.03635 -17.2795602336 -17.671903791 -18.45659 +10540 35.40224 18.77587 -18.44652 0.03639 -17.2700485976 -17.6622060333 -18.44652 +10545 35.38477 18.76724 -18.43646 0.03642 -17.2605464321 -17.6525179225 -18.43646 +10550 35.36732 18.75861 -18.42641 0.03646 -17.2510537379 -17.6428394593 -18.42641 +10555 35.34989 18.74999 -18.41637 0.03650 -17.2415705157 -17.633170644 -18.41637 +10560 35.33247 18.74138 -18.40634 0.03653 -17.2320967662 -17.6235114773 -18.40634 +10565 35.31507 18.73278 -18.39632 0.03657 -17.2226324902 -17.6138619596 -18.39632 +10570 35.29769 18.72419 -18.38631 0.03660 -17.2131776885 -17.6042220913 -18.38631 +10575 35.28033 18.7156 -18.37631 0.03664 -17.2037323617 -17.5945918731 -18.37631 +10580 35.26298 18.70703 -18.36632 0.03668 -17.1942965107 -17.5849713053 -18.36632 +10585 35.24566 18.69846 -18.35634 0.03671 -17.1848701362 -17.5753603885 -18.35634 +10590 35.22834 18.6899 -18.34636 0.03675 -17.1754432389 -17.5657491232 -18.34636 +10595 35.21105 18.68135 -18.3364 0.03679 -17.1660358195 -17.5561575099 -18.3364 +10600 35.19377 18.67281 -18.32645 0.03682 -17.1566378788 -17.546575549 -18.32645 +10605 35.17651 18.66428 -18.3165 0.03686 -17.1472394176 -17.5369932411 -18.3165 +10610 35.15927 18.65575 -18.30657 0.03690 -17.1378604365 -17.5274305866 -18.30657 +10615 35.14204 18.64723 -18.29664 0.03693 -17.1284809364 -17.5178675861 -18.29664 +10620 35.12483 18.63873 -18.28673 0.03697 -17.1191209178 -17.50832424 -18.28673 +10625 35.10764 18.63023 -18.27682 0.03701 -17.1097603817 -17.4987805488 -18.27682 +10630 35.09047 18.62174 -18.26692 0.03704 -17.1004093286 -17.489246513 -18.26692 +10635 35.07331 18.61325 -18.25703 0.03708 -17.0910677594 -17.4797221331 -18.25703 +10640 35.05617 18.60478 -18.24716 0.03712 -17.0817456747 -17.4702174096 -18.24716 +10645 35.03904 18.59631 -18.23729 0.03715 -17.0724230754 -17.4607123429 -18.23729 +10650 35.02194 18.58785 -18.22743 0.03719 -17.063109962 -17.4512169336 -18.22743 +10655 35.00485 18.5794 -18.21757 0.03723 -17.0537963353 -17.4417211821 -18.21757 +10660 34.98777 18.57096 -18.20773 0.03726 -17.0445021961 -17.4322450889 -18.20773 +10665 34.97072 18.56253 -18.1979 0.03730 -17.0352175451 -17.4227786545 -18.1979 +10670 34.95368 18.5541 -18.18808 0.03734 -17.025942383 -17.4133218793 -18.18808 +10675 34.93665 18.54569 -18.17826 0.03737 -17.0166667105 -17.4038647639 -18.17826 +10680 34.91965 18.53728 -18.16846 0.03741 -17.0074105283 -17.3944273087 -18.16846 +10685 34.90266 18.52888 -18.15866 0.03745 -16.9981538372 -17.3849895142 -18.15866 +10690 34.88568 18.52049 -18.14888 0.03748 -16.9889166378 -17.3755713809 -18.14888 +10695 34.86873 18.51211 -18.1391 0.03752 -16.9796789309 -17.3661529092 -18.1391 +10700 34.85179 18.50373 -18.12933 0.03756 -16.9704507171 -17.3567440996 -18.12933 +10705 34.83486 18.49536 -18.11957 0.03759 -16.9612319973 -17.3473449527 -18.11957 +10710 34.81796 18.487 -18.10982 0.03763 -16.9520227721 -17.3379554688 -18.10982 +10715 34.80107 18.47865 -18.10008 0.03767 -16.9428230422 -17.3285756484 -18.10008 +10720 34.78419 18.47031 -18.09035 0.03770 -16.9336328082 -17.3192054921 -18.09035 +10725 34.76734 18.46198 -18.08063 0.03774 -16.9244520711 -17.3098450003 -18.08063 +10730 34.7505 18.45365 -18.07092 0.03778 -16.9152808313 -17.3004941733 -18.07092 +10735 34.73367 18.44533 -18.06121 0.03782 -16.9061090897 -17.2911430119 -18.06121 +10740 34.71687 18.43702 -18.05152 0.03785 -16.8969568469 -17.2818115163 -18.05152 +10745 34.70008 18.42872 -18.04183 0.03789 -16.8878041036 -17.272479687 -18.04183 +10750 34.6833 18.42043 -18.03215 0.03793 -16.8786608605 -17.2631575246 -18.03215 +10755 34.66654 18.41214 -18.02249 0.03796 -16.8695371184 -17.2538550294 -18.02249 +10760 34.6498 18.40386 -18.01283 0.03800 -16.8604128779 -17.244552202 -18.01283 +10765 34.63307 18.39559 -18.00318 0.03804 -16.8512981397 -17.2352590428 -18.00318 +10770 34.61637 18.38733 -17.99354 0.03807 -16.8421929045 -17.2259755523 -17.99354 +10775 34.59967 18.37908 -17.9839 0.03811 -16.833087173 -17.2166917309 -17.9839 +10780 34.583 18.37083 -17.97428 0.03815 -16.8240009459 -17.2074275791 -17.97428 +10785 34.56634 18.3626 -17.96467 0.03819 -16.8149242238 -17.1981730974 -17.96467 +10790 34.54969 18.35437 -17.95506 0.03822 -16.8058470076 -17.1889182861 -17.95506 +10795 34.53306 18.34615 -17.94547 0.03826 -16.7967892978 -17.1796831458 -17.94547 +10800 34.51645 18.33793 -17.93588 0.03830 -16.7877310951 -17.170447677 -17.93588 +10805 34.49985 18.32973 -17.9263 0.03833 -16.7786824002 -17.16122188 -17.9263 +10810 34.48327 18.32153 -17.91673 0.03837 -16.7696432139 -17.1520057554 -17.91673 +10815 34.46671 18.31334 -17.90717 0.03841 -16.7606135367 -17.1427993036 -17.90717 +10820 34.45016 18.30516 -17.89762 0.03845 -16.7515933694 -17.133602525 -17.89762 +10825 34.43363 18.29699 -17.88807 0.03848 -16.7425727127 -17.1244054201 -17.88807 +10830 34.41712 18.28882 -17.87854 0.03852 -16.7335715671 -17.1152279894 -17.87854 +10835 34.40062 18.28066 -17.86902 0.03856 -16.7245799335 -17.1060602333 -17.86902 +10840 34.38413 18.27251 -17.8595 0.03860 -16.7155878125 -17.0968921522 -17.8595 +10845 34.36766 18.26437 -17.84999 0.03863 -16.7066052047 -17.0877337466 -17.84999 +10850 34.35121 18.25624 -17.84049 0.03867 -16.6976321108 -17.078585017 -17.84049 +10855 34.33478 18.24811 -17.831 0.03871 -16.6886685315 -17.0694459637 -17.831 +10860 34.31836 18.23999 -17.82152 0.03875 -16.6797144675 -17.0603165873 -17.82152 +10865 34.30195 18.23188 -17.81205 0.03878 -16.6707699194 -17.0511968882 -17.81205 +10870 34.28556 18.22378 -17.80258 0.03882 -16.6618248879 -17.0420768669 -17.80258 +10875 34.26919 18.21568 -17.79313 0.03886 -16.6528993737 -17.0329765237 -17.79313 +10880 34.25283 18.20759 -17.78368 0.03890 -16.6439733774 -17.0238758591 -17.78368 +10885 34.23649 18.19952 -17.77425 0.03893 -16.6350668998 -17.0147948736 -17.77425 +10890 34.22017 18.19144 -17.76482 0.03897 -16.6261599414 -17.0057135676 -17.76482 +10895 34.20386 18.18338 -17.7554 0.03901 -16.6172625029 -16.9966419416 -17.7554 +10900 34.18756 18.17532 -17.74598 0.03905 -16.608364585 -16.987569996 -17.74598 +10905 34.17129 18.16727 -17.73658 0.03908 -16.5994861883 -16.9785177311 -17.73658 +10910 34.15502 18.15923 -17.72719 0.03912 -16.5906173136 -16.9694751476 -17.72719 +10915 34.13878 18.1512 -17.7178 0.03916 -16.5817479614 -16.9604322458 -17.7178 +10920 34.12254 18.14318 -17.70842 0.03920 -16.5728881324 -16.9513990261 -17.70842 +10925 34.10633 18.13516 -17.69906 0.03923 -16.5640478273 -16.9423854889 -17.69906 +10930 34.09013 18.12715 -17.6897 0.03927 -16.5552070467 -16.9333716349 -17.6897 +10935 34.07394 18.11914 -17.68035 0.03931 -16.5463757913 -16.9243674642 -17.68035 +10940 34.05777 18.11115 -17.671 0.03935 -16.5375440617 -16.9153629774 -17.671 +10945 34.04162 18.10316 -17.66167 0.03938 -16.5287318586 -16.906378175 -17.66167 +10950 34.02548 18.09518 -17.65234 0.03942 -16.5199191826 -16.8973930573 -17.65234 +10955 34.00936 18.08721 -17.64303 0.03946 -16.5111260344 -16.8884276248 -17.64303 +10960 33.99325 18.07925 -17.63372 0.03950 -16.5023324146 -16.8794618779 -17.63372 +10965 33.97716 18.07129 -17.62442 0.03953 -16.4935483238 -16.8705058171 -17.62442 +10970 33.96108 18.06334 -17.61513 0.03957 -16.4847737628 -16.8615594427 -17.61513 +10975 33.94502 18.0554 -17.60584 0.03961 -16.4759987322 -16.8526127552 -17.60584 +10980 33.92897 18.04747 -17.59657 0.03965 -16.4672432325 -16.843685755 -17.59657 +10985 33.91294 18.03954 -17.5873 0.03969 -16.4584872644 -16.8347584427 -17.5873 +10990 33.89693 18.03162 -17.57805 0.03972 -16.4497508287 -16.8258508184 -17.57805 +10995 33.88093 18.02371 -17.5688 0.03976 -16.4410139258 -16.8169428828 -17.5688 +11000 33.86494 18.01581 -17.55956 0.03980 -16.4322865565 -16.8080446363 -17.55956 +11005 33.84897 18.00791 -17.55032 0.03984 -16.4235587214 -17.55032 -17.55032 +11010 33.83302 18.00002 -17.5411 0.03988 -16.414850421 -17.5411 -17.5411 +11015 33.81708 17.99214 -17.53188 0.03991 -16.4061416562 -17.53188 -17.53188 +11020 33.80115 17.98427 -17.52268 0.03995 -16.3974524274 -17.52268 -17.52268 +11025 33.78524 17.9764 -17.51348 0.03999 -16.3887627353 -17.51348 -17.51348 +11030 33.76935 17.96854 -17.50429 0.04003 -16.3800825806 -17.50429 -17.50429 +11035 33.75347 17.96069 -17.49511 0.04007 -16.3714119639 -17.49511 -17.49511 +11040 33.73761 17.95285 -17.48593 0.04010 -16.3627408857 -17.48593 -17.48593 +11045 33.72176 17.94501 -17.47677 0.04014 -16.3540893468 -17.47677 -17.47677 +11050 33.70592 17.93718 -17.46761 0.04018 -16.3454373477 -17.46761 -17.46761 +11055 33.6901 17.92936 -17.45846 0.04022 -16.3367948892 -17.45846 -17.45846 +11060 33.6743 17.92154 -17.44932 0.04026 -16.3281619717 -17.44932 -17.44932 +11065 33.65851 17.91374 -17.44019 0.04029 -16.3195385959 -17.44019 -17.44019 +11070 33.64274 17.90594 -17.43106 0.04033 -16.3109147625 -17.43106 -17.43106 +11075 33.62698 17.89815 -17.42195 0.04037 -16.302310472 -17.42195 -17.42195 +11080 33.61123 17.89036 -17.41284 0.04041 -16.2937057252 -17.41284 -17.41284 +11085 33.5955 17.88258 -17.40374 0.04045 -16.2851105225 -17.40374 -17.40374 +11090 33.57979 17.87481 -17.39465 0.04048 -16.2765248646 -17.39465 -17.39465 +11095 33.56409 17.86705 -17.38557 0.04052 -16.2679487522 -17.38557 -17.38557 +11100 33.5484 17.8593 -17.37649 0.04056 -16.2593721858 -17.37649 -17.37649 +11105 33.53273 17.85155 -17.36743 0.04060 -16.2508151661 -17.36743 -17.36743 +11110 33.51708 17.84381 -17.35837 0.04064 -16.2422576937 -17.35837 -17.35837 +11115 33.50144 17.83607 -17.34932 0.04068 -16.2337097691 -17.34932 -17.34932 +11120 33.48581 17.82835 -17.34028 0.04071 -16.225171393 -17.34028 -17.34028 +11125 33.4702 17.82063 -17.33125 0.04075 -16.2166425661 -17.33125 -17.33125 +11130 33.4546 17.81292 -17.32222 0.04079 -16.2081132888 -17.32222 -17.32222 +11135 33.43902 17.80521 -17.3132 0.04083 -16.1995935619 -17.3132 -17.3132 +11140 33.42345 17.79751 -17.30419 0.04087 -16.1910833858 -17.30419 -17.30419 +11145 33.4079 17.78982 -17.29519 0.04091 -16.1825827613 -17.29519 -17.29519 +11150 33.39236 17.78214 -17.2862 0.04094 -16.174091689 -17.2862 -17.2862 +11155 33.37684 17.77446 -17.27721 0.04098 -16.1656001693 -17.27721 -17.27721 +11160 33.36133 17.7668 -17.26824 0.04102 -16.157128203 -17.26824 -17.26824 +11165 33.34583 17.75913 -17.25927 0.04106 -16.1486557906 -17.25927 -17.25927 +11170 33.33035 17.75148 -17.25031 0.04110 -16.1401929328 -17.25031 -17.25031 +11175 33.31489 17.74383 -17.24136 0.04114 -16.1317396301 -17.24136 -17.24136 +11180 33.29944 17.73619 -17.23241 0.04117 -16.1232858831 -17.23241 -17.23241 +11185 33.284 17.72856 -17.22347 0.04121 -16.1148416924 -17.22347 -17.22347 +11190 33.26858 17.72093 -17.21455 0.04125 -16.1064170587 -17.21455 -17.21455 +11195 33.25317 17.71332 -17.20563 0.04129 -16.0979919824 -17.20563 -17.20563 +11200 33.23778 17.7057 -17.19671 0.04133 -16.0895664643 -17.19671 -17.19671 +11205 33.2224 17.6981 -17.18781 0.04137 -16.0811605049 -17.18781 -17.18781 +11210 33.20703 17.6905 -17.17891 0.04141 -16.0727541047 -17.17891 -17.17891 +11215 33.19168 17.68291 -17.17002 0.04144 -16.0643572644 -17.17002 -17.17002 +11220 33.17635 17.67533 -17.16114 0.04148 -16.0559699846 -17.16114 -17.16114 +11225 33.16102 17.66775 -17.15227 0.04152 -16.0475922658 -17.15227 -17.15227 +11230 33.14572 17.66018 -17.14341 0.04156 -16.0392241087 -17.14341 -17.14341 +11235 33.13042 17.65262 -17.13455 0.04160 -16.0308555138 -17.13455 -17.13455 +11240 33.11514 17.64507 -17.1257 0.04164 -16.0224964817 -17.1257 -17.1257 +11245 33.09988 17.63752 -17.11686 0.04168 -16.014147013 -17.11686 -17.11686 +11250 33.08463 17.62998 -17.10802 0.04172 -16.0057971082 -17.10802 -17.10802 +11255 33.06939 17.62244 -17.0992 0.04175 -15.997466768 -17.0992 -17.0992 +11260 33.05417 17.61492 -17.09038 0.04179 -15.989135993 -17.09038 -17.09038 +11265 33.03896 17.6074 -17.08157 0.04183 -15.9808147836 -17.08157 -17.08157 +11270 33.02377 17.59988 -17.07277 0.04187 -15.9725031406 -17.07277 -17.07277 +11275 33.00859 17.59238 -17.06398 0.04191 -15.9642010644 -17.06398 -17.06398 +11280 32.99342 17.58488 -17.05519 0.04195 -15.9558985556 -17.05519 -17.05519 +11285 32.97827 17.57739 -17.04641 0.04199 -15.9476056149 -17.04641 -17.04641 +11290 32.96313 17.5699 -17.03764 0.04203 -15.9393222428 -17.03764 -17.03764 +11295 32.948 17.56242 -17.02888 0.04206 -15.9310484398 -17.02888 -17.02888 +11300 32.93289 17.55495 -17.02012 0.04210 -15.9227742066 -17.02012 -17.02012 +11305 32.9178 17.54749 -17.01138 0.04214 -15.9145195436 -17.01138 -17.01138 +11310 32.90272 17.54003 -17.00264 0.04218 -15.9062644516 -17.00264 -17.00264 +11315 32.88765 17.53258 -16.9939 0.04222 -15.898008931 -16.9939 -16.9939 +11320 32.87259 17.52513 -16.98518 0.04226 -15.8897729824 -16.98518 -16.98518 +11325 32.85755 17.5177 -16.97646 0.04230 -15.8815366064 -16.97646 -16.97646 +11330 32.84253 17.51027 -16.96776 0.04234 -15.8733198035 -16.96776 -16.96776 +11335 32.82751 17.50284 -16.95906 0.04238 -15.8651025743 -16.95906 -16.95906 +11340 32.81251 17.49543 -16.95036 0.04242 -15.8568849195 -16.95036 -16.95036 +11345 32.79753 17.48802 -16.94168 0.04245 -15.8486868394 -16.94168 -16.94168 +11350 32.78256 17.48061 -16.933 0.04249 -15.8404883348 -16.933 -16.933 +11355 32.7676 17.47322 -16.92433 0.04253 -15.8322994061 -16.92433 -16.92433 +11360 32.75265 17.46583 -16.91567 0.04257 -15.8241200539 -16.91567 -16.91567 +11365 32.73772 17.45844 -16.90701 0.04261 -15.8159402789 -16.90701 -16.90701 +11370 32.72281 17.45107 -16.89836 0.04265 -15.8077700814 -16.89836 -16.89836 +11375 32.7079 17.4437 -16.88972 0.04269 -15.7996094622 -16.88972 -16.88972 +11380 32.69302 17.43634 -16.88109 0.04273 -15.7914584217 -16.88109 -16.88109 +11385 32.67814 17.42898 -16.87247 0.04277 -15.7833169605 -16.87247 -16.87247 +11390 32.66328 17.42163 -16.86385 0.04281 -15.7751750792 -16.86385 -16.86385 +11395 32.64843 17.41429 -16.85524 0.04285 -15.7670427782 -16.85524 -16.85524 +11400 32.6336 17.40695 -16.84664 0.04289 -15.7589200583 -16.84664 -16.84664 +11405 32.61877 17.39963 -16.83805 0.04292 -15.7508069199 -16.83805 -16.83805 +11410 32.60397 17.3923 -16.82946 0.04296 -15.7426933635 -16.82946 -16.82946 +11415 32.58917 17.38499 -16.82088 0.04300 -15.7345893897 -16.82088 -16.82088 +11420 32.57439 17.37768 -16.81231 0.04304 -15.7264949991 -16.81231 -16.81231 +11425 32.55962 17.37038 -16.80375 0.04308 -15.7184101923 -16.80375 -16.80375 +11430 32.54487 17.36308 -16.79519 0.04312 -15.7103249696 -16.79519 -16.79519 +11435 32.53013 17.35579 -16.78664 0.04316 -15.7022493318 -16.78664 -16.78664 +11440 32.5154 17.34851 -16.7781 0.04320 -15.6941832794 -16.7781 -16.7781 +11445 32.50069 17.34124 -16.76957 0.04324 -15.6861268128 -16.76957 -16.76957 +11450 32.48599 17.33397 -16.76104 0.04328 -15.6780699326 -16.76104 -16.76104 +11455 32.4713 17.32671 -16.75252 0.04332 -15.6700226394 -16.75252 -16.75252 +11460 32.45663 17.31945 -16.74401 0.04336 -15.6619849338 -16.74401 -16.74401 +11465 32.44197 17.3122 -16.7355 0.04340 -15.6539468162 -16.7355 -16.7355 +11470 32.42733 17.30496 -16.72701 0.04344 -15.6459282872 -16.72701 -16.72701 +11475 32.41269 17.29772 -16.71852 0.04348 -15.6379093473 -16.71852 -16.71852 +11480 32.39807 17.29049 -16.71004 0.04352 -15.6298999971 -16.71004 -16.71004 +11485 32.38347 17.28327 -16.70156 0.04356 -15.6218902371 -16.70156 -16.70156 +11490 32.36887 17.27605 -16.6931 0.04359 -15.6139000678 -16.6931 -16.6931 +11495 32.35429 17.26884 -16.68464 0.04363 -15.6059094898 -16.68464 -16.68464 +11500 32.33973 17.26164 -16.67618 0.04367 -15.5979185036 -16.67618 -16.67618 +11505 32.32517 17.25444 -16.66774 0.04371 -15.5899471098 -16.66774 -16.66774 +11510 32.31063 17.24725 -16.6593 0.04375 -15.5819753088 -16.6593 -16.6593 +11515 32.2961 17.24007 -16.65087 0.04379 -15.5740131012 -16.65087 -16.65087 +11520 32.28159 17.23289 -16.64245 0.04383 -15.5660604876 -16.64245 -16.64245 +11525 32.26709 17.22572 -16.63403 0.04387 -15.5581074684 -16.63403 -16.63403 +11530 32.2526 17.21856 -16.62562 0.04391 -15.5501640441 -16.62562 -16.62562 +11535 32.23813 17.2114 -16.61722 0.04395 -15.5422302155 -16.61722 -16.61722 +11540 32.22366 17.20425 -16.60883 0.04399 -15.5343059828 -16.60883 -16.60883 +11545 32.20922 17.19711 -16.60044 0.04403 -15.5263813467 -16.60044 -16.60044 +11550 32.19478 17.18997 -16.59207 0.04407 -15.5184763077 -16.59207 -16.59207 +11555 32.18036 17.18284 -16.58369 0.04411 -15.5105608663 -16.58369 -16.58369 +11560 32.16595 17.17571 -16.57533 0.04415 -15.502665023 -16.57533 -16.57533 +11565 32.15155 17.16859 -16.56697 0.04419 -15.4947687784 -16.56697 -16.56697 +11570 32.13717 17.16148 -16.55862 0.04423 -15.486882133 -16.55862 -16.55862 +11575 32.1228 17.15437 -16.55028 0.04427 -15.4790050872 -16.55028 -16.55028 +11580 32.10844 17.14727 -16.54194 0.04431 -15.4711276417 -16.54194 -16.54194 +11585 32.09409 17.14018 -16.53362 0.04435 -15.4632697969 -16.53362 -16.53362 +11590 32.07976 17.13309 -16.52529 0.04439 -15.4554015533 -16.52529 -16.52529 +11595 32.06544 17.12601 -16.51698 0.04443 -15.4475529115 -16.51698 -16.51698 +11600 32.05114 17.11894 -16.50867 0.04447 -15.439703872 -16.50867 -16.50867 +11605 32.03684 17.11187 -16.50037 0.04451 -15.4318644353 -16.50037 -16.50037 +11610 32.02256 17.10481 -16.49208 0.04455 -15.4240346019 -16.49208 -16.49208 +11615 32.0083 17.09775 -16.4838 0.04459 -15.4162143722 -16.4838 -16.4838 +11620 31.99404 17.0907 -16.47552 0.04463 -15.408393747 -16.47552 -16.47552 +11625 31.9798 17.08366 -16.46725 0.04467 -15.4005827265 -16.46725 -16.46725 +11630 31.96557 17.07662 -16.45898 0.04471 -15.3927713114 -16.45898 -16.45898 +11635 31.95135 17.06959 -16.45073 0.04475 -15.3849795022 -16.45073 -16.45073 +11640 31.93715 17.06257 -16.44248 0.04479 -15.3771872993 -16.44248 -16.44248 +11645 31.92296 17.05555 -16.43424 0.04483 -15.3694047033 -16.43424 -16.43424 +11650 31.90878 17.04854 -16.426 0.04487 -15.3616217147 -16.426 -16.426 +11655 31.89461 17.04154 -16.41777 0.04491 -15.3538483339 -16.41777 -16.41777 +11660 31.88046 17.03454 -16.40955 0.04495 -15.3460845616 -16.40955 -16.40955 +11665 31.86632 17.02755 -16.40134 0.04499 -15.3383303981 -16.40134 -16.40134 +11670 31.85219 17.02056 -16.39313 0.04503 -15.3305758441 -16.39313 -16.39313 +11675 31.83808 17.01358 -16.38493 0.04507 -15.3228308999 -16.38493 -16.38493 +11680 31.82397 17.00661 -16.37674 0.04511 -15.3150955661 -16.37674 -16.37674 +11685 31.80988 16.99964 -16.36855 0.04515 -15.3073598432 -16.36855 -16.36855 +11690 31.79581 16.99268 -16.36037 0.04519 -15.2996337317 -16.36037 -16.36037 +11695 31.78174 16.98572 -16.3522 0.04523 -15.2919172321 -16.3522 -16.3522 +11700 31.76769 16.97877 -16.34404 0.04527 -15.284210345 -16.34404 -16.34404 +11705 31.75365 16.97183 -16.33588 0.04531 -15.2765030706 -16.33588 -16.33588 +11710 31.73962 16.96489 -16.32773 0.04535 -15.2688054097 -16.32773 -16.32773 +11715 31.7256 16.95796 -16.31958 0.04539 -15.2611073627 -16.31958 -16.31958 +11720 31.7116 16.95104 -16.31145 0.04543 -15.25342893 -16.31145 -16.31145 +11725 31.69761 16.94412 -16.30332 0.04547 -15.2457501122 -16.30332 -16.30332 +11730 31.68363 16.93721 -16.29519 0.04551 -15.2380709098 -16.29519 -16.29519 +11735 31.66967 16.9303 -16.28708 0.04555 -15.2304113232 -16.28708 -16.28708 +11740 31.65571 16.9234 -16.27897 0.04559 -15.2227513529 -16.27897 -16.27897 +11745 31.64177 16.91651 -16.27087 0.04563 -15.2151009995 -16.27087 -16.27087 +11750 31.62785 16.90962 -16.26277 0.04568 -15.2074502634 -16.26277 -16.26277 +11755 31.61393 16.90274 -16.25468 0.04572 -15.1998091451 -16.25468 -16.25468 +11760 31.60003 16.89586 -16.2466 0.04576 -15.1921776451 -16.2466 -16.2466 +11765 31.58613 16.88899 -16.23853 0.04580 -15.1845557639 -16.23853 -16.23853 +11770 31.57226 16.88213 -16.23046 0.04584 -15.176933502 -16.23046 -16.23046 +11775 31.55839 16.87527 -16.2224 0.04588 -15.1693208598 -16.2224 -16.2224 +11780 31.54453 16.86842 -16.21434 0.04592 -15.1617078379 -16.21434 -16.21434 +11785 31.53069 16.86158 -16.2063 0.04596 -15.1541144367 -16.2063 -16.2063 +11790 31.51686 16.85474 -16.19826 0.04600 -15.1465206566 -16.19826 -16.19826 +11795 31.50304 16.8479 -16.19022 0.04604 -15.1389264983 -16.19022 -16.19022 +11800 31.48924 16.84108 -16.1822 0.04608 -15.1313519622 -16.1822 -16.1822 +11805 31.47544 16.83426 -16.17418 0.04612 -15.1237770486 -16.17418 -16.17418 +11810 31.46166 16.82744 -16.16616 0.04616 -15.1162017583 -16.16616 -16.16616 +11815 31.44789 16.82063 -16.15816 0.04620 -15.1086460915 -16.15816 -16.15816 +11820 31.43414 16.81383 -16.15016 0.04624 -15.1010900488 -16.15016 -16.15016 +11825 31.42039 16.80703 -16.14217 0.04628 -15.0935436306 -16.14217 -16.14217 +11830 31.40666 16.80024 -16.13418 0.04632 -15.0859968375 -16.13418 -16.13418 +11835 31.39294 16.79346 -16.1262 0.04637 -15.07845967 -16.1262 -16.1262 +11840 31.37923 16.78668 -16.11823 0.04641 -15.0709321283 -16.11823 -16.11823 +11845 31.36553 16.7799 -16.11026 0.04645 -15.0634042132 -16.11026 -16.11026 +11850 31.35185 16.77314 -16.1023 0.04649 -15.055885925 -16.1023 -16.1023 +11855 31.33817 16.76637 -16.09435 0.04653 -15.0483772642 -16.09435 -16.09435 +11860 31.32451 16.75962 -16.08641 0.04657 -15.0408782312 -16.08641 -16.08641 +11865 31.31086 16.75287 -16.07847 0.04661 -15.0333788267 -16.07847 -16.07847 +11870 31.29723 16.74613 -16.07054 0.04665 -15.0258890509 -16.07054 -16.07054 +11875 31.2836 16.73939 -16.06261 0.04669 -15.0183989044 -16.06261 -16.06261 +11880 31.26999 16.73266 -16.05469 0.04673 -15.0109183877 -16.05469 -16.05469 +11885 31.25639 16.72593 -16.04678 0.04677 -15.0034475011 -16.04678 -16.04678 +11890 31.2428 16.71921 -16.03888 0.04682 -14.9959862453 -16.03888 -16.03888 +11895 31.22922 16.7125 -16.03098 0.04686 -14.9885246206 -16.03098 -16.03098 +11900 31.21565 16.70579 -16.02308 0.04690 -14.9810626276 -16.02308 -16.02308 +11905 31.2021 16.69908 -16.0152 0.04694 -14.9736202666 -16.0152 -16.0152 +11910 31.18856 16.69239 -16.00732 0.04698 -14.9661775381 -16.00732 -16.00732 +11915 31.17503 16.6857 -15.99945 0.04702 -14.9587444427 -15.99945 -15.99945 +11920 31.16151 16.67901 -15.99158 0.04706 -14.9513109808 -15.99158 -15.99158 +11925 31.148 16.67233 -15.98372 0.04710 -14.9438871527 -15.98372 -15.98372 +11930 31.13451 16.66566 -15.97587 0.04714 -14.9364729591 -15.97587 -15.97587 +11935 31.12103 16.65899 -15.96803 0.04718 -14.9290684003 -15.96803 -15.96803 +11940 31.10756 16.65233 -15.96019 0.04723 -14.9216634768 -15.96019 -15.96019 +11945 31.0941 16.64567 -15.95236 0.04727 -14.9142681891 -15.95236 -15.95236 +11950 31.08065 16.63902 -15.94453 0.04731 -14.9068725376 -15.94453 -15.94453 +11955 31.06721 16.63238 -15.93671 0.04735 -14.8994865228 -15.93671 -15.93671 +11960 31.05379 16.62574 -15.9289 0.04739 -14.8921101451 -15.9289 -15.9289 +11965 31.04037 16.61911 -15.92109 0.04743 -14.884733405 -15.92109 -15.92109 +11970 31.02697 16.61248 -15.91329 0.04747 -14.877366303 -15.91329 -15.91329 +11975 31.01358 16.60586 -15.9055 0.04751 -14.8700088394 -15.9055 -15.9055 +11980 31.00021 16.59924 -15.89771 0.04755 -14.8626510148 -15.89771 -15.89771 +11985 30.98684 16.59263 -15.88993 0.04760 -14.8553028296 -15.88993 -15.88993 +11990 30.97349 16.58603 -15.88216 0.04764 -14.8479642843 -15.88216 -15.88216 +11995 30.96014 16.57943 -15.87439 0.04768 -14.8406253793 -15.87439 -15.87439 +12000 30.94681 16.57284 -15.86663 0.04772 -14.833296115 -15.86663 -15.86663 +12005 30.93349 16.56625 -15.85888 0.04776 -14.8259764919 -15.85888 -15.85888 +12010 30.92018 16.55967 -15.85113 0.0478 -14.8186565105 -15.85113 -15.85113 +12015 30.90689 16.55309 -15.84339 0.04784 -14.8113461711 -15.84339 -15.84339 +12020 30.8936 16.54652 -15.83565 0.04789 -14.8040354744 -15.83565 -15.83565 +12025 30.88033 16.53996 -15.82793 0.04793 -14.7967444206 -15.82793 -15.82793 +12030 30.86706 16.5334 -15.8202 0.04797 -14.7894430102 -15.8202 -15.8202 +12035 30.85381 16.52685 -15.81249 0.04801 -14.7821612437 -15.81249 -15.81249 +12040 30.84057 16.5203 -15.80478 0.04805 -14.7748791216 -15.80478 -15.80478 +12045 30.82734 16.51376 -15.79708 0.04809 -14.7676066442 -15.79708 -15.79708 +12050 30.81413 16.50722 -15.78938 0.04813 -14.760333812 -15.78938 -15.78938 +12055 30.80092 16.50069 -15.78169 0.04818 -14.7530706255 -15.78169 -15.78169 +12060 30.78773 16.49417 -15.77401 0.04822 -14.745817085 -15.77401 -15.77401 +12065 30.77454 16.48765 -15.76633 0.04826 -14.7385631911 -15.76633 -15.76633 +12070 30.76137 16.48113 -15.75866 0.0483 -14.7313189442 -15.75866 -15.75866 +12075 30.74821 16.47463 -15.751 0.04834 -14.7240843447 -15.751 -15.751 +12080 30.73506 16.46812 -15.74334 0.04838 -14.716849393 -15.74334 -15.74334 +12085 30.72193 16.46163 -15.73569 0.04842 -14.7096240896 -15.73569 -15.73569 +12090 30.7088 16.45514 -15.72804 0.04847 -14.7023984349 -15.72804 -15.72804 +12095 30.69569 16.44865 -15.7204 0.04851 -14.6951824294 -15.7204 -15.7204 +12100 30.68258 16.44217 -15.71277 0.04855 -14.6879760735 -15.71277 -15.71277 +12105 30.66949 16.4357 -15.70515 0.04859 -14.6807793675 -15.70515 -15.70515 +12110 30.65641 16.42923 -15.69753 0.04863 -14.6735823121 -15.69753 -15.69753 +12115 30.64334 16.42276 -15.68991 0.04867 -14.6663849075 -15.68991 -15.68991 +12120 30.63028 16.41631 -15.68231 0.04872 -14.6592071543 -15.68231 -15.68231 +12125 30.61723 16.40985 -15.6747 0.04876 -14.6520190528 -15.6747 -15.6747 +12130 30.6042 16.40341 -15.66711 0.0488 -14.6448506035 -15.66711 -15.66711 +12135 30.59117 16.39696 -15.65952 0.04884 -14.6376818069 -15.65952 -15.65952 +12140 30.57816 16.39053 -15.65194 0.04888 -14.6305226632 -15.65194 -15.65194 +12145 30.56515 16.3841 -15.64436 0.04893 -14.6233631731 -15.64436 -15.64436 +12150 30.55216 16.37767 -15.63679 0.04897 -14.6162133368 -15.63679 -15.63679 +12155 30.53918 16.37125 -15.62923 0.04901 -14.6090731549 -15.62923 -15.62923 +12160 30.52621 16.36484 -15.62167 0.04905 -14.6019326277 -15.62167 -15.62167 +12165 30.51325 16.35843 -15.61412 0.04909 -14.5948017557 -15.61412 -15.61412 +12170 30.5003 16.35203 -15.60658 0.04913 -14.5876805393 -15.60658 -15.60658 +12175 30.48737 16.34563 -15.59904 0.04918 -14.580558979 -15.59904 -15.59904 +12180 30.47444 16.33924 -15.59151 0.04922 -14.573447075 -15.59151 -15.59151 +12185 30.46153 16.33285 -15.58398 0.04926 -14.566334828 -15.58398 -15.58398 +12190 30.44862 16.32647 -15.57646 0.0493 -14.5592322383 -15.57646 -15.57646 +12195 30.43573 16.32009 -15.56895 0.04934 -14.5521393063 -15.56895 -15.56895 +12200 30.42285 16.31372 -15.56144 0.04939 -14.5450460324 -15.56144 -15.56144 +12205 30.40998 16.30736 -15.55394 0.04943 -14.5379624171 -15.55394 -15.55394 +12210 30.39712 16.301 -15.54645 0.04947 -14.5308884607 -15.54645 -15.54645 +12215 30.38427 16.29464 -15.53896 0.04951 -14.5238141638 -15.53896 -15.53896 +12220 30.37143 16.2883 -15.53147 0.04955 -14.5167395267 -15.53147 -15.53147 +12225 30.35861 16.28195 -15.524 0.0496 -14.5096845498 -15.524 -15.524 +12230 30.34579 16.27561 -15.51653 0.04964 -14.5026292336 -15.51653 -15.51653 +12235 30.33298 16.26928 -15.50906 0.04968 -14.4955735784 -15.50906 -15.50906 +12240 30.32019 16.26295 -15.5016 0.04972 -14.4885275847 -15.5016 -15.5016 +12245 30.30741 16.25663 -15.49415 0.04977 -14.4814912529 -15.49415 -15.49415 +12250 30.29463 16.25032 -15.48671 0.04981 -14.4744645834 -15.48671 -15.48671 +12255 30.28187 16.244 -15.47927 0.04985 -14.4674375767 -15.47927 -15.47927 +12260 30.26912 16.2377 -15.47183 0.04989 -14.4604102331 -15.47183 -15.47183 +12265 30.25638 16.2314 -15.4644 0.04993 -14.453392553 -15.4644 -15.4644 +12270 30.24365 16.2251 -15.45698 0.04998 -14.4463845369 -15.45698 -15.45698 +12275 30.23093 16.21881 -15.44957 0.05002 -14.4393861852 -15.44957 -15.44957 +12280 30.21822 16.21253 -15.44216 0.05006 -14.4323874982 -15.44216 -15.44216 +12285 30.20553 16.20625 -15.43475 0.0501 -14.4253884765 -15.43475 -15.43475 +12290 30.19284 16.19997 -15.42736 0.05015 -14.4184091203 -15.42736 -15.42736 +12295 30.18016 16.19371 -15.41996 0.05019 -14.4114194301 -15.41996 -15.41996 +12300 30.1675 16.18744 -15.41258 0.05023 -14.4044494064 -15.41258 -15.41258 +12305 30.15484 16.18118 -15.4052 0.05027 -14.3974790495 -15.4052 -15.4052 +12310 30.1422 16.17493 -15.39783 0.05031 -14.3905183598 -15.39783 -15.39783 +12315 30.12957 16.16868 -15.39046 0.05036 -14.3835573377 -15.39046 -15.39046 +12320 30.11694 16.16244 -15.3831 0.0504 -14.3766059837 -15.3831 -15.3831 +12325 30.10433 16.1562 -15.37574 0.05044 -14.3696542981 -15.37574 -15.37574 +12330 30.09173 16.14997 -15.36839 0.05048 -14.3627122814 -15.36839 -15.36839 +12335 30.07914 16.14374 -15.36105 0.05053 -14.3557799339 -15.36105 -15.36105 +12340 30.06656 16.13752 -15.35371 0.05057 -14.348847256 -15.35371 -15.35371 +12345 30.05399 16.13131 -15.34638 0.05061 -14.3419242482 -15.34638 -15.34638 +12350 30.04143 16.1251 -15.33905 0.05065 -14.3350009109 -15.33905 -15.33905 +12355 30.02888 16.11889 -15.33173 0.0507 -14.3280872444 -15.33173 -15.33173 +12360 30.01634 16.11269 -15.32442 0.05074 -14.3211832492 -15.32442 -15.32442 +12365 30.00382 16.10649 -15.31711 0.05078 -14.3142789256 -15.31711 -15.31711 +12370 29.9913 16.1003 -15.30981 0.05082 -14.307384274 -15.30981 -15.30981 +12375 29.97879 16.09412 -15.30251 0.05087 -14.3004892949 -15.30251 -15.30251 +12380 29.9663 16.08794 -15.29522 0.05091 -14.2936039887 -15.29522 -15.29522 +12385 29.95381 16.08176 -15.28794 0.05095 -14.2867283557 -15.28794 -15.28794 +12390 29.94133 16.07559 -15.28066 0.05099 -14.2798523963 -15.28066 -15.28066 +12395 29.92887 16.06943 -15.27339 0.05104 -14.2729861109 -15.27339 -15.27339 +12400 29.91641 16.06327 -15.26612 0.05108 -14.2661195 -15.26612 -15.26612 +12405 29.90397 16.05712 -15.25886 0.05112 -14.2592625639 -15.25886 -15.25886 +12410 29.89154 16.05097 -15.25161 0.05117 -14.252415303 -15.25161 -15.25161 +12415 29.87911 16.04482 -15.24436 0.05121 -14.2455677177 -15.24436 -15.24436 +12420 29.8667 16.03868 -15.23711 0.05125 -14.2387198084 -15.23711 -15.23711 +12425 29.8543 16.03255 -15.22988 0.05129 -14.2318915754 -15.22988 -15.22988 +12430 29.84191 16.02642 -15.22265 0.05134 -14.2250630193 -15.22265 -15.22265 +12435 29.82952 16.0203 -15.21542 0.05138 -14.2182341403 -15.21542 -15.21542 +12440 29.81715 16.01418 -15.2082 0.05142 -14.2114149389 -15.2082 -15.2082 +12445 29.80479 16.00807 -15.20099 0.05147 -14.2046054154 -15.20099 -15.20099 +12450 29.79244 16.00196 -15.19378 0.05151 -14.1977955703 -15.19378 -15.19378 +12455 29.7801 15.99586 -15.18658 0.05155 -14.1909954038 -15.18658 -15.18658 +12460 29.76777 15.98976 -15.17938 0.05159 -14.1841949165 -15.17938 -15.17938 +12465 29.75545 15.98366 -15.17219 0.05164 -14.1774041087 -15.17219 -15.17219 +12470 29.74314 15.97758 -15.165 0.05168 -14.1706129807 -15.165 -15.165 +12475 29.73084 15.97149 -15.15783 0.05172 -14.163841533 -15.15783 -15.15783 +12480 29.71855 15.96542 -15.15065 0.05177 -14.157059766 -15.15065 -15.15065 +12485 29.70627 15.95934 -15.14348 0.05181 -14.1502876799 -15.14348 -15.14348 +12490 29.694 15.95328 -15.13632 0.05185 -14.1435252753 -15.13632 -15.13632 +12495 29.68174 15.94721 -15.12917 0.05189 -14.1367725525 -15.12917 -15.12917 +12500 29.66949 15.94115 -15.12202 0.05194 -14.1300195119 -15.12202 -15.12202 +12505 29.65726 15.9351 -15.11487 0.05198 -14.1232661538 -15.11487 -15.11487 +12510 29.64503 15.92905 -15.10773 0.05202 -14.1165224787 -15.10773 -15.10773 +12515 29.63281 15.92301 -15.1006 0.05207 -14.1097884869 -15.1006 -15.1006 +12520 29.6206 15.91697 -15.09347 0.05211 -14.1030541788 -15.09347 -15.09347 +12525 29.6084 15.91094 -15.08635 0.05215 -14.0963295547 -15.08635 -15.08635 +12530 29.59621 15.90491 -15.07923 0.0522 -14.0896046152 -15.07923 -15.07923 +12535 29.58404 15.89889 -15.07212 0.05224 -14.0828893604 -15.07212 -15.07212 +12540 29.57187 15.89287 -15.06502 0.05228 -14.0761837909 -15.06502 -15.06502 +12545 29.55971 15.88686 -15.05792 0.05233 -14.0694779069 -15.05792 -15.05792 +12550 29.54756 15.88085 -15.05083 0.05237 -14.0627817089 -15.05083 -15.05083 +12555 29.53542 15.87485 -15.04374 0.05241 -14.0560851973 -15.04374 -15.04374 +12560 29.5233 15.86885 -15.03666 0.05246 -14.0493983724 -15.03666 -15.03666 +12565 29.51118 15.86286 -15.02958 0.0525 -14.0427112345 -15.02958 -15.02958 +12570 29.49907 15.85687 -15.02251 0.05254 -14.0360337841 -15.02251 -15.02251 +12575 29.48697 15.85089 -15.01544 0.05259 -14.0293560216 -15.01544 -15.01544 +12580 29.47488 15.84491 -15.00838 0.05263 -14.0226879472 -15.00838 -15.00838 +12585 29.46281 15.83894 -15.00133 0.05267 -14.0160295615 -15.00133 -15.00133 +12590 29.45074 15.83297 -14.99428 0.05272 -14.0093708646 -14.99428 -14.99428 +12595 29.43868 15.827 -14.98724 0.05276 -14.0027218571 -14.98724 -14.98724 +12600 29.42663 15.82104 -14.9802 0.0528 -13.9960725393 -14.9802 -14.9802 +12605 29.41459 15.81509 -14.97317 0.05285 -13.9894329115 -14.97317 -14.97317 +12610 29.40256 15.80914 -14.96615 0.05289 -13.9828029742 -14.96615 -14.96615 +12615 29.39055 15.8032 -14.95912 0.05293 -13.9761627277 -14.95912 -14.95912 +12620 29.37854 15.79726 -14.95211 0.05298 -13.9695421723 -14.95211 -14.95211 +12625 29.36654 15.79132 -14.9451 0.05302 -13.9629213084 -14.9451 -14.9451 +12630 29.35455 15.7854 -14.9381 0.05306 -13.9563101365 -14.9381 -14.9381 +12635 29.34257 15.77947 -14.9311 0.05311 -13.9496986568 -14.9311 -14.9311 +12640 29.3306 15.77355 -14.92411 0.05315 -13.9430968697 -14.92411 -14.92411 +12645 29.31864 15.76764 -14.91712 0.05319 -13.9364947756 -14.91712 -14.91712 +12650 29.30669 15.76173 -14.91014 0.05324 -13.9299023749 -14.91014 -14.91014 +12655 29.29475 15.75582 -14.90316 0.05328 -13.9233096679 -14.90316 -14.90316 +12660 29.28282 15.74992 -14.89619 0.05332 -13.916726655 -14.89619 -14.89619 +12665 29.2709 15.74403 -14.88923 0.05337 -13.9101533365 -14.88923 -14.88923 +12670 29.25899 15.73813 -14.88227 0.05341 -13.9035797128 -14.88227 -14.88227 +12675 29.24709 15.73225 -14.87531 0.05345 -13.8970057843 -14.87531 -14.87531 +12680 29.2352 15.72637 -14.86837 0.0535 -13.8904515513 -14.86837 -14.86837 +12685 29.22331 15.72049 -14.86142 0.05354 -13.8838870142 -14.86142 -14.86142 +12690 29.21144 15.71462 -14.85449 0.05359 -13.8773421734 -14.85449 -14.85449 +12695 29.19958 15.70875 -14.84755 0.05363 -13.8707870291 -14.84755 -14.84755 +12700 29.18773 15.70289 -14.84063 0.05367 -13.8642515818 -14.84063 -14.84063 +12705 29.17588 15.69703 -14.83371 0.05372 -13.8577158319 -14.83371 -14.83371 +12710 29.16405 15.69118 -14.82679 0.05376 -13.8511797796 -14.82679 -14.82679 +12715 29.15223 15.68533 -14.81988 0.0538 -13.8446534254 -14.81988 -14.81988 +12720 29.14041 15.67949 -14.81298 0.05385 -13.8381367695 -14.81298 -14.81298 +12725 29.12861 15.67365 -14.80608 0.05389 -13.8316198124 -14.80608 -14.80608 +12730 29.11681 15.66782 -14.79918 0.05394 -13.8251025544 -14.79918 -14.79918 +12735 29.10503 15.66199 -14.7923 0.05398 -13.8186049958 -14.7923 -14.7923 +12740 29.09325 15.65617 -14.78541 0.05402 -13.8120971371 -14.78541 -14.78541 +12745 29.08149 15.65035 -14.77854 0.05407 -13.8056089785 -14.77854 -14.77854 +12750 29.06973 15.64453 -14.77166 0.05411 -13.7991105204 -14.77166 -14.77166 +12755 29.05798 15.63872 -14.7648 0.05415 -13.7926317633 -14.7648 -14.7648 +12760 29.04624 15.63292 -14.75794 0.0542 -13.7861527073 -14.75794 -14.75794 +12765 29.03452 15.62712 -14.75108 0.05424 -13.7796733529 -14.75108 -14.75108 +12770 29.0228 15.62132 -14.74423 0.05429 -13.7732037004 -14.74423 -14.74423 +12775 29.01109 15.61553 -14.73739 0.05433 -13.7667437502 -14.73739 -14.73739 +12780 28.99939 15.60974 -14.73055 0.05437 -13.7602835026 -14.73055 -14.73055 +12785 28.9877 15.60396 -14.72371 0.05442 -13.753822958 -14.72371 -14.72371 +12790 28.97602 15.59818 -14.71688 0.05446 -13.7473721167 -14.71688 -14.71688 +12795 28.96434 15.59241 -14.71006 0.05451 -13.740930979 -14.71006 -14.71006 +12800 28.95268 15.58664 -14.70324 0.05455 -13.7344895454 -14.70324 -14.70324 +12805 28.94103 15.58088 -14.69643 0.05459 -13.7280578162 -14.69643 -14.69643 +12810 28.92939 15.57512 -14.68962 0.05464 -13.7216257916 -14.68962 -14.68962 +12815 28.91775 15.56937 -14.68282 0.05468 -13.7152034721 -14.68282 -14.68282 +12820 28.90613 15.56362 -14.67602 0.05473 -13.708780858 -14.67602 -14.67602 +12825 28.89451 15.55788 -14.66923 0.05477 -13.7023679496 -14.66923 -14.66923 +12830 28.88291 15.55214 -14.66244 0.05482 -13.6959547474 -14.66244 -14.66244 +12835 28.87131 15.5464 -14.65566 0.05486 -13.6895512515 -14.65566 -14.65566 +12840 28.85972 15.54067 -14.64889 0.0549 -13.6831574624 -14.64889 -14.64889 +12845 28.84815 15.53494 -14.64212 0.05495 -13.6767633805 -14.64212 -14.64212 +12850 28.83658 15.52922 -14.63535 0.05499 -13.670369006 -14.63535 -14.63535 +12855 28.82502 15.52351 -14.62859 0.05504 -13.6639843393 -14.62859 -14.62859 +12860 28.81347 15.51779 -14.62184 0.05508 -13.6576093807 -14.62184 -14.62184 +12865 28.80193 15.51209 -14.61509 0.05512 -13.6512341306 -14.61509 -14.61509 +12870 28.7904 15.50638 -14.60834 0.05517 -13.6448585893 -14.60834 -14.60834 +12875 28.77888 15.50068 -14.6016 0.05521 -13.6384927572 -14.6016 -14.6016 +12880 28.76736 15.49499 -14.59487 0.05526 -13.6321366346 -14.59487 -14.59487 +12885 28.75586 15.4893 -14.58814 0.0553 -13.6257802218 -14.58814 -14.58814 +12890 28.74437 15.48362 -14.58142 0.05535 -13.6194335192 -14.58142 -14.58142 +12895 28.73288 15.47794 -14.5747 0.05539 -13.6130865271 -14.5747 -14.5747 +12900 28.72141 15.47226 -14.56799 0.05544 -13.6067492458 -14.56799 -14.56799 +12905 28.70994 15.46659 -14.56128 0.05548 -13.6004116758 -14.56128 -14.56128 +12910 28.69848 15.46092 -14.55458 0.05552 -13.5940838172 -14.55458 -14.55458 +12915 28.68703 15.45526 -14.54788 0.05557 -13.5877556705 -14.54788 -14.54788 +12920 28.67559 15.4496 -14.54119 0.05561 -13.581437236 -14.54119 -14.54119 +12925 28.66416 15.44395 -14.5345 0.05566 -13.575118514 -14.5345 -14.5345 +12930 28.65274 15.4383 -14.52782 0.0557 -13.5688095049 -14.52782 -14.52782 +12935 28.64133 15.43266 -14.52114 0.05575 -13.5625002089 -14.52114 -14.52114 +12940 28.62993 15.42702 -14.51447 0.05579 -13.5562006265 -14.51447 -14.51447 +12945 28.61853 15.42138 -14.50781 0.05584 -13.5499107579 -14.50781 -14.50781 +12950 28.60715 15.41575 -14.50115 0.05588 -13.5436206035 -14.50115 -14.50115 +12955 28.59577 15.41013 -14.49449 0.05592 -13.5373301636 -14.49449 -14.49449 +12960 28.58441 15.4045 -14.48784 0.05597 -13.5310494386 -14.48784 -14.48784 +12965 28.57305 15.39889 -14.4812 0.05601 -13.5247784287 -14.4812 -14.4812 +12970 28.5617 15.39327 -14.47456 0.05606 -13.5185071344 -14.47456 -14.47456 +12975 28.55036 15.38767 -14.46792 0.0561 -13.5122355559 -14.46792 -14.46792 +12980 28.53903 15.38206 -14.46129 0.05615 -13.5059736935 -14.46129 -14.46129 +12985 28.52771 15.37646 -14.45467 0.05619 -13.4997215476 -14.45467 -14.45467 +12990 28.5164 15.37087 -14.44805 0.05624 -13.4934691186 -14.44805 -14.44805 +12995 28.5051 15.36528 -14.44143 0.05628 -13.4872164067 -14.44143 -14.44143 +13000 28.4938 15.35969 -14.43482 0.0563 -13.4809734122 -14.43482 -14.43482 diff --git a/lutSi220R200.txt b/lutSi220R200.txt new file mode 100644 index 0000000..30f4eb5 --- /dev/null +++ b/lutSi220R200.txt @@ -0,0 +1,1802 @@ +Energy CamArmRot CristBendRot CamPosX EvPerPix CamPosX_100nm CamPosX_150nm CamPosX_200nm +4000 107.35962 54.18817 -28.38127 0.00326 -28.38127 -28.38127 -26.8312681381 +4005 107.16439 54.09097 -28.32718 0.00327 -28.32718 -28.32718 -26.7791132262 +4010 106.97009 53.99425 -28.27335 0.00328 -28.27335 -28.27335 -26.7272134886 +4015 106.77671 53.89798 -28.21976 0.00330 -28.21976 -28.21976 -26.6755489434 +4020 106.58426 53.80216 -28.16642 0.00331 -28.16642 -28.16642 -26.6241296085 +4025 106.39272 53.7068 -28.11332 0.00333 -28.11332 -28.11332 -26.5729455017 +4030 106.20208 53.61189 -28.06045 0.00334 -28.06045 -28.06045 -26.5219866409 +4035 106.01234 53.51742 -28.00783 0.00336 -28.00783 -28.00783 -26.4712730436 +4040 105.82348 53.42339 -27.95544 0.00338 -27.95544 -27.95544 -26.4207847275 +4045 105.6355 53.32979 -27.90329 0.00339 -27.90329 -27.90329 -26.37053171 +4050 105.44839 53.23663 -27.85137 0.00341 -27.85137 -27.85137 -26.3205040086 +4055 105.26214 53.14389 -27.79968 0.00342 -27.79968 -27.79968 -26.2707016407 +4060 105.07675 53.05158 -27.74822 0.00344 -27.74822 -27.74822 -26.2211246233 +4065 104.8922 52.95969 -27.69698 0.00345 -27.69698 -27.69698 -26.1717629738 +4070 104.70849 52.86821 -27.64597 0.00347 -27.64597 -27.64597 -26.1226267091 +4075 104.52562 52.77715 -27.59518 0.00349 -27.59518 -27.59518 -26.0737058463 +4080 104.34357 52.68649 -27.54461 0.00350 -27.54461 -27.54461 -26.0250004023 +4085 104.16233 52.59624 -27.49427 0.00352 -27.49427 -27.49427 -25.9765203939 +4090 103.98191 52.5064 -27.44414 0.00353 -27.44414 -27.44414 -25.9282458378 +4095 103.80229 52.41695 -27.39422 0.00355 -27.39422 -27.39422 -25.8801767506 +4100 103.62347 52.3279 -27.34452 0.00356 -27.34452 -27.34452 -25.8323231491 +4105 103.44544 52.23924 -27.29504 0.00358 -27.29504 -27.29504 -25.7846850495 +4110 103.26819 52.15097 -27.24576 0.00360 -27.24576 -27.24576 -25.7372424685 +4115 103.09172 52.06308 -27.1967 0.00361 -27.1967 -27.1967 -25.6900154223 +4120 102.91601 51.97558 -27.14784 0.00363 -27.14784 -27.14784 -25.6429839271 +4125 102.74108 51.88845 -27.09918 0.00364 -27.09918 -27.09918 -25.5961479992 +4130 102.56689 51.8017 -27.05074 0.00366 -27.05074 -27.05074 -25.5495276547 +4135 102.39346 51.71533 -27.00249 0.00368 -27.00249 -25.0032921314 -25.5030929095 +4140 102.22078 51.62932 -26.95445 0.00369 -26.95445 -24.9576666312 -25.4568637796 +4145 102.04883 51.54368 -26.90661 0.00371 -26.90661 -24.9122353059 -25.4108302809 +4150 101.87762 51.4584 -26.85896 0.00372 -26.85896 -24.8669881765 -25.3649824291 +4155 101.70713 51.37349 -26.81151 0.00374 -26.81151 -24.821935264 -25.3193302401 +4160 101.53737 51.28893 -26.76426 0.00375 -26.76426 -24.7770765892 -25.2738737294 +4165 101.36832 51.20473 -26.7172 0.00377 -26.7172 -24.732402173 -25.2286029125 +4170 101.19998 51.12088 -26.67034 0.00379 -26.67034 -24.6879220358 -25.1835278051 +4175 101.03234 51.03738 -26.62366 0.00380 -26.62366 -24.6436161984 -25.1386284224 +4180 100.8654 50.95422 -26.57718 0.00382 -26.57718 -24.5995046811 -25.0939247799 +4185 100.69916 50.87141 -26.53088 0.00383 -26.53088 -24.5555675043 -25.0493968927 +4190 100.5336 50.78895 -26.48478 0.00385 -26.48478 -24.5118246883 -25.0050647762 +4195 100.36872 50.70682 -26.43885 0.00387 -26.43885 -24.4682462533 -24.9608984454 +4200 100.20452 50.62502 -26.39312 0.00388 -26.39312 -24.4248622192 -24.9169279154 +4205 100.041 50.54356 -26.34756 0.00390 -26.34756 -24.3816426061 -24.8731232011 +4210 99.87813 50.46243 -26.30219 0.00391 -26.30219 -24.3386074339 -24.8295043175 +4215 99.71593 50.38163 -26.257 0.00393 -26.257 -24.2957467223 -24.7860612794 +4220 99.55439 50.30116 -26.21199 0.00395 -26.21199 -24.253060491 -24.7427941015 +4225 99.3935 50.22101 -26.16715 0.00396 -26.16715 -24.2105387597 -24.6996927987 +4230 99.23325 50.14118 -26.1225 0.00398 -26.1225 -24.1682015477 -24.6567773854 +4235 99.07365 50.06167 -26.07801 0.00399 -26.07801 -24.1260188747 -24.6140178762 +4240 98.91468 49.98247 -26.03371 0.00401 -26.03371 -24.0840207598 -24.5714442857 +4245 98.75635 49.90359 -25.98957 0.00403 -25.98957 -24.0421772222 -24.5290266283 +4250 98.59864 49.82502 -25.94561 0.00404 -25.94561 -24.0005082812 -24.4867849183 +4255 98.44156 49.74676 -25.90182 0.00406 -25.90182 -23.9590039558 -24.44470917 +4260 98.28509 49.66881 -25.8582 0.00407 -25.8582 -23.9176642649 -24.4027993976 +4265 98.12924 49.59116 -25.81475 0.00409 -25.81475 -23.8764892274 -24.3610556152 +4270 97.97399 49.51381 -25.77146 0.00411 -25.77146 -23.8354688621 -24.3194678371 +4275 97.81935 49.43677 -25.72834 0.00412 -25.72834 -23.7946131877 -24.2780460771 +4280 97.66531 49.36002 -25.68539 0.00414 -25.68539 -23.7539222228 -24.2367903493 +4285 97.51187 49.28357 -25.6426 0.00415 -25.6426 -23.7133859859 -24.1956906674 +4290 97.35902 49.20741 -25.59998 0.00417 -25.59998 -23.6730144954 -24.1547570455 +4295 97.20676 49.13155 -25.55751 0.00419 -25.55751 -23.6327877698 -24.1139694971 +4300 97.05508 49.05597 -25.51521 0.00420 -25.51521 -23.5927258272 -24.0733480361 +4305 96.90398 48.98069 -25.47307 0.00422 -25.47307 -23.5528186858 -24.032882676 +4310 96.75345 48.90569 -25.43108 0.00423 -25.43108 -23.5130563637 -23.9925634304 +4315 96.6035 48.83097 -25.38926 0.00425 -25.38926 -23.473458879 -23.9524103128 +4320 96.45411 48.75653 -25.34759 0.00427 -25.34759 -23.4340062495 -23.9124033367 +4325 96.30529 48.68238 -25.30607 0.00428 -25.30607 -23.3946984931 -23.8725425155 +4330 96.15702 48.6085 -25.26471 0.00430 -25.26471 -23.3555456277 -23.8328378624 +4335 96.00931 48.5349 -25.22351 0.00431 -25.22351 -23.3165476707 -23.7932893907 +4340 95.86216 48.46157 -25.18245 0.00433 -25.18245 -23.2776846399 -23.7538771137 +4345 95.71555 48.38852 -25.14155 0.00435 -25.14155 -23.2389765527 -23.7146210444 +4350 95.56948 48.31573 -25.1008 0.00436 -25.1008 -23.2004134267 -23.675511196 +4355 95.42396 48.24322 -25.0602 0.00438 -25.0602 -23.161995279 -23.6365475814 +4360 95.27897 48.17097 -25.01975 0.00440 -25.01975 -23.1237221271 -23.5977302136 +4365 95.13452 48.09898 -24.97945 0.00441 -24.97945 -23.0855939882 -23.5590591055 +4370 94.99059 48.02726 -24.93929 0.00443 -24.93929 -23.0476008792 -23.52052427 +4375 94.84719 47.9558 -24.89928 0.00444 -24.89928 -23.0097528174 -23.4821357198 +4380 94.70432 47.88461 -24.85942 0.00446 -24.85942 -22.9720498196 -23.4438934677 +4385 94.56196 47.81366 -24.8197 0.00448 -24.8197 -22.9344819027 -23.4057875263 +4390 94.42012 47.74298 -24.78012 0.00449 -24.78012 -22.8970490835 -23.3678179081 +4395 94.27879 47.67255 -24.74069 0.00451 -24.74069 -22.8597613789 -23.3299946259 +4400 94.13797 47.60237 -24.7014 0.00453 -24.7014 -22.8226088053 -23.292307692 +4405 93.99766 47.53245 -24.66225 0.00454 -24.66225 -22.7855913794 -23.2547571189 +4410 93.85784 47.46277 -24.62323 0.00456 -24.62323 -22.7486991178 -23.217332919 +4415 93.71853 47.39334 -24.58436 0.00457 -24.58436 -22.7119520367 -23.1800551045 +4420 93.57971 47.32416 -24.54563 0.00459 -24.54563 -22.6753401527 -23.1429136879 +4425 93.44139 47.25522 -24.50703 0.00461 -24.50703 -22.638853482 -23.1058986812 +4430 93.30355 47.18653 -24.46857 0.00462 -24.46857 -22.6025020407 -23.0690200966 +4435 93.1662 47.11808 -24.43025 0.00464 -24.43025 -22.566285845 -23.0322779462 +4440 93.02934 47.04987 -24.39206 0.00466 -24.39206 -22.530194911 -22.9956622422 +4445 92.89295 46.98189 -24.354 0.00467 -24.354 -22.4942292547 -22.9591729964 +4450 92.75705 46.91416 -24.31608 0.00469 -24.31608 -22.458398892 -22.9228202208 +4455 92.62161 46.84666 -24.27829 0.00470 -24.27829 -22.4226938387 -22.8865939272 +4460 92.48665 46.77939 -24.24064 0.00472 -24.24064 -22.3871241106 -22.8505041277 +4465 92.35215 46.71236 -24.20311 0.00474 -24.20311 -22.3516697234 -22.8145308338 +4470 92.21812 46.64556 -24.16572 0.00475 -24.16572 -22.3163506928 -22.7786940573 +4475 92.08456 46.57899 -24.12845 0.00477 -24.12845 -22.2811470342 -22.7429738099 +4480 91.95145 46.51265 -24.09131 0.00479 -24.09131 -22.2460687633 -22.7073801033 +4485 91.8188 46.44653 -24.0543 0.00480 -24.0543 -22.2111158954 -22.6719129489 +4490 91.6866 46.38064 -24.01742 0.00482 -24.01742 -22.1762884459 -22.6365723584 +4495 91.55486 46.31498 -23.98067 0.00484 -23.98067 -22.1415864301 -22.6013583431 +4500 91.42356 46.24953 -23.94404 0.00485 -23.94404 -22.1069998632 -22.5662609145 +4505 91.29271 46.18431 -23.90753 0.00487 -23.90753 -22.0725287604 -22.531280084 +4510 91.1623 46.11931 -23.87116 0.00489 -23.87116 -22.0381931367 -22.4964358628 +4515 91.03233 46.05453 -23.8349 0.00490 -23.8349 -22.0039630071 -22.4616982623 +4520 90.9028 45.98997 -23.79877 0.00492 -23.79877 -21.9698583867 -22.4270872937 +4525 90.7737 45.92562 -23.76276 0.00494 -23.76276 -21.9358692902 -22.392592968 +4530 90.64504 45.86149 -23.72687 0.00495 -23.72687 -21.9019957326 -22.3582152965 +4535 90.5168 45.79757 -23.6911 0.00497 -23.6911 -21.8682377286 -22.3239542902 +4540 90.389 45.73386 -23.65545 0.00499 -23.65545 -21.8345952928 -22.28980996 +4545 90.26162 45.67037 -23.61992 0.00500 -23.61992 -21.8010684399 -22.2557823171 +4550 90.13466 45.60708 -23.58451 0.00502 -23.58451 -21.7676571845 -22.2218713723 +4555 90.00812 45.54401 -23.54922 0.00504 -23.54922 -21.734361541 -22.1880771365 +4560 89.88199 45.48114 -23.51405 0.00505 -23.51405 -21.7011815239 -22.1543996204 +4565 89.75628 45.41848 -23.47899 0.00507 -23.47899 -21.6681071476 -22.120828835 +4570 89.63099 45.35602 -23.44405 0.00509 -23.44405 -21.6351484264 -22.0873747909 +4575 89.5061 45.29377 -23.40923 0.00510 -23.40923 -21.6023053744 -22.0540374987 +4580 89.38162 45.23172 -23.37452 0.00512 -23.37452 -21.569568006 -22.0208069692 +4585 89.25755 45.16987 -23.33993 0.00514 -23.33993 -21.5369463352 -21.987693213 +4590 89.13388 45.10822 -23.30545 0.00515 -23.30545 -21.5044303761 -21.9546862405 +4595 89.01061 45.04677 -23.27108 0.00517 -23.27108 -21.4720201426 -21.9217860623 +4600 88.88774 44.98552 -23.23682 0.00519 -23.23682 -21.4397156488 -21.8889926888 +4605 88.76527 44.92447 -23.20268 0.00520 -23.20268 -21.4075269084 -21.8563161304 +4610 88.64318 44.86361 -23.16865 0.00522 -23.16865 -21.3754439354 -21.8237463976 +4615 88.52149 44.80294 -23.13473 0.00524 -23.13473 -21.3434667435 -21.7912835005 +4620 88.40019 44.74247 -23.10092 0.00525 -23.10092 -21.3115953463 -21.7589274496 +4625 88.27928 44.6822 -23.06721 0.00527 -23.06721 -21.2798197575 -21.7266682549 +4630 88.15875 44.62211 -23.03362 0.00529 -23.03362 -21.2481599907 -21.6945259268 +4635 88.03861 44.56222 -23.00014 0.00530 -23.00014 -21.2166060594 -21.6624904753 +4640 87.91884 44.50251 -22.96676 0.00532 -22.96676 -21.1851479771 -21.6305519106 +4645 87.79945 44.443 -22.93349 0.00534 -22.93349 -21.1537957571 -21.5987202426 +4650 87.68044 44.38367 -22.90033 0.00535 -22.90033 -21.1225494129 -21.5669954815 +4655 87.56181 44.32452 -22.86727 0.00537 -22.86727 -21.0913989577 -21.5353676371 +4660 87.44354 44.26556 -22.83432 0.00539 -22.83432 -21.0603544047 -21.5038467194 +4665 87.32565 44.20679 -22.80148 0.00540 -22.80148 -21.0294157672 -21.4724327383 +4670 87.20813 44.1482 -22.76874 0.00542 -22.76874 -20.9985730582 -21.4411157036 +4675 87.09097 44.08979 -22.7361 0.00544 -22.7361 -20.9678262908 -21.4098956252 +4680 86.97417 44.03156 -22.70357 0.00546 -22.70357 -20.937185478 -21.3787825127 +4685 86.85774 43.97352 -22.67113 0.00547 -22.67113 -20.9066306327 -21.3477563759 +4690 86.74167 43.91565 -22.63881 0.00549 -22.63881 -20.876191768 -21.3168472244 +4695 86.62595 43.85796 -22.60658 0.00551 -22.60658 -20.8458388965 -21.2860250679 +4700 86.5106 43.80045 -22.57445 0.00552 -22.57445 -20.8155820311 -21.2552999161 +4705 86.39559 43.74311 -22.54243 0.00554 -22.54243 -20.7854311846 -21.2246817783 +4710 86.28094 43.68595 -22.5105 0.00556 -22.5105 -20.7553663696 -21.1941506642 +4715 86.16664 43.62897 -22.47868 0.00557 -22.47868 -20.7254075986 -21.1637265832 +4720 86.05269 43.57215 -22.44695 0.00559 -22.44695 -20.6955348844 -21.1333895447 +4725 85.93909 43.51551 -22.41533 0.00561 -22.41533 -20.6657682394 -21.1031595582 +4730 85.82583 43.45905 -22.3838 0.00563 -22.3838 -20.6360876761 -21.0730166329 +4735 85.71291 43.40275 -22.35237 0.00564 -22.35237 -20.6065032069 -21.0429707782 +4740 85.60034 43.34662 -22.32103 0.00566 -22.32103 -20.5770048442 -21.0130120034 +4745 85.4881 43.29066 -22.2898 0.00568 -22.2898 -20.5476126002 -20.9831603177 +4750 85.37621 43.23487 -22.25866 0.00569 -22.25866 -20.5183064872 -20.9533957302 +4755 85.26465 43.17925 -22.22761 0.00571 -22.22761 -20.4890865175 -20.9237182502 +4760 85.15342 43.1238 -22.19666 0.00573 -22.19666 -20.4599627031 -20.8941378867 +4765 85.04253 43.06851 -22.16581 0.00575 -22.16581 -20.4309350562 -20.8646546488 +4770 84.93196 43.01338 -22.13505 0.00576 -22.13505 -20.4019935889 -20.8352585456 +4775 84.82173 42.95842 -22.10438 0.00578 -22.10438 -20.3731383131 -20.8059495861 +4780 84.71182 42.90362 -22.07381 0.00580 -22.07381 -20.3443792408 -20.7767377792 +4785 84.60224 42.84898 -22.04333 0.00581 -22.04333 -20.3157063838 -20.7476131338 +4790 84.49299 42.79451 -22.01294 0.00583 -22.01294 -20.2871197542 -20.7185756589 +4795 84.38405 42.74019 -21.98264 0.00585 -21.98264 -20.2586193635 -20.6896253633 +4800 84.27544 42.68604 -21.95244 0.00587 -21.95244 -20.2302152237 -20.6607722558 +4805 84.16715 42.63204 -21.92233 0.00588 -21.92233 -20.2018973463 -20.6320063452 +4810 84.05917 42.5782 -21.8923 0.00590 -21.8923 -20.1736557432 -20.6033176402 +4815 83.95151 42.52452 -21.86237 0.00592 -21.86237 -20.1455104257 -20.5747261496 +4820 83.84417 42.471 -21.83253 0.00593 -21.83253 -20.1174514056 -20.5462218819 +4825 83.73713 42.41763 -21.80278 0.00595 -21.80278 -20.0894786944 -20.5178048459 +4830 83.63041 42.36442 -21.77311 0.00597 -21.77311 -20.0615823034 -20.4894650501 +4835 83.524 42.31136 -21.74354 0.00599 -21.74354 -20.0337822442 -20.4612225031 +4840 83.4179 42.25845 -21.71405 0.00600 -21.71405 -20.006058528 -20.4330572134 +4845 83.3121 42.2057 -21.68465 0.00602 -21.68465 -19.9784211662 -20.4049791896 +4850 83.20661 42.1531 -21.65534 0.00604 -21.65534 -19.9508701701 -20.37698844 +4855 83.10142 42.10065 -21.62611 0.00606 -21.62611 -19.9233955509 -20.3490749731 +4860 82.99653 42.04835 -21.59697 0.00607 -21.59697 -19.8960073199 -20.3212487973 +4865 82.89194 41.9962 -21.56792 0.00609 -21.56792 -19.868705488 -20.2935099209 +4870 82.78766 41.94419 -21.53895 0.00611 -21.53895 -19.8414800664 -20.2658483523 +4875 82.68367 41.89234 -21.51007 0.00613 -21.51007 -19.8143410662 -20.2382740997 +4880 82.57998 41.84063 -21.48127 0.00614 -21.48127 -19.7872784984 -20.2107771713 +4885 82.47658 41.78908 -21.45256 0.00616 -21.45256 -19.7603023739 -20.1833675755 +4890 82.37347 41.73766 -21.42393 0.00618 -21.42393 -19.7334027036 -20.1560353204 +4895 82.27066 41.68639 -21.39539 0.00620 -21.39539 -19.7065894984 -20.128790414 +4900 82.16813 41.63527 -21.36692 0.00621 -21.36692 -19.6798427692 -20.1016128647 +4905 82.0659 41.58429 -21.33854 0.00623 -21.33854 -19.6531825266 -20.0745226803 +4910 81.96395 41.53346 -21.31025 0.00625 -21.31025 -19.6266087814 -20.0475198691 +4915 81.86229 41.48276 -21.28203 0.00627 -21.28203 -19.6001015444 -20.0205844389 +4920 81.76092 41.43221 -21.2539 0.00628 -21.2539 -19.5736808261 -19.9937363978 +4925 81.65983 41.3818 -21.22585 0.00630 -21.22585 -19.5473366372 -19.9669657537 +4930 81.55902 41.33153 -21.19788 0.00632 -21.19788 -19.5210689882 -19.9402725146 +4935 81.45849 41.2814 -21.16998 0.00634 -21.16998 -19.4948678896 -19.9136466884 +4940 81.35824 41.23141 -21.14217 0.00635 -21.14217 -19.468753352 -19.8871082828 +4945 81.25827 41.18156 -21.11444 0.00637 -21.11444 -19.4427153857 -19.8606473057 +4950 81.15857 41.13184 -21.08679 0.00639 -21.08679 -19.4167540011 -19.834263765 +4955 81.05916 41.08226 -21.05922 0.00641 -21.05922 -19.3908692086 -19.8079576683 +4960 80.96001 41.03282 -21.03173 0.00643 -21.03173 -19.3650610185 -19.7817290234 +4965 80.86114 40.98352 -21.00431 0.00644 -21.00431 -19.3393194411 -19.7555678381 +4970 80.76254 40.93435 -20.97698 0.00646 -20.97698 -19.3136644865 -19.7294941199 +4975 80.66421 40.88531 -20.94972 0.00648 -20.94972 -19.288076165 -19.7034878765 +4980 80.56615 40.83641 -20.92253 0.00650 -20.92253 -19.2625544867 -19.6775491155 +4985 80.46836 40.78764 -20.89543 0.00651 -20.89543 -19.2371194617 -19.6516978445 +4990 80.37083 40.73901 -20.8684 0.00653 -20.8684 -19.2117511001 -19.625914071 +4995 80.27357 40.69051 -20.84145 0.00655 -20.84145 -19.1864594118 -19.6002078026 +5000 80.17657 40.64213 -20.81457 0.00657 -20.81457 -19.161234407 -19.5745690467 +5005 80.07984 40.59389 -20.78777 0.00659 -20.78777 -19.1360860954 -19.5490078108 +5010 79.98337 40.54578 -20.76105 0.00660 -20.76105 -19.111014487 -19.5235241023 +5015 79.88716 40.4978 -20.7344 0.00662 -20.7344 -19.0860095917 -19.4981079286 +5020 79.7912 40.44995 -20.70782 0.00664 -20.70782 -19.0610714193 -19.4727592971 +5025 79.69551 40.40223 -20.68132 0.00666 -20.68132 -19.0362099795 -19.4474882151 +5030 79.60007 40.35464 -20.65489 0.00668 -20.65489 -19.0114152821 -19.4222846899 +5035 79.50489 40.30717 -20.62854 0.00669 -20.62854 -18.9866973369 -19.3971587288 +5040 79.40997 40.25983 -20.60226 0.00671 -20.60226 -18.9620461535 -19.372100339 +5045 79.31529 40.21261 -20.57605 0.00673 -20.57605 -18.9374617414 -19.3471095279 +5050 79.22087 40.16553 -20.54991 0.00675 -20.54991 -18.9129441104 -19.3221863024 +5055 79.1267 40.11856 -20.52385 0.00676 -20.52385 -18.8885032699 -19.2973406699 +5060 79.03278 40.07172 -20.49786 0.00678 -20.49786 -18.8641292295 -19.2725626375 +5065 78.93911 40.02501 -20.47194 0.00680 -20.47194 -18.8398219986 -19.2478522122 +5070 78.84569 39.97842 -20.44609 0.00682 -20.44609 -18.8155815867 -19.2232094012 +5075 78.75252 39.93195 -20.42031 0.00684 -20.42031 -18.7914080032 -19.1986342115 +5080 78.65959 39.8856 -20.39461 0.00685 -20.39461 -18.7673112575 -19.1741366501 +5085 78.5669 39.83938 -20.36897 0.00687 -20.36897 -18.7432713588 -19.149696724 +5090 78.47446 39.79328 -20.3434 0.00689 -20.3434 -18.7192983165 -19.1253244402 +5095 78.38226 39.74729 -20.31791 0.00691 -20.31791 -18.6954021398 -19.1010298056 +5100 78.2903 39.70143 -20.29248 0.00693 -20.29248 -18.6715628379 -19.0767928272 +5105 78.19858 39.65569 -20.26712 0.00695 -20.26712 -18.6477904201 -19.0526235118 +5110 78.1071 39.61007 -20.24184 0.00696 -20.24184 -18.6240948955 -19.0285318662 +5115 78.01586 39.56456 -20.21662 0.00698 -20.21662 -18.6004562731 -19.0044978974 +5120 77.92486 39.51917 -20.19146 0.00700 -20.19146 -18.5768745622 -18.9805216122 +5125 77.83409 39.47391 -20.16638 0.00702 -20.16638 -18.5533697716 -18.9566230172 +5130 77.74356 39.42875 -20.14137 0.00704 -20.14137 -18.5299319104 -18.9327921193 +5135 77.65326 39.38372 -20.11642 0.00705 -20.11642 -18.5065509876 -18.9090189252 +5140 77.56319 39.3388 -20.09154 0.00707 -20.09154 -18.483237012 -18.8853134415 +5145 77.47336 39.294 -20.06672 0.00709 -20.06672 -18.4599799927 -18.8616656751 +5150 77.38376 39.24931 -20.04197 0.00711 -20.04197 -18.4367899385 -18.8380856324 +5155 77.29439 39.20473 -20.01729 0.00713 -20.01729 -18.4136668582 -18.8145733202 +5160 77.20524 39.16027 -19.99268 0.00715 -19.99268 -18.3906107606 -18.791128745 +5165 77.11633 39.11593 -19.96813 0.00716 -19.96813 -18.3676116544 -18.7677419135 +5170 77.02764 39.07169 -19.94364 0.00718 -19.94364 -18.3446695485 -18.7444128321 +5175 76.93917 39.02757 -19.91922 0.00720 -19.91922 -18.3217944514 -18.7211515073 +5180 76.85094 38.98356 -19.89487 0.00722 -19.89487 -18.2989863719 -18.6979579457 +5185 76.76292 38.93967 -19.87058 0.00724 -19.87058 -18.2762353185 -18.6748221538 +5190 76.67513 38.89588 -19.84636 0.00726 -19.84636 -18.2535513 -18.651754138 +5195 76.58757 38.85221 -19.8222 0.00727 -19.8222 -18.2309243248 -18.6287439046 +5200 76.50022 38.80864 -19.7981 0.00729 -19.7981 -18.2083544014 -18.6057914602 +5205 76.41309 38.76519 -19.77406 0.00731 -19.77406 -18.1858415384 -18.582896811 +5210 76.32619 38.72184 -19.75009 0.00733 -19.75009 -18.1633957442 -18.5600699635 +5215 76.2395 38.6786 -19.72619 0.00735 -19.72619 -18.1410170273 -18.5373109239 +5220 76.15303 38.63547 -19.70234 0.00737 -19.70234 -18.118685396 -18.5145996986 +5225 76.06677 38.59245 -19.67856 0.00739 -19.67856 -18.0964208587 -18.4919562938 +5230 75.98073 38.54954 -19.65484 0.00740 -19.65484 -18.0742134238 -18.4693707158 +5235 75.89491 38.50673 -19.63119 0.00742 -19.63119 -18.0520730996 -18.4468529707 +5240 75.8093 38.46403 -19.60759 0.00744 -19.60759 -18.0299798943 -18.4243830649 +5245 75.7239 38.42144 -19.58406 0.00746 -19.58406 -18.0079538161 -18.4019810044 +5250 75.63872 38.37895 -19.56058 0.00748 -19.56058 -17.9859748734 -18.3796267955 +5255 75.55374 38.33657 -19.53717 0.00750 -19.53717 -17.9640630742 -18.3573404443 +5260 75.46898 38.29429 -19.51382 0.00752 -19.51382 -17.9422084266 -18.3351119568 +5265 75.38443 38.25212 -19.49053 0.00753 -19.49053 -17.9204109389 -18.3129413393 +5270 75.30008 38.21005 -19.4673 0.00755 -19.4673 -17.8986706191 -18.2908285976 +5275 75.21595 38.16809 -19.44413 0.00757 -19.44413 -17.8769874753 -18.2687737379 +5280 75.13202 38.12622 -19.42102 0.00759 -19.42102 -17.8553615154 -18.2467767662 +5285 75.04829 38.08446 -19.39797 0.00761 -19.39797 -17.8337927475 -18.2248376885 +5290 74.96478 38.04281 -19.37498 0.00763 -19.37498 -17.8122811795 -18.2029565107 +5295 74.88146 38.00125 -19.35204 0.00765 -19.35204 -17.7908168194 -18.1811232389 +5300 74.79835 37.9598 -19.32917 0.00766 -19.32917 -17.769419675 -18.1593578788 +5305 74.71544 37.91844 -19.30635 0.00768 -19.30635 -17.7480697543 -18.1376404365 +5310 74.63274 37.87719 -19.2836 0.00770 -19.2836 -17.7267870651 -18.1159909178 +5315 74.55023 37.83604 -19.2609 0.00772 -19.2609 -17.7055516151 -18.0943893286 +5320 74.46793 37.79498 -19.23826 0.00774 -19.23826 -17.6843734122 -18.0728456747 +5325 74.38583 37.75403 -19.21568 0.00776 -19.21568 -17.6632524642 -18.051359962 +5330 74.30392 37.71318 -19.19315 0.00778 -19.19315 -17.6421787787 -18.0299221961 +5335 74.22221 37.67242 -19.17068 0.00780 -19.17068 -17.6211623635 -18.008542383 +5340 74.1407 37.63176 -19.14827 0.00781 -19.14827 -17.6002032262 -17.9872205283 +5345 74.05939 37.59121 -19.12592 0.00783 -19.12592 -17.5793013744 -17.9659566378 +5350 73.97827 37.55074 -19.10362 0.00785 -19.10362 -17.5584468158 -17.9447407171 +5355 73.89734 37.51038 -19.08138 0.00787 -19.08138 -17.537649558 -17.9235827721 +5360 73.81661 37.47011 -19.05919 0.00789 -19.05919 -17.5168996085 -17.9024728082 +5365 73.73608 37.42994 -19.03706 0.00791 -19.03706 -17.4962069748 -17.8814208313 +5370 73.65573 37.38986 -19.01499 0.00793 -19.01499 -17.4755716645 -17.8604268469 +5375 73.57558 37.34988 -18.99297 0.00795 -18.99297 -17.4549836849 -17.8394808605 +5380 73.49562 37.31 -18.971 0.00797 -18.971 -17.4344430436 -17.8185828779 +5385 73.41585 37.27021 -18.94909 0.00799 -18.94909 -17.4139597479 -17.7977429045 +5390 73.33627 37.23051 -18.92724 0.00800 -18.92724 -17.3935338053 -17.7769609459 +5395 73.25687 37.19091 -18.90544 0.00802 -18.90544 -17.3731552231 -17.7562270076 +5400 73.17767 37.1514 -18.8837 0.00804 -18.8837 -17.3528340086 -17.7355510951 +5405 73.09865 37.11198 -18.86201 0.00806 -18.86201 -17.3325601692 -17.7149232139 +5410 73.01982 37.07266 -18.84037 0.00808 -18.84037 -17.3123337121 -17.6943433694 +5415 72.94117 37.03343 -18.81879 0.00810 -18.81879 -17.2921646446 -17.6738215671 +5420 72.86271 36.99429 -18.79726 0.00812 -18.79726 -17.2720429738 -17.6533478125 +5425 72.78443 36.95525 -18.77578 0.00814 -18.77578 -17.251968707 -17.6329221108 +5430 72.70634 36.91629 -18.75436 0.00816 -18.75436 -17.2319518515 -17.6125544675 +5435 72.62843 36.87743 -18.73299 0.00818 -18.73299 -17.2119824142 -17.5922348879 +5440 72.5507 36.83866 -18.71167 0.00819 -18.71167 -17.1920604023 -17.5719633774 +5445 72.47316 36.79998 -18.6904 0.00821 -18.6904 -17.172185823 -17.5517399414 +5450 72.39579 36.76138 -18.66919 0.00823 -18.66919 -17.1523686832 -17.531574585 +5455 72.31861 36.72288 -18.64803 0.00825 -18.64803 -17.1325989901 -17.5114573136 +5460 72.2416 36.68447 -18.62692 0.00827 -18.62692 -17.1128767506 -17.4913881324 +5465 72.16477 36.64615 -18.60586 0.00829 -18.60586 -17.0932019718 -17.4713670467 +5470 72.08812 36.60791 -18.58486 0.00831 -18.58486 -17.0735846605 -17.4514040617 +5475 72.01165 36.56976 -18.5639 0.00833 -18.5639 -17.0540048238 -17.4314791826 +5480 71.93536 36.53171 -18.543 0.00835 -18.543 -17.0344824685 -17.4116124146 +5485 71.85924 36.49374 -18.52215 0.00837 -18.52215 -17.0150076016 -17.3917937628 +5490 71.78329 36.45585 -18.50135 0.00839 -18.50135 -16.9955802298 -17.3720232325 +5495 71.70752 36.41806 -18.4806 0.00841 -18.4806 -16.9762003601 -17.3523008287 +5500 71.63193 36.38035 -18.4599 0.00843 -18.4599 -16.9568679992 -17.3326265565 +5505 71.55651 36.34272 -18.43924 0.00845 -18.43924 -16.937573154 -17.312990421 +5510 71.48126 36.30519 -18.41864 0.00846 -18.41864 -16.9183358311 -17.2934124274 +5515 71.40618 36.26774 -18.39809 0.00848 -18.39809 -16.8991460374 -17.2738825806 +5520 71.33128 36.23037 -18.37759 0.00850 -18.37759 -16.8800037796 -17.2544008857 +5525 71.25654 36.19309 -18.35714 0.00852 -18.35714 -16.8609090643 -17.2349673477 +5530 71.18198 36.15589 -18.33674 0.00854 -18.33674 -16.8418618981 -17.2155819717 +5535 71.10758 36.11878 -18.31638 0.00856 -18.31638 -16.8228522879 -17.1962347625 +5540 71.03335 36.08175 -18.29608 0.00858 -18.29608 -16.8039002401 -17.1769457252 +5545 70.9593 36.04481 -18.27582 0.00860 -18.27582 -16.7849857613 -17.1576948646 +5550 70.88541 36.00795 -18.25562 0.00862 -18.25562 -16.7661288582 -17.1385021858 +5555 70.81168 35.97117 -18.23546 0.00864 -18.23546 -16.7473095373 -17.1193476937 +5560 70.73812 35.93448 -18.21535 0.00866 -18.21535 -16.7285378051 -17.100241393 +5565 70.66473 35.89787 -18.19528 0.00868 -18.19528 -16.709803668 -17.0811732888 +5570 70.59151 35.86134 -18.17527 0.00870 -18.17527 -16.6911271327 -17.0621633858 +5575 70.51844 35.82489 -18.1553 0.00872 -18.1553 -16.6724882054 -17.043191689 +5580 70.44555 35.78853 -18.13538 0.00874 -18.13538 -16.6538968927 -17.024268203 +5585 70.37281 35.75224 -18.11551 0.00876 -18.11551 -16.635353201 -17.0053929328 +5590 70.30024 35.71604 -18.09568 0.00878 -18.09568 -16.6168471367 -16.9865558831 +5595 70.22783 35.67992 -18.0759 0.00880 -18.0759 -16.598388706 -16.9677670587 +5600 70.15558 35.64388 -18.05617 0.00882 -18.05617 -16.5799779154 -16.9490264643 +5605 70.08349 35.60791 -18.03648 0.00884 -18.03648 -16.5616047711 -16.9303241047 +5610 70.01157 35.57203 -18.01684 0.00886 -18.01684 -16.5432792796 -16.9116699846 +5615 69.9398 35.53623 -17.99725 0.00888 -17.99725 -16.5250014469 -16.8930641087 +5620 69.86819 35.50051 -17.9777 0.00889 -17.9777 -16.5067612794 -16.8744964817 +5625 69.79674 35.46486 -17.9582 0.00891 -17.9582 -16.4885687833 -16.8559771082 +5630 69.72545 35.4293 -17.93875 0.00893 -17.93875 -16.4704239648 -16.837505993 +5635 69.65432 35.39381 -17.91934 0.00895 -17.91934 -16.4523168301 -16.8190731406 +5640 69.58334 35.35841 -17.89997 0.00897 -17.89997 -16.4342473854 -16.8006785556 +5645 69.51252 35.32308 -17.88065 0.00899 -17.88065 -16.4162256367 -16.7823322428 +5650 69.44185 35.28782 -17.86138 0.00901 -17.86138 -16.3982515903 -16.7640342066 +5655 69.37134 35.25265 -17.84215 0.00903 -17.84215 -16.3803152521 -16.7457744516 +5660 69.30099 35.21755 -17.82296 0.00905 -17.82296 -16.3624166283 -16.7275529824 +5665 69.23079 35.18253 -17.80382 0.00907 -17.80382 -16.3445657249 -16.7093798035 +5670 69.16074 35.14758 -17.78473 0.00909 -17.78473 -16.326762548 -16.6912549195 +5675 69.09084 35.11272 -17.76568 0.00911 -17.76568 -16.3089971036 -16.6731683348 +5680 69.0211 35.07792 -17.74667 0.00913 -17.74667 -16.2912693976 -16.6551200539 +5685 68.95151 35.04321 -17.72771 0.00915 -17.72771 -16.273589436 -16.6371200814 +5690 68.88207 35.00857 -17.70879 0.00917 -17.70879 -16.2559472248 -16.6191584217 +5695 68.81278 34.974 -17.68991 0.00919 -17.68991 -16.2383427698 -16.6012350792 +5700 68.74365 34.93951 -17.67108 0.00921 -17.67108 -16.2207860771 -16.5833600583 +5705 68.67466 34.90509 -17.65229 0.00923 -17.65229 -16.2032671524 -16.5655233635 +5710 68.60582 34.87075 -17.63354 0.00925 -17.63354 -16.1857860017 -16.5477249991 +5715 68.53713 34.83648 -17.61484 0.00927 -17.61484 -16.1683526308 -16.5299749696 +5720 68.46859 34.80229 -17.59618 0.00929 -17.59618 -16.1509570455 -16.5122632794 +5725 68.40019 34.76817 -17.57756 0.00931 -17.57756 -16.1335992516 -16.4945899326 +5730 68.33195 34.73412 -17.55899 0.00933 -17.55899 -16.1162892548 -16.4769649338 +5735 68.26384 34.70015 -17.54045 0.00935 -17.54045 -16.0990070611 -16.4593682872 +5740 68.19589 34.66624 -17.52196 0.00937 -17.52196 -16.081772676 -16.4418199971 +5745 68.12808 34.63241 -17.50352 0.00939 -17.50352 -16.0645861053 -16.4243200678 +5750 68.06042 34.59866 -17.48511 0.00941 -17.48511 -16.0474273548 -16.4068485036 +5755 67.9929 34.56497 -17.46675 0.00943 -17.46675 -16.03031643 -16.3894253088 +5760 67.92552 34.53136 -17.44842 0.00945 -17.44842 -16.0132333367 -16.3720304876 +5765 67.85829 34.49782 -17.43014 0.00947 -17.43014 -15.9961980806 -16.3546840441 +5770 67.7912 34.46435 -17.4119 0.00949 -17.4119 -15.9792006671 -16.3373759828 +5775 67.72426 34.43095 -17.39371 0.00951 -17.39371 -15.962251102 -16.3201163077 +5780 67.65745 34.39762 -17.37555 0.00953 -17.37555 -15.9453293907 -16.302885023 +5785 67.59079 34.36437 -17.35743 0.00955 -17.35743 -15.928445539 -16.285692133 +5790 67.52427 34.33118 -17.33936 0.00957 -17.33936 -15.9116095523 -16.2685476417 +5795 67.45789 34.29806 -17.32132 0.00959 -17.32132 -15.8948014361 -16.2514315533 +5800 67.39165 34.26502 -17.30333 0.00962 -17.30333 -15.878041196 -16.234363872 +5805 67.32555 34.23204 -17.28537 0.00964 -17.28537 -15.8613088374 -16.2173246019 +5810 67.25959 34.19913 -17.26746 0.00966 -17.26746 -15.8446243658 -16.200333747 +5815 67.19377 34.16629 -17.24959 0.00968 -17.24959 -15.8279777867 -16.1833813114 +5820 67.12808 34.13352 -17.23175 0.00970 -17.23175 -15.8113591055 -16.1664572993 +5825 67.06254 34.10082 -17.21396 0.00972 -17.21396 -15.7947883277 -16.1495817147 +5830 66.99713 34.06819 -17.1962 0.00974 -17.1962 -15.7782454585 -16.1327345616 +5835 66.93186 34.03563 -17.17849 0.00976 -17.17849 -15.7617505034 -16.1159358441 +5840 66.86672 34.00313 -17.16082 0.00978 -17.16082 -15.7452934677 -16.0991755661 +5845 66.80172 33.9707 -17.14318 0.00980 -17.14318 -15.7288643568 -16.0824437317 +5850 66.73686 33.93834 -17.12558 0.00982 -17.12558 -15.712473176 -16.065750345 +5855 66.67213 33.90605 -17.10803 0.00984 -17.10803 -15.6961299306 -16.0491054097 +5860 66.60753 33.87382 -17.09051 0.00986 -17.09051 -15.6798146259 -16.03248893 +5865 66.54307 33.84166 -17.07303 0.00988 -17.07303 -15.6635372671 -16.0159109098 +5870 66.47874 33.80957 -17.05559 0.00990 -17.05559 -15.6472978596 -15.9993713529 +5875 66.41455 33.77754 -17.03818 0.00992 -17.03818 -15.6310864085 -15.9828602634 +5880 66.35049 33.74558 -17.02082 0.00994 -17.02082 -15.614922919 -15.9663976451 +5885 66.28656 33.71369 -17.00349 0.00996 -17.00349 -15.5987873963 -15.949963502 +5890 66.22276 33.68186 -16.9862 0.00998 -16.9862 -15.5826898457 -15.9335678379 +5895 66.1591 33.65009 -16.96895 0.01000 -16.96895 -15.5666302723 -15.9172106566 +5900 66.09556 33.6184 -16.95174 0.01002 -16.95174 -15.5506086812 -15.9008919622 +5905 66.03216 33.58676 -16.93457 0.01005 -16.93457 -15.5346250775 -15.8846117583 +5910 65.96888 33.55519 -16.91743 0.01007 -16.91743 -15.5186694664 -15.8683600488 +5915 65.90574 33.52369 -16.90033 0.01009 -16.90033 -15.5027518529 -15.8521468375 +5920 65.84272 33.49225 -16.88327 0.01011 -16.88327 -15.4868722422 -15.8359721283 +5925 65.77984 33.46088 -16.86625 0.01013 -16.86625 -15.4710306392 -15.819835925 +5930 65.71708 33.42957 -16.84926 0.01015 -16.84926 -15.455217049 -15.8037282312 +5935 65.65445 33.39832 -16.83231 0.01017 -16.83231 -15.4394414767 -15.7876590509 +5940 65.59195 33.36714 -16.81539 0.01019 -16.81539 -15.4236939272 -15.7716183877 +5945 65.52957 33.33602 -16.79852 0.01021 -16.79852 -15.4079944056 -15.7556262453 +5950 65.46732 33.30496 -16.78168 0.01023 -16.78168 -15.3923229168 -15.7396626276 +5955 65.4052 33.27396 -16.76487 0.01025 -16.76487 -15.3766794657 -15.7237275381 +5960 65.34321 33.24303 -16.7481 0.01027 -16.7481 -15.3610740573 -15.7078309808 +5965 65.28133 33.21216 -16.73137 0.01029 -16.73137 -15.3455066965 -15.6919729591 +5970 65.21959 33.18136 -16.71468 0.01031 -16.71468 -15.3299773883 -15.6761534768 +5975 65.15797 33.15061 -16.69802 0.01034 -16.69802 -15.3144761375 -15.6603625376 +5980 65.09647 33.11993 -16.68139 0.01036 -16.68139 -15.2990029489 -15.6446001451 +5985 65.0351 33.08931 -16.66481 0.01038 -16.66481 -15.2835778275 -15.628886303 +5990 64.97385 33.05875 -16.64825 0.01040 -16.64825 -15.2681707781 -15.6131910148 +5995 64.91272 33.02826 -16.63174 0.01042 -16.63174 -15.2528118055 -15.5975442843 +6000 64.85172 32.99782 -16.61526 0.01044 -16.61526 -15.2374809145 -15.581926115 +6005 64.79084 32.96744 -16.59881 0.01046 -16.59881 -15.2221781099 -15.5663365105 +6010 64.73008 32.93713 -16.5824 0.01048 -16.5824 -15.2069133965 -15.5507854744 +6015 64.66944 32.90688 -16.56603 0.01050 -16.56603 -15.1916867791 -15.5352730102 +6020 64.60892 32.87668 -16.54968 0.01052 -16.54968 -15.1764782623 -15.5197791216 +6025 64.54853 32.84655 -16.53338 0.01055 -16.53338 -15.161317851 -15.504333812 +6030 64.48825 32.81647 -16.51711 0.01057 -16.51711 -15.1461855498 -15.488917085 +6035 64.42809 32.78646 -16.50087 0.01059 -16.50087 -15.1310813634 -15.4735289442 +6040 64.36806 32.75651 -16.48467 0.01061 -16.48467 -15.1160152965 -15.458179393 +6045 64.30814 32.72661 -16.4685 0.01063 -16.4685 -15.1009773538 -15.4428584349 +6050 64.24834 32.69678 -16.45237 0.01065 -16.45237 -15.0859775399 -15.4275760735 +6055 64.18866 32.667 -16.43627 0.01067 -16.43627 -15.0710058595 -15.4123223121 +6060 64.1291 32.63728 -16.42021 0.01069 -16.42021 -15.0560723171 -15.3971071543 +6065 64.06965 32.60762 -16.40417 0.01071 -16.40417 -15.0411569175 -15.3819106035 +6070 64.01033 32.57802 -16.38818 0.01074 -16.38818 -15.0262896651 -15.3667626632 +6075 63.95112 32.54848 -16.37221 0.01076 -16.37221 -15.0114405646 -15.3516333368 +6080 63.89202 32.519 -16.35628 0.01078 -16.35628 -14.9966296204 -15.3365426277 +6085 63.83304 32.48957 -16.34039 0.01080 -16.34039 -14.9818568373 -15.3214905393 +6090 63.77418 32.4602 -16.32452 0.01082 -16.32452 -14.9671022196 -15.306457075 +6095 63.71543 32.43089 -16.30869 0.01084 -16.30869 -14.9523857719 -15.2914622383 +6100 63.6568 32.40164 -16.2929 0.01086 -16.2929 -14.9377074987 -15.2765060324 +6105 63.59829 32.37244 -16.27713 0.01088 -16.27713 -14.9230474045 -15.2615684607 +6110 63.53988 32.3433 -16.2614 0.01090 -16.2614 -14.9084254938 -15.2466695267 +6115 63.48159 32.31422 -16.24571 0.01093 -16.24571 -14.893841771 -15.2318092336 +6120 63.42342 32.28519 -16.23004 0.01095 -16.23004 -14.8792762405 -15.2169675847 +6125 63.36536 32.25622 -16.21441 0.01097 -16.21441 -14.8647489068 -15.2021645834 +6130 63.30741 32.22731 -16.19881 0.01099 -16.19881 -14.8502497743 -15.1873902331 +6135 63.24957 32.19845 -16.18324 0.01101 -16.18324 -14.8357788474 -15.1726445369 +6140 63.19185 32.16965 -16.16771 0.01103 -16.16771 -14.8213461304 -15.1579374982 +6145 63.13424 32.14091 -16.15221 0.01105 -16.15221 -14.8069416278 -15.1432591203 +6150 63.07674 32.11222 -16.13674 0.01108 -16.13674 -14.7925653439 -15.1286094064 +6155 63.01935 32.08358 -16.1213 0.01110 -16.1213 -14.7782172831 -15.1139883598 +6160 62.96207 32.055 -16.10589 0.01112 -16.10589 -14.7638974496 -15.0993959837 +6165 62.9049 32.02648 -16.09052 0.01114 -16.09052 -14.7496158478 -15.0848422814 +6170 62.84784 31.99801 -16.07517 0.01116 -16.07517 -14.7353524819 -15.070307256 +6175 62.79089 31.9696 -16.05986 0.01118 -16.05986 -14.7211273564 -15.0558109109 +6180 62.73405 31.94124 -16.04458 0.01120 -16.04458 -14.7069304753 -15.0413432492 +6185 62.67732 31.91293 -16.02934 0.01123 -16.02934 -14.6927718431 -15.026914274 +6190 62.6207 31.88468 -16.01412 0.01125 -16.01412 -14.6786314639 -15.0125039887 +6195 62.56419 31.85648 -15.99893 0.01127 -15.99893 -14.6645193419 -14.9981223963 +6200 62.50779 31.82834 -15.98378 0.01129 -15.98378 -14.6504454815 -14.9837795 +6205 62.45149 31.80025 -15.96866 0.01131 -13.9702676132 -14.6363998867 -14.969465303 +6210 62.3953 31.77221 -15.95356 0.01133 -13.9567766312 -14.6223725618 -14.9551698084 +6215 62.33922 31.74423 -15.9385 0.01136 -13.9433230603 -14.608383511 -14.9409130193 +6220 62.28324 31.7163 -15.92347 0.01138 -13.9298969066 -14.5944227383 -14.9266849389 +6225 62.22737 31.68843 -15.90847 0.01140 -13.9164981765 -14.580490248 -14.9124855703 +6230 62.17161 31.6606 -15.8935 0.01142 -13.9031268761 -14.5665860443 -14.8983149165 +6235 62.11596 31.63283 -15.87856 0.01144 -13.8897830116 -14.5527101311 -14.8841729807 +6240 62.0604 31.60512 -15.86366 0.01146 -13.8764765892 -14.5388725127 -14.870069766 +6245 62.00496 31.57745 -15.84878 0.01149 -13.8631876151 -14.5250531931 -14.8559852753 +6250 61.94962 31.54984 -15.83393 0.01151 -13.8499260952 -14.5112621764 -14.8419295119 +6255 61.89438 31.52228 -15.81911 0.01153 -13.8366920358 -14.4974994666 -14.8279024787 +6260 61.83925 31.49477 -15.80432 0.01155 -13.823485443 -14.4837650679 -14.8139041788 +6265 61.78422 31.46731 -15.78956 0.01157 -13.8103063227 -14.4700589843 -14.7999346152 +6270 61.72929 31.43991 -15.77484 0.01160 -13.7971646811 -14.4563912198 -14.7860037909 +6275 61.67447 31.41255 -15.76014 0.01162 -13.7840405242 -14.4427417785 -14.7720917089 +6280 61.61975 31.38525 -15.74547 0.01164 -13.7709438579 -14.4291206642 -14.7582083724 +6285 61.56514 31.358 -15.73083 0.01166 -13.7578746883 -14.4155278811 -14.7443537841 +6290 61.51062 31.3308 -15.71622 0.01168 -13.7448330214 -14.4019634331 -14.7305279472 +6295 61.45621 31.30365 -15.70164 0.01170 -13.731818863 -14.3884273241 -14.7167308646 +6300 61.4019 31.27655 -15.68709 0.01173 -13.7188322192 -14.3749195582 -14.7029625393 +6305 61.34769 31.2495 -15.67257 0.01175 -13.7058730958 -14.3614401392 -14.6892229742 +6310 61.29359 31.2225 -15.65807 0.01177 -13.6929314987 -14.3479790712 -14.6755021723 +6315 61.23958 31.19556 -15.64361 0.01179 -13.6800274339 -14.3345563579 -14.6618201365 +6320 61.18568 31.16866 -15.62917 0.01181 -13.6671409071 -14.3211520034 -14.6481568697 +6325 61.13187 31.14181 -15.61477 0.01184 -13.6542919242 -14.3077860115 -14.6345323749 +6330 61.07816 31.11501 -15.60039 0.01186 -13.641460491 -14.2944383861 -14.620926655 +6335 61.02456 31.08827 -15.58604 0.01188 -13.6286566134 -14.281119131 -14.6073497128 +6340 60.97105 31.06157 -15.57172 0.01190 -13.615880297 -14.2678282502 -14.5938015513 +6345 60.91764 31.03492 -15.55743 0.01192 -13.6031315477 -14.2545657474 -14.5802821734 +6350 60.86434 31.00832 -15.54317 0.01195 -13.5904103713 -14.2413316265 -14.5667915818 +6355 60.81113 30.98177 -15.52893 0.01197 -13.5777067734 -14.2281158913 -14.5533197796 +6360 60.75801 30.95527 -15.51473 0.01199 -13.5650407598 -14.2149385456 -14.5398867695 +6365 60.705 30.92882 -15.50055 0.01201 -13.5523923361 -14.2017795933 -14.5264725544 +6370 60.65208 30.90241 -15.4864 0.01204 -13.539771508 -14.188649038 -14.5130871371 +6375 60.59926 30.87606 -15.47227 0.01206 -13.5271682812 -14.1755368836 -14.4997205204 +6380 60.54654 30.84975 -15.45818 0.01208 -13.5146026614 -14.1624631338 -14.4863927073 +6385 60.49392 30.82349 -15.44411 0.01210 -13.5020546541 -14.1494077925 -14.4730837004 +6390 60.44139 30.79728 -15.43007 0.01212 -13.4895342649 -14.1363808632 -14.4598035026 +6395 60.38895 30.77112 -15.41606 0.01215 -13.4770414995 -14.1233823497 -14.4465521167 +6400 60.33662 30.745 -15.40208 0.01217 -13.4645763634 -14.1104122558 -14.4333295454 +6405 60.28438 30.71894 -15.38812 0.01219 -13.4521288621 -14.0974605852 -14.4201257916 +6410 60.23223 30.69292 -15.37419 0.01221 -13.4397090013 -14.0845373415 -14.406950858 +6415 60.18018 30.66695 -15.36029 0.01224 -13.4273167863 -14.0716425284 -14.3938047474 +6420 60.12822 30.64102 -15.34642 0.01226 -13.4149522228 -14.0587761496 -14.3806874624 +6425 60.07636 30.61514 -15.33257 0.01228 -13.4026053162 -14.0459282087 -14.367589006 +6430 60.0246 30.58931 -15.31875 0.01230 -13.3902860719 -14.0331087094 -14.3545193807 +6435 59.97292 30.56353 -15.30496 0.01232 -13.3779944954 -14.0203176553 -14.3414785893 +6440 59.92134 30.53779 -15.29119 0.01235 -13.3657205922 -14.0075450501 -14.3284566346 +6445 59.86986 30.5121 -15.27745 0.01237 -13.3534743677 -13.9948008973 -14.3154635192 +6450 59.81847 30.48646 -15.26374 0.01239 -13.3412558272 -13.9820852006 -14.3024992458 +6455 59.76717 30.46086 -15.25005 0.01241 -13.3290549761 -13.9693879635 -14.2895538172 +6460 59.71596 30.43531 -15.23639 0.01244 -13.3168818198 -13.9567191896 -14.276637236 +6465 59.66484 30.4098 -15.22276 0.01246 -13.3047363637 -13.9440788825 -14.2637495049 +6470 59.61382 30.38434 -15.20915 0.01248 -13.2926086131 -13.9314570457 -14.2508806265 +6475 59.56289 30.35893 -15.19557 0.01250 -13.2805085732 -13.9188636828 -14.2380406035 +6480 59.51205 30.33356 -15.18202 0.01253 -13.2684362495 -13.9062987973 -14.2252294386 +6485 59.4613 30.30824 -15.16849 0.01255 -13.2563816472 -13.8937523927 -14.2124371344 +6490 59.41065 30.28296 -15.15499 0.01257 -13.2443547715 -13.8812344726 -14.1996736935 +6495 59.36008 30.25773 -15.14152 0.01259 -13.2323556277 -13.8687450404 -14.1869391186 +6500 59.3096 30.23254 -15.12807 0.01262 -13.220374221 -13.8562740997 -14.1742234122 +6505 59.25922 30.2074 -15.11464 0.01264 -13.2084105567 -13.8438216538 -14.1615265771 +6510 59.20892 30.1823 -15.10124 0.01266 -13.1964746399 -13.8313977064 -14.1488586157 +6515 59.15872 30.15725 -15.08787 0.01268 -13.1845664758 -13.8190022607 -14.1362195307 +6520 59.1086 30.13225 -15.07453 0.01271 -13.1726860697 -13.8066353204 -14.1236093247 +6525 59.05857 30.10728 -15.06121 0.01273 -13.1608234267 -13.7942868887 -14.1110180002 +6530 59.00864 30.08236 -15.04791 0.01275 -13.1489785518 -13.7819569692 -14.0984455598 +6535 58.95879 30.05749 -15.03464 0.01278 -13.1371614503 -13.7696555653 -14.0859020061 +6540 58.90903 30.03266 -15.0214 0.01280 -13.1253721271 -13.7573826803 -14.0733873416 +6545 58.85936 30.00787 -15.00818 0.01282 -13.1136005876 -13.7451283177 -14.0608915689 +6550 58.80977 29.98313 -14.99498 0.01284 -13.1018468366 -13.7328924808 -14.0484146904 +6555 58.76027 29.95843 -14.98181 0.01287 -13.0901208792 -13.7206851731 -14.0359667089 +6560 58.71087 29.93378 -14.96867 0.01289 -13.0784227206 -13.7085063978 -14.0235476267 +6565 58.66154 29.90917 -14.95555 0.01291 -13.0667423657 -13.6963461583 -14.0111474463 +6570 58.61231 29.8846 -14.94246 0.01293 -13.0550898196 -13.6842144581 -13.9987761704 +6575 58.56316 29.86008 -14.92939 0.01296 -13.0434550872 -13.6721013003 -13.9864238013 +6580 58.5141 29.83559 -14.91635 0.01298 -13.0318481735 -13.6600166884 -13.9741003416 +6585 58.46513 29.81116 -14.90333 0.01300 -13.0202590835 -13.6479506256 -13.9617957938 +6590 58.41624 29.78676 -14.89033 0.01303 -13.0086878222 -13.6359031152 -13.9495101603 +6595 58.36743 29.76241 -14.87736 0.01305 -12.9971443945 -13.6238841606 -13.9372534436 +6600 58.31872 29.7381 -14.86442 0.01307 -12.9856288053 -13.611893765 -13.9250256461 +6605 58.27008 29.71383 -14.8515 0.01309 -12.9741310595 -13.5999219317 -13.9128167704 +6610 58.22154 29.68961 -14.8386 0.01312 -12.962651162 -13.5879686639 -13.9006268189 +6615 58.17307 29.66542 -14.82573 0.01314 -12.9511991178 -13.576043965 -13.8884657939 +6620 58.1247 29.64128 -14.81288 0.01316 -12.9397649316 -13.5641378381 -13.876323698 +6625 58.0764 29.61719 -14.80005 0.01319 -12.9283486083 -13.5522502864 -13.8642005336 +6630 58.02819 29.59313 -14.78726 0.01321 -12.9169701527 -13.5404013133 -13.852116303 +6635 57.98007 29.56911 -14.77448 0.01323 -12.9055995697 -13.5285609219 -13.8400410088 +6640 57.93203 29.54514 -14.76173 0.01326 -12.8942568641 -13.5167491155 -13.8279946532 +6645 57.88407 29.52121 -14.749 0.01328 -12.8829320407 -13.5049558971 -13.8159672387 +6650 57.8362 29.49732 -14.7363 0.01330 -12.8716351042 -13.4931912701 -13.8039687677 +6655 57.7884 29.47347 -14.72361 0.01333 -12.8603460594 -13.4814352375 -13.7919792426 +6660 57.7407 29.44967 -14.71096 0.01335 -12.849094911 -13.4697178026 -13.7800286657 +6665 57.69307 29.4259 -14.69833 0.01337 -12.8378616639 -13.4580189685 -13.7680970394 +6670 57.64553 29.40218 -14.68572 0.01339 -12.8266463226 -13.4463387383 -13.756184366 +6675 57.59806 29.37849 -14.67313 0.01342 -12.815448892 -13.4346771152 -13.744290648 +6680 57.55068 29.35485 -14.66057 0.01344 -12.8042793766 -13.4230441023 -13.7324258876 +6685 57.50338 29.33125 -14.64803 0.01346 -12.7931277813 -13.4114297027 -13.7205800873 +6690 57.45617 29.30769 -14.63551 0.01349 -12.7819941106 -13.3998339196 -13.7087532492 +6695 57.40903 29.28417 -14.62302 0.01351 -12.7708883692 -13.388266756 -13.6969553759 +6700 57.36198 29.26069 -14.61055 0.01353 -12.7598005617 -13.3767182151 -13.6851764695 +6705 57.315 29.23724 -14.5981 0.01356 -12.7487306928 -13.3651882998 -13.6734165323 +6710 57.26811 29.21384 -14.58568 0.01358 -12.737688767 -13.3536870134 -13.6616855668 +6715 57.2213 29.19048 -14.57328 0.01360 -12.726664789 -13.3422043588 -13.6499735752 +6720 57.17456 29.16716 -14.5609 0.01363 -12.7156587633 -13.330740339 -13.6382805597 +6725 57.12791 29.14388 -14.54855 0.01365 -12.7046806946 -13.3193049573 -13.6266165227 +6730 57.08134 29.12064 -14.53622 0.01367 -12.6937205873 -13.3078882165 -13.6149714664 +6735 57.03484 29.09744 -14.52391 0.01370 -12.6827784459 -13.2964901197 -13.6033453932 +6740 56.98843 29.07428 -14.51162 0.01372 -12.6718542752 -13.2851106699 -13.5917383052 +6745 56.94209 29.05116 -14.49936 0.01374 -12.6609580794 -13.2737598702 -13.5801602047 +6750 56.89584 29.02808 -14.48711 0.01377 -12.6500698632 -13.2624177235 -13.568591094 +6755 56.84966 29.00503 -14.47489 0.01379 -12.639209631 -13.2511042329 -13.5570509753 +6760 56.80356 28.98203 -14.4627 0.01381 -12.6283773874 -13.2398194012 -13.5455398509 +6765 56.75754 28.95906 -14.45052 0.01384 -12.6175531367 -13.2285432315 -13.534037723 +6770 56.7116 28.93614 -14.43837 0.01386 -12.6067568833 -13.2172957268 -13.5225645938 +6775 56.66573 28.91325 -14.42624 0.01388 -12.5959786319 -13.20606689 -13.5111104655 +6780 56.61994 28.8904 -14.41413 0.01391 -12.5852183867 -13.194856724 -13.4996753404 +6785 56.57423 28.86759 -14.40205 0.01393 -12.5744861521 -13.1836752318 -13.4882692206 +6790 56.5286 28.84482 -14.38999 0.01395 -12.5637719326 -13.1725124163 -13.4768821083 +6795 56.48304 28.82209 -14.37794 0.01398 -12.5530657326 -13.1613582805 -13.4655040058 +6800 56.43756 28.79939 -14.36592 0.01400 -12.5423875564 -13.1502328272 -13.4541549151 +6805 56.39216 28.77673 -14.35393 0.01403 -12.5317374083 -13.1391360593 -13.4428348386 +6810 56.34683 28.75412 -14.34195 0.01405 -12.5210952928 -13.1280479798 -13.4315237783 +6815 56.30158 28.73154 -14.33 0.01407 -12.5104812141 -13.1169885916 -13.4202417365 +6820 56.2564 28.70899 -14.31806 0.01410 -12.4998751766 -13.1059378974 -13.4089687153 +6825 56.21131 28.68649 -14.30615 0.01412 -12.4892971845 -13.0949159003 -13.3977247167 +6830 56.16628 28.66402 -14.29426 0.01414 -12.4787372422 -13.083912603 -13.3864997431 +6835 56.12133 28.64159 -14.28239 0.01417 -12.4681953539 -13.0729280084 -13.3752937965 +6840 56.07646 28.6192 -14.27055 0.01419 -12.4576815239 -13.0619721193 -13.3641168791 +6845 56.03166 28.59684 -14.25872 0.01422 -12.4471757565 -13.0510249386 -13.3529489929 +6850 55.98694 28.57452 -14.24692 0.01424 -12.4366980559 -13.0401064691 -13.3418101402 +6855 55.94229 28.55224 -14.23514 0.01426 -12.4262384264 -13.0292067137 -13.330690323 +6860 55.89771 28.53 -14.22338 0.01429 -12.4157968721 -13.0183256751 -13.3195895434 +6865 55.85321 28.50779 -14.21164 0.01431 -12.4053733972 -13.0074633561 -13.3085078036 +6870 55.80879 28.48562 -14.19992 0.01433 -12.394968006 -12.9966197596 -13.2974451056 +6875 55.76444 28.46349 -14.18822 0.01436 -12.3845807026 -12.9857948883 -13.2864014515 +6880 55.72016 28.44139 -14.17654 0.01438 -12.3742114913 -12.974988745 -13.2753768434 +6885 55.67595 28.41933 -14.16488 0.01441 -12.3638603761 -12.9642013325 -13.2643712834 +6890 55.63182 28.39731 -14.15325 0.01443 -12.3535373612 -12.9534426536 -13.2533947736 +6895 55.58776 28.37532 -14.14163 0.01445 -12.3432224507 -12.9426927109 -13.2424273159 +6900 55.54377 28.35337 -14.13004 0.01448 -12.3329356488 -12.9319715073 -13.2314889126 +6905 55.49986 28.33146 -14.11847 0.01450 -12.3226669595 -12.9212690455 -13.2205695656 +6910 55.45602 28.30958 -14.10692 0.01453 -12.312416387 -12.9105853282 -13.209669277 +6915 55.41225 28.28774 -14.09538 0.01455 -12.3021739354 -12.8999103581 -13.1987780489 +6920 55.36855 28.26593 -14.08387 0.01457 -12.2919596087 -12.889264138 -13.1879158832 +6925 55.32492 28.24416 -14.07238 0.01460 -12.281763411 -12.8786366705 -13.177072782 +6930 55.28137 28.22243 -14.06091 0.01462 -12.2715853463 -12.8680279584 -13.1662487473 +6935 55.23789 28.20073 -14.04946 0.01465 -12.2614254186 -12.8574380044 -13.1554437812 +6940 55.19448 28.17907 -14.03803 0.01467 -12.2512836321 -12.846866811 -13.1446578856 +6945 55.15114 28.15744 -14.02662 0.01469 -12.2411599907 -12.8363143812 -13.1338910625 +6950 55.10787 28.13585 -14.01523 0.01472 -12.2310544984 -12.8257807173 -13.1231433141 +6955 55.06467 28.11429 -14.00386 0.01474 -12.2209671592 -12.8152658223 -13.1124146422 +6960 55.02154 28.09277 -13.99251 0.01477 -12.2108979771 -12.8047696986 -13.1017050489 +6965 54.97848 28.07128 -13.98118 0.01479 -12.200846956 -12.794292349 -13.091014536 +6970 54.9355 28.04983 -13.96987 0.01481 -12.1908141 -12.783833776 -13.0803431058 +6975 54.89258 28.02841 -13.95859 0.01484 -12.1808094129 -12.7734039824 -13.0697007599 +6980 54.84973 28.00703 -13.94732 0.01486 -12.1708128987 -12.7629829707 -13.0590675006 +6985 54.80695 27.98568 -13.93607 0.01489 -12.1608345613 -12.7525807436 -13.0484533297 +6990 54.76425 27.96437 -13.92484 0.01491 -12.1508744047 -12.7421973036 -13.0378582491 +6995 54.72161 27.94309 -13.91363 0.01493 -12.1409324327 -12.7318326534 -13.0272822608 +7000 54.67904 27.92185 -13.90244 0.01496 -12.1310086492 -12.7214867955 -13.0167253669 +7005 54.63654 27.90064 -13.89127 0.01498 -12.1211030582 -12.7111597326 -13.0061875691 +7010 54.59411 27.87947 -13.88011 0.01501 -12.1112056633 -12.7008414672 -12.9956588695 +7015 54.55174 27.85833 -13.86898 0.01503 -12.1013364687 -12.6905520019 -12.9851592699 +7020 54.50945 27.83722 -13.85787 0.01506 -12.091485478 -12.6802813393 -12.9746787724 +7025 54.46722 27.81615 -13.84678 0.01508 -12.0816526951 -12.6700294818 -12.9642173787 +7030 54.42506 27.79511 -13.8357 0.01510 -12.0718281238 -12.6597864321 -12.9537650909 +7035 54.38297 27.7741 -13.82465 0.01513 -12.062031768 -12.6495721928 -12.9433419108 +7040 54.34095 27.75313 -13.81361 0.01515 -12.0522436314 -12.6393667662 -12.9329278403 +7045 54.299 27.7322 -13.8026 0.01518 -12.0424837179 -12.629190155 -12.9225428813 +7050 54.25711 27.71129 -13.7916 0.01520 -12.0327320311 -12.6190223617 -12.9121670358 +7055 54.21529 27.69042 -13.78062 0.01523 -12.022998575 -12.6088733888 -12.9018103056 +7060 54.17353 27.66959 -13.76967 0.01525 -12.0132933532 -12.5987532389 -12.8914826925 +7065 54.13185 27.64878 -13.75873 0.01528 -12.0035963696 -12.5886419143 -12.8811641985 +7070 54.09023 27.62801 -13.74781 0.01530 -11.9939176277 -12.5785494176 -12.8708648255 +7075 54.04867 27.60728 -13.7369 0.01532 -11.9842471314 -12.5684657513 -12.8605745752 +7080 54.00719 27.58657 -13.72602 0.01535 -11.9746048844 -12.5584109178 -12.8503134495 +7085 53.96577 27.5659 -13.71516 0.01537 -11.9649808904 -12.5483749197 -12.8400714504 +7090 53.92441 27.54527 -13.70431 0.01540 -11.9553651531 -12.5383477594 -12.8298385796 +7095 53.88312 27.52466 -13.69349 0.01542 -11.9457776761 -12.5283494393 -12.819634839 +7100 53.8419 27.50409 -13.68268 0.01545 -11.9361984632 -12.518359962 -12.8094402304 +7105 53.80074 27.48355 -13.67189 0.01547 -11.926637518 -12.5083893298 -12.7992647557 +7110 53.75965 27.46305 -13.66112 0.01550 -11.9170948442 -12.4984375451 -12.7891084167 +7115 53.71863 27.44257 -13.65037 0.01552 -11.9075704453 -12.4885046105 -12.7789712152 +7120 53.67766 27.42213 -13.63963 0.01555 -11.8980543251 -12.4785805283 -12.768843153 +7125 53.63677 27.40172 -13.62892 0.01557 -11.8885664872 -12.468685301 -12.758744232 +7130 53.59594 27.38134 -13.61822 0.01560 -11.8790869351 -12.4587989309 -12.7486544539 +7135 53.55517 27.361 -13.60754 0.01562 -11.8696256726 -12.4489314204 -12.7385838205 +7140 53.51447 27.34069 -13.59688 0.01564 -11.8601827031 -12.4390827721 -12.7285323337 +7145 53.47383 27.32041 -13.58624 0.01567 -11.8507580303 -12.4292529882 -12.7184999952 +7150 53.43325 27.30016 -13.57562 0.01569 -11.8413516577 -12.4194420711 -12.7084868069 +7155 53.39274 27.27994 -13.56501 0.01572 -11.8319535889 -12.4096400232 -12.6984827704 +7160 53.3523 27.25976 -13.55442 0.01574 -11.8225738274 -12.3998568469 -12.6884978876 +7165 53.31191 27.23961 -13.54385 0.01577 -11.8132123769 -12.3900925445 -12.6785321603 +7170 53.27159 27.21948 -13.5333 0.01579 -11.8038692408 -12.3803471184 -12.6685855902 +7175 53.23134 27.19939 -13.52277 0.01582 -11.7945444226 -12.3706205709 -12.6586581791 +7180 53.19114 27.17934 -13.51225 0.01584 -11.7852279259 -12.3609029045 -12.6487399288 +7185 53.15101 27.15931 -13.50175 0.01587 -11.7759297542 -12.3512041213 -12.6388408409 +7190 53.11095 27.13931 -13.49127 0.01589 -11.7666499109 -12.3415242238 -12.6289609172 +7195 53.07094 27.11935 -13.48081 0.01592 -11.7573883996 -12.3318632143 -12.6191001596 +7200 53.031 27.09942 -13.47037 0.01594 -11.7481452237 -12.3222210951 -12.6092585696 +7205 52.99112 27.07952 -13.45994 0.01597 -11.7389103867 -12.3125878684 -12.5994261491 +7210 52.9513 27.05965 -13.44953 0.01599 -11.729693892 -12.3029735367 -12.5896128998 +7215 52.91155 27.03981 -13.43914 0.01602 -11.7204957432 -12.2933781022 -12.5798188234 +7220 52.87186 27.02 -13.42876 0.01604 -11.7113059435 -12.2837915671 -12.5700339216 +7225 52.83222 27.00022 -13.41841 0.01607 -11.7021444965 -12.2742339339 -12.5602781962 +7230 52.79266 26.98047 -13.40807 0.01609 -11.6929914056 -12.2646852047 -12.5505316487 +7235 52.75315 26.96076 -13.39775 0.01612 -11.6838566742 -12.2551553818 -12.5408042811 +7240 52.7137 26.94107 -13.38744 0.01614 -11.6747303057 -12.2456344675 -12.5310860948 +7245 52.67431 26.92142 -13.37716 0.01617 -11.6656323034 -12.2361424641 -12.5213970918 +7250 52.63499 26.90179 -13.36689 0.01619 -11.6565426708 -12.2266593737 -12.5117172735 +7255 52.59573 26.8822 -13.35663 0.01622 -11.6474614112 -12.2171851987 -12.5020466418 +7260 52.55652 26.86263 -13.3464 0.01624 -11.638408528 -12.2077399414 -12.4924051982 +7265 52.51738 26.8431 -13.33618 0.01627 -11.6293640245 -12.1983036038 -12.4827729446 +7270 52.4783 26.82359 -13.32598 0.01629 -11.6203379041 -12.1888861883 -12.4731598824 +7275 52.43928 26.80412 -13.31579 0.01632 -11.6113201701 -12.1794776971 -12.4635560135 +7280 52.40032 26.78468 -13.30563 0.01634 -11.6023308259 -12.1700981324 -12.4539813395 +7285 52.36141 26.76526 -13.29548 0.01637 -11.5933498747 -12.1607274964 -12.444415862 +7290 52.32257 26.74588 -13.28534 0.01639 -11.5843773199 -12.1513657913 -12.4348595827 +7295 52.28379 26.72652 -13.27523 0.01642 -11.5754331647 -12.1420330193 -12.4253325032 +7300 52.24507 26.7072 -13.26513 0.01644 -11.5664974124 -12.1327091826 -12.4158146252 +7305 52.20641 26.68791 -13.25505 0.01647 -11.5575800664 -12.1234042834 -12.4063159503 +7310 52.1678 26.66864 -13.24498 0.01650 -11.5486711299 -12.1141083238 -12.3968264802 +7315 52.12926 26.64941 -13.23493 0.01652 -11.5397806062 -12.1048313062 -12.3873562164 +7320 52.09077 26.6302 -13.2249 0.01655 -11.5309084984 -12.0955732325 -12.3779051607 +7325 52.05235 26.61102 -13.21488 0.01657 -11.5220448099 -12.086324105 -12.3684633146 +7330 52.01398 26.59187 -13.20488 0.01660 -11.5131995439 -12.0770939258 -12.3590406797 +7335 51.97567 26.57276 -13.1949 0.01662 -11.5043727036 -12.0678826971 -12.3496372577 +7340 51.93742 26.55367 -13.18493 0.01665 -11.4955542923 -12.058680421 -12.3402430502 +7345 51.89923 26.53461 -13.17498 0.01667 -11.4867543131 -12.0494970997 -12.3308680587 +7350 51.86109 26.51558 -13.16505 0.01670 -11.4779727692 -12.0403327353 -12.3215122849 +7355 51.82302 26.49657 -13.15513 0.01672 -11.4691996638 -12.03117733 -12.3121657304 +7360 51.785 26.4776 -13.14523 0.01675 -11.4604450002 -12.0220408857 -12.3028383968 +7365 51.74704 26.45866 -13.13535 0.01677 -11.4517087814 -12.0129234048 -12.2935302856 +7370 51.70913 26.43974 -13.12548 0.01680 -11.4429810107 -12.0038148892 -12.2842313984 +7375 51.67129 26.42085 -13.11563 0.01683 -11.4342716912 -11.994725341 -12.2749517368 +7380 51.6335 26.402 -13.10579 0.01685 -11.4255708261 -11.9856447625 -12.2656813024 +7385 51.59577 26.38317 -13.09597 0.01688 -11.4168884185 -11.9765831556 -12.2564300968 +7390 51.5581 26.36436 -13.08617 0.01690 -11.4082244714 -11.9675405225 -12.2471981215 +7395 51.52048 26.34559 -13.07638 0.01693 -11.3995689882 -11.9585068652 -12.2379753781 +7400 51.48292 26.32685 -13.06661 0.01695 -11.3909319718 -11.9494921858 -12.2287718681 +7405 51.44542 26.30813 -13.05686 0.01698 -11.3823134253 -11.9404964864 -12.2195875931 +7410 51.40797 26.28944 -13.04712 0.01700 -11.373703352 -11.9315097691 -12.2104125546 +7415 51.37058 26.27078 -13.03739 0.01703 -11.3651017547 -11.9225320359 -12.2012467542 +7420 51.33325 26.25215 -13.02769 0.01706 -11.3565286368 -11.9135832888 -12.1921101935 +7425 51.29597 26.23355 -13.01799 0.01708 -11.3479540011 -11.9046335299 -12.1829728739 +7430 51.25875 26.21497 -13.00832 0.01711 -11.3394078508 -11.8957127613 -12.173864797 +7435 51.22158 26.19642 -12.99866 0.01713 -11.3308701889 -11.886800985 -12.1647659643 +7440 51.18447 26.1779 -12.98901 0.01716 -11.3223410185 -11.877898203 -12.1556763773 +7445 51.14742 26.15941 -12.97939 0.01718 -11.3138403426 -11.8690244174 -12.1466160376 +7450 51.11042 26.14095 -12.96977 0.01721 -11.3053381643 -11.8601496301 -12.1375549467 +7455 51.07347 26.12251 -12.96018 0.01724 -11.2968644865 -11.8513038432 -12.1285231061 +7460 51.03658 26.1041 -12.95059 0.01726 -11.2883893123 -11.8424570587 -12.1194905173 +7465 50.99975 26.08572 -12.94103 0.01729 -11.2799426447 -11.8336392786 -12.1104871817 +7470 50.96297 26.06736 -12.93148 0.01731 -11.2715044867 -11.8248305049 -12.101493101 +7475 50.92625 26.04904 -12.92194 0.01734 -11.2630748413 -11.8160307395 -12.0925082766 +7480 50.88958 26.03074 -12.91242 0.01737 -11.2546637114 -11.8072499846 -12.0835427099 +7485 50.85296 26.01246 -12.90292 0.01739 -11.2462711001 -11.798488242 -12.0745964025 +7490 50.81641 25.99422 -12.89343 0.01742 -11.2378870103 -11.7897355138 -12.0656593559 +7495 50.7799 25.976 -12.88395 0.01744 -11.2295114449 -11.7809918019 -12.0567315715 +7500 50.74345 25.95781 -12.87449 0.01747 -11.221154407 -11.7722671082 -12.0478230509 +7505 50.70705 25.93964 -12.86505 0.01749 -11.2128158994 -11.7635614348 -12.0389337954 +7510 50.67071 25.9215 -12.85562 0.01752 -11.2044859251 -11.7548647836 -12.0300538065 +7515 50.63442 25.90339 -12.84621 0.01755 -11.196174487 -11.7461871566 -12.0211930858 +7520 50.59818 25.88531 -12.83681 0.01757 -11.1878715881 -11.7375185556 -12.0123416347 +7525 50.562 25.86725 -12.82743 0.01760 -11.1795872312 -11.7288689827 -12.0035094546 +7530 50.52587 25.84922 -12.81806 0.01762 -11.1713114193 -11.7202284398 -11.9946865469 +7535 50.4898 25.83122 -12.80871 0.01765 -11.1630541552 -11.7116069288 -11.9858829132 +7540 50.45377 25.81324 -12.79937 0.01768 -11.1548054418 -11.7029944516 -11.9770885549 +7545 50.41781 25.79529 -12.79005 0.01770 -11.1465752821 -11.6944010101 -11.9683134734 +7550 50.38189 25.77737 -12.78074 0.01773 -11.1383536789 -11.6858166064 -11.9595476701 +7555 50.34603 25.75947 -12.77144 0.01776 -11.1301406351 -11.6772412422 -11.9507911466 +7560 50.31022 25.7416 -12.76217 0.01778 -11.1219561535 -11.6686949195 -11.9420639041 +7565 50.27446 25.72375 -12.7529 0.01781 -11.1137702369 -11.6601476401 -11.9333359442 +7570 50.23875 25.70593 -12.74365 0.01783 -11.1056028883 -11.6516194061 -11.9246272682 +7575 50.2031 25.68814 -12.73442 0.01786 -11.0974541104 -11.6431102192 -11.9159378777 +7580 50.1675 25.67037 -12.7252 0.01789 -11.0893139061 -11.6346100814 -11.9072577739 +7585 50.13195 25.65263 -12.71599 0.01791 -11.0811822782 -11.6261189946 -11.8985869583 +7590 50.09645 25.63491 -12.7068 0.01794 -11.0730692295 -11.6176469605 -11.8899354323 +7595 50.06101 25.61723 -12.69763 0.01796 -11.0649747628 -11.6091939811 -11.8813031974 +7600 50.02562 25.59956 -12.68847 0.01799 -11.056888881 -11.6007500583 -11.8726802549 +7605 49.99027 25.58192 -12.67932 0.01802 -11.0488115867 -11.5923151939 -11.8640666061 +7610 49.95499 25.56431 -12.67019 0.01804 -11.0407528829 -11.5838993897 -11.8554722526 +7615 49.91975 25.54673 -12.66107 0.01807 -11.0327027722 -11.5754926477 -11.8468871957 +7620 49.88456 25.52916 -12.65197 0.01810 -11.0246712575 -11.5671049696 -11.8383214367 +7625 49.84942 25.51163 -12.64288 0.01812 -11.0166483414 -11.5587263574 -11.8297649771 +7630 49.81434 25.49412 -12.6338 0.01815 -11.0086340268 -11.5503568128 -11.8212178182 +7635 49.77931 25.47664 -12.62474 0.01818 -11.0006383165 -11.5420063376 -11.8126899615 +7640 49.74432 25.45918 -12.6157 0.01820 -10.992661213 -11.5336749338 -11.8041814082 +7645 49.70939 25.44174 -12.60667 0.01823 -10.9846927193 -11.5253526031 -11.7956821597 +7650 49.67451 25.42433 -12.59765 0.01825 -10.9767328379 -11.5170393473 -11.7871922175 +7655 49.63968 25.40695 -12.58864 0.01828 -10.9687815717 -11.5087351683 -11.7787115828 +7660 49.6049 25.38959 -12.57966 0.01831 -10.9608589233 -11.5004600678 -11.7702602571 +7665 49.57017 25.37226 -12.57068 0.01833 -10.9529348955 -11.4921840477 -11.7618082416 +7670 49.53549 25.35495 -12.56172 0.01836 -10.9450294909 -11.4839271098 -11.7533755377 +7675 49.50086 25.33767 -12.55277 0.01839 -10.9371327122 -11.4756792558 -11.7449521468 +7680 49.46628 25.32041 -12.54384 0.01841 -10.9292545622 -11.4674504876 -11.7365480703 +7685 49.43175 25.30318 -12.53492 0.01844 -10.9213850434 -11.4592308068 -11.7281533093 +7690 49.39726 25.28597 -12.52601 0.01847 -10.9135241586 -11.4510202155 -11.7197678654 +7695 49.36283 25.26879 -12.51712 0.01849 -10.9056819104 -11.4428287151 -11.7114017398 +7700 49.32845 25.25163 -12.50825 0.01852 -10.8978583015 -11.4346563077 -11.7030549338 +7705 49.29412 25.23449 -12.49938 0.01855 -10.8900333345 -11.4264829949 -11.6947074488 +7710 49.25984 25.21738 -12.49053 0.01857 -10.882227012 -11.4183287784 -11.686379286 +7715 49.2256 25.2003 -12.4817 0.01860 -10.8744393368 -11.4101936601 -11.6780704469 +7720 49.19142 25.18324 -12.47288 0.01863 -10.8666603114 -11.4020676417 -11.6697709327 +7725 49.15728 25.1662 -12.46407 0.01865 -10.8588899385 -11.3939507249 -11.6614807447 +7730 49.12319 25.14919 -12.45527 0.01868 -10.8511282207 -11.3858429115 -11.6531998843 +7735 49.08916 25.1322 -12.44649 0.01871 -10.8433851605 -11.3777542033 -11.6449383527 +7740 49.05517 25.11524 -12.43772 0.01873 -10.8356507606 -11.3696746019 -11.6366861513 +7745 49.02123 25.0983 -12.42897 0.01876 -10.8279350236 -11.361614109 -11.6284532813 +7750 48.98733 25.08138 -12.42023 0.01879 -10.820227952 -11.3535627265 -11.620229744 +7755 48.95349 25.06449 -12.4115 0.01881 -10.8125295485 -11.345520456 -11.6120155408 +7760 48.91969 25.04763 -12.40279 0.01884 -10.8048498156 -11.3374972993 -11.6038206728 +7765 48.88594 25.03078 -12.39409 0.01887 -10.7971787559 -11.329483258 -11.5956351415 +7770 48.85224 25.01396 -12.3854 0.01889 -10.7895163719 -11.3214783339 -11.587458948 +7775 48.81859 24.99717 -12.37673 0.01892 -10.7818726662 -11.3134925287 -11.5793020937 +7780 48.78499 24.9804 -12.36807 0.01895 -10.7742376414 -11.3055158441 -11.5711545799 +7785 48.75143 24.96365 -12.35942 0.01898 -10.7666113 -11.2975482817 -11.5630164077 +7790 48.71792 24.94692 -12.35079 0.01900 -10.7590036445 -11.2895998432 -11.5548975785 +7795 48.68446 24.93022 -12.34217 0.01903 -10.7514046774 -11.2816605304 -11.5467880935 +7800 48.65104 24.91355 -12.33356 0.01906 -10.7438144014 -11.273730345 -11.538687954 +7805 48.61767 24.8969 -12.32497 0.01908 -10.7362428188 -11.2658192885 -11.5306071613 +7810 48.58435 24.88027 -12.31639 0.01911 -10.7286799323 -11.2579173627 -11.5225357166 +7815 48.55108 24.86366 -12.30782 0.01914 -10.7211257442 -11.2500245692 -11.5144736211 +7820 48.51785 24.84708 -12.29927 0.01916 -10.7135902571 -11.2421509098 -11.5064308761 +7825 48.48467 24.83052 -12.29073 0.01919 -10.7060634736 -11.234286386 -11.4983974829 +7830 48.45154 24.81398 -12.2822 0.01922 -10.698545396 -11.2264309995 -11.4903734427 +7835 48.41846 24.79747 -12.27369 0.01924 -10.6910460269 -11.218594752 -11.4823687567 +7840 48.38542 24.78098 -12.26518 0.01927 -10.6835453687 -11.2107576451 -11.4743634262 +7845 48.35242 24.76451 -12.2567 0.01930 -10.6760734238 -11.2029496805 -11.4663874524 +7850 48.31947 24.74807 -12.24822 0.01933 -10.6686001949 -11.1951408598 -11.4584108365 +7855 48.28657 24.73165 -12.23976 0.01935 -10.6611456842 -11.1873511846 -11.4504535797 +7860 48.25372 24.71525 -12.23131 0.01938 -10.6536998943 -11.1795706566 -11.4425056834 +7865 48.22091 24.69888 -12.22287 0.01941 -10.6462628276 -11.1717992774 -11.4345671486 +7870 48.18815 24.68253 -12.21445 0.01943 -10.6388444864 -11.1640470486 -11.4266479766 +7875 48.15543 24.6662 -12.20603 0.01946 -10.6314248734 -11.1562939719 -11.4187281687 +7880 48.12276 24.64989 -12.19764 0.01949 -10.6240339908 -11.1485700488 -11.410837726 +7885 48.09013 24.63361 -12.18925 0.01952 -10.6166418411 -11.1408452809 -11.4029466498 +7890 48.05755 24.61735 -12.18088 0.01954 -10.6092684266 -11.13313967 -11.3950749412 +7895 48.02502 24.60111 -12.17252 0.01957 -10.6019037499 -11.1254432174 -11.3872126014 +7900 47.99253 24.5849 -12.16417 0.01960 -10.5945478133 -11.117755925 -11.3793596317 +7905 47.96008 24.5687 -12.15583 0.01963 -10.5872006191 -11.1100777942 -11.3715160333 +7910 47.92769 24.55253 -12.14751 0.01965 -10.5798721699 -11.1024188267 -11.3636918073 +7915 47.89533 24.53639 -12.1392 0.01968 -10.5725524678 -11.0947690239 -11.3558769549 +7920 47.86302 24.52026 -12.1309 0.01971 -10.5652415154 -11.0871283877 -11.3480714773 +7925 47.83076 24.50416 -12.12262 0.01974 -10.557949315 -11.0795069194 -11.3402853757 +7930 47.79854 24.48808 -12.11434 0.01976 -10.5506558689 -11.0718846206 -11.3324986513 +7935 47.76636 24.47202 -12.10608 0.01979 -10.5433811795 -11.064281493 -11.3247313053 +7940 47.73423 24.45599 -12.09784 0.01982 -10.5361252492 -11.0566975381 -11.3169833388 +7945 47.70215 24.43997 -12.0896 0.01984 -10.5288680802 -11.0491127575 -11.309234753 +7950 47.67011 24.42398 -12.08138 0.01987 -10.521629675 -11.0415471527 -11.301505549 +7955 47.63811 24.40801 -12.07317 0.01990 -10.5144000359 -11.0339907253 -11.2937857281 +7960 47.60615 24.39206 -12.06497 0.01993 -10.5071791651 -11.0264434768 -11.2860752914 +7965 47.57425 24.37614 -12.05678 0.01995 -10.4999670651 -11.0189054088 -11.27837424 +7970 47.54238 24.36023 -12.04861 0.01998 -10.492773738 -11.0113865228 -11.2706925752 +7975 47.51056 24.34435 -12.04045 0.02001 -10.4855891863 -11.0038768203 -11.263020298 +7980 47.47878 24.32849 -12.0323 0.02004 -10.4784134122 -10.996376303 -11.2553574096 +7985 47.44705 24.31266 -12.02416 0.02006 -10.4712464181 -10.9888849722 -11.2477039112 +7990 47.41536 24.29684 -12.01603 0.02009 -10.4640882062 -10.9814028296 -11.2400598039 +7995 47.38371 24.28104 -12.00792 0.02012 -10.4569487787 -10.9739398767 -11.2324350889 +8000 47.35211 24.26527 -11.99982 0.02015 -10.4498181381 -10.966486115 -11.2248197673 +8005 47.32055 24.24952 -11.99173 0.02018 -10.4426962865 -10.959041546 -11.2172138401 +8010 47.28903 24.23379 -11.98366 0.02020 -10.4355932262 -10.9516161711 -11.2096273087 +8015 47.25756 24.21808 -11.97559 0.02023 -10.4284889595 -10.9441899921 -11.2020401741 +8020 47.22612 24.2024 -11.96754 0.02026 -10.4214034886 -10.9367830102 -11.1944724373 +8025 47.19474 24.18673 -11.9595 0.02029 -10.4143268158 -10.9293852271 -11.1869140996 +8030 47.16339 24.17109 -11.95147 0.02031 -10.4072589434 -10.9219966442 -11.1793651621 +8035 47.13209 24.15546 -11.94345 0.02034 -10.4001998735 -10.914617263 -11.1718256259 +8040 47.10083 24.13986 -11.93545 0.02037 -10.3931596085 -10.907257085 -11.1643054921 +8045 47.06961 24.12428 -11.92745 0.02040 -10.3861181505 -10.8998961118 -11.1567847618 +8050 47.03844 24.10872 -11.91947 0.02042 -10.3790955017 -10.8925543447 -11.1492834362 +8055 47.00731 24.09319 -11.9115 0.02045 -10.3720816645 -10.8852217852 -11.1417915163 +8060 46.97622 24.07767 -11.90354 0.02048 -10.3650766409 -10.8778984349 -11.1343090032 +8065 46.94517 24.06217 -11.8956 0.02051 -10.3580904332 -10.8705942952 -11.1268458981 +8070 46.91417 24.0467 -11.88766 0.02054 -10.3511030436 -10.8632893675 -11.119382202 +8075 46.8832 24.03125 -11.87974 0.02056 -10.3441344743 -10.8560036534 -11.1119379161 +8080 46.85228 24.01581 -11.87183 0.02059 -10.3371747275 -10.8487271543 -11.1045030414 +8085 46.8214 24.0004 -11.86393 0.02062 -10.3302238053 -10.8414598716 -11.0970775791 +8090 46.79056 23.98501 -11.85604 0.02065 -10.32328171 -10.8342018069 -11.0896615302 +8095 46.75977 23.96964 -11.84817 0.02068 -10.3163584437 -10.8269629614 -11.0822648958 +8100 46.72901 23.95429 -11.8403 0.02070 -10.3094340086 -10.8197233368 -11.074867677 +8105 46.6983 23.93896 -11.83245 0.02073 -10.3025284069 -10.8125029344 -11.0674898749 +8110 46.66763 23.92366 -11.82461 0.02076 -10.2956316407 -10.8052917557 -11.0601214905 +8115 46.637 23.90837 -11.81678 0.02079 -10.2887437121 -10.7980898021 -11.052762525 +8120 46.60641 23.8931 -11.80896 0.02082 -10.2818646233 -10.790897075 -11.0454129794 +8125 46.57586 23.87786 -11.80115 0.02084 -10.2749943765 -10.783713576 -11.0380728548 +8130 46.54536 23.86263 -11.79336 0.02087 -10.2681429738 -10.7765493063 -11.0307521522 +8135 46.51489 23.84743 -11.78557 0.02090 -10.2612904173 -10.7693842674 -11.0234308727 +8140 46.48447 23.83224 -11.7778 0.02093 -10.2544567091 -10.7622384607 -11.0161290174 +8145 46.45408 23.81708 -11.77004 0.02096 -10.2476318515 -10.7551018877 -11.0088365873 +8150 46.42374 23.80193 -11.76229 0.02098 -10.2408158463 -10.7479745498 -11.0015535836 +8155 46.39344 23.78681 -11.75455 0.02101 -10.2340086959 -10.7408564483 -10.9942800071 +8160 46.36318 23.77171 -11.74682 0.02104 -10.2272104023 -10.7337475847 -10.9870158591 +8165 46.33295 23.75662 -11.7391 0.02107 -10.2204209676 -10.7266479604 -10.9797611405 +8170 46.30277 23.74156 -11.7314 0.02110 -10.2136503939 -10.7195675767 -10.9725258525 +8175 46.27263 23.72652 -11.7237 0.02113 -10.2068786832 -10.7124864351 -10.965289996 +8180 46.24253 23.71149 -11.71602 0.02115 -10.2001258378 -10.7054245369 -10.958073572 +8185 46.21247 23.69649 -11.70835 0.02118 -10.1933818595 -10.6983718836 -10.9508665817 +8190 46.18245 23.68151 -11.70069 0.02121 -10.1866467506 -10.6913284765 -10.9436690261 +8195 46.15247 23.66654 -11.69304 0.02124 -10.1799205131 -10.6842943169 -10.9364809061 +8200 46.12253 23.6516 -11.6854 0.02127 -10.1732031491 -10.6772694064 -10.9293022229 +8205 46.09263 23.63668 -11.67777 0.02129 -10.1664946605 -10.6702537462 -10.9221329774 +8210 46.06277 23.62178 -11.67016 0.02132 -10.1598050495 -10.6632573377 -10.9149831708 +8215 46.03295 23.60689 -11.66255 0.02135 -10.1531143182 -10.6562601823 -10.9078328039 +8220 46.00317 23.59203 -11.65496 0.02138 -10.1464424685 -10.6492822814 -10.9007018779 +8225 45.97343 23.57718 -11.64737 0.02141 -10.1397695025 -10.6423036362 -10.8935703937 +8230 45.94373 23.56236 -11.6398 0.02144 -10.1331154223 -10.6353442482 -10.8864583525 +8235 45.91406 23.54756 -11.63224 0.02147 -10.1264702298 -10.6283941188 -10.879355755 +8240 45.88444 23.53277 -11.62469 0.02149 -10.1198339271 -10.6214532492 -10.8722626025 +8245 45.85486 23.518 -11.61715 0.02152 -10.1132065163 -10.6145216408 -10.8651788959 +8250 45.82531 23.50326 -11.60962 0.02155 -10.1065879992 -10.6075992949 -10.8581046363 +8255 45.7958 23.48853 -11.6021 0.02158 -10.099978378 -10.600686213 -11.6021 +8260 45.76634 23.47382 -11.59459 0.02161 -10.0933776547 -10.5937823963 -11.59459 +8265 45.73691 23.45914 -11.5871 0.02164 -10.0867958311 -10.5868978461 -11.5871 +8270 45.70752 23.44447 -11.57961 0.02166 -10.0802129095 -10.5800125639 -11.57961 +8275 45.67817 23.42982 -11.57213 0.02169 -10.0736388916 -10.5731365509 -11.57213 +8280 45.64885 23.41519 -11.56467 0.02172 -10.0670837796 -10.5662798084 -11.56467 +8285 45.61958 23.40058 -11.55722 0.02175 -10.0605375753 -10.5594323378 -11.55722 +8290 45.59035 23.38599 -11.54977 0.02178 -10.0539902809 -10.5525841403 -11.54977 +8295 45.56115 23.37142 -11.54234 0.02181 -10.0474618981 -10.5457552174 -11.54234 +8300 45.53199 23.35686 -11.53492 0.02184 -10.0409424291 -10.5389355703 -11.53492 +8305 45.50287 23.34233 -11.52751 0.02186 -10.0344318758 -10.5321252002 -11.52751 +8310 45.47379 23.32781 -11.52011 0.02189 -10.0279302401 -10.5253241087 -11.52011 +8315 45.44474 23.31332 -11.51271 0.02192 -10.021427524 -10.5185222968 -11.51271 +8320 45.41574 23.29884 -11.50534 0.02195 -10.0149537294 -10.511749766 -11.50534 +8325 45.38677 23.28438 -11.49797 0.02198 -10.0084788582 -10.5049765174 -11.49797 +8330 45.35784 23.26994 -11.49061 0.02201 -10.0020129125 -10.4982125525 -11.49061 +8335 45.32895 23.25552 -11.48326 0.02204 -9.9955558942 -10.4914578725 -11.48326 +8340 45.30009 23.24112 -11.47592 0.02207 -9.9891078051 -10.4847124787 -11.47592 +8345 45.27127 23.22674 -11.46859 0.02209 -9.9826686472 -10.4779763723 -11.46859 +8350 45.24249 23.21237 -11.46128 0.02212 -9.9762484224 -10.4712595547 -11.46128 +8355 45.21375 23.19803 -11.45397 0.02215 -9.9698271327 -10.4645420272 -11.45397 +8360 45.18505 23.1837 -11.44667 0.02218 -9.9634147799 -10.4578337909 -11.44667 +8365 45.15638 23.16939 -11.43939 0.02221 -9.9570213659 -10.4511448472 -11.43939 +8370 45.12775 23.1551 -11.43211 0.02224 -9.9506268927 -10.4444551973 -11.43211 +8375 45.09915 23.14083 -11.42484 0.02227 -9.9442413622 -10.4377748425 -11.42484 +8380 45.0706 23.12658 -11.41759 0.02230 -9.9378747762 -10.4311137841 -11.41759 +8385 45.04208 23.11235 -11.41034 0.02233 -9.9315071367 -10.4244520234 -11.41034 +8390 45.0136 23.09813 -11.40311 0.02235 -9.9251584454 -10.4178095615 -11.40311 +8395 44.98515 23.08393 -11.39588 0.02238 -9.9188087044 -10.4111663997 -11.39588 +8400 44.95674 23.06976 -11.38867 0.02241 -9.9124779154 -10.4045425393 -11.38867 +8405 44.92837 23.0556 -11.38146 0.02244 -9.9061460804 -10.3979179816 -11.38146 +8410 44.90004 23.04145 -11.37427 0.02247 -9.8998332011 -10.3913127277 -11.37427 +8415 44.87174 23.02733 -11.36709 0.02250 -9.8935292796 -10.3847167789 -11.36709 +8420 44.84348 23.01322 -11.35991 0.02253 -9.8872243175 -10.3781201365 -11.35991 +8425 44.81525 22.99914 -11.35275 0.02256 -9.8809383168 -10.3715428016 -11.35275 +8430 44.78706 22.98507 -11.34559 0.02259 -9.8746512794 -10.3649647756 -11.34559 +8435 44.75891 22.97102 -11.33845 0.02262 -9.868383207 -10.3584060597 -11.33845 +8440 44.73079 22.95698 -11.33132 0.02265 -9.8621241015 -10.351856655 -11.33132 +8445 44.70271 22.94297 -11.32419 0.02267 -9.8558639648 -10.3453065628 -11.32419 +8450 44.67467 22.92897 -11.31708 0.02270 -9.8496227987 -10.3387757843 -11.31708 +8455 44.64666 22.91499 -11.30997 0.02273 -9.8433806049 -10.3322443208 -11.30997 +8460 44.61869 22.90103 -11.30288 0.02276 -9.8371573854 -10.3257321734 -11.30288 +8465 44.59075 22.88709 -11.29579 0.02279 -9.8309331419 -10.3192193433 -11.29579 +8470 44.56285 22.87316 -11.28872 0.02282 -9.8247278762 -10.3127258319 -11.28872 +8475 44.53498 22.85925 -11.28166 0.02285 -9.8185315903 -10.3062416402 -11.28166 +8480 44.50715 22.84536 -11.2746 0.02288 -9.8123342857 -10.2997567695 -11.2746 +8485 44.47936 22.83149 -11.26756 0.02291 -9.8061559645 -10.293291221 -11.26756 +8490 44.4516 22.81764 -11.26052 0.02294 -9.7999766283 -10.2868249958 -11.26052 +8495 44.42388 22.8038 -11.25349 0.02297 -9.793806279 -10.2803680953 -11.25349 +8500 44.39619 22.78998 -11.24648 0.02300 -9.7876549183 -10.2739305204 -11.24648 +8505 44.36854 22.77618 -11.23947 0.02303 -9.781502548 -10.2674922726 -11.23947 +8510 44.34092 22.76239 -11.23248 0.02305 -9.77536917 -10.2610733529 -11.23248 +8515 44.31334 22.74863 -11.22549 0.02308 -9.7692347859 -10.2546537625 -11.22549 +8520 44.28579 22.73488 -11.21851 0.02311 -9.7631093976 -10.2482435026 -11.21851 +8525 44.25828 22.72115 -11.21155 0.02314 -9.7570030068 -10.2418525744 -11.21155 +8530 44.2308 22.70743 -11.20459 0.02317 -9.7508956152 -10.235460979 -11.20459 +8535 44.20336 22.69374 -11.19764 0.02320 -9.7447972248 -10.2290787177 -11.19764 +8540 44.17595 22.68006 -11.1907 0.02323 -9.7387078371 -10.2227057916 -11.1907 +8545 44.14858 22.6664 -11.18377 0.02326 -9.7326274539 -10.2163422019 -11.18377 +8550 44.12124 22.65275 -11.17685 0.02329 -9.7265560771 -10.2099879496 -11.17685 +8555 44.09394 22.63912 -11.16994 0.02332 -9.7204937083 -10.2036430361 -11.16994 +8560 44.06667 22.62551 -11.16304 0.02335 -9.7144403493 -10.1973074624 -11.16304 +8565 44.03944 22.61192 -11.15615 0.02338 -9.7083960017 -10.1909812298 -11.15615 +8570 44.01224 22.59835 -11.14927 0.02341 -9.7023606674 -10.1846643393 -11.14927 +8575 43.98507 22.58479 -11.1424 0.02344 -9.6963343481 -10.1783567921 -11.1424 +8580 43.95794 22.57125 -11.13554 0.02347 -9.6903170455 -10.1720585893 -11.13554 +8585 43.93084 22.55772 -11.12868 0.02350 -9.6842987613 -10.1657597322 -11.12868 +8590 43.90378 22.54421 -11.12184 0.02353 -9.6782994971 -10.1594802218 -11.12184 +8595 43.87675 22.53072 -11.115 0.02356 -9.6722992548 -10.1532000593 -11.115 +8600 43.84976 22.51725 -11.10818 0.02359 -9.6663180361 -10.1469392458 -11.10818 +8605 43.8228 22.50379 -11.10136 0.02362 -9.6603358426 -10.1406777825 -11.10136 +8610 43.79587 22.49035 -11.09456 0.02365 -9.654372676 -10.1344356705 -11.09456 +8615 43.76898 22.47693 -11.08776 0.02368 -9.648408538 -10.1281929109 -11.08776 +8620 43.74212 22.46353 -11.08097 0.02371 -9.6424534304 -10.1219595049 -11.08097 +8625 43.71529 22.45014 -11.07419 0.02373 -9.6365073548 -10.1157354535 -11.07419 +8630 43.6885 22.43676 -11.06742 0.02376 -9.6305703128 -10.1095207579 -11.06742 +8635 43.66174 22.42341 -11.06066 0.02379 -9.6246423063 -10.1033154192 -11.06066 +8640 43.63502 22.41007 -11.05391 0.02382 -9.6187233367 -10.0971194386 -11.05391 +8645 43.60832 22.39675 -11.04717 0.02385 -9.6128134059 -10.0909328171 -11.04717 +8650 43.58167 22.38344 -11.04044 0.02388 -9.6069125155 -10.0847555559 -11.04044 +8655 43.55504 22.37015 -11.03372 0.02391 -9.6010206671 -10.078587656 -11.03372 +8660 43.52845 22.35688 -11.027 0.02394 -9.5951278624 -10.0724191186 -11.027 +8665 43.50189 22.34363 -11.0203 0.02397 -9.5892541031 -10.0662699448 -11.0203 +8670 43.47536 22.33039 -11.0136 0.02400 -9.5833793907 -10.0601201356 -11.0136 +8675 43.44887 22.31716 -11.00691 0.02403 -9.5775137271 -10.0539796922 -11.00691 +8680 43.42241 22.30396 -11.00024 0.02406 -9.5716671137 -10.0478586157 -11.00024 +8685 43.39599 22.29077 -10.99357 0.02409 -9.5658195523 -10.0417369071 -10.99357 +8690 43.36959 22.27759 -10.98691 0.02412 -9.5599810444 -10.0356245677 -10.98691 +8695 43.34323 22.26444 -10.98026 0.02415 -9.5541515918 -10.0295215983 -10.98026 +8700 43.3169 22.2513 -10.97361 0.02418 -9.548321196 -10.0234180002 -10.97361 +8705 43.29061 22.23817 -10.96698 0.02421 -9.5425098586 -10.0173337744 -10.96698 +8710 43.26434 22.22506 -10.96036 0.02424 -9.5367075814 -10.0112589219 -10.96036 +8715 43.23811 22.21197 -10.95374 0.02427 -9.5309043658 -10.005183444 -10.95374 +8720 43.21192 22.1989 -10.94714 0.02430 -9.5251202136 -9.9991273416 -10.94714 +8725 43.18575 22.18584 -10.94054 0.02433 -9.5193351263 -9.9930706158 -10.94054 +8730 43.15962 22.17279 -10.93395 0.02436 -9.5135591055 -9.9870232677 -10.93395 +8735 43.13352 22.15977 -10.92737 0.02439 -9.5077921529 -9.9809852984 -10.92737 +8740 43.10745 22.14675 -10.9208 0.02442 -9.50203427 -9.9749567089 -10.9208 +8745 43.08141 22.13376 -10.91424 0.02445 -9.4962854585 -9.9689375003 -10.91424 +8750 43.05541 22.12078 -10.90768 0.02448 -9.4905357198 -9.9629176736 -10.90768 +8755 43.02943 22.10782 -10.90114 0.02451 -9.4848050557 -9.95691723 -10.90114 +8760 43.00349 22.09487 -10.8946 0.02454 -9.4790734677 -9.9509161704 -10.8946 +8765 42.97759 22.08194 -10.88808 0.02457 -9.4733609573 -9.9449344959 -10.88808 +8770 42.95171 22.06902 -10.88156 0.02461 -9.4676475263 -9.9389522076 -10.88156 +8775 42.92586 22.05612 -10.87505 0.02464 -9.461943176 -9.9329793066 -10.87505 +8780 42.90005 22.04324 -10.86855 0.02467 -9.4562479081 -9.9270157938 -10.86855 +8785 42.87427 22.03037 -10.86206 0.02470 -9.4505617243 -9.9210616703 -10.86206 +8790 42.84852 22.01752 -10.85557 0.02473 -9.4448746259 -9.9151069371 -10.85557 +8795 42.8228 22.00468 -10.8491 0.02476 -9.4392066146 -9.9091715954 -10.8491 +8800 42.79711 21.99186 -10.84263 0.02479 -9.433537692 -9.9032356461 -10.84263 +8805 42.77146 21.97906 -10.83618 0.02482 -9.4278878596 -9.8973190903 -10.83618 +8810 42.74583 21.96627 -10.82973 0.02485 -9.4222371189 -9.891401929 -10.82973 +8815 42.72024 21.95349 -10.82329 0.02488 -9.4165954715 -9.8854941632 -10.82329 +8820 42.69468 21.94074 -10.81685 0.02491 -9.410952919 -9.8795857939 -10.81685 +8825 42.66915 21.92799 -10.81043 0.02494 -9.4053294628 -9.8736968223 -10.81043 +8830 42.64365 21.91527 -10.80402 0.02497 -9.3997151045 -9.8678172492 -10.80402 +8835 42.61818 21.90255 -10.79761 0.02500 -9.3940998457 -9.8619370758 -10.79761 +8840 42.59275 21.88986 -10.79121 0.02503 -9.3884936879 -9.856066303 -10.79121 +8845 42.56734 21.87718 -10.78482 0.02506 -9.3828966325 -9.8502049319 -10.78482 +8850 42.54197 21.86451 -10.77844 0.02509 -9.3773086812 -9.8443529635 -10.77844 +8855 42.51662 21.85186 -10.77207 0.02512 -9.3717298354 -9.8385103988 -10.77207 +8860 42.49131 21.83923 -10.76571 0.02515 -9.3661600966 -9.8326772387 -10.76571 +8865 42.46603 21.82661 -10.75935 0.02518 -9.3605894664 -9.8268434844 -10.75935 +8870 42.44077 21.81401 -10.753 0.02521 -9.3550279462 -9.8210191368 -10.753 +8875 42.41555 21.80142 -10.74666 0.02524 -9.3494755377 -9.8152041969 -10.74666 +8880 42.39036 21.78884 -10.74033 0.02527 -9.3439322422 -9.8093986657 -10.74033 +8885 42.3652 21.77629 -10.73401 0.02531 -9.3383980612 -9.8036025442 -10.73401 +8890 42.34007 21.76374 -10.7277 0.02534 -9.3328729964 -9.7978158334 -10.7277 +8895 42.31497 21.75122 -10.72139 0.02537 -9.327347049 -9.7920285344 -10.72139 +8900 42.2899 21.7387 -10.7151 0.02540 -9.3218402208 -9.786260648 -10.7151 +8905 42.26486 21.72621 -10.70881 0.02543 -9.316332513 -9.7804921753 -10.70881 +8910 42.23986 21.71372 -10.70253 0.02546 -9.3108339272 -9.7747331173 -10.70253 +8915 42.21488 21.70126 -10.69625 0.02549 -9.305334465 -9.768973475 -10.69625 +8920 42.18993 21.6888 -10.68999 0.02552 -9.2998541277 -9.7632332492 -10.68999 +8925 42.16501 21.67637 -10.68373 0.02555 -9.2943729168 -9.7574924412 -10.68373 +8930 42.14012 21.66394 -10.67749 0.02558 -9.2889108338 -9.7517710517 -10.67749 +8935 42.11526 21.65154 -10.67125 0.02561 -9.2834478801 -9.7460490817 -10.67125 +8940 42.09044 21.63914 -10.66502 0.02564 -9.2779940573 -9.7403365323 -10.66502 +8945 42.06564 21.62677 -10.65879 0.02567 -9.2725393667 -9.7346234045 -10.65879 +8950 42.04087 21.6144 -10.65258 0.02571 -9.2671038099 -9.7289296991 -10.65258 +8955 42.01613 21.60206 -10.64637 0.02574 -9.2616673883 -9.7232354172 -10.64637 +8960 41.99142 21.58972 -10.64017 0.02577 -9.2562401033 -9.7175505597 -10.64017 +8965 41.96674 21.57741 -10.63398 0.02580 -9.2508219563 -9.7118751276 -10.63398 +8970 41.94209 21.5651 -10.6278 0.02583 -9.2454129489 -9.7062091218 -10.6278 +8975 41.91747 21.55281 -10.62162 0.02586 -9.2400030825 -9.7005425434 -10.62162 +8980 41.89288 21.54054 -10.61546 0.02589 -9.2346123584 -9.6948953932 -10.61546 +8985 41.86832 21.52828 -10.6093 0.02592 -9.2292207781 -9.6892476722 -10.6093 +8990 41.84378 21.51604 -10.60315 0.02595 -9.2238383431 -9.6836093814 -10.60315 +8995 41.81928 21.50381 -10.597 0.02598 -9.2184550548 -9.6779705217 -10.597 +9000 41.79481 21.49159 -10.59087 0.02601 -9.2130909145 -9.672351094 -10.59087 +9005 41.77036 21.47939 -10.58474 0.02605 -9.2077259238 -9.6667310994 -10.58474 +9010 41.74595 21.4672 -10.57862 0.02608 -9.202370084 -9.6611205387 -10.57862 +9015 41.72156 21.45503 -10.57251 0.02611 -9.1970233965 -9.6555194129 -10.57251 +9020 41.6972 21.44287 -10.56641 0.02614 -9.1916858628 -9.649927723 -10.56641 +9025 41.67287 21.43073 -10.56031 0.02617 -9.1863474843 -9.6443354699 -10.56031 +9030 41.64857 21.4186 -10.55423 0.02620 -9.1810282623 -9.6387626544 -10.55423 +9035 41.6243 21.40649 -10.54815 0.02623 -9.1757081983 -9.6331892776 -10.54815 +9040 41.60006 21.39439 -10.54208 0.02626 -9.1703972937 -9.6276253404 -10.54208 +9045 41.57585 21.3823 -10.53601 0.02629 -9.1650855498 -9.6220608436 -10.53601 +9050 41.55166 21.37023 -10.52996 0.02633 -9.159792968 -9.6165157883 -10.52996 +9055 41.52751 21.35817 -10.52391 0.02636 -9.1544995498 -9.6109701754 -10.52391 +9060 41.50338 21.34613 -10.51787 0.02639 -9.1492152965 -9.6054340058 -10.51787 +9065 41.47928 21.3341 -10.51184 0.02642 -9.1439402095 -9.5999072803 -10.51184 +9070 41.45521 21.32209 -10.50581 0.02645 -9.1386642902 -9.59438 -10.50581 +9075 41.43117 21.31009 -10.49979 0.02648 -9.1333975399 -9.5888621657 -10.49979 +9080 41.40716 21.2981 -10.49379 0.02651 -9.12814996 -9.5833637783 -10.49379 +9085 41.38317 21.28613 -10.48778 0.02655 -9.122891552 -9.5778548389 -10.48778 +9090 41.35921 21.27417 -10.48179 0.02658 -9.1176523171 -9.5723653482 -10.48179 +9095 41.33529 21.26223 -10.4758 0.02661 -9.1124122568 -9.5668753072 -10.4758 +9100 41.31139 21.2503 -10.46983 0.02664 -9.1071913723 -9.5614047167 -10.46983 +9105 41.28751 21.23839 -10.46385 0.02667 -9.1019596651 -9.5559235778 -10.46385 +9110 41.26367 21.22649 -10.45789 0.02670 -9.0967471365 -9.5504618913 -10.45789 +9115 41.23985 21.2146 -10.45194 0.02673 -9.0915437878 -9.5450096581 -10.45194 +9120 41.21606 21.20273 -10.44599 0.02676 -9.0863396204 -9.5395568791 -10.44599 +9125 41.1923 21.19087 -10.44005 0.02680 -9.0811446357 -9.5341135552 -10.44005 +9130 41.16857 21.17902 -10.43412 0.02683 -9.075958835 -9.5286796873 -10.43412 +9135 41.14487 21.16719 -10.42819 0.02686 -9.0707722196 -9.5232452762 -10.42819 +9140 41.12119 21.15537 -10.42227 0.02689 -9.0655947909 -9.517820323 -10.42227 +9145 41.09754 21.14357 -10.41636 0.02692 -9.0604265501 -9.5124048284 -10.41636 +9150 41.07392 21.13178 -10.41046 0.02695 -9.0552674987 -9.5069987934 -10.41046 +9155 41.05033 21.12 -10.40456 0.02699 -9.050107638 -9.5015922188 -10.40456 +9160 41.02676 21.10824 -10.39868 0.02702 -9.0449669692 -9.4962051056 -10.39868 +9165 41.00322 21.09649 -10.3928 0.02705 -9.0398254938 -9.4908174545 -10.3928 +9170 40.97971 21.08475 -10.38692 0.02708 -9.034683213 -9.4854292665 -10.38692 +9175 40.95623 21.07303 -10.38106 0.02711 -9.0295601281 -9.4800605425 -10.38106 +9180 40.93277 21.06133 -10.3752 0.02714 -9.0244362405 -9.4746912834 -10.3752 +9185 40.90934 21.04963 -10.36935 0.02718 -9.0193215514 -9.46933149 -10.36935 +9190 40.88594 21.03795 -10.36351 0.02721 -9.0142160623 -9.4639811631 -10.36351 +9195 40.86257 21.02628 -10.35767 0.02724 -9.0091097743 -9.4586303037 -10.35767 +9200 40.83922 21.01463 -10.35184 0.02727 -9.0040126888 -9.4532889126 -10.35184 +9205 40.8159 21.00299 -10.34602 0.02730 -8.9989248071 -9.4479569907 -10.34602 +9210 40.79261 20.99137 -10.34021 0.02733 -8.9938461304 -9.4426345389 -10.34021 +9215 40.76934 20.97975 -10.3344 0.02737 -8.9887666602 -9.437311558 -10.3344 +9220 40.7461 20.96815 -10.32861 0.02740 -8.9837063976 -9.4320080489 -10.32861 +9225 40.72289 20.95657 -10.32281 0.02743 -8.9786353439 -9.4266940124 -10.32281 +9230 40.69971 20.945 -10.31703 0.02746 -8.9735835005 -9.4213994494 -10.31703 +9235 40.67655 20.93344 -10.31125 0.02749 -8.9685308687 -9.4161043607 -10.31125 +9240 40.65342 20.92189 -10.30548 0.02752 -8.9634874496 -9.4108187473 -10.30548 +9245 40.63031 20.91036 -10.29972 0.02756 -8.9584532446 -9.4055426099 -10.29972 +9250 40.60723 20.89884 -10.29397 0.02759 -8.9534282549 -9.4002759494 -10.29397 +9255 40.58418 20.88733 -10.28822 0.02762 -8.9484024819 -9.3950087667 -10.28822 +9260 40.56116 20.87584 -10.28248 0.02765 -8.9433859268 -9.3897510625 -10.28248 +9265 40.53816 20.86436 -10.27674 0.02768 -8.9383685909 -9.3844928379 -10.27674 +9270 40.51519 20.8529 -10.27102 0.02772 -8.9333704753 -9.3792540935 -10.27102 +9275 40.49224 20.84145 -10.2653 0.02775 -8.9283715815 -9.3740148302 -10.2653 +9280 40.46933 20.83001 -10.25959 0.02778 -8.9233819106 -9.3687850489 -10.25959 +9285 40.44643 20.81858 -10.25388 0.02781 -8.9183914639 -9.3635547503 -10.25388 +9290 40.42357 20.80717 -10.24819 0.02784 -8.9134202426 -9.3583439355 -10.24819 +9295 40.40073 20.79577 -10.2425 0.02788 -8.9084482481 -9.3531326051 -10.2425 +9300 40.37791 20.78438 -10.23681 0.02791 -8.9034754815 -9.3479207599 -10.23681 +9305 40.35513 20.77301 -10.23114 0.02794 -8.8985219441 -9.342728401 -10.23114 +9310 40.33237 20.76165 -10.22547 0.02797 -8.8935676371 -9.3375355289 -10.22547 +9315 40.30963 20.7503 -10.2198 0.02800 -8.8886125618 -9.3323421447 -10.2198 +9320 40.28692 20.73896 -10.21415 0.02804 -8.8836767194 -9.3271682491 -10.21415 +9325 40.26424 20.72764 -10.2085 0.02807 -8.8787401112 -9.3219938429 -10.2085 +9330 40.24158 20.71633 -10.20286 0.02810 -8.8738127383 -9.316828927 -10.20286 +9335 40.21895 20.70504 -10.19723 0.02813 -8.8688946021 -9.3116735021 -10.19723 +9340 40.19635 20.69375 -10.1916 0.02817 -8.8639757036 -9.3065175691 -10.1916 +9345 40.17377 20.68248 -10.18598 0.02820 -8.8590660443 -9.3013711288 -10.18598 +9350 40.15121 20.67123 -10.18037 0.02823 -8.8541656252 -9.2962341821 -10.18037 +9355 40.12869 20.65998 -10.17476 0.02826 -8.8492644476 -9.2910967296 -10.17476 +9360 40.10618 20.64875 -10.16916 0.02829 -8.8443725127 -9.2859687724 -10.16916 +9365 40.08371 20.63753 -10.16357 0.02833 -8.8394898217 -9.280850311 -10.16357 +9370 40.06126 20.62633 -10.15798 0.02836 -8.8346063759 -9.2757313464 -10.15798 +9375 40.03883 20.61513 -10.15241 0.02839 -8.8297421764 -9.2706318794 -10.15241 +9380 40.01643 20.60395 -10.14684 0.02842 -8.8248772244 -9.2655319108 -10.14684 +9385 39.99406 20.59278 -10.14127 0.02846 -8.8200115212 -9.2604314413 -10.14127 +9390 39.97171 20.58163 -10.13571 0.02849 -8.8151550679 -9.2553404718 -10.13571 +9395 39.94939 20.57049 -10.13016 0.02852 -8.8103078658 -9.250259003 -10.13016 +9400 39.92709 20.55936 -10.12462 0.02855 -8.8054699161 -9.2451870358 -10.12462 +9405 39.90482 20.54824 -10.11908 0.02859 -8.8006312198 -9.240114571 -10.11908 +9410 39.88257 20.53714 -10.11355 0.02862 -8.7958017783 -9.2350516093 -10.11355 +9415 39.86035 20.52604 -10.10803 0.02865 -8.7909815927 -9.2299981515 -10.10803 +9420 39.83815 20.51496 -10.10251 0.02868 -8.7861606642 -9.2249441985 -10.10251 +9425 39.81598 20.5039 -10.097 0.02872 -8.781348994 -9.219899751 -10.097 +9430 39.79383 20.49284 -10.0915 0.02875 -8.7765465832 -9.2148648099 -10.0915 +9435 39.77171 20.4818 -10.086 0.02878 -8.7717434331 -9.2098293758 -10.086 +9440 39.74961 20.47077 -10.08051 0.02881 -8.7669495447 -9.2048034495 -10.08051 +9445 39.72754 20.45976 -10.07503 0.02885 -8.7621649194 -9.199787032 -10.07503 +9450 39.70549 20.44875 -10.06955 0.02888 -8.7573795582 -9.1947701238 -10.06955 +9455 39.68347 20.43776 -10.06408 0.02891 -8.7526034623 -9.1897627259 -10.06408 +9460 39.66147 20.42678 -10.05862 0.02894 -8.7478366329 -9.184764839 -10.05862 +9465 39.6395 20.41581 -10.05317 0.02898 -8.7430790712 -9.1797764639 -10.05317 +9470 39.61755 20.40486 -10.04772 0.02901 -8.7383207782 -9.1747876012 -10.04772 +9475 39.59563 20.39391 -10.04227 0.02904 -8.7335617553 -9.1697982519 -10.04227 +9480 39.57373 20.38298 -10.03684 0.02907 -8.7288220034 -9.1648284167 -10.03684 +9485 39.55186 20.37207 -10.03141 0.02911 -8.7240815238 -9.1598580963 -10.03141 +9490 39.53001 20.36116 -10.02599 0.02914 -8.7193503177 -9.1548972916 -10.02599 +9495 39.50818 20.35027 -10.02057 0.02917 -8.7146183861 -9.1499360032 -10.02057 +9500 39.48638 20.33938 -10.01516 0.02920 -8.7098957302 -9.144984232 -10.01516 +9505 39.4646 20.32852 -10.00976 0.02924 -8.7051823512 -9.1400419786 -10.00976 +9510 39.44285 20.31766 -10.00436 0.02927 -8.7004682502 -9.135099244 -10.00436 +9515 39.42113 20.30681 -9.99897 0.02930 -8.6957634283 -9.1301660287 -9.99897 +9520 39.39942 20.29598 -9.99359 0.02934 -8.6910678867 -9.1252423337 -9.99359 +9525 39.37774 20.28516 -9.98821 0.02937 -8.6863716265 -9.1203181596 -9.98821 +9530 39.35609 20.27435 -9.98284 0.02940 -8.6816846488 -9.1154035072 -9.98284 +9535 39.33446 20.26356 -9.97748 0.02943 -8.6770069548 -9.1104983772 -9.97748 +9540 39.31285 20.25277 -9.97212 0.02947 -8.6723285456 -9.1055927704 -9.97212 +9545 39.29127 20.242 -9.96677 0.02950 -8.6676594224 -9.1006966876 -9.96677 +9550 39.26971 20.23124 -9.96143 0.02953 -8.6629995861 -9.0958101294 -9.96143 +9555 39.24818 20.22049 -9.95609 0.02957 -8.658339038 -9.0909230968 -9.95609 +9560 39.22667 20.20975 -9.95076 0.02960 -8.6536877792 -9.0860455902 -9.95076 +9565 39.20518 20.19903 -9.94543 0.02963 -8.6490358108 -9.0811676107 -9.94543 +9570 39.18372 20.18832 -9.94012 0.02966 -8.6444031338 -9.0763091587 -9.94012 +9575 39.16228 20.17762 -9.9348 0.02970 -8.6397597495 -9.0714402352 -9.9348 +9580 39.14087 20.16693 -9.9295 0.02973 -8.6351356589 -9.0665908409 -9.9295 +9585 39.11948 20.15625 -9.9242 0.02976 -8.6305108632 -9.0617409764 -9.9242 +9590 39.09811 20.14558 -9.91891 0.02980 -8.6258953633 -9.0569006425 -9.91891 +9595 39.07677 20.13493 -9.91362 0.02983 -8.6212791605 -9.05205984 -9.91362 +9600 39.05545 20.12429 -9.90834 0.02986 -8.6166722558 -9.0472285696 -9.90834 +9605 39.03415 20.11366 -9.90307 0.02990 -8.6120746504 -9.042406832 -9.90307 +9610 39.01288 20.10304 -9.8978 0.02993 -8.6074763452 -9.037584628 -9.8978 +9615 38.99163 20.09244 -9.89254 0.02996 -8.6028873415 -9.0327719582 -9.89254 +9620 38.9704 20.08184 -9.88729 0.03000 -8.5983076402 -9.0279688234 -9.88729 +9625 38.9492 20.07126 -9.88204 0.03003 -8.5937272426 -9.0231652243 -9.88204 +9630 38.92802 20.06069 -9.8768 0.03006 -8.5891561496 -9.0183711617 -9.8768 +9635 38.90687 20.05013 -9.87156 0.03009 -8.5845843623 -9.0135766363 -9.87156 +9640 38.88574 20.03958 -9.86633 0.03013 -8.5800218819 -9.0087916487 -9.86633 +9645 38.86463 20.02904 -9.86111 0.03016 -8.5754687094 -9.0040161998 -9.86111 +9650 38.84354 20.01852 -9.85589 0.03019 -8.5709148459 -8.9992402902 -9.85589 +9655 38.82248 20.00801 -9.85068 0.03023 -8.5663702924 -8.9944739206 -9.85068 +9660 38.80144 19.9975 -9.84548 0.03026 -8.5618350501 -8.9897170918 -9.84548 +9665 38.78042 19.98701 -9.84028 0.03029 -8.55729912 -8.9849598044 -9.84028 +9670 38.75943 19.97654 -9.83509 0.03033 -8.5527725031 -8.9802120592 -9.83509 +9675 38.73846 19.96607 -9.8299 0.03036 -8.5482452006 -8.9754638569 -9.8299 +9680 38.71751 19.95561 -9.82472 0.03039 -8.5437272134 -8.9707251982 -9.82472 +9685 38.69659 19.94517 -9.81955 0.03043 -8.5392185428 -8.9659960838 -9.81955 +9690 38.67569 19.93474 -9.81438 0.03046 -8.5347091896 -8.9612665145 -9.81438 +9695 38.65481 19.92432 -9.80922 0.03049 -8.530209155 -8.9565464908 -9.80922 +9700 38.63396 19.91391 -9.80406 0.03053 -8.52570844 -8.9518260135 -9.80406 +9705 38.61313 19.90351 -9.79892 0.03056 -8.5212270457 -8.9471250834 -9.79892 +9710 38.59232 19.89312 -9.79377 0.03059 -8.5167349731 -8.9424137011 -9.79377 +9715 38.57153 19.88275 -9.78864 0.03063 -8.5122622233 -8.9377218673 -9.78864 +9720 38.55077 19.87238 -9.78351 0.03066 -8.5077887973 -8.9330295827 -9.78351 +9725 38.53002 19.86203 -9.77838 0.03070 -8.5033146962 -8.928336848 -9.77838 +9730 38.50931 19.85169 -9.77326 0.03073 -8.4988499209 -8.9236536639 -9.77326 +9735 38.48861 19.84136 -9.76815 0.03076 -8.4943944726 -8.9189800311 -9.76815 +9740 38.46794 19.83104 -9.76305 0.03080 -8.4899483523 -8.9143159503 -9.76305 +9745 38.44728 19.82073 -9.75795 0.03083 -8.4855015609 -8.9096514222 -9.75795 +9750 38.42666 19.81044 -9.75285 0.03086 -8.4810540997 -8.9049864474 -9.75285 +9755 38.40605 19.80015 -9.74776 0.03090 -8.4766159695 -8.9003310267 -9.74776 +9760 38.38547 19.78988 -9.74268 0.03093 -8.4721871713 -8.8956851607 -9.74268 +9765 38.36491 19.77961 -9.73761 0.03096 -8.4677677063 -8.8910488501 -9.73761 +9770 38.34437 19.76936 -9.73254 0.03100 -8.4633475755 -8.8864120956 -9.73254 +9775 38.32385 19.75912 -9.72747 0.03103 -8.4589267798 -8.8817748979 -9.72747 +9780 38.30336 19.74889 -9.72241 0.03107 -8.4545153204 -8.8771472577 -9.72241 +9785 38.28288 19.73867 -9.71736 0.03110 -8.4501131981 -8.8725291756 -9.71736 +9790 38.26243 19.72846 -9.71232 0.03113 -8.445720414 -8.8679206523 -9.71232 +9795 38.24201 19.71827 -9.70728 0.03117 -8.4413269692 -8.8633116885 -9.70728 +9800 38.2216 19.70808 -9.70224 0.03120 -8.4369328647 -8.8587022849 -9.70224 +9805 38.20122 19.69791 -9.69721 0.03123 -8.4325481014 -8.8541024421 -9.69721 +9810 38.18086 19.68775 -9.69219 0.03127 -8.4281726803 -8.8495121609 -9.69219 +9815 38.16052 19.67759 -9.68717 0.03130 -8.4237966026 -8.8449214418 -9.68717 +9820 38.1402 19.66745 -9.68216 0.03134 -8.4194298691 -8.8403402856 -9.68216 +9825 38.1199 19.65732 -9.67716 0.03137 -8.4150724808 -8.8357686928 -9.67716 +9830 38.09963 19.6472 -9.67216 0.03140 -8.4107144389 -8.8311966643 -9.67216 +9835 38.07938 19.63709 -9.66717 0.03144 -8.4063657442 -8.8266342006 -9.66717 +9840 38.05915 19.627 -9.66218 0.03147 -8.4020163978 -8.8220713024 -9.66218 +9845 38.03894 19.61691 -9.6572 0.03150 -8.3976764006 -8.8175179704 -9.6572 +9850 38.01875 19.60683 -9.65222 0.03154 -8.3933357537 -8.8129642053 -9.65222 +9855 37.99859 19.59677 -9.64725 0.03157 -8.3890044581 -8.8084200076 -9.64725 +9860 37.97844 19.58671 -9.64229 0.03161 -8.3846825146 -8.8038853781 -9.64229 +9865 37.95832 19.57667 -9.63733 0.03164 -8.3803599244 -8.7993503174 -9.63733 +9870 37.93822 19.56664 -9.63238 0.03167 -8.3760466884 -8.7948248261 -9.63238 +9875 37.91814 19.55661 -9.62743 0.03171 -8.3717328075 -8.790298905 -9.62743 +9880 37.89809 19.5466 -9.62249 0.03174 -8.3674282828 -8.7857825546 -9.62249 +9885 37.87805 19.5366 -9.61756 0.03178 -8.3631331152 -8.7812757757 -9.61756 +9890 37.85804 19.52661 -9.61263 0.03181 -8.3588373057 -8.7767685688 -9.61263 +9895 37.83805 19.51663 -9.6077 0.03184 -8.3545408553 -8.7722609347 -9.6077 +9900 37.81808 19.50667 -9.60279 0.03188 -8.350263765 -8.7677728739 -9.60279 +9905 37.79813 19.49671 -9.59788 0.03191 -8.3459860357 -8.7632843871 -9.59788 +9910 37.7782 19.48676 -9.59297 0.03195 -8.3417076683 -8.758795475 -9.59297 +9915 37.75829 19.47682 -9.58807 0.03198 -8.3374386639 -8.7543161382 -9.58807 +9920 37.7384 19.4669 -9.58317 0.03202 -8.3331690234 -8.7498363773 -9.58317 +9925 37.71854 19.45698 -9.57828 0.03205 -8.3289087478 -8.745366193 -9.57828 +9930 37.6987 19.44708 -9.5734 0.03208 -8.3246578381 -8.740905586 -9.5734 +9935 37.67887 19.43718 -9.56852 0.03212 -8.3204062951 -8.7364445568 -9.56852 +9940 37.65907 19.4273 -9.56365 0.03215 -8.3161641199 -8.7319931061 -9.56365 +9945 37.63929 19.41743 -9.55878 0.03219 -8.3119213133 -8.7275412345 -9.55878 +9950 37.61953 19.40756 -9.55392 0.03222 -8.3076878765 -8.7230989427 -9.55392 +9955 37.5998 19.39771 -9.54907 0.03226 -8.3034638102 -8.7186662314 -9.54907 +9960 37.58008 19.38787 -9.54422 0.03229 -8.2992391155 -8.714233101 -9.54422 +9965 37.56038 19.37804 -9.53937 0.03232 -8.2950137933 -8.7097995523 -9.53937 +9970 37.54071 19.36822 -9.53453 0.03236 -8.2907978445 -8.7053755859 -9.53453 +9975 37.52105 19.35841 -9.5297 0.03239 -8.2865912701 -8.7009612025 -9.5297 +9980 37.50142 19.34861 -9.52487 0.03243 -8.282384071 -8.6965464025 -9.52487 +9985 37.48181 19.33882 -9.52005 0.03246 -8.2781862482 -8.6921411868 -9.52005 +9990 37.46222 19.32904 -9.51524 0.03250 -8.2739978026 -8.6877455559 -9.51524 +9995 37.44265 19.31927 -9.51043 0.03253 -8.2698087351 -8.6833495103 -9.51043 +10000 37.4231 19.30951 -9.50562 0.03256 -8.2656190467 -8.6789530509 -9.50562 +10005 37.40357 19.29976 -9.50082 0.03260 -8.2614387383 -8.6745661781 -9.50082 +10010 37.38406 19.29003 -9.49603 0.03263 -8.2572678108 -8.6701888925 -9.49603 +10015 37.36457 19.2803 -9.49124 0.03267 -8.2530962651 -8.6658111949 -9.49124 +10020 37.3451 19.27058 -9.48645 0.03270 -8.2489241023 -8.6614330858 -9.48645 +10025 37.32565 19.26087 -9.48168 0.03274 -8.2447713231 -8.6570745659 -9.48168 +10030 37.30623 19.25118 -9.4769 0.03277 -8.2406079286 -8.6527056357 -9.4769 +10035 37.28682 19.24149 -9.47214 0.03281 -8.2364639196 -8.6483562958 -9.47214 +10040 37.26743 19.23182 -9.46738 0.03284 -8.2323192971 -8.6440065469 -9.46738 +10045 37.24807 19.22215 -9.46262 0.03288 -8.2281740619 -8.6396563896 -9.46262 +10050 37.22872 19.21249 -9.45787 0.03291 -8.2240382151 -8.6353158246 -9.45787 +10055 37.2094 19.20285 -9.45313 0.03294 -8.2199117574 -8.6309848523 -9.45313 +10060 37.19009 19.19321 -9.44839 0.03298 -8.2157846899 -8.6266534734 -9.44839 +10065 37.17081 19.18359 -9.44365 0.03301 -8.2116570134 -8.6223216885 -9.44365 +10070 37.15155 19.17397 -9.43892 0.03305 -8.2075387288 -8.6179994983 -9.43892 +10075 37.1323 19.16436 -9.4342 0.03308 -8.203429837 -8.6136869033 -9.4342 +10080 37.11308 19.15477 -9.42948 0.03312 -8.199320339 -8.6093739041 -9.42948 +10085 37.09388 19.14518 -9.42477 0.03315 -8.1952202357 -8.6050705014 -9.42477 +10090 37.07469 19.13561 -9.42006 0.03319 -8.1911195279 -8.6007666956 -9.42006 +10095 37.05553 19.12604 -9.41536 0.03322 -8.1870282165 -8.5964724875 -9.41536 +10100 37.03639 19.11649 -9.41066 0.03326 -8.1829363024 -8.5921778777 -9.41066 +10105 37.01726 19.10694 -9.40597 0.03329 -8.1788537866 -8.5878928666 -9.40597 +10110 36.99816 19.09741 -9.40129 0.03333 -8.1747806699 -8.583617455 -9.40129 +10115 36.97908 19.08788 -9.39661 0.03336 -8.1707069533 -8.5793416434 -9.39661 +10120 36.96001 19.07837 -9.39193 0.03340 -8.1666326375 -8.5750654323 -9.39193 +10125 36.94097 19.06886 -9.38726 0.03343 -8.1625677235 -8.5707988225 -9.38726 +10130 36.92195 19.05937 -9.3826 0.03347 -8.1585122122 -8.5665418145 -9.3826 +10135 36.90294 19.04988 -9.37794 0.03350 -8.1544561045 -8.5622844088 -9.37794 +10140 36.88396 19.0404 -9.37328 0.03354 -8.1503994012 -8.5580266061 -9.37328 +10145 36.865 19.03094 -9.36863 0.03357 -8.1463521032 -8.553778407 -9.36863 +10150 36.84605 19.02148 -9.36399 0.03361 -8.1423142115 -8.549539812 -9.36399 +10155 36.82713 19.01204 -9.35935 0.03364 -8.1382757268 -8.5453008217 -9.35935 +10160 36.80822 19.0026 -9.35472 0.03368 -8.1342466501 -8.5410714367 -9.35472 +10165 36.78934 18.99317 -9.35009 0.03371 -8.1302169822 -8.5368416576 -9.35009 +10170 36.77047 18.98376 -9.34547 0.03375 -8.126196724 -8.532621485 -9.34547 +10175 36.75163 18.97435 -9.34085 0.03378 -8.1221758764 -8.5284009194 -9.34085 +10180 36.7328 18.96495 -9.33624 0.03382 -8.1181644402 -8.5241899615 -9.33624 +10185 36.71399 18.95556 -9.33163 0.03385 -8.1141524163 -8.5199786117 -9.33163 +10190 36.6952 18.94619 -9.32703 0.03389 -8.1101498056 -8.5157768708 -9.32703 +10195 36.67644 18.93682 -9.32243 0.03392 -8.1061466089 -8.5115747392 -9.32243 +10200 36.65769 18.92746 -9.31784 0.03396 -8.1021528272 -8.5073822175 -9.31784 +10205 36.63896 18.91811 -9.31325 0.03399 -8.0981584611 -8.5031893063 -9.31325 +10210 36.62025 18.90877 -9.30867 0.03403 -8.0941735118 -8.4990060062 -9.30867 +10215 36.60156 18.89944 -9.3041 0.03406 -8.0901979798 -8.4948323178 -9.3041 +10220 36.58289 18.89012 -9.29953 0.03410 -8.0862218662 -8.4906582416 -9.29953 +10225 36.56424 18.88081 -9.29496 0.03413 -8.0822451718 -8.4864837782 -9.29496 +10230 36.5456 18.87151 -9.2904 0.03417 -8.0782778974 -8.4823189281 -9.2904 +10235 36.52699 18.86222 -9.28584 0.03420 -8.0743100439 -8.4781536919 -9.28584 +10240 36.50839 18.85294 -9.28129 0.03424 -8.0703516122 -8.4739980703 -9.28129 +10245 36.48982 18.84367 -9.27675 0.03427 -8.066402603 -8.4698520637 -9.27675 +10250 36.47126 18.83441 -9.27221 0.03431 -8.0624530172 -8.4657056727 -9.27221 +10255 36.45273 18.82515 -9.26767 0.03434 -8.0585028557 -8.4615588978 -9.26767 +10260 36.43421 18.81591 -9.26314 0.03438 -8.0545621193 -8.4574217398 -9.26314 +10265 36.41571 18.80668 -9.25862 0.03442 -8.0506308088 -8.453294199 -9.25862 +10270 36.39723 18.79745 -9.2541 0.03445 -8.0466989252 -8.4491662761 -9.2541 +10275 36.37877 18.78824 -9.24958 0.03449 -8.0427664691 -8.4450379716 -9.24958 +10280 36.36033 18.77903 -9.24507 0.03452 -8.0388434415 -8.440919286 -9.24507 +10285 36.3419 18.76984 -9.24057 0.03456 -8.0349298433 -8.43681022 -9.24057 +10290 36.3235 18.76065 -9.23607 0.03459 -8.0310156751 -8.4327007741 -9.23607 +10295 36.30511 18.75147 -9.23157 0.03463 -8.0271009379 -8.4285909488 -9.23157 +10300 36.28675 18.7423 -9.22708 0.03466 -8.0231956324 -8.4244907447 -9.22708 +10305 36.2684 18.73315 -9.2226 0.03470 -8.0192997596 -8.4204001624 -9.2226 +10310 36.25007 18.724 -9.21812 0.03473 -8.0154033202 -8.4163092023 -9.21812 +10315 36.23176 18.71486 -9.21364 0.03477 -8.0115063151 -8.4122178651 -9.21364 +10320 36.21347 18.70573 -9.20917 0.03481 -8.007618745 -8.4081361513 -9.20917 +10325 36.1952 18.69661 -9.20471 0.03484 -8.0037406109 -8.4040640614 -9.20471 +10330 36.17694 18.6875 -9.20025 0.03488 -7.9998619135 -8.399991596 -9.20025 +10335 36.15871 18.67839 -9.19579 0.03491 -7.9959826536 -8.3959187556 -9.19579 +10340 36.14049 18.6693 -9.19134 0.03495 -7.9921128321 -8.3918555408 -9.19134 +10345 36.12229 18.66022 -9.1869 0.03498 -7.9882524497 -8.3878019521 -9.1869 +10350 36.10411 18.65114 -9.18246 0.03502 -7.9843915073 -8.38374799 -9.18246 +10355 36.08595 18.64208 -9.17802 0.03505 -7.9805300057 -8.3796936551 -9.17802 +10360 36.06781 18.63302 -9.17359 0.03509 -7.9766779457 -8.375648948 -9.17359 +10365 36.04968 18.62397 -9.16917 0.03513 -7.9728353282 -8.3716138692 -9.16917 +10370 36.03158 18.61494 -9.16474 0.03516 -7.9689821538 -8.3675684192 -9.16474 +10375 36.01349 18.60591 -9.16033 0.03520 -7.9651484235 -8.3635425985 -9.16033 +10380 35.99542 18.59689 -9.15592 0.03523 -7.961314138 -8.3595164077 -9.15592 +10385 35.97737 18.58788 -9.15151 0.03527 -7.9574792981 -8.3554898473 -9.15151 +10390 35.95934 18.57888 -9.14711 0.03530 -7.9536539046 -8.3514729179 -9.14711 +10395 35.94132 18.56988 -9.14271 0.03534 -7.9498279584 -8.3474556199 -9.14271 +10400 35.92333 18.5609 -9.13832 0.03538 -7.9460114602 -8.343447954 -9.13832 +10405 35.90535 18.55193 -9.13393 0.03541 -7.9421944108 -8.3394399206 -9.13393 +10410 35.88739 18.54296 -9.12955 0.03545 -7.938386811 -8.3354415203 -9.12955 +10415 35.86945 18.53401 -9.12518 0.03548 -7.9345886617 -8.3314527537 -9.12518 +10420 35.85152 18.52506 -9.1208 0.03552 -7.9307799635 -8.3274536211 -9.1208 +10425 35.83362 18.51612 -9.11644 0.03556 -7.9269907173 -8.3234741232 -9.11644 +10430 35.81573 18.50719 -9.11207 0.03559 -7.9231909239 -8.3194842605 -9.11207 +10435 35.79786 18.49827 -9.10771 0.03563 -7.9194005841 -8.3155040335 -9.10771 +10440 35.78001 18.48936 -9.10336 0.03566 -7.9156196986 -8.3115334427 -9.10336 +10445 35.76218 18.48046 -9.09901 0.03570 -7.9118382682 -8.3075624887 -9.09901 +10450 35.74436 18.47157 -9.09467 0.03574 -7.9080662938 -8.3036011719 -9.09467 +10455 35.72656 18.46269 -9.09033 0.03577 -7.904293776 -8.299639493 -9.09033 +10460 35.70878 18.45381 -9.086 0.03581 -7.9005307158 -8.2956874524 -9.086 +10465 35.69102 18.44495 -9.08167 0.03584 -7.8967671137 -8.2917350506 -9.08167 +10470 35.67328 18.43609 -9.07734 0.03588 -7.8930029707 -8.2877822881 -9.07734 +10475 35.65555 18.42724 -9.07302 0.03592 -7.8892482875 -8.2838391655 -9.07302 +10480 35.63785 18.4184 -9.06871 0.03595 -7.8855030649 -8.2799056834 -9.06871 +10485 35.62015 18.40957 -9.0644 0.03599 -7.8817573036 -8.2759718421 -9.0644 +10490 35.60248 18.40075 -9.06009 0.03602 -7.8780110044 -8.2720376422 -9.06009 +10495 35.58483 18.39194 -9.05579 0.03606 -7.8742741682 -8.2681130842 -9.05579 +10500 35.56719 18.38313 -9.05149 0.03610 -7.8705367955 -8.2641881687 -9.05149 +10505 35.54957 18.37434 -9.0472 0.03613 -7.8668088873 -8.2602728961 -9.0472 +10510 35.53197 18.36555 -9.04291 0.03617 -7.8630804443 -8.256357267 -9.04291 +10515 35.51438 18.35678 -9.03863 0.03621 -7.8593614672 -8.2524512818 -9.03863 +10520 35.49682 18.34801 -9.03435 0.03624 -7.8556419568 -8.2485449412 -9.03435 +10525 35.47927 18.33925 -9.03008 0.03628 -7.8519319139 -8.2446482455 -9.03008 +10530 35.46174 18.3305 -9.02581 0.03631 -7.8482213393 -8.2407511952 -9.02581 +10535 35.44422 18.32175 -9.02155 0.03635 -7.8445202336 -8.236863791 -9.02155 +10540 35.42673 18.31302 -9.01729 0.03639 -7.8408185976 -8.2329760333 -9.01729 +10545 35.40925 18.3043 -9.01303 0.03642 -7.8371164321 -8.2290879225 -9.01303 +10550 35.39179 18.29558 -9.00878 0.03646 -7.8334237379 -8.2252094593 -9.00878 +10555 35.37434 18.28687 -9.00454 0.03650 -7.8297405157 -8.221340644 -9.00454 +10560 35.35692 18.27817 -9.0003 0.03653 -7.8260567662 -8.2174714773 -9.0003 +10565 35.33951 18.26948 -8.99606 0.03657 -7.8223724902 -8.2136019596 -8.99606 +10570 35.32211 18.2608 -8.99183 0.03660 -7.8186976885 -8.2097420913 -8.99183 +10575 35.30474 18.25213 -8.9876 0.03664 -7.8150223617 -8.2058818731 -8.9876 +10580 35.28738 18.24347 -8.98338 0.03668 -7.8113565107 -8.2020313053 -8.98338 +10585 35.27004 18.23481 -8.97916 0.03671 -7.8076901362 -8.1981803885 -8.97916 +10590 35.25272 18.22616 -8.97495 0.03675 -7.8040332389 -8.1943391232 -8.97495 +10595 35.23541 18.21752 -8.97074 0.03679 -7.8003758195 -8.1904975099 -8.97074 +10600 35.21812 18.20889 -8.96653 0.03682 -7.7967178788 -8.186655549 -8.96653 +10605 35.20085 18.20027 -8.96233 0.03686 -7.7930694176 -8.1828232411 -8.96233 +10610 35.1836 18.19166 -8.95814 0.03690 -7.7894304365 -8.1790005866 -8.95814 +10615 35.16636 18.18306 -8.95395 0.03693 -7.7857909364 -8.1751775861 -8.95395 +10620 35.14914 18.17446 -8.94976 0.03697 -7.7821509178 -8.17135424 -8.94976 +10625 35.13193 18.16587 -8.94558 0.03701 -7.7785203817 -8.1675405488 -8.94558 +10630 35.11475 18.15729 -8.9414 0.03704 -7.7748893286 -8.163726513 -8.9414 +10635 35.09758 18.14872 -8.93723 0.03708 -7.7712677594 -8.1599221331 -8.93723 +10640 35.08043 18.14016 -8.93306 0.03712 -7.7676456747 -8.1561174096 -8.93306 +10645 35.06329 18.13161 -8.92889 0.03715 -7.7640230754 -8.1523123429 -8.92889 +10650 35.04617 18.12306 -8.92473 0.03719 -7.760409962 -8.1485169336 -8.92473 +10655 35.02907 18.11453 -8.92058 0.03723 -7.7568063353 -8.1447311821 -8.92058 +10660 35.01198 18.106 -8.91643 0.03726 -7.7532021961 -8.1409450889 -8.91643 +10665 34.99492 18.09748 -8.91228 0.03730 -7.7495975451 -8.1371586545 -8.91228 +10670 34.97787 18.08897 -8.90814 0.03734 -7.746002383 -8.1333818793 -8.90814 +10675 34.96083 18.08047 -8.904 0.03737 -7.7424067105 -8.1296047639 -8.904 +10680 34.94381 18.07197 -8.89987 0.03741 -7.7388205283 -8.1258373087 -8.89987 +10685 34.92681 18.06348 -8.89574 0.03745 -7.7352338372 -8.1220695142 -8.89574 +10690 34.90983 18.05501 -8.89162 0.03748 -7.7316566378 -8.1183113809 -8.89162 +10695 34.89286 18.04654 -8.8875 0.03752 -7.7280789309 -8.1145529092 -8.8875 +10700 34.87591 18.03808 -8.88338 0.03756 -7.7245007171 -8.1107940996 -8.88338 +10705 34.85897 18.02962 -8.87927 0.03759 -7.7209319973 -8.1070449527 -8.87927 +10710 34.84206 18.02118 -8.87516 0.03763 -7.7173627721 -8.1032954688 -8.87516 +10715 34.82516 18.01274 -8.87106 0.03767 -7.7138030422 -8.0995556484 -8.87106 +10720 34.80827 18.00431 -8.86696 0.03770 -7.7102428082 -8.0958154921 -8.86696 +10725 34.7914 17.99589 -8.86287 0.03774 -7.7066920711 -8.0920850002 -8.86287 +10730 34.77455 17.98748 -8.85878 0.03778 -7.7031408313 -8.0883541733 -8.85878 +10735 34.75772 17.97908 -8.8547 0.03782 -7.6995990897 -8.0846330119 -8.8547 +10740 34.7409 17.97068 -8.85062 0.03785 -7.6960568469 -8.0809115163 -8.85062 +10745 34.72409 17.9623 -8.84654 0.03789 -7.6925141036 -8.077189687 -8.84654 +10750 34.70731 17.95392 -8.84247 0.03793 -7.6889808605 -8.0734775246 -8.84247 +10755 34.69054 17.94555 -8.8384 0.03796 -7.6854471184 -8.0697650294 -8.8384 +10760 34.67379 17.93718 -8.83434 0.03800 -7.6819228779 -8.066062202 -8.83434 +10765 34.65705 17.92883 -8.83028 0.03804 -7.6783981397 -8.0623590428 -8.83028 +10770 34.64033 17.92048 -8.82622 0.03807 -7.6748729045 -8.0586555523 -8.82622 +10775 34.62362 17.91215 -8.82217 0.03811 -7.671357173 -8.0549617309 -8.82217 +10780 34.60694 17.90382 -8.81813 0.03815 -7.6678509459 -8.0512775791 -8.81813 +10785 34.59026 17.89549 -8.81408 0.03819 -7.6643342238 -8.0475830974 -8.81408 +10790 34.57361 17.88718 -8.81005 0.03822 -7.6608370076 -8.0439082861 -8.81005 +10795 34.55697 17.87887 -8.80601 0.03826 -7.6573292978 -8.0402231458 -8.80601 +10800 34.54035 17.87058 -8.80198 0.03830 -7.6538310951 -8.036547677 -8.80198 +10805 34.52374 17.86229 -8.79796 0.03833 -7.6503424002 -8.03288188 -8.79796 +10810 34.50715 17.85401 -8.79394 0.03837 -7.6468532139 -8.0292157554 -8.79394 +10815 34.49057 17.84573 -8.78992 0.03841 -7.6433635367 -8.0255493036 -8.78992 +10820 34.47402 17.83747 -8.78591 0.03845 -7.6398833694 -8.021892525 -8.78591 +10825 34.45747 17.82921 -8.7819 0.03848 -7.6364027127 -8.0182354201 -8.7819 +10830 34.44095 17.82096 -8.7779 0.03852 -7.6329315671 -8.0145879894 -8.7779 +10835 34.42444 17.81272 -8.7739 0.03856 -7.6294599335 -8.0109402333 -8.7739 +10840 34.40794 17.80448 -8.7699 0.03860 -7.6259878125 -8.0072921522 -8.7699 +10845 34.39146 17.79626 -8.76591 0.03863 -7.6225252047 -8.0036537466 -8.76591 +10850 34.375 17.78804 -8.76193 0.03867 -7.6190721108 -8.000025017 -8.76193 +10855 34.35855 17.77983 -8.75794 0.03871 -7.6156085315 -7.9963859637 -8.75794 +10860 34.34212 17.77163 -8.75396 0.03875 -7.6121544675 -7.9927565873 -8.75396 +10865 34.32571 17.76344 -8.74999 0.03878 -7.6087099194 -7.9891368882 -8.74999 +10870 34.30931 17.75525 -8.74602 0.03882 -7.6052648879 -7.9855168669 -8.74602 +10875 34.29292 17.74707 -8.74205 0.03886 -7.6018193737 -7.9818965237 -8.74205 +10880 34.27655 17.7389 -8.73809 0.03890 -7.5983833774 -7.9782858591 -8.73809 +10885 34.2602 17.73074 -8.73413 0.03893 -7.5949468998 -7.9746748736 -8.73413 +10890 34.24387 17.72259 -8.73018 0.03897 -7.5915199414 -7.9710735676 -8.73018 +10895 34.22755 17.71444 -8.72623 0.03901 -7.5880925029 -7.9674719416 -8.72623 +10900 34.21124 17.7063 -8.72229 0.03905 -7.584674585 -7.963879996 -8.72229 +10905 34.19495 17.69817 -8.71834 0.03908 -7.5812461883 -7.9602777311 -8.71834 +10910 34.17868 17.69005 -8.71441 0.03912 -7.5778373136 -7.9566951476 -8.71441 +10915 34.16242 17.68193 -8.71047 0.03916 -7.5744179614 -7.9531022458 -8.71047 +10920 34.14618 17.67382 -8.70654 0.03920 -7.5710081324 -7.9495190261 -8.70654 +10925 34.12995 17.66572 -8.70262 0.03923 -7.5676078273 -7.9459454889 -8.70262 +10930 34.11374 17.65763 -8.6987 0.03927 -7.5642070467 -7.9423716349 -8.6987 +10935 34.09754 17.64955 -8.69478 0.03931 -7.5608057913 -7.9387974642 -8.69478 +10940 34.08136 17.64147 -8.69087 0.03935 -7.5574140617 -7.9352329774 -8.69087 +10945 34.0652 17.6334 -8.68696 0.03938 -7.5540218586 -7.931668175 -8.68696 +10950 34.04905 17.62534 -8.68306 0.03942 -7.5506391826 -7.9281130573 -8.68306 +10955 34.03292 17.61729 -8.67916 0.03946 -7.5472560344 -7.9245576248 -8.67916 +10960 34.0168 17.60924 -8.67526 0.03950 -7.5438724146 -7.9210018779 -8.67526 +10965 34.0007 17.6012 -8.67137 0.03953 -7.5404983238 -7.9174558171 -8.67137 +10970 33.98461 17.59317 -8.66748 0.03957 -7.5371237628 -7.9139094427 -8.66748 +10975 33.96854 17.58515 -8.66359 0.03961 -7.5337487322 -7.9103627552 -8.66359 +10980 33.95248 17.57713 -8.65971 0.03965 -7.5303832325 -7.906825755 -8.65971 +10985 33.93644 17.56913 -8.65584 0.03969 -7.5270272644 -7.9032984427 -8.65584 +10990 33.92041 17.56113 -8.65197 0.03972 -7.5236708287 -7.8997708184 -8.65197 +10995 33.9044 17.55314 -8.6481 0.03976 -7.5203139258 -7.8962428828 -8.6481 +11000 33.8884 17.54515 -8.64423 0.03980 -7.5169565565 -7.8927146363 -8.64423 +11005 33.87242 17.53717 -8.64037 0.03984 -7.5136087214 -8.64037 -8.64037 +11010 33.85646 17.5292 -8.63652 0.03988 -7.510270421 -8.63652 -8.63652 +11015 33.84051 17.52124 -8.63266 0.03991 -7.5069216562 -8.63266 -8.63266 +11020 33.82457 17.51329 -8.62881 0.03995 -7.5035824274 -8.62881 -8.62881 +11025 33.80865 17.50534 -8.62497 0.03999 -7.5002527353 -8.62497 -8.62497 +11030 33.79275 17.4974 -8.62113 0.04003 -7.4969225806 -8.62113 -8.62113 +11035 33.77686 17.48947 -8.61729 0.04007 -7.4935919639 -8.61729 -8.61729 +11040 33.76098 17.48155 -8.61346 0.04010 -7.4902708857 -8.61346 -8.61346 +11045 33.74512 17.47363 -8.60963 0.04014 -7.4869493468 -8.60963 -8.60963 +11050 33.72928 17.46572 -8.60581 0.04018 -7.4836373477 -8.60581 -8.60581 +11055 33.71345 17.45782 -8.60199 0.04022 -7.4803248892 -8.60199 -8.60199 +11060 33.69764 17.44993 -8.59817 0.04026 -7.4770119717 -8.59817 -8.59817 +11065 33.68184 17.44204 -8.59436 0.04029 -7.4737085959 -8.59436 -8.59436 +11070 33.66605 17.43416 -8.59055 0.04033 -7.4704047625 -8.59055 -8.59055 +11075 33.65028 17.42629 -8.58674 0.04037 -7.467100472 -8.58674 -8.58674 +11080 33.63453 17.41842 -8.58294 0.04041 -7.4638057252 -8.58294 -8.58294 +11085 33.61879 17.41057 -8.57914 0.04045 -7.4605105225 -8.57914 -8.57914 +11090 33.60306 17.40272 -8.57535 0.04048 -7.4572248646 -8.57535 -8.57535 +11095 33.58735 17.39488 -8.57156 0.04052 -7.4539387522 -8.57156 -8.57156 +11100 33.57166 17.38704 -8.56778 0.04056 -7.4506621858 -8.56778 -8.56778 +11105 33.55597 17.37921 -8.56399 0.04060 -7.4473751661 -8.56399 -8.56399 +11110 33.54031 17.37139 -8.56022 0.04064 -7.4441076937 -8.56022 -8.56022 +11115 33.52466 17.36358 -8.55644 0.04068 -7.4408297691 -8.55644 -8.55644 +11120 33.50902 17.35578 -8.55267 0.04071 -7.437561393 -8.55267 -8.55267 +11125 33.4934 17.34798 -8.5489 0.04075 -7.4342925661 -8.5489 -8.5489 +11130 33.47779 17.34019 -8.54514 0.04079 -7.4310332888 -8.54514 -8.54514 +11135 33.4622 17.3324 -8.54138 0.04083 -7.4277735619 -8.54138 -8.54138 +11140 33.44662 17.32463 -8.53763 0.04087 -7.4245233858 -8.53763 -8.53763 +11145 33.43106 17.31686 -8.53388 0.04091 -7.4212727613 -8.53388 -8.53388 +11150 33.41551 17.3091 -8.53013 0.04094 -7.418021689 -8.53013 -8.53013 +11155 33.39998 17.30134 -8.52639 0.04098 -7.4147801693 -8.52639 -8.52639 +11160 33.38446 17.2936 -8.52265 0.04102 -7.411538203 -8.52265 -8.52265 +11165 33.36895 17.28586 -8.51891 0.04106 -7.4082957906 -8.51891 -8.51891 +11170 33.35346 17.27813 -8.51518 0.04110 -7.4050629328 -8.51518 -8.51518 +11175 33.33798 17.2704 -8.51145 0.04114 -7.4018296301 -8.51145 -8.51145 +11180 33.32252 17.26268 -8.50773 0.04117 -7.3986058831 -8.50773 -8.50773 +11185 33.30708 17.25497 -8.50401 0.04121 -7.3953816924 -8.50401 -8.50401 +11190 33.29164 17.24727 -8.50029 0.04125 -7.3921570587 -8.50029 -8.50029 +11195 33.27623 17.23957 -8.49658 0.04129 -7.3889419824 -8.49658 -8.49658 +11200 33.26082 17.23188 -8.49287 0.04133 -7.3857264643 -8.49287 -8.49287 +11205 33.24543 17.2242 -8.48916 0.04137 -7.3825105049 -8.48916 -8.48916 +11210 33.23006 17.21653 -8.48546 0.04141 -7.3793041047 -8.48546 -8.48546 +11215 33.2147 17.20886 -8.48176 0.04144 -7.3760972644 -8.48176 -8.48176 +11220 33.19935 17.2012 -8.47807 0.04148 -7.3728999846 -8.47807 -8.47807 +11225 33.18402 17.19355 -8.47437 0.04152 -7.3696922658 -8.47437 -8.47437 +11230 33.1687 17.1859 -8.47069 0.04156 -7.3665041087 -8.47069 -8.47069 +11235 33.1534 17.17826 -8.467 0.04160 -7.3633055138 -8.467 -8.467 +11240 33.13811 17.17063 -8.46332 0.04164 -7.3601164817 -8.46332 -8.46332 +11245 33.12283 17.163 -8.45965 0.04168 -7.356937013 -8.45965 -8.45965 +11250 33.10757 17.15539 -8.45598 0.04172 -7.3537571082 -8.45598 -8.45598 +11255 33.09232 17.14778 -8.45231 0.04175 -7.350576768 -8.45231 -8.45231 +11260 33.07709 17.14017 -8.44864 0.04179 -7.347395993 -8.44864 -8.44864 +11265 33.06187 17.13257 -8.44498 0.04183 -7.3442247836 -8.44498 -8.44498 +11270 33.04667 17.12499 -8.44132 0.04187 -7.3410531406 -8.44132 -8.44132 +11275 33.03148 17.1174 -8.43767 0.04191 -7.3378910644 -8.43767 -8.43767 +11280 33.0163 17.10983 -8.43402 0.04195 -7.3347285556 -8.43402 -8.43402 +11285 33.00114 17.10226 -8.43037 0.04199 -7.3315656149 -8.43037 -8.43037 +11290 32.98599 17.0947 -8.42673 0.04203 -7.3284122428 -8.42673 -8.42673 +11295 32.97086 17.08714 -8.42309 0.04206 -7.3252584398 -8.42309 -8.42309 +11300 32.95574 17.0796 -8.41946 0.04210 -7.3221142066 -8.41946 -8.41946 +11305 32.94063 17.07205 -8.41583 0.04214 -7.3189695436 -8.41583 -8.41583 +11310 32.92554 17.06452 -8.4122 0.04218 -7.3158244516 -8.4122 -8.4122 +11315 32.91046 17.05699 -8.40857 0.04222 -7.312678931 -8.40857 -8.40857 +11320 32.89539 17.04947 -8.40495 0.04226 -7.3095429824 -8.40495 -8.40495 +11325 32.88034 17.04196 -8.40133 0.04230 -7.3064066064 -8.40133 -8.40133 +11330 32.86531 17.03446 -8.39772 0.04234 -7.3032798035 -8.39772 -8.39772 +11335 32.85028 17.02696 -8.39411 0.04238 -7.3001525743 -8.39411 -8.39411 +11340 32.83528 17.01946 -8.3905 0.04242 -7.2970249195 -8.3905 -8.3905 +11345 32.82028 17.01198 -8.3869 0.04245 -7.2939068394 -8.3869 -8.3869 +11350 32.8053 17.0045 -8.3833 0.04249 -7.2907883348 -8.3833 -8.3833 +11355 32.79033 16.99703 -8.37971 0.04253 -7.2876794061 -8.37971 -8.37971 +11360 32.77538 16.98957 -8.37611 0.04257 -7.2845600539 -8.37611 -8.37611 +11365 32.76044 16.98211 -8.37253 0.04261 -7.2814602789 -8.37253 -8.37253 +11370 32.74551 16.97466 -8.36894 0.04265 -7.2783500814 -8.36894 -8.36894 +11375 32.7306 16.96721 -8.36536 0.04269 -7.2752494622 -8.36536 -8.36536 +11380 32.7157 16.95978 -8.36178 0.04273 -7.2721484217 -8.36178 -8.36178 +11385 32.70081 16.95235 -8.35821 0.04277 -7.2690569605 -8.35821 -8.35821 +11390 32.68594 16.94492 -8.35464 0.04281 -7.2659650792 -8.35464 -8.35464 +11395 32.67108 16.93751 -8.35107 0.04285 -7.2628727782 -8.35107 -8.35107 +11400 32.65624 16.9301 -8.34751 0.04289 -7.2597900583 -8.34751 -8.34751 +11405 32.64141 16.92269 -8.34395 0.04292 -7.2567069199 -8.34395 -8.34395 +11410 32.62659 16.9153 -8.34039 0.04296 -7.2536233635 -8.34039 -8.34039 +11415 32.61179 16.90791 -8.33684 0.04300 -7.2505493897 -8.33684 -8.33684 +11420 32.597 16.90052 -8.33329 0.04304 -7.2474749991 -8.33329 -8.33329 +11425 32.58222 16.89315 -8.32974 0.04308 -7.2444001923 -8.32974 -8.32974 +11430 32.56746 16.88578 -8.3262 0.04312 -7.2413349696 -8.3262 -8.3262 +11435 32.55271 16.87841 -8.32266 0.04316 -7.2382693318 -8.32266 -8.32266 +11440 32.53797 16.87106 -8.31912 0.04320 -7.2352032794 -8.31912 -8.31912 +11445 32.52325 16.86371 -8.31559 0.04324 -7.2321468128 -8.31559 -8.31559 +11450 32.50854 16.85637 -8.31206 0.04328 -7.2290899326 -8.31206 -8.31206 +11455 32.49384 16.84903 -8.30854 0.04332 -7.2260426394 -8.30854 -8.30854 +11460 32.47916 16.8417 -8.30502 0.04336 -7.2229949338 -8.30502 -8.30502 +11465 32.46449 16.83438 -8.3015 0.04340 -7.2199468162 -8.3015 -8.3015 +11470 32.44983 16.82706 -8.29798 0.04344 -7.2168982872 -8.29798 -8.29798 +11475 32.43519 16.81975 -8.29447 0.04348 -7.2138593473 -8.29447 -8.29447 +11480 32.42056 16.81245 -8.29096 0.04352 -7.2108199971 -8.29096 -8.29096 +11485 32.40594 16.80516 -8.28746 0.04356 -7.2077902371 -8.28746 -8.28746 +11490 32.39134 16.79787 -8.28396 0.04359 -7.2047600678 -8.28396 -8.28396 +11495 32.37675 16.79058 -8.28046 0.04363 -7.2017294898 -8.28046 -8.28046 +11500 32.36217 16.78331 -8.27697 0.04367 -7.1987085036 -8.27697 -8.27697 +11505 32.34761 16.77604 -8.27348 0.04371 -7.1956871098 -8.27348 -8.27348 +11510 32.33306 16.76877 -8.26999 0.04375 -7.1926653088 -8.26999 -8.26999 +11515 32.31852 16.76152 -8.26651 0.04379 -7.1896531012 -8.26651 -8.26651 +11520 32.304 16.75427 -8.26303 0.04383 -7.1866404876 -8.26303 -8.26303 +11525 32.28949 16.74703 -8.25955 0.04387 -7.1836274684 -8.25955 -8.25955 +11530 32.27499 16.73979 -8.25608 0.04391 -7.1806240441 -8.25608 -8.25608 +11535 32.26051 16.73256 -8.25261 0.04395 -7.1776202155 -8.25261 -8.25261 +11540 32.24604 16.72533 -8.24914 0.04399 -7.1746159828 -8.24914 -8.24914 +11545 32.23158 16.71812 -8.24568 0.04403 -7.1716213467 -8.24568 -8.24568 +11550 32.21713 16.71091 -8.24222 0.04407 -7.1686263077 -8.24222 -8.24222 +11555 32.2027 16.7037 -8.23876 0.04411 -7.1656308663 -8.23876 -8.23876 +11560 32.18828 16.69651 -8.23531 0.04415 -7.162645023 -8.23531 -8.23531 +11565 32.17388 16.68931 -8.23186 0.04419 -7.1596587784 -8.23186 -8.23186 +11570 32.15948 16.68213 -8.22841 0.04423 -7.156672133 -8.22841 -8.22841 +11575 32.1451 16.67495 -8.22497 0.04427 -7.1536950872 -8.22497 -8.22497 +11580 32.13074 16.66778 -8.22153 0.04431 -7.1507176417 -8.22153 -8.22153 +11585 32.11638 16.66061 -8.21809 0.04435 -7.1477397969 -8.21809 -8.21809 +11590 32.10204 16.65346 -8.21466 0.04439 -7.1447715533 -8.21466 -8.21466 +11595 32.08771 16.6463 -8.21123 0.04443 -7.1418029115 -8.21123 -8.21123 +11600 32.0734 16.63916 -8.2078 0.04447 -7.138833872 -8.2078 -8.2078 +11605 32.05909 16.63202 -8.20438 0.04451 -7.1358744353 -8.20438 -8.20438 +11610 32.0448 16.62488 -8.20096 0.04455 -7.1329146019 -8.20096 -8.20096 +11615 32.03053 16.61776 -8.19754 0.04459 -7.1299543722 -8.19754 -8.19754 +11620 32.01626 16.61064 -8.19413 0.04463 -7.127003747 -8.19413 -8.19413 +11625 32.00201 16.60352 -8.19072 0.04467 -7.1240527265 -8.19072 -8.19072 +11630 31.98777 16.59642 -8.18731 0.04471 -7.1211013114 -8.18731 -8.18731 +11635 31.97355 16.58931 -8.18391 0.04475 -7.1181595022 -8.18391 -8.18391 +11640 31.95933 16.58222 -8.18051 0.04479 -7.1152172993 -8.18051 -8.18051 +11645 31.94513 16.57513 -8.17712 0.04483 -7.1122847033 -8.17712 -8.17712 +11650 31.93094 16.56805 -8.17372 0.04487 -7.1093417147 -8.17372 -8.17372 +11655 31.91677 16.56097 -8.17033 0.04491 -7.1064083339 -8.17033 -8.17033 +11660 31.90261 16.5539 -8.16695 0.04495 -7.1034845616 -8.16695 -8.16695 +11665 31.88846 16.54684 -8.16356 0.04499 -7.1005503981 -8.16356 -8.16356 +11670 31.87432 16.53978 -8.16018 0.04503 -7.0976258441 -8.16018 -8.16018 +11675 31.86019 16.53273 -8.15681 0.04507 -7.0947108999 -8.15681 -8.15681 +11680 31.84608 16.52569 -8.15343 0.04511 -7.0917855661 -8.15343 -8.15343 +11685 31.83198 16.51865 -8.15006 0.04515 -7.0888698432 -8.15006 -8.15006 +11690 31.8179 16.51162 -8.1467 0.04519 -7.0859637317 -8.1467 -8.1467 +11695 31.80382 16.50459 -8.14333 0.04523 -7.0830472321 -8.14333 -8.14333 +11700 31.78976 16.49757 -8.13997 0.04527 -7.080140345 -8.13997 -8.13997 +11705 31.77571 16.49056 -8.13661 0.04531 -7.0772330706 -8.13661 -8.13661 +11710 31.76167 16.48355 -8.13326 0.04535 -7.0743354097 -8.13326 -8.13326 +11715 31.74765 16.47655 -8.12991 0.04539 -7.0714373627 -8.12991 -8.12991 +11720 31.73364 16.46956 -8.12656 0.04543 -7.06853893 -8.12656 -8.12656 +11725 31.71964 16.46257 -8.12322 0.04547 -7.0656501122 -8.12322 -8.12322 +11730 31.70565 16.45559 -8.11988 0.04551 -7.0627609098 -8.11988 -8.11988 +11735 31.69167 16.44861 -8.11654 0.04555 -7.0598713232 -8.11654 -8.11654 +11740 31.67771 16.44164 -8.1132 0.04559 -7.0569813529 -8.1132 -8.1132 +11745 31.66376 16.43468 -8.10987 0.04563 -7.0541009995 -8.10987 -8.10987 +11750 31.64983 16.42772 -8.10654 0.04568 -7.0512202634 -8.10654 -8.10654 +11755 31.6359 16.42077 -8.10322 0.04572 -7.0483491451 -8.10322 -8.10322 +11760 31.62199 16.41383 -8.0999 0.04576 -7.0454776451 -8.0999 -8.0999 +11765 31.60809 16.40689 -8.09658 0.04580 -7.0426057639 -8.09658 -8.09658 +11770 31.5942 16.39995 -8.09326 0.04584 -7.039733502 -8.09326 -8.09326 +11775 31.58032 16.39303 -8.08995 0.04588 -7.0368708598 -8.08995 -8.08995 +11780 31.56646 16.38611 -8.08664 0.04592 -7.0340078379 -8.08664 -8.08664 +11785 31.55261 16.37919 -8.08333 0.04596 -7.0311444367 -8.08333 -8.08333 +11790 31.53877 16.37229 -8.08003 0.04600 -7.0282906566 -8.08003 -8.08003 +11795 31.52494 16.36538 -8.07673 0.04604 -7.0254364983 -8.07673 -8.07673 +11800 31.51113 16.35849 -8.07343 0.04608 -7.0225819622 -8.07343 -8.07343 +11805 31.49732 16.3516 -8.07014 0.04612 -7.0197370486 -8.07014 -8.07014 +11810 31.48353 16.34471 -8.06685 0.04616 -7.0168917583 -8.06685 -8.06685 +11815 31.46975 16.33784 -8.06356 0.04620 -7.0140460915 -8.06356 -8.06356 +11820 31.45599 16.33096 -8.06028 0.04624 -7.0112100488 -8.06028 -8.06028 +11825 31.44223 16.3241 -8.057 0.04628 -7.0083736306 -8.057 -8.057 +11830 31.42849 16.31724 -8.05372 0.04632 -7.0055368375 -8.05372 -8.05372 +11835 31.41476 16.31038 -8.05045 0.04637 -7.00270967 -8.05045 -8.05045 +11840 31.40104 16.30354 -8.04717 0.04641 -6.9998721283 -8.04717 -8.04717 +11845 31.38734 16.29669 -8.04391 0.04645 -6.9970542132 -8.04391 -8.04391 +11850 31.37364 16.28986 -8.04064 0.04649 -6.994225925 -8.04064 -8.04064 +11855 31.35996 16.28303 -8.03738 0.04653 -6.9914072642 -8.03738 -8.03738 +11860 31.34629 16.27621 -8.03412 0.04657 -6.9885882312 -8.03412 -8.03412 +11865 31.33263 16.26939 -8.03086 0.04661 -6.9857688267 -8.03086 -8.03086 +11870 31.31899 16.26258 -8.02761 0.04665 -6.9829590509 -8.02761 -8.02761 +11875 31.30535 16.25577 -8.02436 0.04669 -6.9801489044 -8.02436 -8.02436 +11880 31.29173 16.24897 -8.02111 0.04673 -6.9773383877 -8.02111 -8.02111 +11885 31.27812 16.24218 -8.01787 0.04677 -6.9745375011 -8.01787 -8.01787 +11890 31.26452 16.23539 -8.01463 0.04682 -6.9717362453 -8.01463 -8.01463 +11895 31.25094 16.22861 -8.01139 0.04686 -6.9689346206 -8.01139 -8.01139 +11900 31.23736 16.22183 -8.00816 0.04690 -6.9661426276 -8.00816 -8.00816 +11905 31.2238 16.21506 -8.00493 0.04694 -6.9633502666 -8.00493 -8.00493 +11910 31.21025 16.2083 -8.0017 0.04698 -6.9605575381 -8.0017 -8.0017 +11915 31.19671 16.20154 -7.99847 0.04702 -6.9577644427 -7.99847 -7.99847 +11920 31.18318 16.19479 -7.99525 0.04706 -6.9549809808 -7.99525 -7.99525 +11925 31.16967 16.18804 -7.99203 0.04710 -6.9521971527 -7.99203 -7.99203 +11930 31.15616 16.1813 -7.98881 0.04714 -6.9494129591 -7.98881 -7.98881 +11935 31.14267 16.17456 -7.9856 0.04718 -6.9466384003 -7.9856 -7.9856 +11940 31.12919 16.16784 -7.98239 0.04723 -6.9438634768 -7.98239 -7.98239 +11945 31.11572 16.16111 -7.97918 0.04727 -6.9410881891 -7.97918 -7.97918 +11950 31.10227 16.1544 -7.97598 0.04731 -6.9383225376 -7.97598 -7.97598 +11955 31.08882 16.14768 -7.97278 0.04735 -6.9355565228 -7.97278 -7.97278 +11960 31.07539 16.14098 -7.96958 0.04739 -6.9327901451 -7.96958 -7.96958 +11965 31.06197 16.13428 -7.96639 0.04743 -6.930033405 -7.96639 -7.96639 +11970 31.04856 16.12758 -7.96319 0.04747 -6.927266303 -7.96319 -7.96319 +11975 31.03516 16.1209 -7.96 0.04751 -6.9245088394 -7.96 -7.96 +11980 31.02177 16.11421 -7.95682 0.04755 -6.9217610148 -7.95682 -7.95682 +11985 31.0084 16.10754 -7.95363 0.04760 -6.9190028296 -7.95363 -7.95363 +11990 30.99503 16.10087 -7.95045 0.04764 -6.9162542843 -7.95045 -7.95045 +11995 30.98168 16.0942 -7.94728 0.04768 -6.9135153793 -7.94728 -7.94728 +12000 30.96834 16.08754 -7.9441 0.04772 -6.910766115 -7.9441 -7.9441 +12005 30.95501 16.08089 -7.94093 0.04776 -6.9080264919 -7.94093 -7.94093 +12010 30.9417 16.07424 -7.93776 0.0478 -6.9052865105 -7.93776 -7.93776 +12015 30.92839 16.0676 -7.9346 0.04784 -6.9025561711 -7.9346 -7.9346 +12020 30.9151 16.06096 -7.93144 0.04789 -6.8998254744 -7.93144 -7.93144 +12025 30.90181 16.05433 -7.92828 0.04793 -6.8970944206 -7.92828 -7.92828 +12030 30.88854 16.04771 -7.92512 0.04797 -6.8943630102 -7.92512 -7.92512 +12035 30.87528 16.04109 -7.92197 0.04801 -6.8916412437 -7.92197 -7.92197 +12040 30.86203 16.03448 -7.91882 0.04805 -6.8889191216 -7.91882 -7.91882 +12045 30.8488 16.02787 -7.91567 0.04809 -6.8861966442 -7.91567 -7.91567 +12050 30.83557 16.02127 -7.91252 0.04813 -6.883473812 -7.91252 -7.91252 +12055 30.82236 16.01467 -7.90938 0.04818 -6.8807606255 -7.90938 -7.90938 +12060 30.80915 16.00808 -7.90624 0.04822 -6.878047085 -7.90624 -7.90624 +12065 30.79596 16.0015 -7.90311 0.04826 -6.8753431911 -7.90311 -7.90311 +12070 30.78278 15.99492 -7.89998 0.0483 -6.8726389442 -7.89998 -7.89998 +12075 30.76961 15.98834 -7.89685 0.04834 -6.8699343447 -7.89685 -7.89685 +12080 30.75646 15.98177 -7.89372 0.04838 -6.867229393 -7.89372 -7.89372 +12085 30.74331 15.97521 -7.89059 0.04842 -6.8645240896 -7.89059 -7.89059 +12090 30.73018 15.96866 -7.88747 0.04847 -6.8618284349 -7.88747 -7.88747 +12095 30.71705 15.9621 -7.88435 0.04851 -6.8591324294 -7.88435 -7.88435 +12100 30.70394 15.95556 -7.88124 0.04855 -6.8564460735 -7.88124 -7.88124 +12105 30.69084 15.94902 -7.87813 0.04859 -6.8537593675 -7.87813 -7.87813 +12110 30.67775 15.94249 -7.87502 0.04863 -6.8510723121 -7.87502 -7.87502 +12115 30.66467 15.93596 -7.87191 0.04867 -6.8483849075 -7.87191 -7.87191 +12120 30.6516 15.92943 -7.86881 0.04872 -6.8457071543 -7.86881 -7.86881 +12125 30.63855 15.92292 -7.8657 0.04876 -6.8430190528 -7.8657 -7.8657 +12130 30.6255 15.91641 -7.86261 0.0488 -6.8403506035 -7.86261 -7.86261 +12135 30.61247 15.9099 -7.85951 0.04884 -6.8376718069 -7.85951 -7.85951 +12140 30.59945 15.9034 -7.85642 0.04888 -6.8350026632 -7.85642 -7.85642 +12145 30.58643 15.8969 -7.85333 0.04893 -6.8323331731 -7.85333 -7.85333 +12150 30.57343 15.89041 -7.85024 0.04897 -6.8296633368 -7.85024 -7.85024 +12155 30.56044 15.88393 -7.84716 0.04901 -6.8270031549 -7.84716 -7.84716 +12160 30.54747 15.87745 -7.84408 0.04905 -6.8243426277 -7.84408 -7.84408 +12165 30.5345 15.87098 -7.841 0.04909 -6.8216817557 -7.841 -7.841 +12170 30.52154 15.86451 -7.83792 0.04913 -6.8190205393 -7.83792 -7.83792 +12175 30.5086 15.85805 -7.83485 0.04918 -6.816368979 -7.83485 -7.83485 +12180 30.49566 15.85159 -7.83178 0.04922 -6.813717075 -7.83178 -7.83178 +12185 30.48274 15.84514 -7.82872 0.04926 -6.811074828 -7.82872 -7.82872 +12190 30.46983 15.8387 -7.82565 0.0493 -6.8084222383 -7.82565 -7.82565 +12195 30.45693 15.83226 -7.82259 0.04934 -6.8057793063 -7.82259 -7.82259 +12200 30.44404 15.82582 -7.81953 0.04939 -6.8031360324 -7.81953 -7.81953 +12205 30.43116 15.81939 -7.81648 0.04943 -6.8005024171 -7.81648 -7.81648 +12210 30.41829 15.81297 -7.81342 0.04947 -6.7978584607 -7.81342 -7.81342 +12215 30.40543 15.80655 -7.81037 0.04951 -6.7952241638 -7.81037 -7.81037 +12220 30.39259 15.80014 -7.80733 0.04955 -6.7925995267 -7.80733 -7.80733 +12225 30.37975 15.79373 -7.80428 0.0496 -6.7899645498 -7.80428 -7.80428 +12230 30.36693 15.78733 -7.80124 0.04964 -6.7873392336 -7.80124 -7.80124 +12235 30.35411 15.78093 -7.7982 0.04968 -6.7847135784 -7.7982 -7.7982 +12240 30.34131 15.77454 -7.79517 0.04972 -6.7820975847 -7.79517 -7.79517 +12245 30.32852 15.76816 -7.79213 0.04977 -6.7794712529 -7.79213 -7.79213 +12250 30.31574 15.76178 -7.7891 0.04981 -6.7768545834 -7.7891 -7.7891 +12255 30.30297 15.7554 -7.78607 0.04985 -6.7742375767 -7.78607 -7.78607 +12260 30.29021 15.74903 -7.78305 0.04989 -6.7716302331 -7.78305 -7.78305 +12265 30.27746 15.74267 -7.78003 0.04993 -6.769022553 -7.78003 -7.78003 +12270 30.26472 15.73631 -7.77701 0.04998 -6.7664145369 -7.77701 -7.77701 +12275 30.25199 15.72996 -7.77399 0.05002 -6.7638061852 -7.77399 -7.77399 +12280 30.23928 15.72361 -7.77098 0.05006 -6.7612074982 -7.77098 -7.77098 +12285 30.22657 15.71727 -7.76797 0.0501 -6.7586084765 -7.76797 -7.76797 +12290 30.21388 15.71093 -7.76496 0.05015 -6.7560091203 -7.76496 -7.76496 +12295 30.20119 15.7046 -7.76195 0.05019 -6.7534094301 -7.76195 -7.76195 +12300 30.18852 15.69827 -7.75895 0.05023 -6.7508194064 -7.75895 -7.75895 +12305 30.17586 15.69195 -7.75595 0.05027 -6.7482290495 -7.75595 -7.75595 +12310 30.1632 15.68564 -7.75295 0.05031 -6.7456383598 -7.75295 -7.75295 +12315 30.15056 15.67932 -7.74996 0.05036 -6.7430573377 -7.74996 -7.74996 +12320 30.13793 15.67302 -7.74697 0.0504 -6.7404759837 -7.74697 -7.74697 +12325 30.12531 15.66672 -7.74398 0.05044 -6.7378942981 -7.74398 -7.74398 +12330 30.1127 15.66043 -7.74099 0.05048 -6.7353122814 -7.74099 -7.74099 +12335 30.1001 15.65414 -7.73801 0.05053 -6.7327399339 -7.73801 -7.73801 +12340 30.08751 15.64785 -7.73502 0.05057 -6.730157256 -7.73502 -7.73502 +12345 30.07493 15.64157 -7.73205 0.05061 -6.7275942482 -7.73205 -7.73205 +12350 30.06237 15.6353 -7.72907 0.05065 -6.7250209109 -7.72907 -7.72907 +12355 30.04981 15.62903 -7.7261 0.0507 -6.7224572444 -7.7261 -7.7261 +12360 30.03726 15.62277 -7.72313 0.05074 -6.7198932492 -7.72313 -7.72313 +12365 30.02473 15.61651 -7.72016 0.05078 -6.7173289256 -7.72016 -7.72016 +12370 30.0122 15.61026 -7.7172 0.05082 -6.714774274 -7.7172 -7.7172 +12375 29.99969 15.60401 -7.71423 0.05087 -6.7122092949 -7.71423 -7.71423 +12380 29.98718 15.59777 -7.71127 0.05091 -6.7096539887 -7.71127 -7.71127 +12385 29.97469 15.59153 -7.70832 0.05095 -6.7071083557 -7.70832 -7.70832 +12390 29.96221 15.5853 -7.70536 0.05099 -6.7045523963 -7.70536 -7.70536 +12395 29.94973 15.57908 -7.70241 0.05104 -6.7020061109 -7.70241 -7.70241 +12400 29.93727 15.57285 -7.69946 0.05108 -6.6994595 -7.69946 -7.69946 +12405 29.92482 15.56664 -7.69652 0.05112 -6.6969225639 -7.69652 -7.69652 +12410 29.91238 15.56043 -7.69357 0.05117 -6.694375303 -7.69357 -7.69357 +12415 29.89995 15.55422 -7.69063 0.05121 -6.6918377177 -7.69063 -7.69063 +12420 29.88753 15.54802 -7.68769 0.05125 -6.6892998084 -7.68769 -7.68769 +12425 29.87511 15.54183 -7.68476 0.05129 -6.6867715754 -7.68476 -7.68476 +12430 29.86271 15.53564 -7.68183 0.05134 -6.6842430193 -7.68183 -7.68183 +12435 29.85032 15.52945 -7.6789 0.05138 -6.6817141403 -7.6789 -7.6789 +12440 29.83794 15.52327 -7.67597 0.05142 -6.6791849389 -7.67597 -7.67597 +12445 29.82558 15.5171 -7.67304 0.05147 -6.6766554154 -7.67304 -7.67304 +12450 29.81322 15.51093 -7.67012 0.05151 -6.6741355703 -7.67012 -7.67012 +12455 29.80087 15.50476 -7.6672 0.05155 -6.6716154038 -7.6672 -7.6672 +12460 29.78853 15.49861 -7.66428 0.05159 -6.6690949165 -7.66428 -7.66428 +12465 29.7762 15.49245 -7.66137 0.05164 -6.6665841087 -7.66137 -7.66137 +12470 29.76388 15.4863 -7.65846 0.05168 -6.6640729807 -7.65846 -7.65846 +12475 29.75158 15.48016 -7.65555 0.05172 -6.661561533 -7.65555 -7.65555 +12480 29.73928 15.47402 -7.65264 0.05177 -6.659049766 -7.65264 -7.65264 +12485 29.72699 15.46789 -7.64974 0.05181 -6.6565476799 -7.64974 -7.64974 +12490 29.71471 15.46176 -7.64684 0.05185 -6.6540452753 -7.64684 -7.64684 +12495 29.70245 15.45563 -7.64394 0.05189 -6.6515425525 -7.64394 -7.64394 +12500 29.69019 15.44952 -7.64104 0.05194 -6.6490395119 -7.64104 -7.64104 +12505 29.67794 15.4434 -7.63815 0.05198 -6.6465461538 -7.63815 -7.63815 +12510 29.66571 15.43729 -7.63526 0.05202 -6.6440524787 -7.63526 -7.63526 +12515 29.65348 15.43119 -7.63237 0.05207 -6.6415584869 -7.63237 -7.63237 +12520 29.64126 15.42509 -7.62948 0.05211 -6.6390641788 -7.62948 -7.62948 +12525 29.62906 15.419 -7.6266 0.05215 -6.6365795547 -7.6266 -7.6266 +12530 29.61686 15.41291 -7.62372 0.0522 -6.6340946152 -7.62372 -7.62372 +12535 29.60468 15.40683 -7.62084 0.05224 -6.6316093604 -7.62084 -7.62084 +12540 29.5925 15.40075 -7.61796 0.05228 -6.6291237909 -7.61796 -7.61796 +12545 29.58033 15.39468 -7.61509 0.05233 -6.6266479069 -7.61509 -7.61509 +12550 29.56818 15.38861 -7.61222 0.05237 -6.6241717089 -7.61222 -7.61222 +12555 29.55603 15.38255 -7.60935 0.05241 -6.6216951973 -7.60935 -7.60935 +12560 29.5439 15.37649 -7.60649 0.05246 -6.6192283724 -7.60649 -7.60649 +12565 29.53177 15.37044 -7.60363 0.0525 -6.6167612345 -7.60363 -7.60363 +12570 29.51965 15.36439 -7.60077 0.05254 -6.6142937841 -7.60077 -7.60077 +12575 29.50755 15.35835 -7.59791 0.05259 -6.6118260216 -7.59791 -7.59791 +12580 29.49545 15.35231 -7.59505 0.05263 -6.6093579472 -7.59505 -7.59505 +12585 29.48337 15.34627 -7.5922 0.05267 -6.6068995615 -7.5922 -7.5922 +12590 29.47129 15.34025 -7.58935 0.05272 -6.6044408646 -7.58935 -7.58935 +12595 29.45922 15.33422 -7.5865 0.05276 -6.6019818571 -7.5865 -7.5865 +12600 29.44717 15.3282 -7.58366 0.0528 -6.5995325393 -7.58366 -7.58366 +12605 29.43512 15.32219 -7.58081 0.05285 -6.5970729115 -7.58081 -7.58081 +12610 29.42309 15.31618 -7.57797 0.05289 -6.5946229742 -7.57797 -7.57797 +12615 29.41106 15.31018 -7.57514 0.05293 -6.5921827277 -7.57514 -7.57514 +12620 29.39904 15.30418 -7.5723 0.05298 -6.5897321723 -7.5723 -7.5723 +12625 29.38704 15.29819 -7.56947 0.05302 -6.5872913084 -7.56947 -7.56947 +12630 29.37504 15.2922 -7.56664 0.05306 -6.5848501365 -7.56664 -7.56664 +12635 29.36305 15.28621 -7.56381 0.05311 -6.5824086568 -7.56381 -7.56381 +12640 29.35107 15.28024 -7.56099 0.05315 -6.5799768697 -7.56099 -7.56099 +12645 29.33911 15.27426 -7.55817 0.05319 -6.5775447756 -7.55817 -7.55817 +12650 29.32715 15.26829 -7.55535 0.05324 -6.5751123749 -7.55535 -7.55535 +12655 29.3152 15.26233 -7.55253 0.05328 -6.5726796679 -7.55253 -7.55253 +12660 29.30326 15.25637 -7.54971 0.05332 -6.570246655 -7.54971 -7.54971 +12665 29.29133 15.25041 -7.5469 0.05337 -6.5678233365 -7.5469 -7.5469 +12670 29.27942 15.24447 -7.54409 0.05341 -6.5653997128 -7.54409 -7.54409 +12675 29.26751 15.23852 -7.54128 0.05345 -6.5629757843 -7.54128 -7.54128 +12680 29.25561 15.23258 -7.53848 0.0535 -6.5605615513 -7.53848 -7.53848 +12685 29.24372 15.22665 -7.53568 0.05354 -6.5581470142 -7.53568 -7.53568 +12690 29.23184 15.22072 -7.53288 0.05359 -6.5557321734 -7.53288 -7.53288 +12695 29.21997 15.21479 -7.53008 0.05363 -6.5533170291 -7.53008 -7.53008 +12700 29.20811 15.20887 -7.52728 0.05367 -6.5509015818 -7.52728 -7.52728 +12705 29.19626 15.20295 -7.52449 0.05372 -6.5484958319 -7.52449 -7.52449 +12710 29.18442 15.19704 -7.5217 0.05376 -6.5460897796 -7.5217 -7.5217 +12715 29.17258 15.19114 -7.51891 0.0538 -6.5436834254 -7.51891 -7.51891 +12720 29.16076 15.18524 -7.51613 0.05385 -6.5412867695 -7.51613 -7.51613 +12725 29.14895 15.17934 -7.51335 0.05389 -6.5388898124 -7.51335 -7.51335 +12730 29.13715 15.17345 -7.51056 0.05394 -6.5364825544 -7.51056 -7.51056 +12735 29.12535 15.16756 -7.50779 0.05398 -6.5340949958 -7.50779 -7.50779 +12740 29.11357 15.16168 -7.50501 0.05402 -6.5316971371 -7.50501 -7.50501 +12745 29.1018 15.1558 -7.50224 0.05407 -6.5293089785 -7.50224 -7.50224 +12750 29.09003 15.14993 -7.49947 0.05411 -6.5269205204 -7.49947 -7.49947 +12755 29.07828 15.14406 -7.4967 0.05415 -6.5245317633 -7.4967 -7.4967 +12760 29.06653 15.1382 -7.49393 0.0542 -6.5221427073 -7.49393 -7.49393 +12765 29.0548 15.13234 -7.49117 0.05424 -6.5197633529 -7.49117 -7.49117 +12770 29.04307 15.12649 -7.48841 0.05429 -6.5173837004 -7.48841 -7.48841 +12775 29.03135 15.12064 -7.48565 0.05433 -6.5150037502 -7.48565 -7.48565 +12780 29.01965 15.11479 -7.48289 0.05437 -6.5126235026 -7.48289 -7.48289 +12785 29.00795 15.10895 -7.48014 0.05442 -6.510252958 -7.48014 -7.48014 +12790 28.99626 15.10312 -7.47739 0.05446 -6.5078821167 -7.47739 -7.47739 +12795 28.98458 15.09729 -7.47464 0.05451 -6.505510979 -7.47464 -7.47464 +12800 28.97291 15.09146 -7.47189 0.05455 -6.5031395454 -7.47189 -7.47189 +12805 28.96125 15.08564 -7.46915 0.05459 -6.5007778162 -7.46915 -7.46915 +12810 28.9496 15.07983 -7.46641 0.05464 -6.4984157916 -7.46641 -7.46641 +12815 28.93796 15.07402 -7.46367 0.05468 -6.4960534721 -7.46367 -7.46367 +12820 28.92633 15.06821 -7.46093 0.05473 -6.493690858 -7.46093 -7.46093 +12825 28.9147 15.06241 -7.4582 0.05477 -6.4913379496 -7.4582 -7.4582 +12830 28.90309 15.05661 -7.45547 0.05482 -6.4889847474 -7.45547 -7.45547 +12835 28.89149 15.05082 -7.45274 0.05486 -6.4866312515 -7.45274 -7.45274 +12840 28.87989 15.04503 -7.45001 0.0549 -6.4842774624 -7.45001 -7.45001 +12845 28.86831 15.03925 -7.44728 0.05495 -6.4819233805 -7.44728 -7.44728 +12850 28.85673 15.03347 -7.44456 0.05499 -6.479579006 -7.44456 -7.44456 +12855 28.84516 15.02769 -7.44184 0.05504 -6.4772343393 -7.44184 -7.44184 +12860 28.83361 15.02192 -7.43912 0.05508 -6.4748893807 -7.43912 -7.43912 +12865 28.82206 15.01616 -7.43641 0.05512 -6.4725541306 -7.43641 -7.43641 +12870 28.81052 15.0104 -7.43369 0.05517 -6.4702085893 -7.43369 -7.43369 +12875 28.79899 15.00465 -7.43098 0.05521 -6.4678727572 -7.43098 -7.43098 +12880 28.78747 14.99889 -7.42827 0.05526 -6.4655366346 -7.42827 -7.42827 +12885 28.77596 14.99315 -7.42557 0.0553 -6.4632102218 -7.42557 -7.42557 +12890 28.76446 14.98741 -7.42286 0.05535 -6.4608735192 -7.42286 -7.42286 +12895 28.75297 14.98167 -7.42016 0.05539 -6.4585465271 -7.42016 -7.42016 +12900 28.74148 14.97594 -7.41746 0.05544 -6.4562192458 -7.41746 -7.41746 +12905 28.73001 14.97021 -7.41477 0.05548 -6.4539016758 -7.41477 -7.41477 +12910 28.71854 14.96449 -7.41207 0.05552 -6.4515738172 -7.41207 -7.41207 +12915 28.70709 14.95877 -7.40938 0.05557 -6.4492556705 -7.40938 -7.40938 +12920 28.69564 14.95305 -7.40669 0.05561 -6.446937236 -7.40669 -7.40669 +12925 28.6842 14.94734 -7.404 0.05566 -6.444618514 -7.404 -7.404 +12930 28.67278 14.94164 -7.40132 0.0557 -6.4423095049 -7.40132 -7.40132 +12935 28.66136 14.93594 -7.39863 0.05575 -6.4399902089 -7.39863 -7.39863 +12940 28.64995 14.93024 -7.39595 0.05579 -6.4376806265 -7.39595 -7.39595 +12945 28.63855 14.92455 -7.39327 0.05584 -6.4353707579 -7.39327 -7.39327 +12950 28.62715 14.91887 -7.3906 0.05588 -6.4330706035 -7.3906 -7.3906 +12955 28.61577 14.91318 -7.38793 0.05592 -6.4307701636 -7.38793 -7.38793 +12960 28.6044 14.90751 -7.38525 0.05597 -6.4284594386 -7.38525 -7.38525 +12965 28.59303 14.90183 -7.38258 0.05601 -6.4261584287 -7.38258 -7.38258 +12970 28.58168 14.89617 -7.37992 0.05606 -6.4238671344 -7.37992 -7.37992 +12975 28.57033 14.8905 -7.37725 0.0561 -6.4215655559 -7.37725 -7.37725 +12980 28.55899 14.88484 -7.37459 0.05615 -6.4192736935 -7.37459 -7.37459 +12985 28.54766 14.87919 -7.37193 0.05619 -6.4169815476 -7.37193 -7.37193 +12990 28.53635 14.87354 -7.36927 0.05624 -6.4146891186 -7.36927 -7.36927 +12995 28.52503 14.86789 -7.36662 0.05628 -6.4124064067 -7.36662 -7.36662 +13000 28.51373 14.86225 -7.36397 0.0563 -6.4101234122 -7.36397 -7.36397 diff --git a/lutSi220R75.txt b/lutSi220R75.txt new file mode 100644 index 0000000..bdf6403 --- /dev/null +++ b/lutSi220R75.txt @@ -0,0 +1,1802 @@ +Energy CamArmRot CristBendRot CamPosX EvPerPix CamPosX_100nm CamPosX_150nm CamPosX_200nm +4000 107.34847 53.23358 -32.24938 0.00326 -32.24938 -32.24938 -30.6993781381 +4005 107.15349 53.13232 -32.20027 0.00327 -32.20027 -32.20027 -30.6522032262 +4010 106.95946 53.03155 -32.15132 0.00328 -32.15132 -32.15132 -30.6051834886 +4015 106.76634 52.93129 -32.10253 0.00330 -32.10253 -32.10253 -30.5583189434 +4020 106.57415 52.83152 -32.05389 0.00331 -32.05389 -32.05389 -30.5115996085 +4025 106.38286 52.73224 -32.00541 0.00333 -32.00541 -32.00541 -30.4650355017 +4030 106.19247 52.63344 -31.95707 0.00334 -31.95707 -31.95707 -30.4186066409 +4035 106.00298 52.53513 -31.9089 0.00336 -31.9089 -31.9089 -30.3723430436 +4040 105.81437 52.43729 -31.86087 0.00338 -31.86087 -31.86087 -30.3262147275 +4045 105.62663 52.33992 -31.81299 0.00339 -31.81299 -31.81299 -30.28023171 +4050 105.43976 52.24301 -31.76526 0.00341 -31.76526 -31.76526 -30.2343940086 +4055 105.25376 52.14657 -31.71768 0.00342 -31.71768 -31.71768 -30.1887016407 +4060 105.0686 52.05058 -31.67025 0.00344 -31.67025 -31.67025 -30.1431546233 +4065 104.88429 51.95505 -31.62296 0.00345 -31.62296 -31.62296 -30.0977429738 +4070 104.70082 51.85996 -31.57582 0.00347 -31.57582 -31.57582 -30.0524767091 +4075 104.51818 51.76533 -31.52883 0.00349 -31.52883 -31.52883 -30.0073558463 +4080 104.33636 51.67113 -31.48198 0.00350 -31.48198 -31.48198 -29.9623704023 +4085 104.15535 51.57736 -31.43527 0.00352 -31.43527 -31.43527 -29.9175203939 +4090 103.97516 51.48404 -31.38871 0.00353 -31.38871 -31.38871 -29.8728158378 +4095 103.79576 51.39113 -31.34228 0.00355 -31.34228 -31.34228 -29.8282367506 +4100 103.61716 51.29866 -31.296 0.00356 -31.296 -31.296 -29.7838031491 +4105 103.43935 51.20661 -31.24986 0.00358 -31.24986 -31.24986 -29.7395050495 +4110 103.26232 51.11497 -31.20386 0.00360 -31.20386 -31.20386 -29.6953424685 +4115 103.08607 51.02375 -31.15799 0.00361 -31.15799 -31.15799 -29.6513054223 +4120 102.91058 50.93293 -31.11227 0.00363 -31.11227 -31.11227 -29.6074139271 +4125 102.73586 50.84253 -31.06668 0.00364 -31.06668 -31.06668 -29.5636479992 +4130 102.56189 50.75252 -31.02122 0.00366 -31.02122 -31.02122 -29.5200076547 +4135 102.38867 50.66292 -30.97591 0.00368 -30.97591 -28.9767121314 -29.4765129095 +4140 102.21619 50.57371 -30.93072 0.00369 -30.93072 -28.9339366312 -29.4331337796 +4145 102.04445 50.4849 -30.88568 0.00371 -30.88568 -28.8913053059 -29.3899002809 +4150 101.87344 50.39648 -30.84076 0.00372 -30.84076 -28.8487881765 -29.3467824291 +4155 101.70316 50.30844 -30.79598 0.00374 -30.79598 -28.806405264 -29.3038002401 +4160 101.5336 50.22078 -30.75133 0.00375 -30.75133 -28.7641465892 -29.2609437294 +4165 101.36475 50.13351 -30.70681 0.00377 -30.70681 -28.722012173 -29.2182129125 +4170 101.19661 50.04661 -30.66242 0.00379 -30.66242 -28.6800020358 -29.1756078051 +4175 101.02917 49.96008 -30.61816 0.00380 -30.61816 -28.6381161984 -29.1331284224 +4180 100.86242 49.87393 -30.57403 0.00382 -30.57403 -28.5963546811 -29.0907747799 +4185 100.69637 49.78814 -30.53003 0.00383 -30.53003 -28.5547175043 -29.0485468927 +4190 100.53101 49.70272 -30.48616 0.00385 -30.48616 -28.5132046883 -29.0064447762 +4195 100.36632 49.61766 -30.44241 0.00387 -30.44241 -28.4718062533 -28.9644584454 +4200 100.20232 49.53295 -30.39879 0.00388 -30.39879 -28.4305322192 -28.9225979154 +4205 100.03898 49.44861 -30.3553 0.00390 -30.3553 -28.3893826061 -28.8808632011 +4210 99.8763 49.36461 -30.31193 0.00391 -30.31193 -28.3483474339 -28.8392443175 +4215 99.71429 49.28097 -30.26868 0.00393 -30.26868 -28.3074267223 -28.7977412794 +4220 99.55293 49.19767 -30.22556 0.00395 -30.22556 -28.266630491 -28.7563641015 +4225 99.39222 49.11472 -30.18257 0.00396 -30.18257 -28.2259587597 -28.7151127987 +4230 99.23216 49.03211 -30.13969 0.00398 -30.13969 -28.1853915477 -28.6739673854 +4235 99.07273 48.94984 -30.09694 0.00399 -30.09694 -28.1449488747 -28.6329478762 +4240 98.91395 48.86791 -30.05431 0.00401 -30.05431 -28.1046207598 -28.5920442857 +4245 98.75579 48.78631 -30.0118 0.00403 -30.0118 -28.0644072222 -28.5512566283 +4250 98.59826 48.70504 -29.96941 0.00404 -29.96941 -28.0243082812 -28.5105849183 +4255 98.44135 48.6241 -29.92714 0.00406 -29.92714 -27.9843239558 -28.47002917 +4260 98.28506 48.54349 -29.88499 0.00407 -29.88499 -27.9444542649 -28.4295893976 +4265 98.12938 48.4632 -29.84296 0.00409 -29.84296 -27.9046992274 -28.3892656152 +4270 97.9743 48.38323 -29.80104 0.00411 -29.80104 -27.8650488621 -28.3490478371 +4275 97.81983 48.30358 -29.75925 0.00412 -29.75925 -27.8255231877 -28.3089560771 +4280 97.66596 48.22425 -29.71757 0.00414 -29.71757 -27.7861022228 -28.2689703493 +4285 97.51269 48.14524 -29.676 0.00415 -29.676 -27.7467859859 -28.2290906674 +4290 97.36001 48.06653 -29.63455 0.00417 -29.63455 -27.7075844954 -28.1893270455 +4295 97.20791 47.98814 -29.59322 0.00419 -29.59322 -27.6684977698 -28.1496794971 +4300 97.05639 47.91005 -29.552 0.00420 -29.552 -27.6295158272 -28.1101380361 +4305 96.90546 47.83227 -29.51089 0.00422 -29.51089 -27.5906386858 -28.070702676 +4310 96.75509 47.75479 -29.4699 0.00423 -29.4699 -27.5518763637 -28.0313834304 +4315 96.6053 47.67761 -29.42902 0.00425 -29.42902 -27.513218879 -27.9921703128 +4320 96.45607 47.60073 -29.38825 0.00427 -29.38825 -27.4746662495 -27.9530633367 +4325 96.30741 47.52415 -29.3476 0.00428 -29.3476 -27.4362284931 -27.9140725155 +4330 96.1593 47.44786 -29.30706 0.00430 -29.30706 -27.3978956277 -27.8751878624 +4335 96.01175 47.37186 -29.26662 0.00431 -29.26662 -27.3596576707 -27.8363993907 +4340 95.86475 47.29615 -29.2263 0.00433 -29.2263 -27.3215346399 -27.7977271137 +4345 95.7183 47.22074 -29.18609 0.00435 -29.18609 -27.2835165527 -27.7591610444 +4350 95.57239 47.1456 -29.14598 0.00436 -29.14598 -27.2455934267 -27.720691196 +4355 95.42702 47.07076 -29.10599 0.00438 -29.10599 -27.207785279 -27.6823375814 +4360 95.28218 46.99619 -29.0661 0.00440 -29.0661 -27.1700721271 -27.6440802136 +4365 95.13788 46.9219 -29.02632 0.00441 -29.02632 -27.1324639882 -27.6059291055 +4370 94.9941 46.8479 -28.98665 0.00443 -28.98665 -27.0949608792 -27.56788427 +4375 94.85085 46.77417 -28.94708 0.00444 -28.94708 -27.0575528174 -27.5299357198 +4380 94.70812 46.70071 -28.90762 0.00446 -28.90762 -27.0202498196 -27.4920934677 +4385 94.56591 46.62753 -28.86827 0.00448 -28.86827 -26.9830519027 -27.4543575263 +4390 94.42422 46.55461 -28.82902 0.00449 -28.82902 -26.9459490835 -27.4167179081 +4395 94.28304 46.48197 -28.78987 0.00451 -28.78987 -26.9089413789 -27.3791746259 +4400 94.14236 46.40959 -28.75083 0.00453 -28.75083 -26.8720388053 -27.341737692 +4405 94.00219 46.33748 -28.7119 0.00454 -28.7119 -26.8352413794 -27.3044071189 +4410 93.86252 46.26563 -28.67306 0.00456 -28.67306 -26.7985291178 -27.267162919 +4415 93.72335 46.19405 -28.63433 0.00457 -28.63433 -26.7619220367 -27.2300251045 +4420 93.58467 46.12272 -28.59571 0.00459 -28.59571 -26.7254201527 -27.1929936879 +4425 93.44649 46.05165 -28.55718 0.00461 -28.55718 -26.689003482 -27.1560486812 +4430 93.30879 45.98084 -28.51876 0.00462 -28.51876 -26.6526920407 -27.1192100966 +4435 93.17158 45.91028 -28.48043 0.00464 -28.48043 -26.616465845 -27.0824579462 +4440 93.03485 45.83998 -28.44221 0.00466 -28.44221 -26.580344911 -27.0458122422 +4445 92.89861 45.76993 -28.40409 0.00467 -28.40409 -26.5443192547 -27.0092629964 +4450 92.76283 45.70012 -28.36607 0.00469 -28.36607 -26.508388892 -26.9728102208 +4455 92.62753 45.63057 -28.32814 0.00470 -28.32814 -26.4725438387 -26.9364439272 +4460 92.49271 45.56126 -28.29032 0.00472 -28.29032 -26.4368041106 -26.9001841277 +4465 92.35834 45.4922 -28.25259 0.00474 -28.25259 -26.4011497234 -26.8640108338 +4470 92.22445 45.42338 -28.21496 0.00475 -28.21496 -26.3655906928 -26.8279340573 +4475 92.09101 45.3548 -28.17743 0.00477 -28.17743 -26.3301270342 -26.7919538099 +4480 91.95804 45.28647 -28.14 0.00479 -28.14 -26.2947587633 -26.7560701033 +4485 91.82552 45.21837 -28.10266 0.00480 -28.10266 -26.2594758954 -26.7202729489 +4490 91.69345 45.15051 -28.06542 0.00482 -28.06542 -26.2242884459 -26.6845723584 +4495 91.56183 45.08289 -28.02828 0.00484 -28.02828 -26.1891964301 -26.6489683431 +4500 91.43066 45.0155 -27.99123 0.00485 -27.99123 -26.1541898632 -26.6134509145 +4505 91.29994 44.94834 -27.95427 0.00487 -27.95427 -26.1192687604 -26.578020084 +4510 91.16965 44.88141 -27.91742 0.00489 -27.91742 -26.0844531367 -26.5426958628 +4515 91.03981 44.81472 -27.88065 0.00490 -27.88065 -26.0497130071 -26.5074482623 +4520 90.91041 44.74825 -27.84398 0.00492 -27.84398 -26.0150683867 -26.4722972937 +4525 90.78143 44.68201 -27.8074 0.00494 -27.8074 -25.9805092902 -26.437232968 +4530 90.65289 44.616 -27.77092 0.00495 -27.77092 -25.9460457326 -26.4022652965 +4535 90.52478 44.55021 -27.73452 0.00497 -27.73452 -25.9116577286 -26.3673742902 +4540 90.3971 44.48465 -27.69822 0.00499 -27.69822 -25.8773652928 -26.33257996 +4545 90.26984 44.4193 -27.66201 0.00500 -27.66201 -25.8431584399 -26.2978723171 +4550 90.143 44.35418 -27.6259 0.00502 -27.6259 -25.8090471845 -26.2632613723 +4555 90.01658 44.28927 -27.58987 0.00504 -27.58987 -25.775011541 -26.2287271365 +4560 89.89058 44.22459 -27.55394 0.00505 -27.55394 -25.7410715239 -26.1942896204 +4565 89.76499 44.16012 -27.51809 0.00507 -27.51809 -25.7072071476 -26.159928835 +4570 89.63981 44.09586 -27.48234 0.00509 -27.48234 -25.6734384264 -26.1256647909 +4575 89.51504 44.03182 -27.44667 0.00510 -27.44667 -25.6397453744 -26.0914774987 +4580 89.39068 43.96799 -27.4111 0.00512 -27.4111 -25.606148006 -26.0573869692 +4585 89.26673 43.90437 -27.37561 0.00514 -27.37561 -25.5726263352 -26.023373213 +4590 89.14317 43.84097 -27.34021 0.00515 -27.34021 -25.5391903761 -25.9894462405 +4595 89.02002 43.77777 -27.3049 0.00517 -27.3049 -25.5058401426 -25.9556060623 +4600 88.89726 43.71478 -27.26968 0.00519 -27.26968 -25.4725756488 -25.9218526888 +4605 88.7749 43.65199 -27.23454 0.00520 -27.23454 -25.4393869084 -25.8881761304 +4610 88.65293 43.58941 -27.1995 0.00522 -27.1995 -25.4062939354 -25.8545963976 +4615 88.53135 43.52704 -27.16454 0.00524 -27.16454 -25.3732767435 -25.8210935005 +4620 88.41017 43.46487 -27.12966 0.00525 -27.12966 -25.3403353463 -25.7876674496 +4625 88.28936 43.40289 -27.09487 0.00527 -27.09487 -25.3074797575 -25.7543282549 +4630 88.16895 43.34112 -27.06017 0.00529 -27.06017 -25.2747099907 -25.7210759268 +4635 88.04891 43.27955 -27.02555 0.00530 -27.02555 -25.2420160594 -25.6879004753 +4640 87.92926 43.21818 -26.99102 0.00532 -26.99102 -25.2094079771 -25.6548119106 +4645 87.80998 43.15701 -26.95657 0.00534 -26.95657 -25.1768757571 -25.6218002426 +4650 87.69108 43.09603 -26.9222 0.00535 -26.9222 -25.1444194129 -25.5888654815 +4655 87.57255 43.03524 -26.88792 0.00537 -26.88792 -25.1120489577 -25.5560176371 +4660 87.45439 42.97465 -26.85373 0.00539 -26.85373 -25.0797644047 -25.5232567194 +4665 87.33661 42.91425 -26.81962 0.00540 -26.81962 -25.0475557672 -25.4905727383 +4670 87.21919 42.85404 -26.78558 0.00542 -26.78558 -25.0154130582 -25.4579557036 +4675 87.10214 42.79403 -26.75164 0.00544 -26.75164 -24.9833662908 -25.4254356252 +4680 86.98545 42.7342 -26.71777 0.00546 -26.71777 -24.951385478 -25.3929825127 +4685 86.86912 42.67456 -26.68399 0.00547 -26.68399 -24.9194906327 -25.3606163759 +4690 86.75315 42.61511 -26.65029 0.00549 -26.65029 -24.887671768 -25.3283272244 +4695 86.63754 42.55585 -26.61667 0.00551 -26.61667 -24.8559288965 -25.2961150679 +4700 86.52229 42.49677 -26.58313 0.00552 -26.58313 -24.8242620311 -25.2639799161 +4705 86.40739 42.43787 -26.54967 0.00554 -26.54967 -24.7926711846 -25.2319217783 +4710 86.29284 42.37916 -26.51629 0.00556 -26.51629 -24.7611563696 -25.1999406642 +4715 86.17864 42.32063 -26.48299 0.00557 -26.48299 -24.7297175986 -25.1680365832 +4720 86.06479 42.26228 -26.44977 0.00559 -26.44977 -24.6983548844 -25.1362095447 +4725 85.95129 42.20412 -26.41664 0.00561 -26.41664 -24.6670782394 -25.1044695582 +4730 85.83813 42.14613 -26.38358 0.00563 -26.38358 -24.6358676761 -25.0727966329 +4735 85.72531 42.08832 -26.3506 0.00564 -26.3506 -24.6047332069 -25.0412007782 +4740 85.61284 42.03068 -26.31769 0.00566 -26.31769 -24.5736648442 -25.0096720034 +4745 85.5007 41.97323 -26.28487 0.00568 -26.28487 -24.5426826002 -24.9782303177 +4750 85.3889 41.91595 -26.25212 0.00569 -26.25212 -24.5117664872 -24.9468557302 +4755 85.27744 41.85884 -26.21945 0.00571 -26.21945 -24.4809265175 -24.9155582502 +4760 85.16631 41.80191 -26.18686 0.00573 -26.18686 -24.4501627031 -24.8843378867 +4765 85.05552 41.74515 -26.15435 0.00575 -26.15435 -24.4194750562 -24.8531946488 +4770 84.94505 41.68856 -26.12191 0.00576 -26.12191 -24.3888535889 -24.8221185456 +4775 84.83491 41.63214 -26.08955 0.00578 -26.08955 -24.3583083131 -24.7911195861 +4780 84.7251 41.57589 -26.05727 0.00580 -26.05727 -24.3278392408 -24.7601977792 +4785 84.61562 41.51981 -26.02506 0.00581 -26.02506 -24.2974363838 -24.7293431338 +4790 84.50646 41.4639 -25.99292 0.00583 -25.99292 -24.2670997542 -24.6985556589 +4795 84.39762 41.40816 -25.96087 0.00585 -25.96087 -24.2368493635 -24.6678553633 +4800 84.2891 41.35258 -25.92888 0.00587 -25.92888 -24.2066552237 -24.6372122558 +4805 84.1809 41.29717 -25.89697 0.00588 -25.89697 -24.1765373463 -24.6066463452 +4810 84.07302 41.24193 -25.86514 0.00590 -25.86514 -24.1464957432 -24.5761576402 +4815 83.96545 41.18685 -25.83338 0.00592 -25.83338 -24.1165204257 -24.5457361496 +4820 83.85819 41.13193 -25.8017 0.00593 -25.8017 -24.0866214056 -24.5153918819 +4825 83.75125 41.07717 -25.77008 0.00595 -25.77008 -24.0567786944 -24.4851048459 +4830 83.64462 41.02257 -25.73854 0.00597 -25.73854 -24.0270123034 -24.4548950501 +4835 83.5383 40.96814 -25.70708 0.00599 -25.70708 -23.9973222442 -24.4247625031 +4840 83.43229 40.91386 -25.67569 0.00600 -25.67569 -23.967698528 -24.3946972134 +4845 83.32658 40.85975 -25.64437 0.00602 -25.64437 -23.9381411662 -24.3646991896 +4850 83.22118 40.80579 -25.61312 0.00604 -25.61312 -23.9086501701 -24.33476844 +4855 83.11608 40.75199 -25.58194 0.00606 -25.58194 -23.8792255509 -24.3049049731 +4860 83.01128 40.69834 -25.55084 0.00607 -25.55084 -23.8498773199 -24.2751187973 +4865 82.90678 40.64485 -25.5198 0.00609 -25.5198 -23.820585488 -24.2453899209 +4870 82.80259 40.59152 -25.48884 0.00611 -25.48884 -23.7913700664 -24.2157383523 +4875 82.69868 40.53834 -25.45795 0.00613 -25.45795 -23.7622210662 -24.1861540997 +4880 82.59508 40.48531 -25.42713 0.00614 -25.42713 -23.7331384984 -24.1566371713 +4885 82.49177 40.43244 -25.39638 0.00616 -25.39638 -23.7041223739 -24.1271875755 +4890 82.38875 40.37972 -25.3657 0.00618 -25.3657 -23.6751727036 -24.0978053204 +4895 82.28602 40.32715 -25.33509 0.00620 -25.33509 -23.6462894984 -24.068490414 +4900 82.18358 40.27473 -25.30456 0.00621 -25.30456 -23.6174827692 -24.0392528647 +4905 82.08143 40.22246 -25.27408 0.00623 -25.27408 -23.5887225266 -24.0100626803 +4910 81.97957 40.17033 -25.24368 0.00625 -25.24368 -23.5600387814 -23.9809498691 +4915 81.878 40.11836 -25.21335 0.00627 -25.21335 -23.5314215444 -23.9519044389 +4920 81.77671 40.06653 -25.18309 0.00628 -25.18309 -23.5028708261 -23.9229263978 +4925 81.6757 40.01485 -25.15289 0.00630 -25.15289 -23.4743766372 -23.8940057537 +4930 81.57497 39.96332 -25.12277 0.00632 -25.12277 -23.4459589882 -23.8651625146 +4935 81.47453 39.91193 -25.09271 0.00634 -25.09271 -23.4175978896 -23.8363766884 +4940 81.37436 39.86069 -25.06272 0.00635 -25.06272 -23.389303352 -23.8076582828 +4945 81.27447 39.80959 -25.03279 0.00637 -25.03279 -23.3610653857 -23.7789973057 +4950 81.17486 39.75863 -25.00294 0.00639 -25.00294 -23.3329040011 -23.750413765 +4955 81.07552 39.70782 -24.97315 0.00641 -24.97315 -23.3047992086 -23.7218876683 +4960 80.97646 39.65715 -24.94342 0.00643 -24.94342 -23.2767510185 -23.6934190234 +4965 80.87767 39.60662 -24.91377 0.00644 -24.91377 -23.2487794411 -23.6650278381 +4970 80.77915 39.55623 -24.88418 0.00646 -24.88418 -23.2208644865 -23.6366941199 +4975 80.6809 39.50598 -24.85465 0.00648 -24.85465 -23.193006165 -23.6084178765 +4980 80.58292 39.45587 -24.82519 0.00650 -24.82519 -23.1652144867 -23.5802091155 +4985 80.48521 39.40589 -24.7958 0.00651 -24.7958 -23.1374894617 -23.5520678445 +4990 80.38776 39.35606 -24.76647 0.00653 -24.76647 -23.1098211001 -23.523984071 +4995 80.29058 39.30636 -24.73721 0.00655 -24.73721 -23.0822194118 -23.4959678026 +5000 80.19366 39.2568 -24.70801 0.00657 -24.70801 -23.054674407 -23.4680090467 +5005 80.09701 39.20737 -24.67888 0.00659 -24.67888 -23.0271960954 -23.4401178108 +5010 80.00061 39.15808 -24.64981 0.00660 -24.64981 -22.999774487 -23.4122841023 +5015 79.90448 39.10893 -24.62081 0.00662 -24.62081 -22.9724195917 -23.3845179286 +5020 79.80861 39.05991 -24.59187 0.00664 -24.59187 -22.9451214193 -23.3568092971 +5025 79.71299 39.01102 -24.56299 0.00666 -24.56299 -22.9178799795 -23.3291582151 +5030 79.61763 38.96226 -24.53418 0.00668 -24.53418 -22.8907052821 -23.3015746899 +5035 79.52252 38.91364 -24.50543 0.00669 -24.50543 -22.8635873369 -23.2740487288 +5040 79.42767 38.86515 -24.47674 0.00671 -24.47674 -22.8365261535 -23.246580339 +5045 79.33308 38.81679 -24.44812 0.00673 -24.44812 -22.8095317414 -23.2191795279 +5050 79.23873 38.76856 -24.41955 0.00675 -24.41955 -22.7825841104 -23.1918263024 +5055 79.14464 38.72046 -24.39106 0.00676 -24.39106 -22.7557132699 -23.1645506699 +5060 79.05079 38.67249 -24.36262 0.00678 -24.36262 -22.7288892295 -23.1373226375 +5065 78.9572 38.62465 -24.33424 0.00680 -24.33424 -22.7021219986 -23.1101522122 +5070 78.86385 38.57693 -24.30593 0.00682 -24.30593 -22.6754215867 -23.0830494012 +5075 78.77075 38.52934 -24.27768 0.00684 -24.27768 -22.6487780032 -23.0560042115 +5080 78.67789 38.48188 -24.24949 0.00685 -24.24949 -22.6221912575 -23.0290166501 +5085 78.58528 38.43455 -24.22136 0.00687 -24.22136 -22.5956613588 -23.002086724 +5090 78.49291 38.38734 -24.19329 0.00689 -24.19329 -22.5691883165 -22.9752144402 +5095 78.40079 38.34026 -24.16529 0.00691 -24.16529 -22.5427821398 -22.9484098056 +5100 78.3089 38.2933 -24.13734 0.00693 -24.13734 -22.5164228379 -22.9216528272 +5105 78.21725 38.24646 -24.10945 0.00695 -24.10945 -22.4901204201 -22.8949535118 +5110 78.12585 38.19975 -24.08163 0.00696 -24.08163 -22.4638848955 -22.8683218662 +5115 78.03468 38.15317 -24.05386 0.00698 -24.05386 -22.4376962731 -22.8417378974 +5120 77.94375 38.1067 -24.02615 0.00700 -24.02615 -22.4115645622 -22.8152116122 +5125 77.85305 38.06036 -23.99851 0.00702 -23.99851 -22.3854997716 -22.7887530172 +5130 77.76259 38.01413 -23.97092 0.00704 -23.97092 -22.3594819104 -22.7623421193 +5135 77.67236 37.96803 -23.94339 0.00705 -23.94339 -22.3335209876 -22.7359889252 +5140 77.58236 37.92205 -23.91592 0.00707 -23.91592 -22.307617012 -22.7096934415 +5145 77.4926 37.87619 -23.88851 0.00709 -23.88851 -22.2817699927 -22.6834556751 +5150 77.40307 37.83044 -23.86116 0.00711 -23.86116 -22.2559799385 -22.6572756324 +5155 77.31377 37.78482 -23.83386 0.00713 -23.83386 -22.2302368582 -22.6311433202 +5160 77.22469 37.73931 -23.80663 0.00715 -23.80663 -22.2045607606 -22.605078745 +5165 77.13584 37.69392 -23.77945 0.00716 -23.77945 -22.1789316544 -22.5790619135 +5170 77.04722 37.64865 -23.75233 0.00718 -23.75233 -22.1533595485 -22.5531028321 +5175 76.95883 37.6035 -23.72527 0.00720 -23.72527 -22.1278444514 -22.5272015073 +5180 76.87066 37.55846 -23.69826 0.00722 -23.69826 -22.1023763719 -22.5013479457 +5185 76.78272 37.51353 -23.67131 0.00724 -23.67131 -22.0769653185 -22.4755521538 +5190 76.69499 37.46872 -23.64442 0.00726 -23.64442 -22.0516113 -22.449814138 +5195 76.60749 37.42403 -23.61759 0.00727 -23.61759 -22.0263143248 -22.4241339046 +5200 76.52021 37.37945 -23.59081 0.00729 -23.59081 -22.0010644014 -22.3985014602 +5205 76.43315 37.33498 -23.56409 0.00731 -23.56409 -21.9758715384 -22.372926811 +5210 76.34631 37.29063 -23.53742 0.00733 -23.53742 -21.9507257442 -22.3473999635 +5215 76.25969 37.24639 -23.51081 0.00735 -23.51081 -21.9256370273 -22.3219309239 +5220 76.17329 37.20226 -23.48426 0.00737 -23.48426 -21.900605396 -22.2965196986 +5225 76.0871 37.15824 -23.45776 0.00739 -23.45776 -21.8756208587 -22.2711562938 +5230 76.00113 37.11434 -23.43132 0.00740 -23.43132 -21.8506934238 -22.2458507158 +5235 75.91537 37.07054 -23.40493 0.00742 -23.40493 -21.8258130996 -22.2205929707 +5240 75.82982 37.02686 -23.3786 0.00744 -23.3786 -21.8009898943 -22.1953930649 +5245 75.74449 36.98328 -23.35232 0.00746 -23.35232 -21.7762138161 -22.1702410044 +5250 75.65937 36.93982 -23.3261 0.00748 -23.3261 -21.7514948734 -22.1451467955 +5255 75.57446 36.89646 -23.29993 0.00750 -23.29993 -21.7268230742 -22.1201004443 +5260 75.48976 36.85321 -23.27382 0.00752 -23.27382 -21.7022084266 -22.0951119568 +5265 75.40528 36.81007 -23.24776 0.00753 -23.24776 -21.6776409389 -22.0701713393 +5270 75.321 36.76704 -23.22175 0.00755 -23.22175 -21.6531206191 -22.0452785976 +5275 75.23692 36.72411 -23.1958 0.00757 -23.1958 -21.6286574753 -22.0204437379 +5280 75.15306 36.68129 -23.16991 0.00759 -23.16991 -21.6042515154 -21.9956667662 +5285 75.0694 36.63858 -23.14406 0.00761 -23.14406 -21.5798827475 -21.9709276885 +5290 74.98594 36.59597 -23.11827 0.00763 -23.11827 -21.5555711795 -21.9462465107 +5295 74.90269 36.55347 -23.09253 0.00765 -23.09253 -21.5313068194 -21.9216132389 +5300 74.81964 36.51107 -23.06685 0.00766 -23.06685 -21.507099675 -21.8970378788 +5305 74.7368 36.46878 -23.04122 0.00768 -23.04122 -21.4829397543 -21.8725104365 +5310 74.65415 36.42659 -23.01564 0.00770 -23.01564 -21.4588270651 -21.8480309178 +5315 74.57171 36.38451 -22.99011 0.00772 -22.99011 -21.4347616151 -21.8235993286 +5320 74.48947 36.34252 -22.96464 0.00774 -22.96464 -21.4107534122 -21.7992256747 +5325 74.40743 36.30065 -22.93922 0.00776 -22.93922 -21.3867924642 -21.774899962 +5330 74.32558 36.25887 -22.91385 0.00778 -22.91385 -21.3628787787 -21.7506221961 +5335 74.24393 36.21719 -22.88853 0.00780 -22.88853 -21.3390123635 -21.726392383 +5340 74.16248 36.17562 -22.86326 0.00781 -22.86326 -21.3151932262 -21.7022105283 +5345 74.08123 36.13415 -22.83805 0.00783 -22.83805 -21.2914313744 -21.6780866378 +5350 74.00017 36.09277 -22.81289 0.00785 -22.81289 -21.2677168158 -21.6540107171 +5355 73.91931 36.0515 -22.78777 0.00787 -22.78777 -21.244039558 -21.6299727721 +5360 73.83864 36.01033 -22.76271 0.00789 -22.76271 -21.2204196085 -21.6059928082 +5365 73.75816 35.96926 -22.7377 0.00791 -22.7377 -21.1968469748 -21.5820608313 +5370 73.67788 35.92828 -22.71274 0.00793 -22.71274 -21.1733216645 -21.5581768469 +5375 73.59778 35.88741 -22.68783 0.00795 -22.68783 -21.1498436849 -21.5343408605 +5380 73.51788 35.84663 -22.66297 0.00797 -22.66297 -21.1264130436 -21.5105528779 +5385 73.43817 35.80595 -22.63817 0.00799 -22.63817 -21.1030397479 -21.4868229045 +5390 73.35865 35.76537 -22.61341 0.00800 -22.61341 -21.0797038053 -21.4631309459 +5395 73.27931 35.72489 -22.5887 0.00802 -22.5887 -21.0564152231 -21.4394870076 +5400 73.20016 35.6845 -22.56404 0.00804 -22.56404 -21.0331740086 -21.4158910951 +5405 73.1212 35.64421 -22.53943 0.00806 -22.53943 -21.0099801692 -21.3923432139 +5410 73.04243 35.60401 -22.51487 0.00808 -22.51487 -20.9868337121 -21.3688433694 +5415 72.96384 35.56391 -22.49036 0.00810 -22.49036 -20.9637346446 -21.3453915671 +5420 72.88544 35.52391 -22.4659 0.00812 -22.4659 -20.9406829738 -21.3219878125 +5425 72.80722 35.484 -22.44149 0.00814 -22.44149 -20.917678707 -21.2986321108 +5430 72.72918 35.44418 -22.41712 0.00816 -22.41712 -20.8947118515 -21.2753144675 +5435 72.65133 35.40446 -22.39281 0.00818 -22.39281 -20.8718024142 -21.2520548879 +5440 72.57366 35.36483 -22.36854 0.00819 -22.36854 -20.8489304023 -21.2288333774 +5445 72.49617 35.3253 -22.34433 0.00821 -22.34433 -20.826115823 -21.2056699414 +5450 72.41886 35.28586 -22.32016 0.00823 -22.32016 -20.8033386832 -21.182544585 +5455 72.34173 35.24651 -22.29604 0.00825 -22.29604 -20.7806089901 -21.1594673136 +5460 72.26478 35.20725 -22.27196 0.00827 -22.27196 -20.7579167506 -21.1364281324 +5465 72.18801 35.16809 -22.24794 0.00829 -22.24794 -20.7352819718 -21.1134470467 +5470 72.11142 35.12901 -22.22396 0.00831 -22.22396 -20.7126846605 -21.0905040617 +5475 72.035 35.09003 -22.20003 0.00833 -22.20003 -20.6901348238 -21.0676091826 +5480 71.95876 35.05114 -22.17614 0.00835 -22.17614 -20.6676224685 -21.0447524146 +5485 71.8827 35.01234 -22.15231 0.00837 -22.15231 -20.6451676016 -21.0219537628 +5490 71.80681 34.97363 -22.12852 0.00839 -22.12852 -20.6227502298 -20.9991932325 +5495 71.73109 34.93501 -22.10478 0.00841 -22.10478 -20.6003803601 -20.9764808287 +5500 71.65555 34.89647 -22.08108 0.00843 -22.08108 -20.5780479992 -20.9538065565 +5505 71.58019 34.85803 -22.05743 0.00845 -22.05743 -20.555763154 -20.931180421 +5510 71.50499 34.81968 -22.03383 0.00846 -22.03383 -20.5335258311 -20.9086024274 +5515 71.42997 34.78141 -22.01027 0.00848 -22.01027 -20.5113260374 -20.8860625806 +5520 71.35512 34.74323 -21.98676 0.00850 -21.98676 -20.4891737796 -20.8635708857 +5525 71.28043 34.70514 -21.9633 0.00852 -21.9633 -20.4670690643 -20.8411273477 +5530 71.20592 34.66714 -21.93988 0.00854 -21.93988 -20.4450018981 -20.8187219717 +5535 71.13158 34.62923 -21.91651 0.00856 -21.91651 -20.4229822879 -20.7963647625 +5540 71.05741 34.5914 -21.89318 0.00858 -21.89318 -20.4010002401 -20.7740457252 +5545 70.9834 34.55366 -21.8699 0.00860 -21.8699 -20.3790657613 -20.7517748646 +5550 70.90957 34.516 -21.84667 0.00862 -21.84667 -20.3571788582 -20.7295521858 +5555 70.83589 34.47843 -21.82348 0.00864 -21.82348 -20.3353295373 -20.7073676937 +5560 70.76239 34.44095 -21.80033 0.00866 -21.80033 -20.3135178051 -20.685221393 +5565 70.68905 34.40355 -21.77723 0.00868 -21.77723 -20.291753668 -20.6631232888 +5570 70.61588 34.36623 -21.75418 0.00870 -21.75418 -20.2700371327 -20.6410733858 +5575 70.54287 34.329 -21.73117 0.00872 -21.73117 -20.2483582054 -20.619061689 +5580 70.47002 34.29185 -21.7082 0.00874 -21.7082 -20.2267168927 -20.597088203 +5585 70.39734 34.25479 -21.68528 0.00876 -21.68528 -20.205123201 -20.5751629328 +5590 70.32482 34.21781 -21.6624 0.00878 -21.6624 -20.1835671367 -20.5532758831 +5595 70.25246 34.18092 -21.63957 0.00880 -21.63957 -20.162058706 -20.5314370587 +5600 70.18026 34.1441 -21.61678 0.00882 -21.61678 -20.1405879154 -20.5096364643 +5605 70.10822 34.10737 -21.59403 0.00884 -21.59403 -20.1191547711 -20.4878741047 +5610 70.03635 34.07073 -21.57133 0.00886 -21.57133 -20.0977692796 -20.4661599846 +5615 69.96463 34.03416 -21.54868 0.00888 -21.54868 -20.0764314469 -20.4444941087 +5620 69.89307 33.99768 -21.52606 0.00889 -21.52606 -20.0551212794 -20.4228564817 +5625 69.82167 33.96127 -21.50349 0.00891 -21.50349 -20.0338587833 -20.4012671082 +5630 69.75043 33.92495 -21.48096 0.00893 -21.48096 -20.0126339648 -20.379715993 +5635 69.67935 33.88871 -21.45848 0.00895 -21.45848 -19.9914568301 -20.3582131406 +5640 69.60842 33.85255 -21.43604 0.00897 -21.43604 -19.9703173854 -20.3367485556 +5645 69.53765 33.81647 -21.41364 0.00899 -21.41364 -19.9492156367 -20.3153222428 +5650 69.46704 33.78047 -21.39128 0.00901 -21.39128 -19.9281515903 -20.2939342066 +5655 69.39658 33.74455 -21.36897 0.00903 -21.36897 -19.9071352521 -20.2725944516 +5660 69.32627 33.70871 -21.3467 0.00905 -21.3467 -19.8861566283 -20.2512929824 +5665 69.25612 33.67295 -21.32447 0.00907 -21.32447 -19.8652157249 -20.2300298035 +5670 69.18612 33.63727 -21.30228 0.00909 -21.30228 -19.844312548 -20.2088049195 +5675 69.11627 33.60166 -21.28014 0.00911 -21.28014 -19.8234571036 -20.1876283348 +5680 69.04658 33.56614 -21.25804 0.00913 -21.25804 -19.8026393976 -20.1664900539 +5685 68.97704 33.53069 -21.23598 0.00915 -21.23598 -19.781859436 -20.1453900814 +5690 68.90765 33.49532 -21.21396 0.00917 -21.21396 -19.7611172248 -20.1243284217 +5695 68.83841 33.46002 -21.19198 0.00919 -21.19198 -19.7404127698 -20.1033050792 +5700 68.76932 33.42481 -21.17005 0.00921 -21.17005 -19.7197560771 -20.0823300583 +5705 68.70038 33.38967 -21.14815 0.00923 -21.14815 -19.6991271524 -20.0613833635 +5710 68.63159 33.35461 -21.1263 0.00925 -21.1263 -19.6785460017 -20.0404849991 +5715 68.56294 33.31962 -21.10449 0.00927 -21.10449 -19.6580026308 -20.0196249696 +5720 68.49445 33.28471 -21.08272 0.00929 -21.08272 -19.6374970455 -19.9988032794 +5725 68.4261 33.24987 -21.06099 0.00931 -21.06099 -19.6170292516 -19.9780199326 +5730 68.3579 33.21512 -21.0393 0.00933 -21.0393 -19.5965992548 -19.9572749338 +5735 68.28985 33.18043 -21.01765 0.00935 -21.01765 -19.5762070611 -19.9365682872 +5740 68.22194 33.14582 -20.99604 0.00937 -20.99604 -19.555852676 -19.9158999971 +5745 68.15418 33.11129 -20.97448 0.00939 -20.97448 -19.5355461053 -19.8952800678 +5750 68.08656 33.07683 -20.95295 0.00941 -20.95295 -19.5152673548 -19.8746885036 +5755 68.01909 33.04244 -20.93146 0.00943 -20.93146 -19.49502643 -19.8541353088 +5760 67.95176 33.00813 -20.91002 0.00945 -20.91002 -19.4748333367 -19.8336304876 +5765 67.88458 32.97389 -20.88861 0.00947 -20.88861 -19.4546680806 -19.8131540441 +5770 67.81754 32.93973 -20.86724 0.00949 -20.86724 -19.4345406671 -19.7927159828 +5775 67.75064 32.90563 -20.84592 0.00951 -20.84592 -19.414461102 -19.7723263077 +5780 67.68388 32.87162 -20.82463 0.00953 -20.82463 -19.3944093907 -19.751965023 +5785 67.61726 32.83767 -20.80338 0.00955 -20.80338 -19.374395539 -19.731642133 +5790 67.55079 32.8038 -20.78217 0.00957 -20.78217 -19.3544195523 -19.7113576417 +5795 67.48445 32.76999 -20.761 0.00959 -20.761 -19.3344814361 -19.6911115533 +5800 67.41826 32.73626 -20.73987 0.00962 -20.73987 -19.314581196 -19.670903872 +5805 67.3522 32.70261 -20.71878 0.00964 -20.71878 -19.2947188374 -19.6507346019 +5810 67.28629 32.66902 -20.69773 0.00966 -20.69773 -19.2748943658 -19.630603747 +5815 67.22051 32.6355 -20.67672 0.00968 -20.67672 -19.2551077867 -19.6105113114 +5820 67.15487 32.60206 -20.65574 0.00970 -20.65574 -19.2353491055 -19.5904472993 +5825 67.08937 32.56868 -20.63481 0.00972 -20.63481 -19.2156383277 -19.5704317147 +5830 67.024 32.53538 -20.61391 0.00974 -20.61391 -19.1959554585 -19.5504445616 +5835 66.95878 32.50214 -20.59305 0.00976 -20.59305 -19.1763105034 -19.5304958441 +5840 66.89368 32.46898 -20.57223 0.00978 -20.57223 -19.1567034677 -19.5105855661 +5845 66.82873 32.43589 -20.55145 0.00980 -20.55145 -19.1371343568 -19.4907137317 +5850 66.76391 32.40286 -20.53071 0.00982 -20.53071 -19.117603176 -19.470880345 +5855 66.69922 32.36991 -20.51 0.00984 -20.51 -19.0980999306 -19.4510754097 +5860 66.63467 32.33702 -20.48933 0.00986 -20.48933 -19.0786346259 -19.43130893 +5865 66.57026 32.3042 -20.4687 0.00988 -20.4687 -19.0592072671 -19.4115809098 +5870 66.50597 32.27145 -20.44811 0.00990 -20.44811 -19.0398178596 -19.3918913529 +5875 66.44182 32.23877 -20.42755 0.00992 -20.42755 -19.0204564085 -19.3722302634 +5880 66.3778 32.20616 -20.40703 0.00994 -20.40703 -19.001132919 -19.3526076451 +5885 66.31392 32.17361 -20.38655 0.00996 -20.38655 -18.9818473963 -19.333023502 +5890 66.25016 32.14113 -20.36611 0.00998 -20.36611 -18.9625998457 -19.3134778379 +5895 66.18654 32.10872 -20.3457 0.01000 -20.3457 -18.9433802723 -19.2939606566 +5900 66.12305 32.07638 -20.32534 0.01002 -20.32534 -18.9242086812 -19.2744919622 +5905 66.05969 32.0441 -20.305 0.01005 -20.305 -18.9050550775 -19.2550417583 +5910 65.99646 32.01189 -20.28471 0.01007 -20.28471 -18.8859494664 -19.2356400488 +5915 65.93336 31.97975 -20.26445 0.01009 -20.26445 -18.8668718529 -19.2162668375 +5920 65.87038 31.94767 -20.24423 0.01011 -20.24423 -18.8478322422 -19.1969321283 +5925 65.80754 31.91566 -20.22404 0.01013 -20.22404 -18.8288206392 -19.177625925 +5930 65.74482 31.88372 -20.20389 0.01015 -20.20389 -18.809847049 -19.1583582312 +5935 65.68224 31.85184 -20.18378 0.01017 -20.18378 -18.7909114767 -19.1391290509 +5940 65.61978 31.82002 -20.1637 0.01019 -20.1637 -18.7720039272 -19.1199283877 +5945 65.55744 31.78827 -20.14366 0.01021 -20.14366 -18.7531344056 -19.1007662453 +5950 65.49524 31.75659 -20.12366 0.01023 -20.12366 -18.7343029168 -19.0816426276 +5955 65.43315 31.72497 -20.10369 0.01025 -20.10369 -18.7154994657 -19.0625475381 +5960 65.3712 31.69341 -20.08376 0.01027 -20.08376 -18.6967340573 -19.0434909808 +5965 65.30937 31.66192 -20.06386 0.01029 -20.06386 -18.6779966965 -19.0244629591 +5970 65.24767 31.63049 -20.044 0.01031 -20.044 -18.6592973883 -19.0054734768 +5975 65.18609 31.59913 -20.02418 0.01034 -20.02418 -18.6406361375 -18.9865225376 +5980 65.12463 31.56783 -20.00439 0.01036 -20.00439 -18.6220029489 -18.9676001451 +5985 65.0633 31.5366 -19.98463 0.01038 -19.98463 -18.6033978275 -18.948706303 +5990 65.00209 31.50542 -19.96491 0.01040 -19.96491 -18.5848307781 -18.9298510148 +5995 64.941 31.47431 -19.94523 0.01042 -19.94523 -18.5663018055 -18.9110342843 +6000 64.88004 31.44327 -19.92558 0.01044 -19.92558 -18.5478009145 -18.892246115 +6005 64.8192 31.41228 -19.90596 0.01046 -19.90596 -18.5293281099 -18.8734865105 +6010 64.75848 31.38136 -19.88638 0.01048 -19.88638 -18.5108933965 -18.8547654744 +6015 64.69788 31.3505 -19.86684 0.01050 -19.86684 -18.4924967791 -18.8360830102 +6020 64.63741 31.3197 -19.84733 0.01052 -19.84733 -18.4741282623 -18.8174291216 +6025 64.57705 31.28896 -19.82785 0.01055 -19.82785 -18.455787851 -18.798803812 +6030 64.51681 31.25829 -19.80841 0.01057 -19.80841 -18.4374855498 -18.780217085 +6035 64.4567 31.22768 -19.789 0.01059 -19.789 -18.4192113634 -18.7616589442 +6040 64.3967 31.19712 -19.76963 0.01061 -19.76963 -18.4009752965 -18.743139393 +6045 64.33682 31.16663 -19.75029 0.01063 -19.75029 -18.3827673538 -18.7246484349 +6050 64.27706 31.1362 -19.73099 0.01065 -19.73099 -18.3645975399 -18.7061960735 +6055 64.21742 31.10583 -19.71172 0.01067 -19.71172 -18.3464558595 -18.6877723121 +6060 64.1579 31.07552 -19.69248 0.01069 -19.69248 -18.3283423171 -18.6693771543 +6065 64.09849 31.04528 -19.67328 0.01071 -19.67328 -18.3102669175 -18.6510206035 +6070 64.03921 31.01509 -19.65411 0.01074 -19.65411 -18.2922196651 -18.6326926632 +6075 63.98004 30.98496 -19.63498 0.01076 -19.63498 -18.2742105646 -18.6144033368 +6080 63.92098 30.95489 -19.61588 0.01078 -19.61588 -18.2562296204 -18.5961426277 +6085 63.86204 30.92488 -19.59681 0.01080 -19.59681 -18.2382768373 -18.5779105393 +6090 63.80322 30.89493 -19.57777 0.01082 -19.57777 -18.2203522196 -18.559707075 +6095 63.74451 30.86504 -19.55877 0.01084 -19.55877 -18.2024657719 -18.5415422383 +6100 63.68592 30.8352 -19.5398 0.01086 -19.5398 -18.1846074987 -18.5234060324 +6105 63.62744 30.80543 -19.52087 0.01088 -19.52087 -18.1667874045 -18.5053084607 +6110 63.56907 30.77571 -19.50197 0.01090 -19.50197 -18.1489954938 -18.4872395267 +6115 63.51082 30.74606 -19.4831 0.01093 -19.4831 -18.131231771 -18.4691992336 +6120 63.45269 30.71646 -19.46426 0.01095 -19.46426 -18.1134962405 -18.4511875847 +6125 63.39466 30.68692 -19.44546 0.01097 -19.44546 -18.0957989068 -18.4332145834 +6130 63.33675 30.65743 -19.42669 0.01099 -19.42669 -18.0781297743 -18.4152702331 +6135 63.27895 30.62801 -19.40795 0.01101 -19.40795 -18.0604888474 -18.3973545369 +6140 63.22127 30.59864 -19.38925 0.01103 -19.38925 -18.0428861304 -18.3794774982 +6145 63.16369 30.56933 -19.37057 0.01105 -19.37057 -18.0253016278 -18.3616191203 +6150 63.10623 30.54007 -19.35193 0.01108 -19.35193 -18.0077553439 -18.3437994064 +6155 63.04888 30.51088 -19.33332 0.01110 -19.33332 -17.9902372831 -18.3260083598 +6160 62.99164 30.48174 -19.31475 0.01112 -19.31475 -17.9727574496 -18.3082559837 +6165 62.93451 30.45265 -19.2962 0.01114 -19.2962 -17.9552958478 -18.2905222814 +6170 62.87748 30.42362 -19.27769 0.01116 -19.27769 -17.9378724819 -18.272827256 +6175 62.82057 30.39465 -19.25921 0.01118 -19.25921 -17.9204773564 -18.2551609109 +6180 62.76377 30.36574 -19.24076 0.01120 -19.24076 -17.9031104753 -18.2375232492 +6185 62.70708 30.33688 -19.22234 0.01123 -19.22234 -17.8857718431 -18.219914274 +6190 62.65049 30.30807 -19.20396 0.01125 -19.20396 -17.8684714639 -18.2023439887 +6195 62.59402 30.27932 -19.18561 0.01127 -19.18561 -17.8511993419 -18.1848023963 +6200 62.53765 30.25063 -19.16728 0.01129 -19.16728 -17.8339454815 -18.1672795 +6205 62.48139 30.22199 -19.14899 0.01131 -17.1505976132 -17.8167298867 -18.149795303 +6210 62.42524 30.19341 -19.13073 0.01133 -17.1339466312 -17.7995425618 -18.1323398084 +6215 62.36919 30.16488 -19.11251 0.01136 -17.1173330603 -17.782393511 -18.1149230193 +6220 62.31325 30.13641 -19.09431 0.01138 -17.1007369066 -17.7652627383 -18.0975249389 +6225 62.25742 30.10799 -19.07614 0.01140 -17.0841681765 -17.748160248 -18.0801555703 +6230 62.20169 30.07962 -19.05801 0.01142 -17.0676368761 -17.7310960443 -18.0628249165 +6235 62.14607 30.05131 -19.0399 0.01144 -17.0511230116 -17.7140501311 -18.0455129807 +6240 62.09056 30.02306 -19.02183 0.01146 -17.0346465892 -17.6970425127 -18.028239766 +6245 62.03515 29.99485 -19.00379 0.01149 -17.0181976151 -17.6800631931 -18.0109952753 +6250 61.97984 29.9667 -18.98578 0.01151 -17.0017760952 -17.6631121764 -17.9937795119 +6255 61.92464 29.93861 -18.9678 0.01153 -16.9853820358 -17.6461894666 -17.9765924787 +6260 61.86954 29.91056 -18.94984 0.01155 -16.969005443 -17.6292850679 -17.9594241788 +6265 61.81455 29.88257 -18.93192 0.01157 -16.9526663227 -17.6124189843 -17.9422946152 +6270 61.75966 29.85464 -18.91403 0.01160 -16.9363546811 -17.5955812198 -17.9251937909 +6275 61.70488 29.82675 -18.89618 0.01162 -16.9200805242 -17.5787817785 -17.9081317089 +6280 61.65019 29.79892 -18.87835 0.01164 -16.9038238579 -17.5620006642 -17.8910883724 +6285 61.59561 29.77114 -18.86055 0.01166 -16.8875946883 -17.5452478811 -17.8740737841 +6290 61.54113 29.74342 -18.84278 0.01168 -16.8713930214 -17.5285234331 -17.8570879472 +6295 61.48676 29.71574 -18.82504 0.01170 -16.855218863 -17.5118273241 -17.8401308646 +6300 61.43248 29.68812 -18.80733 0.01173 -16.8390722192 -17.4951595582 -17.8232025393 +6305 61.37831 29.66055 -18.78965 0.01175 -16.8229530958 -17.4785201392 -17.8063029742 +6310 61.32424 29.63303 -18.772 0.01177 -16.8068614987 -17.4619090712 -17.7894321723 +6315 61.27026 29.60557 -18.75438 0.01179 -16.7907974339 -17.4453263579 -17.7725901365 +6320 61.21639 29.57815 -18.73679 0.01181 -16.7747609071 -17.4287720034 -17.7557768697 +6325 61.16262 29.55079 -18.71923 0.01184 -16.7587519242 -17.4122460115 -17.7389923749 +6330 61.10895 29.52347 -18.7017 0.01186 -16.742770491 -17.3957483861 -17.722236655 +6335 61.05538 29.49621 -18.6842 0.01188 -16.7268166134 -17.379279131 -17.7055097128 +6340 61.00191 29.469 -18.66672 0.01190 -16.710880297 -17.3628282502 -17.6888015513 +6345 60.94853 29.44184 -18.64928 0.01192 -16.6949815477 -17.3464157474 -17.6721321734 +6350 60.89526 29.41473 -18.63186 0.01195 -16.6791003713 -17.3300216265 -17.6554815818 +6355 60.84208 29.38767 -18.61448 0.01197 -16.6632567734 -17.3136658913 -17.6388697796 +6360 60.789 29.36066 -18.59712 0.01199 -16.6474307598 -17.2973285456 -17.6222767695 +6365 60.73602 29.3337 -18.5798 0.01201 -16.6316423361 -17.2810295933 -17.6057225544 +6370 60.68314 29.30679 -18.5625 0.01204 -16.615871508 -17.264749038 -17.5891871371 +6375 60.63036 29.27993 -18.54523 0.01206 -16.6001282812 -17.2484968836 -17.5726805204 +6380 60.57767 29.25312 -18.52799 0.01208 -16.5844126614 -17.2322731338 -17.5562027073 +6385 60.52508 29.22636 -18.51077 0.01210 -16.5687146541 -17.2160677925 -17.5397437004 +6390 60.47258 29.19965 -18.49359 0.01212 -16.5530542649 -17.1999008632 -17.5233235026 +6395 60.42018 29.17298 -18.47643 0.01215 -16.5374114995 -17.1837523497 -17.5069221167 +6400 60.36788 29.14637 -18.45931 0.01217 -16.5218063634 -17.1676422558 -17.4905595454 +6405 60.31567 29.1198 -18.44221 0.01219 -16.5062188621 -17.1515505852 -17.4742157916 +6410 60.26356 29.09329 -18.42514 0.01221 -16.4906590013 -17.1354873415 -17.457900858 +6415 60.21154 29.06682 -18.4081 0.01224 -16.4751267863 -17.1194525284 -17.4416147474 +6420 60.15962 29.0404 -18.39108 0.01226 -16.4596122228 -17.1034361496 -17.4253474624 +6425 60.10779 29.01403 -18.3741 0.01228 -16.4441353162 -17.0874582087 -17.409119006 +6430 60.05605 28.98771 -18.35714 0.01230 -16.4286760719 -17.0714987094 -17.3929093807 +6435 60.00441 28.96143 -18.34021 0.01232 -16.4132444954 -17.0555676553 -17.3767285893 +6440 59.95287 28.93521 -18.3233 0.01235 -16.3978305922 -17.0396550501 -17.3605666346 +6445 59.90141 28.90903 -18.30643 0.01237 -16.3824543677 -17.0237808973 -17.3444435192 +6450 59.85005 28.8829 -18.28958 0.01239 -16.3670958272 -17.0079252006 -17.3283392458 +6455 59.79878 28.85681 -18.27276 0.01241 -16.3517649761 -16.9920979635 -17.3122638172 +6460 59.74761 28.83078 -18.25597 0.01244 -16.3364618198 -16.9762991896 -17.296217236 +6465 59.69653 28.80479 -18.23921 0.01246 -16.3211863637 -16.9605288825 -17.2801995049 +6470 59.64554 28.77885 -18.22247 0.01248 -16.3059286131 -16.9447770457 -17.2642006265 +6475 59.59464 28.75295 -18.20576 0.01250 -16.2906985732 -16.9290536828 -17.2482306035 +6480 59.54383 28.7271 -18.18908 0.01253 -16.2754962495 -16.9133587973 -17.2322894386 +6485 59.49311 28.7013 -18.17243 0.01255 -16.2603216472 -16.8976923927 -17.2163771344 +6490 59.44249 28.67555 -18.1558 0.01257 -16.2451647715 -16.8820444726 -17.2004836935 +6495 59.39196 28.64984 -18.1392 0.01259 -16.2300356277 -16.8664250404 -17.1846191186 +6500 59.34151 28.62417 -18.12262 0.01262 -16.214924221 -16.8508240997 -17.1687734122 +6505 59.29116 28.59856 -18.10608 0.01264 -16.1998505567 -16.8352616538 -17.1529665771 +6510 59.24089 28.57299 -18.08956 0.01266 -16.1847946399 -16.8197177064 -17.1371786157 +6515 59.19072 28.54746 -18.07306 0.01268 -16.1697564758 -16.8041922607 -17.1214095307 +6520 59.14064 28.52198 -18.0566 0.01271 -16.1547560697 -16.7887053204 -17.1056793247 +6525 59.09064 28.49655 -18.04016 0.01273 -16.1397734267 -16.7732368887 -17.0899680002 +6530 59.04073 28.47116 -18.02375 0.01275 -16.1248185518 -16.7577969692 -17.0742855598 +6535 58.99092 28.44582 -18.00736 0.01278 -16.1098814503 -16.7423755653 -17.0586220061 +6540 58.94119 28.42052 -17.991 0.01280 -16.0949721271 -16.7269826803 -17.0429873416 +6545 58.89155 28.39527 -17.97467 0.01282 -16.0800905876 -16.7116183177 -17.0273815689 +6550 58.84199 28.37006 -17.95836 0.01284 -16.0652268366 -16.6962724808 -17.0117946904 +6555 58.79253 28.3449 -17.94208 0.01287 -16.0503908792 -16.6809551731 -16.9962367089 +6560 58.74315 28.31978 -17.92583 0.01289 -16.0355827206 -16.6656663978 -16.9807076267 +6565 58.69386 28.29471 -17.9096 0.01291 -16.0207923657 -16.6503961583 -16.9651974463 +6570 58.64465 28.26968 -17.89339 0.01293 -16.0060198196 -16.6351444581 -16.9497061704 +6575 58.59554 28.2447 -17.87722 0.01296 -15.9912850872 -16.6199313003 -16.9342538013 +6580 58.54651 28.21976 -17.86107 0.01298 -15.9765681735 -16.6047366884 -16.9188203416 +6585 58.49756 28.19486 -17.84494 0.01300 -15.9618690835 -16.5895606256 -16.9034057938 +6590 58.4487 28.17001 -17.82885 0.01303 -15.9472078222 -16.5744231152 -16.8880301603 +6595 58.39993 28.1452 -17.81277 0.01305 -15.9325543945 -16.5592941606 -16.8726634436 +6600 58.35124 28.12044 -17.79673 0.01307 -15.9179388053 -16.544203765 -16.8573356461 +6605 58.30264 28.09571 -17.78071 0.01309 -15.9033410595 -16.5291319317 -16.8420267704 +6610 58.25412 28.07104 -17.76471 0.01312 -15.888761162 -16.5140786639 -16.8267368189 +6615 58.20569 28.0464 -17.74874 0.01314 -15.8742091178 -16.499053965 -16.8114757939 +6620 58.15734 28.02181 -17.7328 0.01316 -15.8596849316 -16.4840578381 -16.796243698 +6625 58.10908 27.99726 -17.71688 0.01319 -15.8451786083 -16.4690802864 -16.7810305336 +6630 58.0609 27.97276 -17.70098 0.01321 -15.8306901527 -16.4541213133 -16.765836303 +6635 58.01281 27.9483 -17.68511 0.01323 -15.8162295697 -16.4391909219 -16.7506710088 +6640 57.9648 27.92388 -17.66927 0.01326 -15.8017968641 -16.4242891155 -16.7355346532 +6645 57.91687 27.8995 -17.65345 0.01328 -15.7873820407 -16.4094058971 -16.7204172387 +6650 57.86902 27.87517 -17.63766 0.01330 -15.7729951042 -16.3945512701 -16.7053287677 +6655 57.82126 27.85087 -17.62189 0.01333 -15.7586260594 -16.3797152375 -16.6902592426 +6660 57.77358 27.82662 -17.60615 0.01335 -15.744284911 -16.3649078026 -16.6752186657 +6665 57.72598 27.80242 -17.59043 0.01337 -15.7299616639 -16.3501189685 -16.6601970394 +6670 57.67847 27.77825 -17.57474 0.01339 -15.7156663226 -16.3353587383 -16.645204366 +6675 57.63104 27.75413 -17.55907 0.01342 -15.701388892 -16.3206171152 -16.630230648 +6680 57.58369 27.73005 -17.54343 0.01344 -15.6871393766 -16.3059041023 -16.6152858876 +6685 57.53642 27.70601 -17.52781 0.01346 -15.6729077813 -16.2912097027 -16.6003600873 +6690 57.48923 27.68201 -17.51221 0.01349 -15.6586941106 -16.2765339196 -16.5854532492 +6695 57.44212 27.65805 -17.49664 0.01351 -15.6445083692 -16.261886756 -16.5705753759 +6700 57.3951 27.63413 -17.4811 0.01353 -15.6303505617 -16.2472682151 -16.5557264695 +6705 57.34815 27.61026 -17.46558 0.01356 -15.6162106928 -16.2326682998 -16.5408965323 +6710 57.30129 27.58643 -17.45008 0.01358 -15.602088767 -16.2180870134 -16.5260855668 +6715 57.2545 27.56263 -17.43461 0.01360 -15.587994789 -16.2035343588 -16.5113035752 +6720 57.2078 27.53888 -17.41916 0.01363 -15.5739187633 -16.189000339 -16.4965405597 +6725 57.16118 27.51517 -17.40374 0.01365 -15.5598706946 -16.1744949573 -16.4818065227 +6730 57.11463 27.4915 -17.38834 0.01367 -15.5458405873 -16.1600082165 -16.4670914664 +6735 57.06817 27.46787 -17.37296 0.01370 -15.5318284459 -16.1455401197 -16.4523953932 +6740 57.02178 27.44428 -17.35761 0.01372 -15.5178442752 -16.1311006699 -16.4377283052 +6745 56.97547 27.42074 -17.34229 0.01374 -15.5038880794 -16.1166898702 -16.4230902047 +6750 56.92924 27.39723 -17.32698 0.01377 -15.4899398632 -16.1022877235 -16.408461094 +6755 56.88309 27.37376 -17.3117 0.01379 -15.476019631 -16.0879142329 -16.3938609753 +6760 56.83702 27.35033 -17.29645 0.01381 -15.4621273874 -16.0735694012 -16.3792898509 +6765 56.79103 27.32694 -17.28122 0.01384 -15.4482531367 -16.0592432315 -16.364737723 +6770 56.74511 27.30359 -17.26601 0.01386 -15.4343968833 -16.0449357268 -16.3502045938 +6775 56.69928 27.28028 -17.25082 0.01388 -15.4205586319 -16.03064689 -16.3356904655 +6780 56.65352 27.25702 -17.23566 0.01391 -15.4067483867 -16.016386724 -16.3212053404 +6785 56.60783 27.23379 -17.22053 0.01393 -15.3929661521 -16.0021552318 -16.3067492206 +6790 56.56223 27.2106 -17.20541 0.01395 -15.3791919326 -15.9879324163 -16.2923021083 +6795 56.5167 27.18744 -17.19032 0.01398 -15.3654457326 -15.9737382805 -16.2778840058 +6800 56.47125 27.16433 -17.17526 0.01400 -15.3517275564 -15.9595728272 -16.2634949151 +6805 56.42587 27.14126 -17.16021 0.01403 -15.3380174083 -15.9454160593 -16.2491148386 +6810 56.38057 27.11823 -17.14519 0.01405 -15.3243352928 -15.9312879798 -16.2347637783 +6815 56.33535 27.09523 -17.13019 0.01407 -15.3106712141 -15.9171785916 -16.2204317365 +6820 56.2902 27.07227 -17.11522 0.01410 -15.2970351766 -15.9030978974 -16.2061287153 +6825 56.24513 27.04936 -17.10027 0.01412 -15.2834171845 -15.8890359003 -16.1918447167 +6830 56.20013 27.02648 -17.08534 0.01414 -15.2698172422 -15.874992603 -16.1775797431 +6835 56.15521 27.00364 -17.07044 0.01417 -15.2562453539 -15.8609780084 -16.1633437965 +6840 56.11037 26.98083 -17.05556 0.01419 -15.2426915239 -15.8469821193 -16.1491268791 +6845 56.0656 26.95807 -17.0407 0.01422 -15.2291557565 -15.8330049386 -16.1349289929 +6850 56.0209 26.93534 -17.02586 0.01424 -15.2156380559 -15.8190464691 -16.1207501402 +6855 55.97628 26.91266 -17.01105 0.01426 -15.2021484264 -15.8051167137 -16.106600323 +6860 55.93173 26.89001 -16.99626 0.01429 -15.1886768721 -15.7912056751 -16.0924695434 +6865 55.88726 26.86739 -16.98149 0.01431 -15.1752233972 -15.7773133561 -16.0783578036 +6870 55.84286 26.84482 -16.96674 0.01433 -15.161788006 -15.7634397596 -16.0642651056 +6875 55.79853 26.82228 -16.95202 0.01436 -15.1483807026 -15.7495948883 -16.0502014515 +6880 55.75428 26.79978 -16.93732 0.01438 -15.1349914913 -15.735768745 -16.0361568434 +6885 55.7101 26.77732 -16.92264 0.01441 -15.1216203761 -15.7219613325 -16.0221312834 +6890 55.666 26.7549 -16.90799 0.01443 -15.1082773612 -15.7081826536 -16.0081347736 +6895 55.62196 26.73251 -16.89335 0.01445 -15.0949424507 -15.6944127109 -15.9941473159 +6900 55.578 26.71016 -16.87874 0.01448 -15.0816356488 -15.6806715073 -15.9801889126 +6905 55.53411 26.68785 -16.86416 0.01450 -15.0683569595 -15.6669590455 -15.9662595656 +6910 55.4903 26.66557 -16.84959 0.01453 -15.055086387 -15.6532553282 -15.952339277 +6915 55.44656 26.64333 -16.83505 0.01455 -15.0418439354 -15.6395803581 -15.9384480489 +6920 55.40289 26.62113 -16.82052 0.01457 -15.0286096087 -15.625914138 -15.9245658832 +6925 55.35929 26.59896 -16.80602 0.01460 -15.015403411 -15.6122766705 -15.910712782 +6930 55.31576 26.57683 -16.79155 0.01462 -15.0022253463 -15.5986679584 -15.8968887473 +6935 55.2723 26.55474 -16.77709 0.01465 -14.9890554186 -15.5850680044 -15.8830737812 +6940 55.22892 26.53269 -16.76266 0.01467 -14.9759136321 -15.571496811 -15.8692878856 +6945 55.1856 26.51066 -16.74824 0.01469 -14.9627799907 -15.5579343812 -15.8555110625 +6950 55.14236 26.48868 -16.73385 0.01472 -14.9496744984 -15.5444007173 -15.8417633141 +6955 55.09919 26.46673 -16.71948 0.01474 -14.9365871592 -15.5308858223 -15.8280346422 +6960 55.05609 26.44482 -16.70514 0.01477 -14.9235279771 -15.5173996986 -15.8143350489 +6965 55.01306 26.42295 -16.69081 0.01479 -14.910476956 -15.503922349 -15.800644536 +6970 54.9701 26.40111 -16.67651 0.01481 -14.8974541 -15.490473776 -15.7869831058 +6975 54.9272 26.3793 -16.66223 0.01484 -14.8844494129 -15.4770439824 -15.7733407599 +6980 54.88438 26.35753 -16.64797 0.01486 -14.8714628987 -15.4636329707 -15.7597175006 +6985 54.84163 26.3358 -16.63373 0.01489 -14.8584945613 -15.4502407436 -15.7461133297 +6990 54.79895 26.3141 -16.61951 0.01491 -14.8455444047 -15.4368673036 -15.7325282491 +6995 54.75634 26.29244 -16.60531 0.01493 -14.8326124327 -15.4235126534 -15.7189622608 +7000 54.71379 26.27081 -16.59114 0.01496 -14.8197086492 -15.4101867955 -15.7054253669 +7005 54.67132 26.24922 -16.57698 0.01498 -14.8068130582 -15.3968697326 -15.6918975691 +7010 54.62891 26.22766 -16.56285 0.01501 -14.7939456633 -15.3835814672 -15.6783988695 +7015 54.58657 26.20614 -16.54874 0.01503 -14.7810964687 -15.3703120019 -15.6649192699 +7020 54.5443 26.18465 -16.53465 0.01506 -14.768265478 -15.3570613393 -15.6514587724 +7025 54.5021 26.1632 -16.52058 0.01508 -14.7554526951 -15.3438294818 -15.6380173787 +7030 54.45997 26.14178 -16.50653 0.01510 -14.7426581238 -15.3306164321 -15.6245950909 +7035 54.4179 26.1204 -16.49251 0.01513 -14.729891768 -15.3174321928 -15.6112019108 +7040 54.37591 26.09905 -16.4785 0.01515 -14.7171336314 -15.3042567662 -15.5978178403 +7045 54.33398 26.07774 -16.46451 0.01518 -14.7043937179 -15.291100155 -15.5844528813 +7050 54.29211 26.05646 -16.45055 0.01520 -14.6916820311 -15.2779723617 -15.5711170358 +7055 54.25032 26.03521 -16.43661 0.01523 -14.678988575 -15.2648633888 -15.5578003056 +7060 54.20859 26.014 -16.42268 0.01525 -14.6663033532 -15.2517632389 -15.5444926925 +7065 54.16693 25.99283 -16.40878 0.01528 -14.6536463696 -15.2386919143 -15.5312141985 +7070 54.12533 25.97168 -16.3949 0.01530 -14.6410076277 -15.2256394176 -15.5179548255 +7075 54.08381 25.95057 -16.38104 0.01532 -14.6283871314 -15.2126057513 -15.5047145752 +7080 54.04234 25.9295 -16.3672 0.01535 -14.6157848844 -15.1995909178 -15.4914934495 +7085 54.00095 25.90846 -16.35338 0.01537 -14.6032008904 -15.1865949197 -15.4782914504 +7090 53.95962 25.88745 -16.33958 0.01540 -14.5906351531 -15.1736177594 -15.4651085796 +7095 53.91835 25.86648 -16.3258 0.01542 -14.5780876761 -15.1606594393 -15.451944839 +7100 53.87716 25.84554 -16.31204 0.01545 -14.5655584632 -15.147719962 -15.4388002304 +7105 53.83602 25.82463 -16.2983 0.01547 -14.553047518 -15.1347993298 -15.4256747557 +7110 53.79496 25.80376 -16.28458 0.01550 -14.5405548442 -15.1218975451 -15.4125684167 +7115 53.75395 25.78292 -16.27089 0.01552 -14.5280904453 -15.1090246105 -15.3994912152 +7120 53.71302 25.76211 -16.25721 0.01555 -14.5156343251 -15.0961605283 -15.386423153 +7125 53.67214 25.74133 -16.24355 0.01557 -14.5031964872 -15.083315301 -15.373374232 +7130 53.63134 25.72059 -16.22991 0.01560 -14.4907769351 -15.0704889309 -15.3603444539 +7135 53.59059 25.69988 -16.2163 0.01562 -14.4783856726 -15.0576914204 -15.3473438205 +7140 53.54992 25.67921 -16.2027 0.01564 -14.4660027031 -15.0449027721 -15.3343523337 +7145 53.5093 25.65857 -16.18912 0.01567 -14.4536380303 -15.0321329882 -15.3213799952 +7150 53.46875 25.63796 -16.17556 0.01569 -14.4412916577 -15.0193820711 -15.3084268069 +7155 53.42826 25.61738 -16.16203 0.01572 -14.4289735889 -15.0066600232 -15.2955027704 +7160 53.38784 25.59684 -16.14851 0.01574 -14.4166638274 -14.9939468469 -15.2825878876 +7165 53.34748 25.57632 -16.13501 0.01577 -14.4043723769 -14.9812525445 -15.2696921603 +7170 53.30719 25.55584 -16.12153 0.01579 -14.3920992408 -14.9685771184 -15.2568155902 +7175 53.26696 25.5354 -16.10807 0.01582 -14.3798444226 -14.9559205709 -15.2439581791 +7180 53.22679 25.51498 -16.09463 0.01584 -14.3676079259 -14.9432829045 -15.2311199288 +7185 53.18668 25.4946 -16.08121 0.01587 -14.3553897542 -14.9306641213 -15.2183008409 +7190 53.14664 25.47425 -16.06781 0.01589 -14.3431899109 -14.9180642238 -15.2055009172 +7195 53.10666 25.45393 -16.05443 0.01592 -14.3310083996 -14.9054832143 -15.1927201596 +7200 53.06674 25.43364 -16.04107 0.01594 -14.3188452237 -14.8929210951 -15.1799585696 +7205 53.02688 25.41338 -16.02773 0.01597 -14.3067003867 -14.8803778684 -15.1672161491 +7210 52.98709 25.39316 -16.01441 0.01599 -14.294573892 -14.8678535367 -15.1544928998 +7215 52.94736 25.37297 -16.00111 0.01602 -14.2824657432 -14.8553481022 -15.1417888234 +7220 52.90769 25.35281 -15.98782 0.01604 -14.2703659435 -14.8428515671 -15.1290939216 +7225 52.86808 25.33268 -15.97456 0.01607 -14.2582944965 -14.8303839339 -15.1164281962 +7230 52.82853 25.31258 -15.96132 0.01609 -14.2462414056 -14.8179352047 -15.1037816487 +7235 52.78905 25.29251 -15.94809 0.01612 -14.2341966742 -14.8054953818 -15.0911442811 +7240 52.74962 25.27248 -15.93488 0.01614 -14.2221703057 -14.7930744675 -15.0785260948 +7245 52.71026 25.25247 -15.9217 0.01617 -14.2101723034 -14.7806824641 -15.0659370918 +7250 52.67096 25.2325 -15.90853 0.01619 -14.1981826708 -14.7682993737 -15.0533572735 +7255 52.63172 25.21256 -15.89538 0.01622 -14.1862114112 -14.7559351987 -15.0407966418 +7260 52.59254 25.19265 -15.88225 0.01624 -14.174258528 -14.7435899414 -15.0282551982 +7265 52.55342 25.17277 -15.86914 0.01627 -14.1623240245 -14.7312636038 -15.0157329446 +7270 52.51436 25.15292 -15.85604 0.01629 -14.1503979041 -14.7189461883 -15.0032198824 +7275 52.47536 25.1331 -15.84297 0.01632 -14.1385001701 -14.7066576971 -14.9907360135 +7280 52.43643 25.11331 -15.82992 0.01634 -14.1266208259 -14.6943881324 -14.9782713395 +7285 52.39755 25.09356 -15.81688 0.01637 -14.1147498747 -14.6821274964 -14.965815862 +7290 52.35873 25.07383 -15.80386 0.01639 -14.1028973199 -14.6698857913 -14.9533795827 +7295 52.31997 25.05413 -15.79086 0.01642 -14.0910631647 -14.6576630193 -14.9409625032 +7300 52.28127 25.03447 -15.77788 0.01644 -14.0792474124 -14.6454591826 -14.9285646252 +7305 52.24263 25.01483 -15.76492 0.01647 -14.0674500664 -14.6332742834 -14.9161859503 +7310 52.20405 24.99523 -15.75198 0.01650 -14.0556711299 -14.6211083238 -14.9038264802 +7315 52.16553 24.97565 -15.73906 0.01652 -14.0439106062 -14.6089613062 -14.8914862164 +7320 52.12706 24.95611 -15.72615 0.01655 -14.0321584984 -14.5968232325 -14.8791551607 +7325 52.08866 24.93659 -15.71326 0.01657 -14.0204248099 -14.584704105 -14.8668433146 +7330 52.05032 24.91711 -15.70039 0.01660 -14.0087095439 -14.5726039258 -14.8545506797 +7335 52.01203 24.89765 -15.68754 0.01662 -13.9970127036 -14.5605226971 -14.8422772577 +7340 51.9738 24.87823 -15.67471 0.01665 -13.9853342923 -14.548460421 -14.8300230502 +7345 51.93563 24.85883 -15.6619 0.01667 -13.9736743131 -14.5364170997 -14.8177880587 +7350 51.89752 24.83946 -15.6491 0.01670 -13.9620227692 -14.5243827353 -14.8055622849 +7355 51.85947 24.82013 -15.63632 0.01672 -13.9503896638 -14.51236733 -14.7933557304 +7360 51.82147 24.80082 -15.62356 0.01675 -13.9387750002 -14.5003708857 -14.7811683968 +7365 51.78353 24.78154 -15.61082 0.01677 -13.9271787814 -14.4883934048 -14.7690002856 +7370 51.74565 24.76229 -15.5981 0.01680 -13.9156010107 -14.4764348892 -14.7568513984 +7375 51.70783 24.74308 -15.5854 0.01683 -13.9040416912 -14.464495341 -14.7447217368 +7380 51.67006 24.72389 -15.57271 0.01685 -13.8924908261 -14.4525647625 -14.7326013024 +7385 51.63235 24.70473 -15.56004 0.01688 -13.8809584185 -14.4406531556 -14.7205000968 +7390 51.5947 24.68559 -15.54739 0.01690 -13.8694444714 -14.4287605225 -14.7084181215 +7395 51.55711 24.66649 -15.53476 0.01693 -13.8579489882 -14.4168868652 -14.6963553781 +7400 51.51957 24.64742 -15.52214 0.01695 -13.8464619718 -14.4050221858 -14.6843018681 +7405 51.48209 24.62837 -15.50954 0.01698 -13.8349934253 -14.3931764864 -14.6722675931 +7410 51.44466 24.60936 -15.49696 0.01700 -13.823543352 -14.3813497691 -14.6602525546 +7415 51.40729 24.59037 -15.4844 0.01703 -13.8121117547 -14.3695420359 -14.6482567542 +7420 51.36998 24.57141 -15.47186 0.01706 -13.8006986368 -14.3577532888 -14.6362801935 +7425 51.33273 24.55248 -15.45933 0.01708 -13.7892940011 -14.3459735299 -14.6243128739 +7430 51.29553 24.53358 -15.44682 0.01711 -13.7779078508 -14.3342127613 -14.612364797 +7435 51.25838 24.51471 -15.43433 0.01713 -13.7665401889 -14.322470985 -14.6004359643 +7440 51.22129 24.49586 -15.42186 0.01716 -13.7551910185 -14.310748203 -14.5885263773 +7445 51.18426 24.47705 -15.4094 0.01718 -13.7438503426 -14.2990344174 -14.5766260376 +7450 51.14728 24.45826 -15.39696 0.01721 -13.7325281643 -14.2873396301 -14.5647449467 +7455 51.11036 24.4395 -15.38454 0.01724 -13.7212244865 -14.2756638432 -14.5528831061 +7460 51.07349 24.42077 -15.37214 0.01726 -13.7099393123 -14.2640070587 -14.5410405173 +7465 51.03668 24.40206 -15.35975 0.01729 -13.6986626447 -14.2523592786 -14.5292071817 +7470 50.99992 24.38339 -15.34738 0.01731 -13.6874044867 -14.2407305049 -14.517393101 +7475 50.96322 24.36474 -15.33503 0.01734 -13.6761648413 -14.2291207395 -14.5055982766 +7480 50.92657 24.34612 -15.32269 0.01737 -13.6649337114 -14.2175199846 -14.4938127099 +7485 50.88998 24.32753 -15.31038 0.01739 -13.6537311001 -14.205948242 -14.4820564025 +7490 50.85344 24.30897 -15.29808 0.01742 -13.6425370103 -14.1943855138 -14.4703093559 +7495 50.81696 24.29043 -15.28579 0.01744 -13.6313514449 -14.1828318019 -14.4585715715 +7500 50.78053 24.27192 -15.27353 0.01747 -13.620194407 -14.1713071082 -14.4468630509 +7505 50.74415 24.25344 -15.26128 0.01749 -13.6090458994 -14.1597914348 -14.4351637954 +7510 50.70783 24.23499 -15.24905 0.01752 -13.5979159251 -14.1482947836 -14.4234838065 +7515 50.67156 24.21656 -15.23683 0.01755 -13.586794487 -14.1368071566 -14.4118130858 +7520 50.63535 24.19816 -15.22463 0.01757 -13.5756915881 -14.1253385556 -14.4001616347 +7525 50.59919 24.17979 -15.21245 0.01760 -13.5646072312 -14.1138889827 -14.3885294546 +7530 50.56308 24.16144 -15.20029 0.01762 -13.5535414193 -14.1024584398 -14.3769165469 +7535 50.52702 24.14313 -15.18814 0.01765 -13.5424841552 -14.0910369288 -14.3653129132 +7540 50.49102 24.12484 -15.17601 0.01768 -13.5314454418 -14.0796344516 -14.3537285549 +7545 50.45507 24.10657 -15.1639 0.01770 -13.5204252821 -14.0682510101 -14.3421634734 +7550 50.41918 24.08834 -15.1518 0.01773 -13.5094136789 -14.0568766064 -14.3306076701 +7555 50.38334 24.07013 -15.13972 0.01776 -13.4984206351 -14.0455212422 -14.3190711466 +7560 50.34755 24.05195 -15.12766 0.01778 -13.4874461535 -14.0341849195 -14.3075539041 +7565 50.31181 24.03379 -15.11561 0.01781 -13.4764802369 -14.0228576401 -14.2960459442 +7570 50.27612 24.01566 -15.10358 0.01783 -13.4655328883 -14.0115494061 -14.2845572682 +7575 50.24049 23.99756 -15.09157 0.01786 -13.4546041104 -14.0002602192 -14.2730878777 +7580 50.20491 23.97948 -15.07957 0.01789 -13.4436839061 -13.9889800814 -14.2616277739 +7585 50.16938 23.96144 -15.06759 0.01791 -13.4327822782 -13.9777189946 -14.2501869583 +7590 50.13391 23.94341 -15.05563 0.01794 -13.4218992295 -13.9664769605 -14.2387654323 +7595 50.09848 23.92542 -15.04368 0.01796 -13.4110247628 -13.9552439811 -14.2273531974 +7600 50.06311 23.90745 -15.03175 0.01799 -13.400168881 -13.9440300583 -14.2159602549 +7605 50.02779 23.8895 -15.01983 0.01802 -13.3893215867 -13.9328251939 -14.2045766061 +7610 49.99252 23.87159 -15.00793 0.01804 -13.3784928829 -13.9216393897 -14.1932122526 +7615 49.9573 23.8537 -14.99605 0.01807 -13.3676827722 -13.9104726477 -14.1818671957 +7620 49.92214 23.83583 -14.98419 0.01810 -13.3568912575 -13.8993249696 -14.1705414367 +7625 49.88702 23.81799 -14.97234 0.01812 -13.3461083414 -13.8881863574 -14.1592249771 +7630 49.85196 23.80018 -14.9605 0.01815 -13.3353340268 -13.8770568128 -14.1479178182 +7635 49.81694 23.78239 -14.94869 0.01818 -13.3245883165 -13.8659563376 -14.1366399615 +7640 49.78198 23.76463 -14.93689 0.01820 -13.313851213 -13.8548649338 -14.1253714082 +7645 49.74707 23.7469 -14.9251 0.01823 -13.3031227193 -13.8437826031 -14.1141121597 +7650 49.71221 23.72919 -14.91333 0.01825 -13.2924128379 -13.8327193473 -14.1028722175 +7655 49.6774 23.7115 -14.90158 0.01828 -13.2817215717 -13.8216751683 -14.0916515828 +7660 49.64263 23.69385 -14.88984 0.01831 -13.2710389233 -13.8106400678 -14.0804402571 +7665 49.60792 23.67621 -14.87812 0.01833 -13.2603748955 -13.7996240477 -14.0692482416 +7670 49.57326 23.65861 -14.86642 0.01836 -13.2497294909 -13.7886271098 -14.0580755377 +7675 49.53865 23.64103 -14.85473 0.01839 -13.2390927122 -13.7776392558 -14.0469121468 +7680 49.50409 23.62347 -14.84306 0.01841 -13.2284745622 -13.7666704876 -14.0357680703 +7685 49.46958 23.60594 -14.8314 0.01844 -13.2178650434 -13.7557108068 -14.0246333093 +7690 49.43512 23.58843 -14.81976 0.01847 -13.2072741586 -13.7447702155 -14.0135178654 +7695 49.40071 23.57095 -14.80813 0.01849 -13.1966919104 -13.7338387151 -14.0024117398 +7700 49.36635 23.5535 -14.79652 0.01852 -13.1861283015 -13.7229263077 -13.9913249338 +7705 49.33204 23.53607 -14.78493 0.01855 -13.1755833345 -13.7120329949 -13.9802574488 +7710 49.29777 23.51867 -14.77335 0.01857 -13.165047012 -13.7011487784 -13.969199286 +7715 49.26356 23.50129 -14.76179 0.01860 -13.1545293368 -13.6902836601 -13.9581604469 +7720 49.22939 23.48393 -14.75024 0.01863 -13.1440203114 -13.6794276417 -13.9471309327 +7725 49.19528 23.4666 -14.73871 0.01865 -13.1335299385 -13.6685907249 -13.9361207447 +7730 49.16121 23.4493 -14.72719 0.01868 -13.1230482207 -13.6577629115 -13.9251198843 +7735 49.12719 23.43202 -14.71569 0.01871 -13.1125851605 -13.6469542033 -13.9141383527 +7740 49.09322 23.41476 -14.70421 0.01873 -13.1021407606 -13.6361646019 -13.9031761513 +7745 49.0593 23.39753 -14.69274 0.01876 -13.0917050236 -13.625384109 -13.8922232813 +7750 49.02542 23.38033 -14.68128 0.01879 -13.081277952 -13.6146127265 -13.881279744 +7755 48.9916 23.36314 -14.66985 0.01881 -13.0708795485 -13.603870456 -13.8703655408 +7760 48.95782 23.34599 -14.65842 0.01884 -13.0604798156 -13.5931272993 -13.8594506728 +7765 48.92409 23.32886 -14.64702 0.01887 -13.0501087559 -13.582413258 -13.8485651415 +7770 48.89041 23.31175 -14.63562 0.01889 -13.0397363719 -13.5716983339 -13.837678948 +7775 48.85678 23.29466 -14.62425 0.01892 -13.0293926662 -13.5610125287 -13.8268220937 +7780 48.82319 23.27761 -14.61288 0.01895 -13.0190476414 -13.5503258441 -13.8159645799 +7785 48.78966 23.26057 -14.60154 0.01898 -13.0087313 -13.5396682817 -13.8051364077 +7790 48.75617 23.24356 -14.5902 0.01900 -12.9984136445 -13.5290098432 -13.7943075785 +7795 48.72272 23.22657 -14.57889 0.01903 -12.9881246774 -13.5183805304 -13.7835080935 +7800 48.68933 23.20961 -14.56759 0.01906 -12.9778444014 -13.507760345 -13.772717954 +7805 48.65598 23.19267 -14.5563 0.01908 -12.9675728188 -13.4971492885 -13.7619371613 +7810 48.62268 23.17576 -14.54503 0.01911 -12.9573199323 -13.4865573627 -13.7511757166 +7815 48.58942 23.15887 -14.53377 0.01914 -12.9470757442 -13.4759745692 -13.7404236211 +7820 48.55621 23.142 -14.52253 0.01916 -12.9368502571 -13.4654109098 -13.7296908761 +7825 48.52305 23.12516 -14.51131 0.01919 -12.9266434736 -13.454866386 -13.7189774829 +7830 48.48994 23.10834 -14.5001 0.01922 -12.916445396 -13.4443309995 -13.7082734427 +7835 48.45687 23.09154 -14.4889 0.01924 -12.9062560269 -13.433804752 -13.6975787567 +7840 48.42385 23.07477 -14.47772 0.01927 -12.8960853687 -13.4232976451 -13.6869034262 +7845 48.39088 23.05803 -14.46655 0.01930 -12.8859234238 -13.4127996805 -13.6762374524 +7850 48.35795 23.0413 -14.4554 0.01933 -12.8757801949 -13.4023208598 -13.6655908365 +7855 48.32507 23.0246 -14.44426 0.01935 -12.8656456842 -13.3918511846 -13.6549535797 +7860 48.29223 23.00792 -14.43314 0.01938 -12.8555298943 -13.3814006566 -13.6443356834 +7865 48.25944 22.99127 -14.42203 0.01941 -12.8454228276 -13.3709592774 -13.6337271486 +7870 48.2267 22.97464 -14.41094 0.01943 -12.8353344864 -13.3605370486 -13.6231379766 +7875 48.194 22.95803 -14.39986 0.01946 -12.8252548734 -13.3501239719 -13.6125581687 +7880 48.16135 22.94145 -14.3888 0.01949 -12.8151939908 -13.3397300488 -13.601997726 +7885 48.12874 22.92489 -14.37775 0.01952 -12.8051418411 -13.3293452809 -13.5914466498 +7890 48.09618 22.90835 -14.36672 0.01954 -12.7951084266 -13.31897967 -13.5809149412 +7895 48.06366 22.89183 -14.3557 0.01957 -12.7850837499 -13.3086232174 -13.5703926014 +7900 48.03119 22.87534 -14.34469 0.01960 -12.7750678133 -13.298275925 -13.5598796317 +7905 47.99876 22.85887 -14.3337 0.01963 -12.7650706191 -13.2879477942 -13.5493860333 +7910 47.96638 22.84243 -14.32272 0.01965 -12.7550821699 -13.2776288267 -13.5389018073 +7915 47.93405 22.82601 -14.31176 0.01968 -12.7451124678 -13.2673290239 -13.5284369549 +7920 47.90176 22.80961 -14.30082 0.01971 -12.7351615154 -13.2570483877 -13.5179914773 +7925 47.86951 22.79323 -14.28988 0.01974 -12.725209315 -13.2467669194 -13.5075453757 +7930 47.83731 22.77688 -14.27896 0.01976 -12.7152758689 -13.2365046206 -13.4971186513 +7935 47.80515 22.76054 -14.26806 0.01979 -12.7053611795 -13.226261493 -13.4867113053 +7940 47.77304 22.74424 -14.25717 0.01982 -12.6954552492 -13.2160275381 -13.4763133388 +7945 47.74097 22.72795 -14.24629 0.01984 -12.6855580802 -13.2058027575 -13.465924753 +7950 47.70895 22.71169 -14.23543 0.01987 -12.675679675 -13.1955971527 -13.455555549 +7955 47.67697 22.69545 -14.22459 0.01990 -12.6658200359 -13.1854107253 -13.4452057281 +7960 47.64503 22.67923 -14.21375 0.01993 -12.6559591651 -13.1752234768 -13.4348552914 +7965 47.61314 22.66303 -14.20293 0.01995 -12.6461170651 -13.1650554088 -13.42452424 +7970 47.5813 22.64686 -14.19213 0.01998 -12.636293738 -13.1549065228 -13.4142125752 +7975 47.54949 22.63071 -14.18134 0.02001 -12.6264791863 -13.1447668203 -13.403910298 +7980 47.51773 22.61458 -14.17056 0.02004 -12.6166734122 -13.134636303 -13.3936174096 +7985 47.48602 22.59847 -14.1598 0.02006 -12.6068864181 -13.1245249722 -13.3833439112 +7990 47.45434 22.58239 -14.14905 0.02009 -12.5971082062 -13.1144228296 -13.3730798039 +7995 47.42271 22.56632 -14.13832 0.02012 -12.5873487787 -13.1043398767 -13.3628350889 +8000 47.39113 22.55028 -14.1276 0.02015 -12.5775981381 -13.094266115 -13.3525997673 +8005 47.35959 22.53426 -14.11689 0.02018 -12.5678562865 -13.084201546 -13.3423738401 +8010 47.32809 22.51827 -14.1062 0.02020 -12.5581332262 -13.0741561711 -13.3321673087 +8015 47.29663 22.50229 -14.09552 0.02023 -12.5484189595 -13.0641199921 -13.3219701741 +8020 47.26522 22.48634 -14.08485 0.02026 -12.5387134886 -13.0540930102 -13.3117824373 +8025 47.23385 22.47041 -14.0742 0.02029 -12.5290268158 -13.0440852271 -13.3016140996 +8030 47.20252 22.4545 -14.06356 0.02031 -12.5193489434 -13.0340866442 -13.2914551621 +8035 47.17124 22.43861 -14.05294 0.02034 -12.5096898735 -13.024107263 -13.2813156259 +8040 47.14 22.42275 -14.04233 0.02037 -12.5000396085 -13.014137085 -13.2711854921 +8045 47.1088 22.4069 -14.03174 0.02040 -12.4904081505 -13.0041861118 -13.2610747618 +8050 47.07764 22.39108 -14.02115 0.02042 -12.4807755017 -12.9942343447 -13.2509634362 +8055 47.04653 22.37528 -14.01058 0.02045 -12.4711616645 -12.9843017852 -13.2408715163 +8060 47.01545 22.3595 -14.00003 0.02048 -12.4615666409 -12.9743884349 -13.2307990032 +8065 46.98442 22.34375 -13.98949 0.02051 -12.4519804332 -12.9644842952 -13.2207358981 +8070 46.95344 22.32801 -13.97896 0.02054 -12.4424030436 -12.9545893675 -13.210682202 +8075 46.92249 22.3123 -13.96845 0.02056 -12.4328444743 -12.9447136534 -13.2006479161 +8080 46.89159 22.2966 -13.95795 0.02059 -12.4232947275 -12.9348471543 -13.1906230414 +8085 46.86072 22.28093 -13.94746 0.02062 -12.4137538053 -12.9249898716 -13.1806075791 +8090 46.8299 22.26528 -13.93698 0.02065 -12.40422171 -12.9151418069 -13.1706015302 +8095 46.79912 22.24965 -13.92652 0.02068 -12.3947084437 -12.9053129614 -13.1606148958 +8100 46.76839 22.23404 -13.91608 0.02070 -12.3852140086 -12.8955033368 -13.150647677 +8105 46.73769 22.21845 -13.90564 0.02073 -12.3757184069 -12.8856929344 -13.1406798749 +8110 46.70704 22.20289 -13.89522 0.02076 -12.3662416407 -12.8759017557 -13.1307314905 +8115 46.67643 22.18734 -13.88482 0.02079 -12.3567837121 -12.8661298021 -13.120802525 +8120 46.64585 22.17182 -13.87442 0.02082 -12.3473246233 -12.856357075 -13.1108729794 +8125 46.61532 22.15632 -13.86404 0.02084 -12.3378843765 -12.846603576 -13.1009628548 +8130 46.58483 22.14083 -13.85368 0.02087 -12.3284629738 -12.8368693063 -13.0910721522 +8135 46.55439 22.12537 -13.84332 0.02090 -12.3190404173 -12.8271342674 -13.0811808727 +8140 46.52398 22.10993 -13.83298 0.02093 -12.3096367091 -12.8174184607 -13.0713090174 +8145 46.49361 22.09451 -13.82266 0.02096 -12.3002518515 -12.8077218877 -13.0614565873 +8150 46.46329 22.07911 -13.81234 0.02098 -12.2908658463 -12.7980245498 -13.0516035836 +8155 46.433 22.06373 -13.80204 0.02101 -12.2814986959 -12.7883464483 -13.0417700071 +8160 46.40276 22.04838 -13.79175 0.02104 -12.2721404023 -12.7786775847 -13.0319458591 +8165 46.37255 22.03304 -13.78148 0.02107 -12.2628009676 -12.7690279604 -13.0221411405 +8170 46.34239 22.01772 -13.77122 0.02110 -12.2534703939 -12.7593875767 -13.0123458525 +8175 46.31226 22.00243 -13.76097 0.02113 -12.2441486832 -12.7497564351 -13.002559996 +8180 46.28218 21.98715 -13.75073 0.02115 -12.2348358378 -12.7401345369 -12.992783572 +8185 46.25214 21.9719 -13.74051 0.02118 -12.2255418595 -12.7305318836 -12.9830265817 +8190 46.22213 21.95666 -13.7303 0.02121 -12.2162567506 -12.7209384765 -12.9732790261 +8195 46.19217 21.94145 -13.72011 0.02124 -12.2069905131 -12.7113643169 -12.9635509061 +8200 46.16225 21.92625 -13.70992 0.02127 -12.1977231491 -12.7017894064 -12.9538222229 +8205 46.13237 21.91108 -13.69975 0.02129 -12.1884746605 -12.6922337462 -12.9441129774 +8210 46.10252 21.89593 -13.68959 0.02132 -12.1792350495 -12.6826873377 -12.9344131708 +8215 46.07272 21.88079 -13.67945 0.02135 -12.1700143182 -12.6731601823 -12.9247328039 +8220 46.04295 21.86568 -13.66932 0.02138 -12.1608024685 -12.6636422814 -12.9150618779 +8225 46.01323 21.85059 -13.6592 0.02141 -12.1515995025 -12.6541336362 -12.9054003937 +8230 45.98354 21.83551 -13.64909 0.02144 -12.1424054223 -12.6446342482 -12.8957483525 +8235 45.9539 21.82046 -13.639 0.02147 -12.1332302298 -12.6351541188 -12.886115755 +8240 45.92429 21.80543 -13.62892 0.02149 -12.1240639271 -12.6256832492 -12.8764926025 +8245 45.89472 21.79041 -13.61885 0.02152 -12.1149065163 -12.6162216408 -12.8668788959 +8250 45.86519 21.77542 -13.60879 0.02155 -12.1057579992 -12.6067692949 -12.8572746363 +8255 45.8357 21.76045 -13.59875 0.02158 -12.096628378 -12.597336213 -13.59875 +8260 45.80625 21.74549 -13.58872 0.02161 -12.0875076547 -12.5879123963 -13.58872 +8265 45.77684 21.73056 -13.5787 0.02164 -12.0783958311 -12.5784978461 -13.5787 +8270 45.74747 21.71565 -13.5687 0.02166 -12.0693029095 -12.5691025639 -13.5687 +8275 45.71813 21.70075 -13.5587 0.02169 -12.0602088916 -12.5597065509 -13.5587 +8280 45.68883 21.68588 -13.54872 0.02172 -12.0511337796 -12.5503298084 -13.54872 +8285 45.65958 21.67102 -13.53876 0.02175 -12.0420775753 -12.5409723378 -13.53876 +8290 45.63036 21.65619 -13.5288 0.02178 -12.0330202809 -12.5316141403 -13.5288 +8295 45.60118 21.64137 -13.51886 0.02181 -12.0239818981 -12.5222752174 -13.51886 +8300 45.57203 21.62657 -13.50893 0.02184 -12.0149524291 -12.5129455703 -13.50893 +8305 45.54293 21.6118 -13.49901 0.02186 -12.0059318758 -12.5036252002 -13.49901 +8310 45.51386 21.59704 -13.48911 0.02189 -11.9969302401 -12.4943241087 -13.48911 +8315 45.48484 21.5823 -13.47921 0.02192 -11.987927524 -12.4850222968 -13.47921 +8320 45.45585 21.56758 -13.46933 0.02195 -11.9789437294 -12.475739766 -13.46933 +8325 45.42689 21.55288 -13.45946 0.02198 -11.9699688582 -12.4664665174 -13.45946 +8330 45.39798 21.5382 -13.44961 0.02201 -11.9610129125 -12.4572125525 -13.44961 +8335 45.3691 21.52354 -13.43976 0.02204 -11.9520558942 -12.4479578725 -13.43976 +8340 45.34026 21.5089 -13.42993 0.02207 -11.9431178051 -12.4387224787 -13.42993 +8345 45.31146 21.49428 -13.42011 0.02209 -11.9341886472 -12.4294963723 -13.42011 +8350 45.2827 21.47967 -13.41031 0.02212 -11.9252784224 -12.4202895547 -13.41031 +8355 45.25397 21.46509 -13.40051 0.02215 -11.9163671327 -12.4110820272 -13.40051 +8360 45.22528 21.45052 -13.39073 0.02218 -11.9074747799 -12.4018937909 -13.39073 +8365 45.19663 21.43597 -13.38096 0.02221 -11.8985913659 -12.3927148472 -13.38096 +8370 45.16802 21.42145 -13.3712 0.02224 -11.8897168927 -12.3835451973 -13.3712 +8375 45.13944 21.40694 -13.36145 0.02227 -11.8808513622 -12.3743848425 -13.36145 +8380 45.1109 21.39245 -13.35172 0.02230 -11.8720047762 -12.3652437841 -13.35172 +8385 45.0824 21.37798 -13.342 0.02233 -11.8631671367 -12.3561120234 -13.342 +8390 45.05393 21.36352 -13.33229 0.02235 -11.8543384454 -12.3469895615 -13.33229 +8395 45.0255 21.34909 -13.32259 0.02238 -11.8455187044 -12.3378763997 -13.32259 +8400 44.99711 21.33468 -13.3129 0.02241 -11.8367079154 -12.3287725393 -13.3129 +8405 44.96875 21.32028 -13.30323 0.02244 -11.8279160804 -12.3196879816 -13.30323 +8410 44.94043 21.3059 -13.29357 0.02247 -11.8191332011 -12.3106127277 -13.29357 +8415 44.91215 21.29154 -13.28392 0.02250 -11.8103592796 -12.3015467789 -13.28392 +8420 44.8839 21.2772 -13.27428 0.02253 -11.8015943175 -12.2924901365 -13.27428 +8425 44.85569 21.26288 -13.26465 0.02256 -11.7928383168 -12.2834428016 -13.26465 +8430 44.82752 21.24858 -13.25504 0.02259 -11.7841012794 -12.2744147756 -13.25504 +8435 44.79938 21.23429 -13.24543 0.02262 -11.775363207 -12.2653860597 -13.24543 +8440 44.77128 21.22003 -13.23584 0.02265 -11.7666441015 -12.256376655 -13.23584 +8445 44.74322 21.20578 -13.22626 0.02267 -11.7579339648 -12.2473765628 -13.22626 +8450 44.71519 21.19155 -13.2167 0.02270 -11.7492427987 -12.2383957843 -13.2167 +8455 44.6872 21.17734 -13.20714 0.02273 -11.7405506049 -12.2294143208 -13.20714 +8460 44.65924 21.16314 -13.1976 0.02276 -11.7318773854 -12.2204521734 -13.1976 +8465 44.63132 21.14897 -13.18806 0.02279 -11.7232031419 -12.2114893433 -13.18806 +8470 44.60343 21.13481 -13.17854 0.02282 -11.7145478762 -12.2025458319 -13.17854 +8475 44.57558 21.12067 -13.16903 0.02285 -11.7059015903 -12.1936116402 -13.16903 +8480 44.54777 21.10655 -13.15954 0.02288 -11.6972742857 -12.1846967695 -13.15954 +8485 44.51999 21.09245 -13.15005 0.02291 -11.6886459645 -12.175781221 -13.15005 +8490 44.49225 21.07837 -13.14058 0.02294 -11.6800366283 -12.1668849958 -13.14058 +8495 44.46454 21.0643 -13.13111 0.02297 -11.671426279 -12.1579880953 -13.13111 +8500 44.43687 21.05025 -13.12166 0.02300 -11.6628349183 -12.1491105204 -13.12166 +8505 44.40923 21.03622 -13.11222 0.02303 -11.654252548 -12.1402422726 -13.11222 +8510 44.38163 21.02221 -13.1028 0.02305 -11.64568917 -12.1313933529 -13.1028 +8515 44.35406 21.00821 -13.09338 0.02308 -11.6371247859 -12.1225437625 -13.09338 +8520 44.32653 20.99424 -13.08397 0.02311 -11.6285693976 -12.1137035026 -13.08397 +8525 44.29903 20.98028 -13.07458 0.02314 -11.6200330068 -12.1048825744 -13.07458 +8530 44.27157 20.96634 -13.0652 0.02317 -11.6115056152 -12.096070979 -13.0652 +8535 44.24414 20.95241 -13.05583 0.02320 -11.6029872248 -12.0872687177 -13.05583 +8540 44.21675 20.93851 -13.04647 0.02323 -11.5944778371 -12.0784757916 -13.04647 +8545 44.18939 20.92462 -13.03712 0.02326 -11.5859774539 -12.0696922019 -13.03712 +8550 44.16207 20.91075 -13.02778 0.02329 -11.5774860771 -12.0609179496 -13.02778 +8555 44.13478 20.8969 -13.01846 0.02332 -11.5690137083 -12.0521630361 -13.01846 +8560 44.10753 20.88306 -13.00914 0.02335 -11.5605403493 -12.0434074624 -13.00914 +8565 44.08031 20.86924 -12.99984 0.02338 -11.5520860017 -12.0346712298 -12.99984 +8570 44.05313 20.85544 -12.99055 0.02341 -11.5436406674 -12.0259443393 -12.99055 +8575 44.02597 20.84166 -12.98127 0.02344 -11.5352043481 -12.0172267921 -12.98127 +8580 43.99886 20.82789 -12.972 0.02347 -11.5267770455 -12.0085185893 -12.972 +8585 43.97178 20.81415 -12.96274 0.02350 -11.5183587613 -11.9998197322 -12.96274 +8590 43.94473 20.80042 -12.95349 0.02353 -11.5099494971 -11.9911302218 -12.95349 +8595 43.91771 20.7867 -12.94426 0.02356 -11.5015592548 -11.9824600593 -12.94426 +8600 43.89073 20.77301 -12.93503 0.02359 -11.4931680361 -11.9737892458 -12.93503 +8605 43.86379 20.75933 -12.92582 0.02362 -11.4847958426 -11.9651377825 -12.92582 +8610 43.83688 20.74567 -12.91662 0.02365 -11.476432676 -11.9564956705 -12.91662 +8615 43.81 20.73202 -12.90743 0.02368 -11.468078538 -11.9478629109 -12.90743 +8620 43.78315 20.7184 -12.89825 0.02371 -11.4597334304 -11.9392395049 -12.89825 +8625 43.75634 20.70479 -12.88908 0.02373 -11.4513973548 -11.9306254535 -12.88908 +8630 43.72957 20.69119 -12.87992 0.02376 -11.4430703128 -11.9220207579 -12.87992 +8635 43.70282 20.67762 -12.87077 0.02379 -11.4347523063 -11.9134254192 -12.87077 +8640 43.67611 20.66406 -12.86164 0.02382 -11.4264533367 -11.9048494386 -12.86164 +8645 43.64943 20.65052 -12.85251 0.02385 -11.4181534059 -11.8962728171 -12.85251 +8650 43.62279 20.63699 -12.8434 0.02388 -11.4098725155 -11.8877155559 -12.8434 +8655 43.59618 20.62348 -12.83429 0.02391 -11.4015906671 -11.879157656 -12.83429 +8660 43.5696 20.60999 -12.8252 0.02394 -11.3933278624 -11.8706191186 -12.8252 +8665 43.54306 20.59652 -12.81612 0.02397 -11.3850741031 -11.8620899448 -12.81612 +8670 43.51655 20.58306 -12.80705 0.02400 -11.3768293907 -11.8535701356 -12.80705 +8675 43.49007 20.56962 -12.79799 0.02403 -11.3685937271 -11.8450596922 -12.79799 +8680 43.46363 20.5562 -12.78894 0.02406 -11.3603671137 -11.8365586157 -12.78894 +8685 43.43721 20.54279 -12.7799 0.02409 -11.3521495523 -11.8280669071 -12.7799 +8690 43.41083 20.5294 -12.77087 0.02412 -11.3439410444 -11.8195845677 -12.77087 +8695 43.38449 20.51603 -12.76186 0.02415 -11.3357515918 -11.8111215983 -12.76186 +8700 43.35817 20.50267 -12.75285 0.02418 -11.327561196 -11.8026580002 -12.75285 +8705 43.33189 20.48933 -12.74386 0.02421 -11.3193898586 -11.7942137744 -12.74386 +8710 43.30564 20.476 -12.73487 0.02424 -11.3112175814 -11.7857689219 -12.73487 +8715 43.27943 20.4627 -12.7259 0.02427 -11.3030643658 -11.777343444 -12.7259 +8720 43.25324 20.44941 -12.71693 0.02430 -11.2949102136 -11.7689173416 -12.71693 +8725 43.22709 20.43613 -12.70798 0.02433 -11.2867751263 -11.7605106158 -12.70798 +8730 43.20097 20.42287 -12.69904 0.02436 -11.2786491055 -11.7521132677 -12.69904 +8735 43.17489 20.40963 -12.69011 0.02439 -11.2705321529 -11.7437252984 -12.69011 +8740 43.14883 20.39641 -12.68119 0.02442 -11.26242427 -11.7353467089 -12.68119 +8745 43.12281 20.3832 -12.67228 0.02445 -11.2543254585 -11.7269775003 -12.67228 +8750 43.09682 20.37001 -12.66338 0.02448 -11.2462357198 -11.7186176736 -12.66338 +8755 43.07086 20.35683 -12.65449 0.02451 -11.2381550557 -11.71026723 -12.65449 +8760 43.04494 20.34367 -12.64561 0.02454 -11.2300834677 -11.7019261704 -12.64561 +8765 43.01904 20.33053 -12.63674 0.02457 -11.2220209573 -11.6935944959 -12.63674 +8770 42.99318 20.3174 -12.62788 0.02461 -11.2139675263 -11.6852722076 -12.62788 +8775 42.96735 20.30429 -12.61904 0.02464 -11.205933176 -11.6769693066 -12.61904 +8780 42.94155 20.29119 -12.6102 0.02467 -11.1978979081 -11.6686657938 -12.6102 +8785 42.91578 20.27811 -12.60137 0.02470 -11.1898717243 -11.6603716703 -12.60137 +8790 42.89005 20.26505 -12.59256 0.02473 -11.1818646259 -11.6520969371 -12.59256 +8795 42.86434 20.252 -12.58375 0.02476 -11.1738566146 -11.6438215954 -12.58375 +8800 42.83867 20.23897 -12.57496 0.02479 -11.165867692 -11.6355656461 -12.57496 +8805 42.81303 20.22596 -12.56617 0.02482 -11.1578778596 -11.6273090903 -12.56617 +8810 42.78742 20.21296 -12.5574 0.02485 -11.1499071189 -11.619071929 -12.5574 +8815 42.76184 20.19997 -12.54863 0.02488 -11.1419354715 -11.6108341632 -12.54863 +8820 42.73629 20.18701 -12.53988 0.02491 -11.133982919 -11.6026157939 -12.53988 +8825 42.71078 20.17406 -12.53114 0.02494 -11.1260394628 -11.5944068223 -12.53114 +8830 42.68529 20.16112 -12.5224 0.02497 -11.1180951045 -11.5861972492 -12.5224 +8835 42.65984 20.1482 -12.51368 0.02500 -11.1101698457 -11.5780070758 -12.51368 +8840 42.63441 20.1353 -12.50497 0.02503 -11.1022536879 -11.569826303 -12.50497 +8845 42.60902 20.12241 -12.49626 0.02506 -11.0943366325 -11.5616449319 -12.49626 +8850 42.58366 20.10954 -12.48757 0.02509 -11.0864386812 -11.5534829635 -12.48757 +8855 42.55833 20.09668 -12.47889 0.02512 -11.0785498354 -11.5453303988 -12.47889 +8860 42.53303 20.08384 -12.47022 0.02515 -11.0706700966 -11.5371872387 -12.47022 +8865 42.50776 20.07101 -12.46155 0.02518 -11.0627894664 -11.5290434844 -12.46155 +8870 42.48252 20.0582 -12.4529 0.02521 -11.0549279462 -11.5209191368 -12.4529 +8875 42.45732 20.04541 -12.44426 0.02524 -11.0470755377 -11.5128041969 -12.44426 +8880 42.43214 20.03263 -12.43563 0.02527 -11.0392322422 -11.5046986657 -12.43563 +8885 42.40699 20.01987 -12.42701 0.02531 -11.0313980612 -11.4966025442 -12.42701 +8890 42.38188 20.00712 -12.41839 0.02534 -11.0235629964 -11.4885058334 -12.41839 +8895 42.35679 19.99439 -12.40979 0.02537 -11.015747049 -11.4804285344 -12.40979 +8900 42.33174 19.98167 -12.4012 0.02540 -11.0079402208 -11.472360648 -12.4012 +8905 42.30671 19.96897 -12.39262 0.02543 -11.000142513 -11.4643021753 -12.39262 +8910 42.28172 19.95628 -12.38405 0.02546 -10.9923539272 -11.4562531173 -12.38405 +8915 42.25675 19.94361 -12.37548 0.02549 -10.984564465 -11.448203475 -12.37548 +8920 42.23182 19.93096 -12.36693 0.02552 -10.9767941277 -11.4401732492 -12.36693 +8925 42.20691 19.91832 -12.35839 0.02555 -10.9690329168 -11.4321524412 -12.35839 +8930 42.18204 19.90569 -12.34986 0.02558 -10.9612808338 -11.4241410517 -12.34986 +8935 42.15719 19.89308 -12.34134 0.02561 -10.9535378801 -11.4161390817 -12.34134 +8940 42.13238 19.88049 -12.33282 0.02564 -10.9457940573 -11.4081365323 -12.33282 +8945 42.10759 19.86791 -12.32432 0.02567 -10.9380693667 -11.4001534045 -12.32432 +8950 42.08284 19.85534 -12.31583 0.02571 -10.9303538099 -11.3921796991 -12.31583 +8955 42.05811 19.84279 -12.30735 0.02574 -10.9226473883 -11.3842154172 -12.30735 +8960 42.03342 19.83026 -12.29887 0.02577 -10.9149401033 -11.3762505597 -12.29887 +8965 42.00875 19.81774 -12.29041 0.02580 -10.9072519563 -11.3683051276 -12.29041 +8970 41.98411 19.80524 -12.28196 0.02583 -10.8995729489 -11.3603691218 -12.28196 +8975 41.95951 19.79275 -12.27351 0.02586 -10.8918930825 -11.3524325434 -12.27351 +8980 41.93493 19.78027 -12.26508 0.02589 -10.8842323584 -11.3445153932 -12.26508 +8985 41.91038 19.76781 -12.25665 0.02592 -10.8765707781 -11.3365976722 -12.25665 +8990 41.88586 19.75537 -12.24824 0.02595 -10.8689283431 -11.3286993814 -12.24824 +8995 41.86137 19.74294 -12.23983 0.02598 -10.8612850548 -11.3208005217 -12.23983 +9000 41.83691 19.73053 -12.23144 0.02601 -10.8536609145 -11.312921094 -12.23144 +9005 41.81248 19.71813 -12.22305 0.02605 -10.8460359238 -11.3050410994 -12.22305 +9010 41.78808 19.70574 -12.21468 0.02608 -10.838430084 -11.2971805387 -12.21468 +9015 41.7637 19.69337 -12.20631 0.02611 -10.8308233965 -11.2893194129 -12.20631 +9020 41.73936 19.68102 -12.19795 0.02614 -10.8232258628 -11.281467723 -12.19795 +9025 41.71504 19.66868 -12.18961 0.02617 -10.8156474843 -11.2736354699 -12.18961 +9030 41.69076 19.65635 -12.18127 0.02620 -10.8080682623 -11.2658026544 -12.18127 +9035 41.6665 19.64404 -12.17294 0.02623 -10.8004981983 -11.2579792776 -12.17294 +9040 41.64227 19.63174 -12.16462 0.02626 -10.7929372937 -11.2501653404 -12.16462 +9045 41.61807 19.61946 -12.15631 0.02629 -10.7853855498 -11.2423608436 -12.15631 +9050 41.5939 19.60719 -12.14801 0.02633 -10.777842968 -11.2345657883 -12.14801 +9055 41.56975 19.59494 -12.13972 0.02636 -10.7703095498 -11.2267801754 -12.13972 +9060 41.54564 19.5827 -12.13144 0.02639 -10.7627852965 -11.2190040058 -12.13144 +9065 41.52155 19.57048 -12.12317 0.02642 -10.7552702095 -11.2112372803 -12.12317 +9070 41.4975 19.55827 -12.11491 0.02645 -10.7477642902 -11.20348 -12.11491 +9075 41.47347 19.54607 -12.10666 0.02648 -10.7402675399 -11.1957321657 -12.10666 +9080 41.44947 19.53389 -12.09841 0.02651 -10.73276996 -11.1879837783 -12.09841 +9085 41.4255 19.52173 -12.09018 0.02655 -10.725291552 -11.1802548389 -12.09018 +9090 41.40155 19.50958 -12.08196 0.02658 -10.7178223171 -11.1725353482 -12.08196 +9095 41.37764 19.49744 -12.07374 0.02661 -10.7103522568 -11.1648153072 -12.07374 +9100 41.35375 19.48532 -12.06554 0.02664 -10.7029013723 -11.1571147167 -12.06554 +9105 41.32989 19.47321 -12.05734 0.02667 -10.6954496651 -11.1494135778 -12.05734 +9110 41.30606 19.46111 -12.04915 0.02670 -10.6880071365 -11.1417218913 -12.04915 +9115 41.28226 19.44903 -12.04097 0.02673 -10.6805737878 -11.1340396581 -12.04097 +9120 41.25848 19.43697 -12.03281 0.02676 -10.6731596204 -11.1263768791 -12.03281 +9125 41.23473 19.42492 -12.02465 0.02680 -10.6657446357 -11.1187135552 -12.02465 +9130 41.21101 19.41288 -12.0165 0.02683 -10.658338835 -11.1110596873 -12.0165 +9135 41.18732 19.40086 -12.00836 0.02686 -10.6509422196 -11.1034152762 -12.00836 +9140 41.16366 19.38885 -12.00022 0.02689 -10.6435447909 -11.095770323 -12.00022 +9145 41.14002 19.37685 -11.9921 0.02692 -10.6361665501 -11.0881448284 -11.9921 +9150 41.11641 19.36487 -11.98399 0.02695 -10.6287974987 -11.0805287934 -11.98399 +9155 41.09283 19.3529 -11.97589 0.02699 -10.621437638 -11.0729222188 -11.97589 +9160 41.06928 19.34095 -11.96779 0.02702 -10.6140769692 -11.0653151056 -11.96779 +9165 41.04575 19.32901 -11.9597 0.02705 -10.6067254938 -11.0577174545 -11.9597 +9170 41.02226 19.31709 -11.95163 0.02708 -10.599393213 -11.0501392665 -11.95163 +9175 40.99879 19.30517 -11.94356 0.02711 -10.5920601281 -11.0425605425 -11.94356 +9180 40.97534 19.29328 -11.9355 0.02714 -10.5847362405 -11.0349912834 -11.9355 +9185 40.95193 19.28139 -11.92745 0.02718 -10.5774215514 -11.02743149 -11.92745 +9190 40.92854 19.26952 -11.91941 0.02721 -10.5701160623 -11.0198811631 -11.91941 +9195 40.90518 19.25767 -11.91138 0.02724 -10.5628197743 -11.0123403037 -11.91138 +9200 40.88184 19.24583 -11.90336 0.02727 -10.5555326888 -11.0048089126 -11.90336 +9205 40.85853 19.234 -11.89535 0.02730 -10.5482548071 -10.9972869907 -11.89535 +9210 40.83525 19.22219 -11.88734 0.02733 -10.5409761304 -10.9897645389 -11.88734 +9215 40.812 19.21038 -11.87935 0.02737 -10.5337166602 -10.982261558 -11.87935 +9220 40.78877 19.1986 -11.87136 0.02740 -10.5264563976 -10.9747580489 -11.87136 +9225 40.76557 19.18683 -11.86338 0.02743 -10.5192053439 -10.9672640124 -11.86338 +9230 40.7424 19.17507 -11.85541 0.02746 -10.5119635005 -10.9597794494 -11.85541 +9235 40.71926 19.16332 -11.84745 0.02749 -10.5047308687 -10.9523043607 -11.84745 +9240 40.69614 19.15159 -11.8395 0.02752 -10.4975074496 -10.9448387473 -11.8395 +9245 40.67304 19.13987 -11.83156 0.02756 -10.4902932446 -10.9373826099 -11.83156 +9250 40.64998 19.12816 -11.82363 0.02759 -10.4830882549 -10.9299359494 -11.82363 +9255 40.62694 19.11647 -11.81571 0.02762 -10.4758924819 -10.9224987667 -11.81571 +9260 40.60393 19.1048 -11.80779 0.02765 -10.4686959268 -10.9150610626 -11.80779 +9265 40.58094 19.09313 -11.79988 0.02768 -10.4615085909 -10.9076328379 -11.79988 +9270 40.55798 19.08148 -11.79199 0.02772 -10.4543404753 -10.9002240935 -11.79199 +9275 40.53505 19.06984 -11.7841 0.02775 -10.4471715815 -10.8928148302 -11.7841 +9280 40.51215 19.05822 -11.77622 0.02778 -10.4400119106 -10.8854150489 -11.77622 +9285 40.48927 19.04661 -11.76835 0.02781 -10.4328614639 -10.8780247503 -11.76835 +9290 40.46641 19.03501 -11.76048 0.02784 -10.4257102426 -10.8706339355 -11.76048 +9295 40.44358 19.02343 -11.75263 0.02788 -10.4185782481 -10.8632626051 -11.75263 +9300 40.42078 19.01186 -11.74479 0.02791 -10.4114554815 -10.8559007599 -11.74479 +9305 40.39801 19.0003 -11.73695 0.02794 -10.4043319441 -10.848538401 -11.73695 +9310 40.37526 18.98876 -11.72912 0.02797 -10.3972176371 -10.8411855289 -11.72912 +9315 40.35254 18.97722 -11.7213 0.02800 -10.3901125618 -10.8338421447 -11.7213 +9320 40.32984 18.96571 -11.71349 0.02804 -10.3830167194 -10.8265082491 -11.71349 +9325 40.30717 18.9542 -11.70569 0.02807 -10.3759301112 -10.8191838429 -11.70569 +9330 40.28453 18.94271 -11.6979 0.02810 -10.3688527383 -10.811868927 -11.6979 +9335 40.26191 18.93123 -11.69011 0.02813 -10.3617746021 -10.8045535021 -11.69011 +9340 40.23931 18.91977 -11.68234 0.02817 -10.3547157036 -10.7972575691 -11.68234 +9345 40.21675 18.90832 -11.67457 0.02820 -10.3476560443 -10.7899611288 -11.67457 +9350 40.19421 18.89688 -11.66681 0.02823 -10.3406056252 -10.7826741821 -11.66681 +9355 40.17169 18.88545 -11.65906 0.02826 -10.3335644476 -10.7753967296 -11.65906 +9360 40.1492 18.87404 -11.65132 0.02829 -10.3265325127 -10.7681287724 -11.65132 +9365 40.12674 18.86264 -11.64359 0.02833 -10.3195098217 -10.760870311 -11.64359 +9370 40.1043 18.85126 -11.63586 0.02836 -10.3124863759 -10.7536113464 -11.63586 +9375 40.08188 18.83988 -11.62815 0.02839 -10.3054821764 -10.7463718794 -11.62815 +9380 40.0595 18.82852 -11.62044 0.02842 -10.2984772244 -10.7391319108 -11.62044 +9385 40.03713 18.81718 -11.61274 0.02846 -10.2914815212 -10.7319014413 -11.61274 +9390 40.0148 18.80584 -11.60505 0.02849 -10.2844950679 -10.7246804718 -11.60505 +9395 39.99249 18.79452 -11.59737 0.02852 -10.2775178658 -10.717469003 -11.59737 +9400 39.9702 18.78321 -11.5897 0.02855 -10.2705499161 -10.7102670358 -11.5897 +9405 39.94794 18.77191 -11.58203 0.02859 -10.2635812198 -10.703064571 -11.58203 +9410 39.9257 18.76063 -11.57437 0.02862 -10.2566217783 -10.6958716093 -11.57437 +9415 39.90349 18.74936 -11.56673 0.02865 -10.2496815927 -10.6886981515 -11.56673 +9420 39.88131 18.7381 -11.55909 0.02868 -10.2427406642 -10.6815241985 -11.55909 +9425 39.85915 18.72686 -11.55146 0.02872 -10.235808994 -10.674359751 -11.55146 +9430 39.83701 18.71563 -11.54383 0.02875 -10.2288765832 -10.6671948099 -11.54383 +9435 39.8149 18.70441 -11.53622 0.02878 -10.2219634331 -10.6600493758 -11.53622 +9440 39.79282 18.6932 -11.52861 0.02881 -10.2150495447 -10.6529034495 -11.52861 +9445 39.77076 18.68201 -11.52101 0.02885 -10.2081449194 -10.645767032 -11.52101 +9450 39.74872 18.67083 -11.51342 0.02888 -10.2012495582 -10.6386401238 -11.51342 +9455 39.72671 18.65966 -11.50584 0.02891 -10.1943634623 -10.6315227259 -11.50584 +9460 39.70473 18.6485 -11.49827 0.02894 -10.1874866329 -10.624414839 -11.49827 +9465 39.68276 18.63736 -11.4907 0.02898 -10.1806090712 -10.6173064639 -11.4907 +9470 39.66083 18.62623 -11.48315 0.02901 -10.1737507782 -10.6102176012 -11.48315 +9475 39.63892 18.61511 -11.4756 0.02904 -10.1668917553 -10.6031282519 -11.4756 +9480 39.61703 18.604 -11.46806 0.02907 -10.1600420034 -10.5960484167 -11.46806 +9485 39.59517 18.59291 -11.46052 0.02911 -10.1531915238 -10.5889680963 -11.46052 +9490 39.57333 18.58183 -11.453 0.02914 -10.1463603177 -10.5819072916 -11.453 +9495 39.55152 18.57076 -11.44548 0.02917 -10.1395283861 -10.5748460032 -11.44548 +9500 39.52973 18.55971 -11.43798 0.02920 -10.1327157302 -10.567804232 -11.43798 +9505 39.50796 18.54866 -11.43048 0.02924 -10.1259023512 -10.5607619786 -11.43048 +9510 39.48622 18.53763 -11.42299 0.02927 -10.1190982502 -10.553729244 -11.42299 +9515 39.46451 18.52661 -11.4155 0.02930 -10.1122934283 -10.5466960287 -11.4155 +9520 39.44282 18.51561 -11.40803 0.02934 -10.1055078867 -10.5396823337 -11.40803 +9525 39.42115 18.50461 -11.40056 0.02937 -10.0987216265 -10.5326681596 -11.40056 +9530 39.39951 18.49363 -11.3931 0.02940 -10.0919446488 -10.5256635072 -11.3931 +9535 39.37789 18.48266 -11.38565 0.02943 -10.0851769548 -10.5186683772 -11.38565 +9540 39.35629 18.4717 -11.37821 0.02947 -10.0784185456 -10.5116827704 -11.37821 +9545 39.33472 18.46076 -11.37077 0.02950 -10.0716594224 -10.5046966876 -11.37077 +9550 39.31318 18.44983 -11.36335 0.02953 -10.0649195861 -10.4977301294 -11.36335 +9555 39.29165 18.43891 -11.35593 0.02957 -10.058179038 -10.4907630968 -11.35593 +9560 39.27015 18.428 -11.34852 0.02960 -10.0514477792 -10.4838055902 -11.34852 +9565 39.24868 18.4171 -11.34111 0.02963 -10.0447158108 -10.4768476107 -11.34111 +9570 39.22723 18.40622 -11.33372 0.02966 -10.0380031338 -10.4699091587 -11.33372 +9575 39.2058 18.39534 -11.32633 0.02970 -10.0312897495 -10.4629702352 -11.32633 +9580 39.1844 18.38449 -11.31895 0.02973 -10.0245856589 -10.4560408409 -11.31895 +9585 39.16302 18.37364 -11.31158 0.02976 -10.0178908632 -10.4491209764 -11.31158 +9590 39.14166 18.3628 -11.30422 0.02980 -10.0112053633 -10.4422106425 -11.30422 +9595 39.12033 18.35198 -11.29687 0.02983 -10.0045291605 -10.43530984 -11.29687 +9600 39.09902 18.34117 -11.28952 0.02986 -9.9978522558 -10.4284085696 -11.28952 +9605 39.07774 18.33037 -11.28218 0.02990 -9.9911846504 -10.421516832 -11.28218 +9610 39.05648 18.31958 -11.27485 0.02993 -9.9845263452 -10.414634628 -11.27485 +9615 39.03524 18.3088 -11.26752 0.02996 -9.9778673415 -10.4077519582 -11.26752 +9620 39.01403 18.29804 -11.26021 0.03000 -9.9712276402 -10.4008888234 -11.26021 +9625 38.99284 18.28729 -11.2529 0.03003 -9.9645872426 -10.3940252243 -11.2529 +9630 38.97167 18.27655 -11.2456 0.03006 -9.9579561496 -10.3871711617 -11.2456 +9635 38.95052 18.26582 -11.23831 0.03009 -9.9513343623 -10.3803266363 -11.23831 +9640 38.9294 18.2551 -11.23102 0.03013 -9.9447118819 -10.3734816487 -11.23102 +9645 38.90831 18.2444 -11.22375 0.03016 -9.9381087094 -10.3666561998 -11.22375 +9650 38.88723 18.23371 -11.21648 0.03019 -9.9315048459 -10.3598302902 -11.21648 +9655 38.86618 18.22303 -11.20922 0.03023 -9.9249102924 -10.3530139206 -11.20922 +9660 38.84515 18.21236 -11.20196 0.03026 -9.9183150501 -10.3461970918 -11.20196 +9665 38.82415 18.2017 -11.19472 0.03029 -9.91173912 -10.3393998044 -11.19472 +9670 38.80317 18.19105 -11.18748 0.03033 -9.9051625031 -10.3326020592 -11.18748 +9675 38.78221 18.18042 -11.18025 0.03036 -9.8985952006 -10.3258138569 -11.18025 +9680 38.76127 18.1698 -11.17303 0.03039 -9.8920372134 -10.3190351982 -11.17303 +9685 38.74036 18.15919 -11.16581 0.03043 -9.8854785428 -10.3122560838 -11.16581 +9690 38.71947 18.14859 -11.15861 0.03046 -9.8789391896 -10.3054965145 -11.15861 +9695 38.6986 18.138 -11.15141 0.03049 -9.872399155 -10.2987364908 -11.15141 +9700 38.67776 18.12743 -11.14422 0.03053 -9.86586844 -10.2919860135 -11.14422 +9705 38.65694 18.11686 -11.13703 0.03056 -9.8593370457 -10.2852350834 -11.13703 +9710 38.63614 18.10631 -11.12986 0.03059 -9.8528249731 -10.2785037011 -11.12986 +9715 38.61536 18.09577 -11.12269 0.03063 -9.8463122233 -10.2717718673 -11.12269 +9720 38.59461 18.08524 -11.11553 0.03066 -9.8398087973 -10.2650495827 -11.11553 +9725 38.57388 18.07472 -11.10837 0.03070 -9.8333046962 -10.258326848 -11.10837 +9730 38.55317 18.06421 -11.10123 0.03073 -9.8268199209 -10.2516236639 -11.10123 +9735 38.53249 18.05372 -11.09409 0.03076 -9.8203344726 -10.2449200311 -11.09409 +9740 38.51183 18.04324 -11.08696 0.03080 -9.8138583523 -10.2382259503 -11.08696 +9745 38.49119 18.03276 -11.07983 0.03083 -9.8073815609 -10.2315314222 -11.07983 +9750 38.47057 18.0223 -11.07272 0.03086 -9.8009240997 -10.2248564474 -11.07272 +9755 38.44997 18.01185 -11.06561 0.03090 -9.7944659695 -10.2181810267 -11.06561 +9760 38.4294 18.00142 -11.05851 0.03093 -9.7880171713 -10.2115151607 -11.05851 +9765 38.40885 17.99099 -11.05141 0.03096 -9.7815677063 -10.2048488501 -11.05141 +9770 38.38832 17.98058 -11.04433 0.03100 -9.7751375755 -10.1982020956 -11.04433 +9775 38.36782 17.97017 -11.03725 0.03103 -9.7687067798 -10.1915548979 -11.03725 +9780 38.34733 17.95978 -11.03018 0.03107 -9.7622853204 -10.1849172577 -11.03018 +9785 38.32687 17.9494 -11.02312 0.03110 -9.7558731981 -10.1782891756 -11.02312 +9790 38.30643 17.93903 -11.01606 0.03113 -9.749460414 -10.1716606523 -11.01606 +9795 38.28602 17.92867 -11.00901 0.03117 -9.7430569692 -10.1650416885 -11.00901 +9800 38.26562 17.91832 -11.00197 0.03120 -9.7366628647 -10.1584322849 -11.00197 +9805 38.24525 17.90799 -10.99494 0.03123 -9.7302781014 -10.1518324421 -10.99494 +9810 38.2249 17.89766 -10.98791 0.03127 -9.7238926803 -10.1452321609 -10.98791 +9815 38.20457 17.88735 -10.98089 0.03130 -9.7175166026 -10.1386414418 -10.98089 +9820 38.18426 17.87704 -10.97388 0.03134 -9.7111498691 -10.1320602856 -10.97388 +9825 38.16398 17.86675 -10.96687 0.03137 -9.7047824808 -10.1254786928 -10.96687 +9830 38.14372 17.85647 -10.95988 0.03140 -9.6984344389 -10.1189166643 -10.95988 +9835 38.12347 17.8462 -10.95289 0.03144 -9.6920857442 -10.1123542006 -10.95289 +9840 38.10325 17.83595 -10.94591 0.03147 -9.6857463978 -10.1058013024 -10.94591 +9845 38.08306 17.8257 -10.93893 0.03150 -9.6794064006 -10.0992479704 -10.93893 +9850 38.06288 17.81546 -10.93196 0.03154 -9.6730757537 -10.0927042053 -10.93196 +9855 38.04273 17.80524 -10.925 0.03157 -9.6667544581 -10.0861700076 -10.925 +9860 38.02259 17.79502 -10.91805 0.03161 -9.6604425146 -10.0796453781 -10.91805 +9865 38.00248 17.78482 -10.9111 0.03164 -9.6541299244 -10.0731203174 -10.9111 +9870 37.98239 17.77463 -10.90417 0.03167 -9.6478366884 -10.0666148261 -10.90417 +9875 37.96233 17.76445 -10.89723 0.03171 -9.6415328075 -10.060098905 -10.89723 +9880 37.94228 17.75428 -10.89031 0.03174 -9.6352482828 -10.0536025546 -10.89031 +9885 37.92226 17.74412 -10.88339 0.03178 -9.6289631152 -10.0471057757 -10.88339 +9890 37.90225 17.73397 -10.87648 0.03181 -9.6226873057 -10.0406185688 -10.87648 +9895 37.88227 17.72383 -10.86958 0.03184 -9.6164208553 -10.0341409347 -10.86958 +9900 37.86231 17.71371 -10.86269 0.03188 -9.610163765 -10.0276728739 -10.86269 +9905 37.84237 17.70359 -10.8558 0.03191 -9.6039060357 -10.0212043871 -10.8558 +9910 37.82245 17.69348 -10.84892 0.03195 -9.5976576683 -10.014745475 -10.84892 +9915 37.80256 17.68339 -10.84204 0.03198 -9.5914086639 -10.0082861382 -10.84204 +9920 37.78268 17.67331 -10.83518 0.03202 -9.5851790234 -10.0018463773 -10.83518 +9925 37.76283 17.66323 -10.82832 0.03205 -9.5789487478 -9.995406193 -10.82832 +9930 37.743 17.65317 -10.82146 0.03208 -9.5727178381 -9.988965586 -10.82146 +9935 37.72318 17.64312 -10.81462 0.03212 -9.5665062951 -9.9825445568 -10.81462 +9940 37.70339 17.63308 -10.80778 0.03215 -9.5602941199 -9.9761231061 -10.80778 +9945 37.68362 17.62305 -10.80095 0.03219 -9.5540913133 -9.9697112345 -10.80095 +9950 37.66388 17.61303 -10.79412 0.03222 -9.5478878765 -9.9632989427 -10.79412 +9955 37.64415 17.60302 -10.78731 0.03226 -9.5417038102 -9.9569062314 -10.78731 +9960 37.62444 17.59303 -10.7805 0.03229 -9.5355191155 -9.950513101 -10.7805 +9965 37.60476 17.58304 -10.77369 0.03232 -9.5293337933 -9.9441195523 -10.77369 +9970 37.58509 17.57306 -10.7669 0.03236 -9.5231678445 -9.9377455859 -10.7669 +9975 37.56545 17.5631 -10.76011 0.03239 -9.5170012701 -9.9313712025 -10.76011 +9980 37.54582 17.55314 -10.75333 0.03243 -9.510844071 -9.9250064025 -10.75333 +9985 37.52622 17.5432 -10.74655 0.03246 -9.5046862482 -9.9186411868 -10.74655 +9990 37.50664 17.53326 -10.73978 0.03250 -9.4985378026 -9.9122855559 -10.73978 +9995 37.48708 17.52334 -10.73302 0.03253 -9.4923987351 -9.9059395103 -10.73302 +10000 37.46754 17.51343 -10.72627 0.03256 -9.4862690467 -9.8996030509 -10.72627 +10005 37.44802 17.50353 -10.71952 0.03260 -9.4801387383 -9.8932661781 -10.71952 +10010 37.42852 17.49363 -10.71278 0.03263 -9.4740178108 -9.8869388925 -10.71278 +10015 37.40904 17.48375 -10.70605 0.03267 -9.4679062651 -9.8806211949 -10.70605 +10020 37.38959 17.47388 -10.69932 0.03270 -9.4617941023 -9.8743030858 -10.69932 +10025 37.37015 17.46402 -10.6926 0.03274 -9.4556913231 -9.8679945659 -10.6926 +10030 37.35073 17.45417 -10.68589 0.03277 -9.4495979286 -9.8616956357 -10.68589 +10035 37.33134 17.44433 -10.67919 0.03281 -9.4435139196 -9.8554062958 -10.67919 +10040 37.31196 17.4345 -10.67249 0.03284 -9.4374292971 -9.8491165469 -10.67249 +10045 37.29261 17.42468 -10.66579 0.03288 -9.4313440619 -9.8428263896 -10.66579 +10050 37.27327 17.41487 -10.65911 0.03291 -9.4252782151 -9.8365558246 -10.65911 +10055 37.25396 17.40507 -10.65243 0.03294 -9.4192117574 -9.8302848523 -10.65243 +10060 37.23466 17.39529 -10.64576 0.03298 -9.4131546899 -9.8240234734 -10.64576 +10065 37.21539 17.38551 -10.6391 0.03301 -9.4071070134 -9.8177716885 -10.6391 +10070 37.19614 17.37574 -10.63244 0.03305 -9.4010587288 -9.8115194983 -10.63244 +10075 37.1769 17.36598 -10.62579 0.03308 -9.395019837 -9.8052769033 -10.62579 +10080 37.15769 17.35624 -10.61914 0.03312 -9.388980339 -9.7990339041 -10.61914 +10085 37.1385 17.3465 -10.61251 0.03315 -9.3829602357 -9.7928105014 -10.61251 +10090 37.11932 17.33677 -10.60588 0.03319 -9.3769395279 -9.7865866956 -10.60588 +10095 37.10017 17.32706 -10.59925 0.03322 -9.3709182165 -9.7803624875 -10.59925 +10100 37.08104 17.31735 -10.59264 0.03326 -9.3649163024 -9.7741578777 -10.59264 +10105 37.06192 17.30766 -10.58602 0.03329 -9.3589037866 -9.7679428666 -10.58602 +10110 37.04283 17.29797 -10.57942 0.03333 -9.3529106699 -9.761747455 -10.57942 +10115 37.02376 17.28829 -10.57282 0.03336 -9.3469169533 -9.7555516434 -10.57282 +10120 37.0047 17.27863 -10.56623 0.03340 -9.3409326375 -9.7493654323 -10.56623 +10125 36.98567 17.26897 -10.55965 0.03343 -9.3349577235 -9.7431888225 -10.55965 +10130 36.96666 17.25933 -10.55307 0.03347 -9.3289822122 -9.7370118145 -10.55307 +10135 36.94766 17.24969 -10.5465 0.03350 -9.3230161045 -9.7308444088 -10.5465 +10140 36.92869 17.24007 -10.53994 0.03354 -9.3170594012 -9.7246866061 -10.53994 +10145 36.90974 17.23045 -10.53338 0.03357 -9.3111021032 -9.718528407 -10.53338 +10150 36.8908 17.22085 -10.52683 0.03361 -9.3051542115 -9.712379812 -10.52683 +10155 36.87189 17.21125 -10.52029 0.03364 -9.2992157268 -9.7062408217 -10.52029 +10160 36.85299 17.20167 -10.51375 0.03368 -9.2932766501 -9.7001014367 -10.51375 +10165 36.83412 17.19209 -10.50722 0.03371 -9.2873469822 -9.6939716576 -10.50722 +10170 36.81526 17.18253 -10.5007 0.03375 -9.281426724 -9.687851485 -10.5007 +10175 36.79642 17.17297 -10.49418 0.03378 -9.2755058764 -9.6817309194 -10.49418 +10180 36.77761 17.16342 -10.48767 0.03382 -9.2695944402 -9.6756199615 -10.48767 +10185 36.75881 17.15389 -10.48117 0.03385 -9.2636924163 -9.6695186117 -10.48117 +10190 36.74003 17.14436 -10.47467 0.03389 -9.2577898056 -9.6634168708 -10.47467 +10195 36.72128 17.13485 -10.46818 0.03392 -9.2518966089 -9.6573247392 -10.46818 +10200 36.70254 17.12534 -10.4617 0.03396 -9.2460128272 -9.6512422175 -10.4617 +10205 36.68382 17.11585 -10.45522 0.03399 -9.2401284611 -9.6451593063 -10.45522 +10210 36.66512 17.10636 -10.44875 0.03403 -9.2342535118 -9.6390860062 -10.44875 +10215 36.64644 17.09688 -10.44228 0.03406 -9.2283779798 -9.6330123178 -10.44228 +10220 36.62778 17.08742 -10.43583 0.03410 -9.2225218662 -9.6269582416 -10.43583 +10225 36.60913 17.07796 -10.42937 0.03413 -9.2166551718 -9.6208937782 -10.42937 +10230 36.59051 17.06851 -10.42293 0.03417 -9.2108078974 -9.6148489281 -10.42293 +10235 36.57191 17.05908 -10.41649 0.03420 -9.2049600439 -9.6088036919 -10.41649 +10240 36.55332 17.04965 -10.41006 0.03424 -9.1991216122 -9.6027680703 -10.41006 +10245 36.53476 17.04023 -10.40363 0.03427 -9.193282603 -9.5967320637 -10.40363 +10250 36.51621 17.03082 -10.39721 0.03431 -9.1874530172 -9.5907056727 -10.39721 +10255 36.49768 17.02142 -10.3908 0.03434 -9.1816328557 -9.5846888978 -10.3908 +10260 36.47917 17.01204 -10.3844 0.03438 -9.1758221193 -9.5786817398 -10.3844 +10265 36.46069 17.00266 -10.378 0.03442 -9.1700108088 -9.572674199 -10.378 +10270 36.44222 16.99329 -10.3716 0.03445 -9.1641989252 -9.5666662761 -10.3716 +10275 36.42376 16.98393 -10.36522 0.03449 -9.1584064691 -9.5606779716 -10.36522 +10280 36.40533 16.97458 -10.35883 0.03452 -9.1526034415 -9.554679286 -10.35883 +10285 36.38692 16.96524 -10.35246 0.03456 -9.1468198433 -9.54870022 -10.35246 +10290 36.36852 16.95591 -10.34609 0.03459 -9.1410356751 -9.5427207741 -10.34609 +10295 36.35015 16.94658 -10.33973 0.03463 -9.1352609379 -9.5367509488 -10.33973 +10300 36.33179 16.93727 -10.33338 0.03466 -9.1294956324 -9.5307907447 -10.33338 +10305 36.31345 16.92797 -10.32703 0.03470 -9.1237297596 -9.5248301624 -10.32703 +10310 36.29513 16.91868 -10.32068 0.03473 -9.1179633202 -9.5188692023 -10.32068 +10315 36.27683 16.90939 -10.31435 0.03477 -9.1122163151 -9.5129278651 -10.31435 +10320 36.25855 16.90012 -10.30802 0.03481 -9.106468745 -9.5069861513 -10.30802 +10325 36.24029 16.89086 -10.30169 0.03484 -9.1007206109 -9.5010440614 -10.30169 +10330 36.22204 16.8816 -10.29538 0.03488 -9.0949919135 -9.495121596 -10.29538 +10335 36.20382 16.87236 -10.28907 0.03491 -9.0892626536 -9.4891987556 -10.28907 +10340 36.18561 16.86312 -10.28276 0.03495 -9.0835328321 -9.4832755408 -10.28276 +10345 36.16742 16.85389 -10.27646 0.03498 -9.0778124497 -9.4773619521 -10.27646 +10350 36.14925 16.84468 -10.27017 0.03502 -9.0721015073 -9.47145799 -10.27017 +10355 36.1311 16.83547 -10.26389 0.03505 -9.0664000057 -9.4655636551 -10.26389 +10360 36.11297 16.82627 -10.25761 0.03509 -9.0606979457 -9.459668948 -10.25761 +10365 36.09485 16.81708 -10.25133 0.03513 -9.0549953282 -9.4537738692 -10.25133 +10370 36.07675 16.8079 -10.24506 0.03516 -9.0493021538 -9.4478884192 -10.24506 +10375 36.05868 16.79873 -10.2388 0.03520 -9.0436184235 -9.4420125985 -10.2388 +10380 36.04062 16.78957 -10.23255 0.03523 -9.037944138 -9.4361464077 -10.23255 +10385 36.02257 16.78042 -10.2263 0.03527 -9.0322692981 -9.4302798473 -10.2263 +10390 36.00455 16.77128 -10.22006 0.03530 -9.0266039046 -9.4244229179 -10.22006 +10395 35.98655 16.76214 -10.21382 0.03534 -9.0209379584 -9.4185656199 -10.21382 +10400 35.96856 16.75302 -10.20759 0.03538 -9.0152814602 -9.412717954 -10.20759 +10405 35.95059 16.74391 -10.20137 0.03541 -9.0096344108 -9.4068799206 -10.20137 +10410 35.93264 16.7348 -10.19515 0.03545 -9.003986811 -9.4010415203 -10.19515 +10415 35.91471 16.7257 -10.18894 0.03548 -8.9983486617 -9.3952127537 -10.18894 +10420 35.89679 16.71662 -10.18273 0.03552 -8.9927099635 -9.3893836211 -10.18273 +10425 35.8789 16.70754 -10.17653 0.03556 -8.9870807173 -9.3835641232 -10.17653 +10430 35.86102 16.69847 -10.17034 0.03559 -8.9814609239 -9.3777542605 -10.17034 +10435 35.84316 16.68941 -10.16415 0.03563 -8.9758405841 -9.3719440335 -10.16415 +10440 35.82532 16.68036 -10.15797 0.03566 -8.9702296986 -9.3661434427 -10.15797 +10445 35.80749 16.67132 -10.1518 0.03570 -8.9646282682 -9.3603524887 -10.1518 +10450 35.78969 16.66229 -10.14563 0.03574 -8.9590262938 -9.3545611719 -10.14563 +10455 35.7719 16.65327 -10.13947 0.03577 -8.953433776 -9.348779493 -10.13947 +10460 35.75413 16.64425 -10.13331 0.03581 -8.9478407158 -9.3429974524 -10.13331 +10465 35.73638 16.63525 -10.12716 0.03584 -8.9422571137 -9.3372250506 -10.12716 +10470 35.71864 16.62625 -10.12101 0.03588 -8.9366729707 -9.3314522881 -10.12101 +10475 35.70093 16.61726 -10.11487 0.03592 -8.9310982875 -9.3256891655 -10.11487 +10480 35.68323 16.60829 -10.10874 0.03595 -8.9255330649 -9.3199356834 -10.10874 +10485 35.66555 16.59932 -10.10261 0.03599 -8.9199673036 -9.3141818421 -10.10261 +10490 35.64788 16.59036 -10.09649 0.03602 -8.9144110044 -9.3084376422 -10.09649 +10495 35.63024 16.58141 -10.09038 0.03606 -8.9088641682 -9.3027030842 -10.09038 +10500 35.61261 16.57247 -10.08427 0.03610 -8.9033167955 -9.2969681687 -10.08427 +10505 35.595 16.56353 -10.07817 0.03613 -8.8977788873 -9.2912428961 -10.07817 +10510 35.57741 16.55461 -10.07207 0.03617 -8.8922404443 -9.285517267 -10.07207 +10515 35.55983 16.5457 -10.06598 0.03621 -8.8867114672 -9.2798012818 -10.06598 +10520 35.54228 16.53679 -10.0599 0.03624 -8.8811919568 -9.2740949412 -10.0599 +10525 35.52474 16.52789 -10.05382 0.03628 -8.8756719139 -9.2683882455 -10.05382 +10530 35.50721 16.51901 -10.04774 0.03631 -8.8701513393 -9.2626811952 -10.04774 +10535 35.48971 16.51013 -10.04168 0.03635 -8.8646502336 -9.256993791 -10.04168 +10540 35.47222 16.50126 -10.03562 0.03639 -8.8591485976 -9.2513060333 -10.03562 +10545 35.45475 16.4924 -10.02956 0.03642 -8.8536464321 -9.2456179225 -10.02956 +10550 35.4373 16.48354 -10.02351 0.03646 -8.8481537379 -9.2399394593 -10.02351 +10555 35.41986 16.4747 -10.01747 0.03650 -8.8426705157 -9.234270644 -10.01747 +10560 35.40245 16.46586 -10.01143 0.03653 -8.8371867662 -9.2286014773 -10.01143 +10565 35.38505 16.45704 -10.0054 0.03657 -8.8317124902 -9.2229419596 -10.0054 +10570 35.36766 16.44822 -9.99937 0.03660 -8.8262376885 -9.2172820913 -9.99937 +10575 35.3503 16.43941 -9.99335 0.03664 -8.8207723617 -9.2116318731 -9.99335 +10580 35.33295 16.43061 -9.98734 0.03668 -8.8153165107 -9.2059913053 -9.98734 +10585 35.31562 16.42182 -9.98133 0.03671 -8.8098601362 -9.2003503885 -9.98133 +10590 35.2983 16.41304 -9.97533 0.03675 -8.8044132389 -9.1947191232 -9.97533 +10595 35.281 16.40427 -9.96933 0.03679 -8.7989658195 -9.1890875099 -9.96933 +10600 35.26372 16.3955 -9.96334 0.03682 -8.7935278788 -9.183465549 -9.96334 +10605 35.24646 16.38675 -9.95736 0.03686 -8.7880994176 -9.1778532411 -9.95736 +10610 35.22922 16.378 -9.95138 0.03690 -8.7826704365 -9.1722405866 -9.95138 +10615 35.21199 16.36926 -9.9454 0.03693 -8.7772409364 -9.1666275861 -9.9454 +10620 35.19478 16.36053 -9.93944 0.03697 -8.7718309178 -9.16103424 -9.93944 +10625 35.17758 16.35181 -9.93348 0.03701 -8.7664203817 -9.1554405488 -9.93348 +10630 35.1604 16.3431 -9.92752 0.03704 -8.7610093286 -9.149846513 -9.92752 +10635 35.14324 16.33439 -9.92157 0.03708 -8.7556077594 -9.1442621331 -9.92157 +10640 35.1261 16.3257 -9.91562 0.03712 -8.7502056747 -9.1386774096 -9.91562 +10645 35.10897 16.31701 -9.90969 0.03715 -8.7448230754 -9.1331123429 -9.90969 +10650 35.09186 16.30833 -9.90375 0.03719 -8.739429962 -9.1275369336 -9.90375 +10655 35.07477 16.29966 -9.89782 0.03723 -8.7340463353 -9.1219711821 -9.89782 +10660 35.0577 16.291 -9.8919 0.03726 -8.7286721961 -9.1164150889 -9.8919 +10665 35.04064 16.28235 -9.88599 0.03730 -8.7233075451 -9.1108686545 -9.88599 +10670 35.02359 16.2737 -9.88008 0.03734 -8.717942383 -9.1053218793 -9.88008 +10675 35.00657 16.26507 -9.87417 0.03737 -8.7125767105 -9.0997747639 -9.87417 +10680 34.98956 16.25644 -9.86827 0.03741 -8.7072205283 -9.0942373087 -9.86827 +10685 34.97257 16.24782 -9.86238 0.03745 -8.7018738372 -9.0887095142 -9.86238 +10690 34.95559 16.23921 -9.85649 0.03748 -8.6965266378 -9.0831813809 -9.85649 +10695 34.93863 16.23061 -9.85061 0.03752 -8.6911889309 -9.0776629092 -9.85061 +10700 34.92169 16.22202 -9.84474 0.03756 -8.6858607171 -9.0721540996 -9.84474 +10705 34.90476 16.21343 -9.83886 0.03759 -8.6805219973 -9.0666349527 -9.83886 +10710 34.88786 16.20486 -9.833 0.03763 -8.6752027721 -9.0611354688 -9.833 +10715 34.87096 16.19629 -9.82714 0.03767 -8.6698830422 -9.0556356484 -9.82714 +10720 34.85409 16.18773 -9.82129 0.03770 -8.6645728082 -9.0501454921 -9.82129 +10725 34.83723 16.17918 -9.81544 0.03774 -8.6592620711 -9.0446550002 -9.81544 +10730 34.82038 16.17063 -9.8096 0.03778 -8.6539608313 -9.0391741733 -9.8096 +10735 34.80356 16.1621 -9.80376 0.03782 -8.6486590897 -9.0336930119 -9.80376 +10740 34.78675 16.15357 -9.79793 0.03785 -8.6433668469 -9.0282215163 -9.79793 +10745 34.76995 16.14506 -9.7921 0.03789 -8.6380741036 -9.022749687 -9.7921 +10750 34.75318 16.13655 -9.78628 0.03793 -8.6327908605 -9.0172875246 -9.78628 +10755 34.73642 16.12805 -9.78047 0.03796 -8.6275171184 -9.0118350294 -9.78047 +10760 34.71967 16.11955 -9.77466 0.03800 -8.6222428779 -9.006382202 -9.77466 +10765 34.70294 16.11107 -9.76885 0.03804 -8.6169681397 -9.0009290428 -9.76885 +10770 34.68623 16.10259 -9.76306 0.03807 -8.6117129045 -8.9954955523 -9.76306 +10775 34.66954 16.09412 -9.75726 0.03811 -8.606447173 -8.9900517309 -9.75726 +10780 34.65286 16.08566 -9.75148 0.03815 -8.6012009459 -8.9846275791 -9.75148 +10785 34.63619 16.07721 -9.7457 0.03819 -8.5959542238 -8.9792030974 -9.7457 +10790 34.61955 16.06877 -9.73992 0.03822 -8.5907070076 -8.9737782861 -9.73992 +10795 34.60292 16.06034 -9.73415 0.03826 -8.5854692978 -8.9683631458 -9.73415 +10800 34.5863 16.05191 -9.72838 0.03830 -8.5802310951 -8.962947677 -9.72838 +10805 34.5697 16.04349 -9.72262 0.03833 -8.5750024002 -8.95754188 -9.72262 +10810 34.55312 16.03508 -9.71687 0.03837 -8.5697832139 -8.9521457554 -9.71687 +10815 34.53656 16.02668 -9.71112 0.03841 -8.5645635367 -8.9467493036 -9.71112 +10820 34.52001 16.01828 -9.70538 0.03845 -8.5593533694 -8.941362525 -9.70538 +10825 34.50347 16.0099 -9.69964 0.03848 -8.5541427127 -8.9359754201 -9.69964 +10830 34.48695 16.00152 -9.69391 0.03852 -8.5489415671 -8.9305979894 -9.69391 +10835 34.47045 15.99315 -9.68818 0.03856 -8.5437399335 -8.9252202333 -9.68818 +10840 34.45397 15.98479 -9.68246 0.03860 -8.5385478125 -8.9198521522 -9.68246 +10845 34.43749 15.97643 -9.67675 0.03863 -8.5333652047 -8.9144937466 -9.67675 +10850 34.42104 15.96809 -9.67103 0.03867 -8.5281721108 -8.909125017 -9.67103 +10855 34.4046 15.95975 -9.66533 0.03871 -8.5229985315 -8.9037759637 -9.66533 +10860 34.38818 15.95142 -9.65963 0.03875 -8.5178244675 -8.8984265873 -9.65963 +10865 34.37177 15.9431 -9.65394 0.03878 -8.5126599194 -8.8930868882 -9.65394 +10870 34.35538 15.93479 -9.64825 0.03882 -8.5074948879 -8.8877468669 -9.64825 +10875 34.33901 15.92648 -9.64256 0.03886 -8.5023293737 -8.8824065237 -9.64256 +10880 34.32265 15.91819 -9.63689 0.03890 -8.4971833774 -8.8770858591 -9.63689 +10885 34.3063 15.9099 -9.63121 0.03893 -8.4920268998 -8.8717548736 -9.63121 +10890 34.28998 15.90162 -9.62554 0.03897 -8.4868799414 -8.8664335676 -9.62554 +10895 34.27366 15.89334 -9.61988 0.03901 -8.4817425029 -8.8611219416 -9.61988 +10900 34.25737 15.88508 -9.61423 0.03905 -8.476614585 -8.855819996 -9.61423 +10905 34.24109 15.87682 -9.60857 0.03908 -8.4714761883 -8.8505077311 -9.60857 +10910 34.22482 15.86857 -9.60293 0.03912 -8.4663573136 -8.8452151476 -9.60293 +10915 34.20857 15.86033 -9.59729 0.03916 -8.4612379614 -8.8399222458 -9.59729 +10920 34.19234 15.8521 -9.59165 0.03920 -8.4561181324 -8.8346290261 -9.59165 +10925 34.17612 15.84387 -9.58602 0.03923 -8.4510078273 -8.8293454889 -9.58602 +10930 34.15992 15.83565 -9.5804 0.03927 -8.4459070467 -8.8240716349 -9.5804 +10935 34.14373 15.82744 -9.57478 0.03931 -8.4408057913 -8.8187974642 -9.57478 +10940 34.12756 15.81924 -9.56916 0.03935 -8.4357040617 -8.8135229774 -9.56916 +10945 34.1114 15.81105 -9.56355 0.03938 -8.4306118586 -8.808258175 -9.56355 +10950 34.09526 15.80286 -9.55795 0.03942 -8.4255291826 -8.8030030573 -9.55795 +10955 34.07914 15.79468 -9.55235 0.03946 -8.4204460344 -8.7977476248 -9.55235 +10960 34.06303 15.78651 -9.54676 0.03950 -8.4153724146 -8.7925018779 -9.54676 +10965 34.04693 15.77835 -9.54117 0.03953 -8.4102983238 -8.7872558171 -9.54117 +10970 34.03085 15.77019 -9.53559 0.03957 -8.4052337628 -8.7820194427 -9.53559 +10975 34.01479 15.76205 -9.53001 0.03961 -8.4001687322 -8.7767827552 -9.53001 +10980 33.99874 15.75391 -9.52444 0.03965 -8.3951132325 -8.771555755 -9.52444 +10985 33.98271 15.74577 -9.51887 0.03969 -8.3900572644 -8.7663284427 -9.51887 +10990 33.96669 15.73765 -9.51331 0.03972 -8.3850108287 -8.7611108184 -9.51331 +10995 33.95069 15.72954 -9.50775 0.03976 -8.3799639258 -8.7558928828 -9.50775 +11000 33.9347 15.72143 -9.5022 0.03980 -8.3749265565 -8.7506846363 -9.5022 +11005 33.91873 15.71333 -9.49665 0.03984 -8.3698887214 -9.49665 -9.49665 +11010 33.90277 15.70523 -9.49111 0.03988 -8.364860421 -9.49111 -9.49111 +11015 33.88683 15.69715 -9.48557 0.03991 -8.3598316562 -9.48557 -9.48557 +11020 33.8709 15.68907 -9.48004 0.03995 -8.3548124274 -9.48004 -9.48004 +11025 33.85499 15.681 -9.47452 0.03999 -8.3498027353 -9.47452 -9.47452 +11030 33.83909 15.67294 -9.469 0.04003 -8.3447925806 -9.469 -9.469 +11035 33.82321 15.66488 -9.46348 0.04007 -8.3397819639 -9.46348 -9.46348 +11040 33.80734 15.65684 -9.45797 0.04010 -8.3347808857 -9.45797 -9.45797 +11045 33.79149 15.6488 -9.45246 0.04014 -8.3297793468 -9.45246 -9.45246 +11050 33.77566 15.64077 -9.44696 0.04018 -8.3247873477 -9.44696 -9.44696 +11055 33.75983 15.63274 -9.44147 0.04022 -8.3198048892 -9.44147 -9.44147 +11060 33.74403 15.62473 -9.43598 0.04026 -8.3148219717 -9.43598 -9.43598 +11065 33.72824 15.61672 -9.43049 0.04029 -8.3098385959 -9.43049 -9.43049 +11070 33.71246 15.60872 -9.42501 0.04033 -8.3048647625 -9.42501 -9.42501 +11075 33.6967 15.60072 -9.41954 0.04037 -8.299900472 -9.41954 -9.41954 +11080 33.68095 15.59274 -9.41407 0.04041 -8.2949357252 -9.41407 -9.41407 +11085 33.66522 15.58476 -9.40861 0.04045 -8.2899805225 -9.40861 -9.40861 +11090 33.6495 15.57679 -9.40315 0.04048 -8.2850248646 -9.40315 -9.40315 +11095 33.6338 15.56882 -9.39769 0.04052 -8.2800687522 -9.39769 -9.39769 +11100 33.61811 15.56087 -9.39224 0.04056 -8.2751221858 -9.39224 -9.39224 +11105 33.60244 15.55292 -9.3868 0.04060 -8.2701851661 -9.3868 -9.3868 +11110 33.58678 15.54498 -9.38136 0.04064 -8.2652476937 -9.38136 -9.38136 +11115 33.57114 15.53704 -9.37592 0.04068 -8.2603097691 -9.37592 -9.37592 +11120 33.55551 15.52912 -9.37049 0.04071 -8.255381393 -9.37049 -9.37049 +11125 33.5399 15.5212 -9.36507 0.04075 -8.2504625661 -9.36507 -9.36507 +11130 33.5243 15.51329 -9.35965 0.04079 -8.2455432888 -9.35965 -9.35965 +11135 33.50871 15.50538 -9.35424 0.04083 -8.2406335619 -9.35424 -9.35424 +11140 33.49314 15.49749 -9.34883 0.04087 -8.2357233858 -9.34883 -9.34883 +11145 33.47759 15.4896 -9.34342 0.04091 -8.2308127613 -9.34342 -9.34342 +11150 33.46205 15.48172 -9.33802 0.04094 -8.225911689 -9.33802 -9.33802 +11155 33.44652 15.47384 -9.33263 0.04098 -8.2210201693 -9.33263 -9.33263 +11160 33.43101 15.46598 -9.32724 0.04102 -8.216128203 -9.32724 -9.32724 +11165 33.41551 15.45812 -9.32185 0.04106 -8.2112357906 -9.32185 -9.32185 +11170 33.40003 15.45027 -9.31647 0.04110 -8.2063529328 -9.31647 -9.31647 +11175 33.38456 15.44242 -9.3111 0.04114 -8.2014796301 -9.3111 -9.3111 +11180 33.36911 15.43458 -9.30573 0.04117 -8.1966058831 -9.30573 -9.30573 +11185 33.35367 15.42675 -9.30036 0.04121 -8.1917316924 -9.30036 -9.30036 +11190 33.33825 15.41893 -9.295 0.04125 -8.1868670587 -9.295 -9.295 +11195 33.32284 15.41112 -9.28965 0.04129 -8.1820119824 -9.28965 -9.28965 +11200 33.30744 15.40331 -9.2843 0.04133 -8.1771564643 -9.2843 -9.2843 +11205 33.29206 15.39551 -9.27895 0.04137 -8.1723005049 -9.27895 -9.27895 +11210 33.27669 15.38771 -9.27361 0.04141 -8.1674541047 -9.27361 -9.27361 +11215 33.26134 15.37993 -9.26828 0.04144 -8.1626172644 -9.26828 -9.26828 +11220 33.246 15.37215 -9.26295 0.04148 -8.1577799846 -9.26295 -9.26295 +11225 33.23068 15.36438 -9.25762 0.04152 -8.1529422658 -9.25762 -9.25762 +11230 33.21537 15.35661 -9.2523 0.04156 -8.1481141087 -9.2523 -9.2523 +11235 33.20007 15.34886 -9.24699 0.04160 -8.1432955138 -9.24699 -9.24699 +11240 33.18479 15.34111 -9.24167 0.04164 -8.1384664817 -9.24167 -9.24167 +11245 33.16952 15.33336 -9.23637 0.04168 -8.133657013 -9.23637 -9.23637 +11250 33.15427 15.32563 -9.23107 0.04172 -8.1288471082 -9.23107 -9.23107 +11255 33.13903 15.3179 -9.22577 0.04175 -8.124036768 -9.22577 -9.22577 +11260 33.1238 15.31018 -9.22048 0.04179 -8.119235993 -9.22048 -9.22048 +11265 33.10859 15.30247 -9.21519 0.04183 -8.1144347836 -9.21519 -9.21519 +11270 33.0934 15.29476 -9.20991 0.04187 -8.1096431406 -9.20991 -9.20991 +11275 33.07821 15.28706 -9.20463 0.04191 -8.1048510644 -9.20463 -9.20463 +11280 33.06305 15.27937 -9.19936 0.04195 -8.1000685556 -9.19936 -9.19936 +11285 33.04789 15.27168 -9.19409 0.04199 -8.0952856149 -9.19409 -9.19409 +11290 33.03275 15.264 -9.18883 0.04203 -8.0905122428 -9.18883 -9.18883 +11295 33.01762 15.25633 -9.18357 0.04206 -8.0857384398 -9.18357 -9.18357 +11300 33.00251 15.24867 -9.17832 0.04210 -8.0809742066 -9.17832 -9.17832 +11305 32.98741 15.24101 -9.17307 0.04214 -8.0762095436 -9.17307 -9.17307 +11310 32.97233 15.23336 -9.16782 0.04218 -8.0714444516 -9.16782 -9.16782 +11315 32.95726 15.22572 -9.16259 0.04222 -8.066698931 -9.16259 -9.16259 +11320 32.9422 15.21808 -9.15735 0.04226 -8.0619429824 -9.15735 -9.15735 +11325 32.92716 15.21045 -9.15212 0.04230 -8.0571966064 -9.15212 -9.15212 +11330 32.91213 15.20283 -9.1469 0.04234 -8.0524598035 -9.1469 -9.1469 +11335 32.89712 15.19522 -9.14168 0.04238 -8.0477225743 -9.14168 -9.14168 +11340 32.88211 15.18761 -9.13646 0.04242 -8.0429849195 -9.13646 -9.13646 +11345 32.86713 15.18001 -9.13125 0.04245 -8.0382568394 -9.13125 -9.13125 +11350 32.85215 15.17242 -9.12604 0.04249 -8.0335283348 -9.12604 -9.12604 +11355 32.83719 15.16483 -9.12084 0.04253 -8.0288094061 -9.12084 -9.12084 +11360 32.82225 15.15725 -9.11565 0.04257 -8.0241000539 -9.11565 -9.11565 +11365 32.80731 15.14968 -9.11045 0.04261 -8.0193802789 -9.11045 -9.11045 +11370 32.7924 15.14211 -9.10527 0.04265 -8.0146800814 -9.10527 -9.10527 +11375 32.77749 15.13455 -9.10008 0.04269 -8.0099694622 -9.10008 -9.10008 +11380 32.7626 15.127 -9.09491 0.04273 -8.0052784217 -9.09491 -9.09491 +11385 32.74772 15.11946 -9.08973 0.04277 -8.0005769605 -9.08973 -9.08973 +11390 32.73286 15.11192 -9.08456 0.04281 -7.9958850792 -9.08456 -9.08456 +11395 32.71801 15.10439 -9.0794 0.04285 -7.9912027782 -9.0794 -9.0794 +11400 32.70317 15.09686 -9.07424 0.04289 -7.9865200583 -9.07424 -9.07424 +11405 32.68835 15.08935 -9.06909 0.04292 -7.9818469199 -9.06909 -9.06909 +11410 32.67354 15.08184 -9.06394 0.04296 -7.9771733635 -9.06394 -9.06394 +11415 32.65874 15.07433 -9.05879 0.04300 -7.9724993897 -9.05879 -9.05879 +11420 32.64396 15.06684 -9.05365 0.04304 -7.9678349991 -9.05365 -9.05365 +11425 32.62919 15.05935 -9.04851 0.04308 -7.9631701923 -9.04851 -9.04851 +11430 32.61443 15.05186 -9.04338 0.04312 -7.9585149696 -9.04338 -9.04338 +11435 32.59969 15.04439 -9.03825 0.04316 -7.9538593318 -9.03825 -9.03825 +11440 32.58496 15.03692 -9.03313 0.04320 -7.9492132794 -9.03313 -9.03313 +11445 32.57025 15.02946 -9.02801 0.04324 -7.9445668128 -9.02801 -9.02801 +11450 32.55554 15.022 -9.0229 0.04328 -7.9399299326 -9.0229 -9.0229 +11455 32.54085 15.01455 -9.01779 0.04332 -7.9352926394 -9.01779 -9.01779 +11460 32.52618 15.00711 -9.01269 0.04336 -7.9306649338 -9.01269 -9.01269 +11465 32.51152 14.99967 -9.00759 0.04340 -7.9260368162 -9.00759 -9.00759 +11470 32.49687 14.99224 -9.00249 0.04344 -7.9214082872 -9.00249 -9.00249 +11475 32.48223 14.98482 -8.9974 0.04348 -7.9167893473 -8.9974 -8.9974 +11480 32.46761 14.97741 -8.99232 0.04352 -7.9121799971 -8.99232 -8.99232 +11485 32.453 14.97 -8.98724 0.04356 -7.9075702371 -8.98724 -8.98724 +11490 32.43841 14.9626 -8.98216 0.04359 -7.9029600678 -8.98216 -8.98216 +11495 32.42383 14.9552 -8.97709 0.04363 -7.8983594898 -8.97709 -8.97709 +11500 32.40926 14.94782 -8.97202 0.04367 -7.8937585036 -8.97202 -8.97202 +11505 32.3947 14.94043 -8.96696 0.04371 -7.8891671098 -8.96696 -8.96696 +11510 32.38016 14.93306 -8.9619 0.04375 -7.8845753088 -8.9619 -8.9619 +11515 32.36563 14.92569 -8.95684 0.04379 -7.8799831012 -8.95684 -8.95684 +11520 32.35111 14.91833 -8.95179 0.04383 -7.8754004876 -8.95179 -8.95179 +11525 32.33661 14.91098 -8.94675 0.04387 -7.8708274684 -8.94675 -8.94675 +11530 32.32212 14.90363 -8.94171 0.04391 -7.8662540441 -8.94171 -8.94171 +11535 32.30764 14.89629 -8.93667 0.04395 -7.8616802155 -8.93667 -8.93667 +11540 32.29318 14.88895 -8.93164 0.04399 -7.8571159828 -8.93164 -8.93164 +11545 32.27873 14.88162 -8.92661 0.04403 -7.8525513467 -8.92661 -8.92661 +11550 32.26429 14.8743 -8.92159 0.04407 -7.8479963077 -8.92159 -8.92159 +11555 32.24987 14.86699 -8.91657 0.04411 -7.8434408663 -8.91657 -8.91657 +11560 32.23545 14.85968 -8.91156 0.04415 -7.838895023 -8.91156 -8.91156 +11565 32.22106 14.85238 -8.90655 0.04419 -7.8343487784 -8.90655 -8.90655 +11570 32.20667 14.84508 -8.90154 0.04423 -7.829802133 -8.90154 -8.90154 +11575 32.1923 14.83779 -8.89654 0.04427 -7.8252650872 -8.89654 -8.89654 +11580 32.17794 14.83051 -8.89155 0.04431 -7.8207376417 -8.89155 -8.89155 +11585 32.16359 14.82324 -8.88655 0.04435 -7.8161997969 -8.88655 -8.88655 +11590 32.14926 14.81597 -8.88157 0.04439 -7.8116815533 -8.88157 -8.88157 +11595 32.13493 14.80871 -8.87658 0.04443 -7.8071529115 -8.87658 -8.87658 +11600 32.12063 14.80145 -8.87161 0.04447 -7.802643872 -8.87161 -8.87161 +11605 32.10633 14.7942 -8.86663 0.04451 -7.7981244353 -8.86663 -8.86663 +11610 32.09205 14.78696 -8.86166 0.04455 -7.7936146019 -8.86166 -8.86166 +11615 32.07778 14.77972 -8.8567 0.04459 -7.7891143722 -8.8567 -8.8567 +11620 32.06352 14.77249 -8.85174 0.04463 -7.784613747 -8.85174 -8.85174 +11625 32.04928 14.76527 -8.84678 0.04467 -7.7801127265 -8.84678 -8.84678 +11630 32.03505 14.75805 -8.84183 0.04471 -7.7756213114 -8.84183 -8.84183 +11635 32.02083 14.75084 -8.83688 0.04475 -7.7711295022 -8.83688 -8.83688 +11640 32.00662 14.74364 -8.83193 0.04479 -7.7666372993 -8.83193 -8.83193 +11645 31.99243 14.73644 -8.827 0.04483 -7.7621647033 -8.827 -8.827 +11650 31.97825 14.72925 -8.82206 0.04487 -7.7576817147 -8.82206 -8.82206 +11655 31.96408 14.72206 -8.81713 0.04491 -7.7532083339 -8.81713 -8.81713 +11660 31.94992 14.71489 -8.8122 0.04495 -7.7487345616 -8.8122 -8.8122 +11665 31.93578 14.70772 -8.80728 0.04499 -7.7442703981 -8.80728 -8.80728 +11670 31.92165 14.70055 -8.80236 0.04503 -7.7398058441 -8.80236 -8.80236 +11675 31.90753 14.69339 -8.79745 0.04507 -7.7353508999 -8.79745 -8.79745 +11680 31.89343 14.68624 -8.79254 0.04511 -7.7308955661 -8.79254 -8.79254 +11685 31.87934 14.67909 -8.78764 0.04515 -7.7264498432 -8.78764 -8.78764 +11690 31.86526 14.67195 -8.78274 0.04519 -7.7220037317 -8.78274 -8.78274 +11695 31.85119 14.66482 -8.77784 0.04523 -7.7175572321 -8.77784 -8.77784 +11700 31.83713 14.65769 -8.77295 0.04527 -7.713120345 -8.77295 -8.77295 +11705 31.82309 14.65057 -8.76806 0.04531 -7.7086830706 -8.76806 -8.76806 +11710 31.80906 14.64346 -8.76318 0.04535 -7.7042554097 -8.76318 -8.76318 +11715 31.79505 14.63635 -8.7583 0.04539 -7.6998273627 -8.7583 -8.7583 +11720 31.78104 14.62925 -8.75343 0.04543 -7.69540893 -8.75343 -8.75343 +11725 31.76705 14.62215 -8.74856 0.04547 -7.6909901122 -8.74856 -8.74856 +11730 31.75307 14.61506 -8.74369 0.04551 -7.6865709098 -8.74369 -8.74369 +11735 31.7391 14.60798 -8.73883 0.04555 -7.6821613232 -8.73883 -8.73883 +11740 31.72515 14.6009 -8.73397 0.04559 -7.6777513529 -8.73397 -8.73397 +11745 31.7112 14.59383 -8.72912 0.04563 -7.6733509995 -8.72912 -8.72912 +11750 31.69727 14.58677 -8.72427 0.04568 -7.6689502634 -8.72427 -8.72427 +11755 31.68335 14.57971 -8.71942 0.04572 -7.6645491451 -8.71942 -8.71942 +11760 31.66945 14.57266 -8.71458 0.04576 -7.6601576451 -8.71458 -8.71458 +11765 31.65555 14.56562 -8.70975 0.04580 -7.6557757639 -8.70975 -8.70975 +11770 31.64167 14.55858 -8.70491 0.04584 -7.651383502 -8.70491 -8.70491 +11775 31.6278 14.55154 -8.70008 0.04588 -7.6470008598 -8.70008 -8.70008 +11780 31.61395 14.54452 -8.69526 0.04592 -7.6426278379 -8.69526 -8.69526 +11785 31.6001 14.5375 -8.69044 0.04596 -7.6382544367 -8.69044 -8.69044 +11790 31.58627 14.53048 -8.68563 0.04600 -7.6338906566 -8.68563 -8.68563 +11795 31.57245 14.52348 -8.68081 0.04604 -7.6295164983 -8.68081 -8.68081 +11800 31.55864 14.51647 -8.67601 0.04608 -7.6251619622 -8.67601 -8.67601 +11805 31.54485 14.50948 -8.6712 0.04612 -7.6207970486 -8.6712 -8.6712 +11810 31.53106 14.50249 -8.66641 0.04616 -7.6164517583 -8.66641 -8.66641 +11815 31.51729 14.49551 -8.66161 0.04620 -7.6120960915 -8.66161 -8.66161 +11820 31.50353 14.48853 -8.65682 0.04624 -7.6077500488 -8.65682 -8.65682 +11825 31.48979 14.48156 -8.65203 0.04628 -7.6034036306 -8.65203 -8.65203 +11830 31.47605 14.47459 -8.64725 0.04632 -7.5990668375 -8.64725 -8.64725 +11835 31.46233 14.46764 -8.64247 0.04637 -7.59472967 -8.64247 -8.64247 +11840 31.44862 14.46068 -8.6377 0.04641 -7.5904021283 -8.6377 -8.6377 +11845 31.43492 14.45374 -8.63293 0.04645 -7.5860742132 -8.63293 -8.63293 +11850 31.42123 14.4468 -8.62816 0.04649 -7.581745925 -8.62816 -8.62816 +11855 31.40756 14.43986 -8.6234 0.04653 -7.5774272642 -8.6234 -8.6234 +11860 31.39389 14.43293 -8.61864 0.04657 -7.5731082312 -8.61864 -8.61864 +11865 31.38024 14.42601 -8.61389 0.04661 -7.5687988267 -8.61389 -8.61389 +11870 31.3666 14.4191 -8.60914 0.04665 -7.5644890509 -8.60914 -8.60914 +11875 31.35298 14.41219 -8.6044 0.04669 -7.5601889044 -8.6044 -8.6044 +11880 31.33936 14.40528 -8.59966 0.04673 -7.5558883877 -8.59966 -8.59966 +11885 31.32576 14.39838 -8.59492 0.04677 -7.5515875011 -8.59492 -8.59492 +11890 31.31217 14.39149 -8.59019 0.04682 -7.5472962453 -8.59019 -8.59019 +11895 31.29859 14.38461 -8.58546 0.04686 -7.5430046206 -8.58546 -8.58546 +11900 31.28502 14.37773 -8.58073 0.04690 -7.5387126276 -8.58073 -8.58073 +11905 31.27147 14.37085 -8.57601 0.04694 -7.5344302666 -8.57601 -8.57601 +11910 31.25792 14.36399 -8.5713 0.04698 -7.5301575381 -8.5713 -8.5713 +11915 31.24439 14.35712 -8.56658 0.04702 -7.5258744427 -8.56658 -8.56658 +11920 31.23087 14.35027 -8.56187 0.04706 -7.5216009808 -8.56187 -8.56187 +11925 31.21736 14.34342 -8.55717 0.04710 -7.5173371527 -8.55717 -8.55717 +11930 31.20386 14.33658 -8.55247 0.04714 -7.5130729591 -8.55247 -8.55247 +11935 31.19038 14.32974 -8.54777 0.04718 -7.5088084003 -8.54777 -8.54777 +11940 31.17691 14.32291 -8.54308 0.04723 -7.5045534768 -8.54308 -8.54308 +11945 31.16344 14.31608 -8.53839 0.04727 -7.5002981891 -8.53839 -8.53839 +11950 31.14999 14.30926 -8.53371 0.04731 -7.4960525376 -8.53371 -8.53371 +11955 31.13656 14.30245 -8.52903 0.04735 -7.4918065228 -8.52903 -8.52903 +11960 31.12313 14.29564 -8.52435 0.04739 -7.4875601451 -8.52435 -8.52435 +11965 31.10972 14.28884 -8.51968 0.04743 -7.483323405 -8.51968 -8.51968 +11970 31.09631 14.28204 -8.51501 0.04747 -7.479086303 -8.51501 -8.51501 +11975 31.08292 14.27525 -8.51035 0.04751 -7.4748588394 -8.51035 -8.51035 +11980 31.06954 14.26846 -8.50569 0.04755 -7.4706310148 -8.50569 -8.50569 +11985 31.05617 14.26169 -8.50103 0.04760 -7.4664028296 -8.50103 -8.50103 +11990 31.04282 14.25491 -8.49638 0.04764 -7.4621842843 -8.49638 -8.49638 +11995 31.02947 14.24815 -8.49173 0.04768 -7.4579653793 -8.49173 -8.49173 +12000 31.01614 14.24139 -8.48708 0.04772 -7.453746115 -8.48708 -8.48708 +12005 31.00282 14.23463 -8.48244 0.04776 -7.4495364919 -8.48244 -8.48244 +12010 30.98951 14.22788 -8.47781 0.0478 -7.4453365105 -8.47781 -8.47781 +12015 30.97621 14.22114 -8.47317 0.04784 -7.4411261711 -8.47317 -8.47317 +12020 30.96292 14.2144 -8.46855 0.04789 -7.4369354744 -8.46855 -8.46855 +12025 30.94964 14.20767 -8.46392 0.04793 -7.4327344206 -8.46392 -8.46392 +12030 30.93638 14.20094 -8.4593 0.04797 -7.4285430102 -8.4593 -8.4593 +12035 30.92313 14.19422 -8.45468 0.04801 -7.4243512437 -8.45468 -8.45468 +12040 30.90988 14.18751 -8.45007 0.04805 -7.4201691216 -8.45007 -8.45007 +12045 30.89665 14.1808 -8.44546 0.04809 -7.4159866442 -8.44546 -8.44546 +12050 30.88343 14.1741 -8.44086 0.04813 -7.411813812 -8.44086 -8.44086 +12055 30.87023 14.1674 -8.43626 0.04818 -7.4076406255 -8.43626 -8.43626 +12060 30.85703 14.16071 -8.43166 0.04822 -7.403467085 -8.43166 -8.43166 +12065 30.84385 14.15402 -8.42706 0.04826 -7.3992931911 -8.42706 -8.42706 +12070 30.83067 14.14735 -8.42248 0.0483 -7.3951389442 -8.42248 -8.42248 +12075 30.81751 14.14067 -8.41789 0.04834 -7.3909743447 -8.41789 -8.41789 +12080 30.80436 14.134 -8.41331 0.04838 -7.386819393 -8.41331 -8.41331 +12085 30.79122 14.12734 -8.40873 0.04842 -7.3826640896 -8.40873 -8.40873 +12090 30.77809 14.12068 -8.40416 0.04847 -7.3785184349 -8.40416 -8.40416 +12095 30.76498 14.11403 -8.39959 0.04851 -7.3743724294 -8.39959 -8.39959 +12100 30.75187 14.10739 -8.39502 0.04855 -7.3702260735 -8.39502 -8.39502 +12105 30.73878 14.10075 -8.39046 0.04859 -7.3660893675 -8.39046 -8.39046 +12110 30.72569 14.09411 -8.3859 0.04863 -7.3619523121 -8.3859 -8.3859 +12115 30.71262 14.08749 -8.38134 0.04867 -7.3578149075 -8.38134 -8.38134 +12120 30.69956 14.08086 -8.37679 0.04872 -7.3536871543 -8.37679 -8.37679 +12125 30.68651 14.07425 -8.37225 0.04876 -7.3495690528 -8.37225 -8.37225 +12130 30.67347 14.06764 -8.3677 0.0488 -7.3454406035 -8.3677 -8.3677 +12135 30.66045 14.06103 -8.36316 0.04884 -7.3413218069 -8.36316 -8.36316 +12140 30.64743 14.05443 -8.35863 0.04888 -7.3372126632 -8.35863 -8.35863 +12145 30.63442 14.04784 -8.3541 0.04893 -7.3331031731 -8.3541 -8.3541 +12150 30.62143 14.04125 -8.34957 0.04897 -7.3289933368 -8.34957 -8.34957 +12155 30.60845 14.03467 -8.34505 0.04901 -7.3248931549 -8.34505 -8.34505 +12160 30.59548 14.02809 -8.34053 0.04905 -7.3207926277 -8.34053 -8.34053 +12165 30.58252 14.02152 -8.33601 0.04909 -7.3166917557 -8.33601 -8.33601 +12170 30.56957 14.01495 -8.3315 0.04913 -7.3126005393 -8.3315 -8.3315 +12175 30.55663 14.00839 -8.32699 0.04918 -7.308508979 -8.32699 -8.32699 +12180 30.5437 14.00184 -8.32248 0.04922 -7.304417075 -8.32248 -8.32248 +12185 30.53078 13.99529 -8.31798 0.04926 -7.300334828 -8.31798 -8.31798 +12190 30.51788 13.98874 -8.31348 0.0493 -7.2962522383 -8.31348 -8.31348 +12195 30.50498 13.9822 -8.30899 0.04934 -7.2921793063 -8.30899 -8.30899 +12200 30.4921 13.97567 -8.3045 0.04939 -7.2881060324 -8.3045 -8.3045 +12205 30.47923 13.96915 -8.30001 0.04943 -7.2840324171 -8.30001 -8.30001 +12210 30.46637 13.96262 -8.29553 0.04947 -7.2799684607 -8.29553 -8.29553 +12215 30.45352 13.95611 -8.29105 0.04951 -7.2759041638 -8.29105 -8.29105 +12220 30.44068 13.9496 -8.28658 0.04955 -7.2718495267 -8.28658 -8.28658 +12225 30.42785 13.94309 -8.28211 0.0496 -7.2677945498 -8.28211 -8.28211 +12230 30.41503 13.93659 -8.27764 0.04964 -7.2637392336 -8.27764 -8.27764 +12235 30.40222 13.9301 -8.27318 0.04968 -7.2596935784 -8.27318 -8.27318 +12240 30.38943 13.92361 -8.26872 0.04972 -7.2556475847 -8.26872 -8.26872 +12245 30.37664 13.91713 -8.26426 0.04977 -7.2516012529 -8.26426 -8.26426 +12250 30.36387 13.91065 -8.25981 0.04981 -7.2475645834 -8.25981 -8.25981 +12255 30.3511 13.90418 -8.25536 0.04985 -7.2435275767 -8.25536 -8.25536 +12260 30.33835 13.89771 -8.25091 0.04989 -7.2394902331 -8.25091 -8.25091 +12265 30.32561 13.89125 -8.24647 0.04993 -7.235462553 -8.24647 -8.24647 +12270 30.31287 13.8848 -8.24203 0.04998 -7.2314345369 -8.24203 -8.24203 +12275 30.30015 13.87835 -8.2376 0.05002 -7.2274161852 -8.2376 -8.2376 +12280 30.28744 13.8719 -8.23317 0.05006 -7.2233974982 -8.23317 -8.23317 +12285 30.27474 13.86546 -8.22874 0.0501 -7.2193784765 -8.22874 -8.22874 +12290 30.26206 13.85903 -8.22432 0.05015 -7.2153691203 -8.22432 -8.22432 +12295 30.24938 13.8526 -8.2199 0.05019 -7.2113594301 -8.2199 -8.2199 +12300 30.23671 13.84618 -8.21549 0.05023 -7.2073594064 -8.21549 -8.21549 +12305 30.22405 13.83976 -8.21107 0.05027 -7.2033490495 -8.21107 -8.21107 +12310 30.21141 13.83335 -8.20667 0.05031 -7.1993583598 -8.20667 -8.20667 +12315 30.19877 13.82695 -8.20226 0.05036 -7.1953573377 -8.20226 -8.20226 +12320 30.18615 13.82054 -8.19786 0.0504 -7.1913659837 -8.19786 -8.19786 +12325 30.17354 13.81415 -8.19346 0.05044 -7.1873742981 -8.19346 -8.19346 +12330 30.16093 13.80776 -8.18907 0.05048 -7.1833922814 -8.18907 -8.18907 +12335 30.14834 13.80137 -8.18468 0.05053 -7.1794099339 -8.18468 -8.18468 +12340 30.13576 13.79499 -8.18029 0.05057 -7.175427256 -8.18029 -8.18029 +12345 30.12319 13.78862 -8.17591 0.05061 -7.1714542482 -8.17591 -8.17591 +12350 30.11062 13.78225 -8.17153 0.05065 -7.1674809109 -8.17153 -8.17153 +12355 30.09807 13.77589 -8.16716 0.0507 -7.1635172444 -8.16716 -8.16716 +12360 30.08553 13.76953 -8.16279 0.05074 -7.1595532492 -8.16279 -8.16279 +12365 30.073 13.76318 -8.15842 0.05078 -7.1555889256 -8.15842 -8.15842 +12370 30.06049 13.75683 -8.15405 0.05082 -7.151624274 -8.15405 -8.15405 +12375 30.04798 13.75049 -8.14969 0.05087 -7.1476692949 -8.14969 -8.14969 +12380 30.03548 13.74415 -8.14533 0.05091 -7.1437139887 -8.14533 -8.14533 +12385 30.02299 13.73782 -8.14098 0.05095 -7.1397683557 -8.14098 -8.14098 +12390 30.01051 13.73149 -8.13663 0.05099 -7.1358223963 -8.13663 -8.13663 +12395 29.99805 13.72517 -8.13228 0.05104 -7.1318761109 -8.13228 -8.13228 +12400 29.98559 13.71886 -8.12794 0.05108 -7.1279395 -8.12794 -8.12794 +12405 29.97315 13.71255 -8.1236 0.05112 -7.1240025639 -8.1236 -8.1236 +12410 29.96071 13.70624 -8.11927 0.05117 -7.120075303 -8.11927 -8.11927 +12415 29.94829 13.69994 -8.11493 0.05121 -7.1161377177 -8.11493 -8.11493 +12420 29.93587 13.69365 -8.11061 0.05125 -7.1122198084 -8.11061 -8.11061 +12425 29.92347 13.68736 -8.10628 0.05129 -7.1082915754 -8.10628 -8.10628 +12430 29.91107 13.68107 -8.10196 0.05134 -7.1043730193 -8.10196 -8.10196 +12435 29.89869 13.67479 -8.09764 0.05138 -7.1004541403 -8.09764 -8.09764 +12440 29.88632 13.66852 -8.09333 0.05142 -7.0965449389 -8.09333 -8.09333 +12445 29.87395 13.66225 -8.08902 0.05147 -7.0926354154 -8.08902 -8.08902 +12450 29.8616 13.65599 -8.08471 0.05151 -7.0887255703 -8.08471 -8.08471 +12455 29.84926 13.64973 -8.0804 0.05155 -7.0848154038 -8.0804 -8.0804 +12460 29.83693 13.64348 -8.0761 0.05159 -7.0809149165 -8.0761 -8.0761 +12465 29.8246 13.63723 -8.07181 0.05164 -7.0770241087 -8.07181 -8.07181 +12470 29.81229 13.63099 -8.06751 0.05168 -7.0731229807 -8.06751 -8.06751 +12475 29.79999 13.62475 -8.06322 0.05172 -7.069231533 -8.06322 -8.06322 +12480 29.7877 13.61852 -8.05894 0.05177 -7.065349766 -8.05894 -8.05894 +12485 29.77542 13.61229 -8.05466 0.05181 -7.0614676799 -8.05466 -8.05466 +12490 29.76315 13.60607 -8.05038 0.05185 -7.0575852753 -8.05038 -8.05038 +12495 29.75089 13.59986 -8.0461 0.05189 -7.0537025525 -8.0461 -8.0461 +12500 29.73864 13.59364 -8.04183 0.05194 -7.0498295119 -8.04183 -8.04183 +12505 29.7264 13.58744 -8.03756 0.05198 -7.0459561538 -8.03756 -8.03756 +12510 29.71417 13.58124 -8.03329 0.05202 -7.0420824787 -8.03329 -8.03329 +12515 29.70194 13.57504 -8.02903 0.05207 -7.0382184869 -8.02903 -8.02903 +12520 29.68973 13.56885 -8.02477 0.05211 -7.0343541788 -8.02477 -8.02477 +12525 29.67753 13.56266 -8.02052 0.05215 -7.0304995547 -8.02052 -8.02052 +12530 29.66534 13.55648 -8.01627 0.0522 -7.0266446152 -8.01627 -8.01627 +12535 29.65317 13.55031 -8.01202 0.05224 -7.0227893604 -8.01202 -8.01202 +12540 29.641 13.54414 -8.00778 0.05228 -7.0189437909 -8.00778 -8.00778 +12545 29.62884 13.53797 -8.00354 0.05233 -7.0150979069 -8.00354 -8.00354 +12550 29.61669 13.53181 -7.9993 0.05237 -7.0112517089 -7.9993 -7.9993 +12555 29.60455 13.52566 -7.99506 0.05241 -7.0074051973 -7.99506 -7.99506 +12560 29.59242 13.51951 -7.99083 0.05246 -7.0035683724 -7.99083 -7.99083 +12565 29.5803 13.51336 -7.98661 0.0525 -6.9997412345 -7.98661 -7.98661 +12570 29.56819 13.50722 -7.98238 0.05254 -6.9959037841 -7.98238 -7.98238 +12575 29.55609 13.50109 -7.97816 0.05259 -6.9920760216 -7.97816 -7.97816 +12580 29.544 13.49496 -7.97395 0.05263 -6.9882579472 -7.97395 -7.97395 +12585 29.53192 13.48884 -7.96973 0.05267 -6.9844295615 -7.96973 -7.96973 +12590 29.51985 13.48272 -7.96552 0.05272 -6.9806108646 -7.96552 -7.96552 +12595 29.50779 13.4766 -7.96132 0.05276 -6.9768018571 -7.96132 -7.96132 +12600 29.49574 13.47049 -7.95711 0.0528 -6.9729825393 -7.95711 -7.95711 +12605 29.4837 13.46439 -7.95291 0.05285 -6.9691729115 -7.95291 -7.95291 +12610 29.47167 13.45829 -7.94872 0.05289 -6.9653729742 -7.94872 -7.94872 +12615 29.45965 13.45219 -7.94452 0.05293 -6.9615627277 -7.94452 -7.94452 +12620 29.44764 13.4461 -7.94034 0.05298 -6.9577721723 -7.94034 -7.94034 +12625 29.43564 13.44002 -7.93615 0.05302 -6.9539713084 -7.93615 -7.93615 +12630 29.42365 13.43394 -7.93197 0.05306 -6.9501801365 -7.93197 -7.93197 +12635 29.41166 13.42787 -7.92779 0.05311 -6.9463886568 -7.92779 -7.92779 +12640 29.39969 13.4218 -7.92361 0.05315 -6.9425968697 -7.92361 -7.92361 +12645 29.38773 13.41573 -7.91944 0.05319 -6.9388147756 -7.91944 -7.91944 +12650 29.37578 13.40967 -7.91527 0.05324 -6.9350323749 -7.91527 -7.91527 +12655 29.36384 13.40362 -7.9111 0.05328 -6.9312496679 -7.9111 -7.9111 +12660 29.35191 13.39757 -7.90694 0.05332 -6.927476655 -7.90694 -7.90694 +12665 29.33998 13.39152 -7.90278 0.05337 -6.9237033365 -7.90278 -7.90278 +12670 29.32807 13.38548 -7.89863 0.05341 -6.9199397128 -7.89863 -7.89863 +12675 29.31617 13.37945 -7.89447 0.05345 -6.9161657843 -7.89447 -7.89447 +12680 29.30427 13.37342 -7.89033 0.0535 -6.9124115513 -7.89033 -7.89033 +12685 29.29239 13.36739 -7.88618 0.05354 -6.9086470142 -7.88618 -7.88618 +12690 29.28052 13.36137 -7.88204 0.05359 -6.9048921734 -7.88204 -7.88204 +12695 29.26865 13.35536 -7.8779 0.05363 -6.9011370291 -7.8779 -7.8779 +12700 29.2568 13.34935 -7.87376 0.05367 -6.8973815818 -7.87376 -7.87376 +12705 29.24495 13.34334 -7.86963 0.05372 -6.8936358319 -7.86963 -7.86963 +12710 29.23312 13.33734 -7.8655 0.05376 -6.8898897796 -7.8655 -7.8655 +12715 29.22129 13.33135 -7.86138 0.0538 -6.8861534254 -7.86138 -7.86138 +12720 29.20948 13.32536 -7.85725 0.05385 -6.8824067695 -7.85725 -7.85725 +12725 29.19767 13.31937 -7.85313 0.05389 -6.8786698124 -7.85313 -7.85313 +12730 29.18587 13.31339 -7.84902 0.05394 -6.8749425544 -7.84902 -7.84902 +12735 29.17409 13.30741 -7.84491 0.05398 -6.8712149958 -7.84491 -7.84491 +12740 29.16231 13.30144 -7.8408 0.05402 -6.8674871371 -7.8408 -7.8408 +12745 29.15054 13.29548 -7.83669 0.05407 -6.8637589785 -7.83669 -7.83669 +12750 29.13878 13.28951 -7.83259 0.05411 -6.8600405204 -7.83259 -7.83259 +12755 29.12703 13.28356 -7.82849 0.05415 -6.8563217633 -7.82849 -7.82849 +12760 29.11529 13.27761 -7.82439 0.0542 -6.8526027073 -7.82439 -7.82439 +12765 29.10356 13.27166 -7.8203 0.05424 -6.8488933529 -7.8203 -7.8203 +12770 29.09184 13.26572 -7.81621 0.05429 -6.8451837004 -7.81621 -7.81621 +12775 29.08013 13.25978 -7.81212 0.05433 -6.8414737502 -7.81212 -7.81212 +12780 29.06843 13.25385 -7.80804 0.05437 -6.8377735026 -7.80804 -7.80804 +12785 29.05674 13.24792 -7.80396 0.05442 -6.834072958 -7.80396 -7.80396 +12790 29.04506 13.242 -7.79989 0.05446 -6.8303821167 -7.79989 -7.79989 +12795 29.03338 13.23608 -7.79581 0.05451 -6.826680979 -7.79581 -7.79581 +12800 29.02172 13.23016 -7.79174 0.05455 -6.8229895454 -7.79174 -7.79174 +12805 29.01007 13.22426 -7.78768 0.05459 -6.8193078162 -7.78768 -7.78768 +12810 28.99842 13.21835 -7.78361 0.05464 -6.8156157916 -7.78361 -7.78361 +12815 28.98679 13.21245 -7.77955 0.05468 -6.8119334721 -7.77955 -7.77955 +12820 28.97516 13.20656 -7.7755 0.05473 -6.808260858 -7.7755 -7.7755 +12825 28.96354 13.20067 -7.77144 0.05477 -6.8045779496 -7.77144 -7.77144 +12830 28.95194 13.19478 -7.76739 0.05482 -6.8009047474 -7.76739 -7.76739 +12835 28.94034 13.1889 -7.76334 0.05486 -6.7972312515 -7.76334 -7.76334 +12840 28.92875 13.18303 -7.7593 0.0549 -6.7935674624 -7.7593 -7.7593 +12845 28.91717 13.17716 -7.75526 0.05495 -6.7899033805 -7.75526 -7.75526 +12850 28.9056 13.17129 -7.75122 0.05499 -6.786239006 -7.75122 -7.75122 +12855 28.89404 13.16543 -7.74719 0.05504 -6.7825843393 -7.74719 -7.74719 +12860 28.88249 13.15958 -7.74316 0.05508 -6.7789293807 -7.74316 -7.74316 +12865 28.87095 13.15372 -7.73913 0.05512 -6.7752741306 -7.73913 -7.73913 +12870 28.85941 13.14788 -7.7351 0.05517 -6.7716185893 -7.7351 -7.7351 +12875 28.84789 13.14203 -7.73108 0.05521 -6.7679727572 -7.73108 -7.73108 +12880 28.83637 13.1362 -7.72706 0.05526 -6.7643266346 -7.72706 -7.72706 +12885 28.82487 13.13036 -7.72305 0.0553 -6.7606902218 -7.72305 -7.72305 +12890 28.81337 13.12454 -7.71904 0.05535 -6.7570535192 -7.71904 -7.71904 +12895 28.80189 13.11871 -7.71503 0.05539 -6.7534165271 -7.71503 -7.71503 +12900 28.79041 13.11289 -7.71102 0.05544 -6.7497792458 -7.71102 -7.71102 +12905 28.77894 13.10708 -7.70702 0.05548 -6.7461516758 -7.70702 -7.70702 +12910 28.76748 13.10127 -7.70302 0.05552 -6.7425238172 -7.70302 -7.70302 +12915 28.75603 13.09546 -7.69902 0.05557 -6.7388956705 -7.69902 -7.69902 +12920 28.74459 13.08966 -7.69503 0.05561 -6.735277236 -7.69503 -7.69503 +12925 28.73316 13.08387 -7.69104 0.05566 -6.731658514 -7.69104 -7.69104 +12930 28.72174 13.07808 -7.68705 0.0557 -6.7280395049 -7.68705 -7.68705 +12935 28.71032 13.07229 -7.68307 0.05575 -6.7244302089 -7.68307 -7.68307 +12940 28.69892 13.06651 -7.67909 0.05579 -6.7208206265 -7.67909 -7.67909 +12945 28.68752 13.06073 -7.67511 0.05584 -6.7172107579 -7.67511 -7.67511 +12950 28.67614 13.05496 -7.67114 0.05588 -6.7136106035 -7.67114 -7.67114 +12955 28.66476 13.04919 -7.66717 0.05592 -6.7100101636 -7.66717 -7.66717 +12960 28.65339 13.04343 -7.6632 0.05597 -6.7064094386 -7.6632 -7.6632 +12965 28.64203 13.03767 -7.65924 0.05601 -6.7028184287 -7.65924 -7.65924 +12970 28.63068 13.03191 -7.65527 0.05606 -6.6992171344 -7.65527 -7.65527 +12975 28.61934 13.02617 -7.65132 0.0561 -6.6956355559 -7.65132 -7.65132 +12980 28.60801 13.02042 -7.64736 0.05615 -6.6920436935 -7.64736 -7.64736 +12985 28.59669 13.01468 -7.64341 0.05619 -6.6884615476 -7.64341 -7.64341 +12990 28.58538 13.00894 -7.63946 0.05624 -6.6848791186 -7.63946 -7.63946 +12995 28.57407 13.00321 -7.63551 0.05628 -6.6812964067 -7.63551 -7.63551 +13000 28.56277 12.99749 -7.63157 0.0563 -6.6777234122 -7.63157 -7.63157 diff --git a/lutSi333R155.txt b/lutSi333R155.txt new file mode 100644 index 0000000..f391fac --- /dev/null +++ b/lutSi333R155.txt @@ -0,0 +1,1603 @@ +Energy CamArmRot CristBendRot CamPosX EvPerPix CamPosX_100nm CamPosX_150nm CamPosX_200nm +5935 0 0 1.5500018619 +5940 0 0 1.5480667738 +5945 0 0 1.5461365114 +5950 0 0 1.5442110566 +5955 0 0 1.5422903915 +5960 0 0 1.5403744983 +5965 0 0 1.5384633591 +5970 0 0 1.5365569564 +5975 0 0 1.5346552725 +5980 0 0 1.53275829 +5985 0 0 1.5308659914 +5990 0 0 1.5289783593 +5995 0 0 1.5270953767 +6000 0 0 1.5252170262 +6005 0 0 1.5233432909 +6010 0 0 1.5214741537 +6015 0 0 1.5196095977 +6020 0 0 1.5177496061 +6025 0 0 1.5158941622 +6030 0 0 1.5140432494 +6035 0 0 1.5121968509 +6040 0 0 1.5103549505 +6045 0 0 1.5085175315 +6050 0 0 1.5066845777 +6055 0 0 1.5048560729 +6060 0 0 1.5030320008 +6065 0 0 1.5012123453 +6070 0 1.9991978686 1.4993970905 +6075 0 1.9967833688 1.4975862204 +6080 0 1.9943746941 1.4957797191 +6085 0 1.9919718235 1.4939775709 +6090 0 1.989574736 1.4921797599 +6095 0 1.9871834108 1.4903862706 +6100 0 1.984797827 1.4885970875 +6105 0 1.9824179642 1.4868121949 +6110 0 1.9800438016 1.4850315776 +6115 0 1.9776753189 1.4832552201 +6120 0 1.9753124957 1.4814831073 +6125 0 1.9729553117 1.4797152238 +6130 0 1.9706037467 1.4779515546 +6135 0 1.9682577808 1.4761920846 +6140 0 1.9659173939 1.4744367989 +6145 0 1.9635825661 1.4726856825 +6150 0 1.9612532777 1.4709387206 +6155 0 1.958929509 1.4691958985 +6160 0 1.9566112403 1.4674572013 +6165 0 1.9542984523 1.4657226146 +6170 0 1.9519911253 1.4639921238 +6175 0 1.9496892402 1.4622657143 +6180 0 1.9473927778 1.4605433717 +6185 0 1.9451017188 1.4588250817 +6190 0 1.9428160442 1.45711083 +6195 0 1.9405357351 1.4554006024 +6200 0 1.9382607726 1.4536943848 +6205 0 1.9359911379 1.4519921629 +6210 0 1.9337268123 1.4502939229 +6215 0 1.9314677772 1.4485996507 +6220 0 1.9292140141 1.4469093326 +6225 0 1.9269655046 1.4452229545 +6230 0 1.9247222302 1.4435405029 +6235 0 1.9224841728 1.4418619639 +6240 0 1.9202513142 1.440187324 +6245 0 1.9180236363 1.4385165696 +6250 0 1.915801121 1.4368496872 +6255 0 1.9135837505 1.4351866633 +6260 0 1.9113715069 1.4335274845 +6265 0 1.9091643723 1.4318721376 +6270 0 1.9069623293 1.4302206093 +6275 0 1.9047653601 1.4285728863 +6280 0 1.9025734473 1.4269289556 +6285 0 1.9003865733 1.425288804 +6290 0 1.898204721 1.4236524186 +6295 0 1.8960278729 1.4220197864 +6300 0 1.8938560118 1.4203908945 +6305 0 1.8916891208 1.41876573 +6310 0 1.8895271826 1.4171442802 +6315 0 1.8873701804 1.4155265323 +6320 0 1.8852180973 1.4139124737 +6325 0 1.8830709165 1.4123020919 +6330 0 1.8809286211 1.4106953741 +6335 0 1.8787911947 1.409092308 +6340 0 1.8766586206 1.4074928811 +6345 0 1.8745308822 1.405897081 +6350 0 1.8724079633 1.4043048955 +6355 0 1.8702898473 1.4027163121 +6360 0 1.868176518 1.4011313188 +6365 0 1.8660679593 1.3995499034 +6370 0 1.863964155 1.3979720538 +6375 0 1.861865089 1.3963977578 +6380 0 1.8597707453 1.3948270036 +6385 0 1.857681108 1.3932597792 +6390 0 1.8555961613 1.3916960728 +6395 0 1.8535158894 1.3901358723 +6400 0 1.8514402766 1.3885791662 +6405 0 1.8493693072 1.3870259427 +6410 0 1.8473029658 1.3854761901 +6415 0 1.8452412367 1.3839298967 +6420 0 1.8431841046 1.3823870511 +6425 0 1.8411315541 1.3808476416 +6430 0 1.8390835699 1.3793116569 +6435 0 1.8370401368 1.3777790855 +6440 0 1.8350012396 1.376249916 +6445 0 1.8329668633 1.3747241372 +6450 0 1.8309369929 1.3732017377 +6455 0 1.8289116133 1.3716827063 +6460 0 1.8268907098 1.370167032 +6465 0 1.8248742674 1.3686547035 +6470 0 1.8228622714 1.3671457098 +6475 0 1.8208547072 1.36564004 +6480 0 1.8188515601 1.3641376829 +6485 131.98537 66.61468 -24.92055 0.00318 -24.92055 -23.1036971845 -23.5579113723 +6490 131.78593 66.51497 -24.90658 0.00320 -24.90658 -23.091721541 -23.5454371365 +6495 131.58758 66.41579 -24.89263 0.00322 -24.89263 -23.0797615239 -23.5329796204 +6500 131.39029 66.31715 -24.8787 0.00324 -24.8787 -23.0678171476 -23.520538835 +6505 131.19407 66.21903 -24.8648 0.00325 -24.8648 -23.0558984264 -23.5081247909 +6510 130.99888 66.12144 -24.85091 0.00327 -24.85091 -23.0439853744 -23.4957174987 +6515 130.80473 66.02436 -24.83704 0.00329 -24.83704 -23.032088006 -23.4833269692 +6520 130.61159 65.9278 -24.8232 0.00330 -24.8232 -23.0202163352 -23.470963213 +6525 130.41946 65.83173 -24.80938 0.00332 -24.80938 -23.0083603761 -23.4586162405 +6530 130.22833 65.73616 -24.79558 0.00334 -24.79558 -22.9965201426 -23.4462860623 +6535 130.03817 65.64109 -24.7818 0.00336 -24.7818 -22.9846956488 -23.4339726888 +6540 129.84899 65.54649 -24.76804 0.00337 -24.76804 -22.9728869084 -23.4216761304 +6545 129.66076 65.45238 -24.7543 0.00339 -24.7543 -22.9610939354 -23.4093963976 +6550 129.47348 65.35874 -24.74058 0.00341 -24.74058 -22.9493167435 -23.3971335005 +6555 129.28713 65.26556 -24.72689 0.00342 -24.72689 -22.9375653463 -23.3848974496 +6560 129.10171 65.17285 -24.71321 0.00344 -24.71321 -22.9258197575 -23.3726682549 +6565 128.9172 65.0806 -24.69956 0.00346 -24.69956 -22.9140999907 -23.3604659268 +6570 128.7336 64.9888 -24.68592 0.00348 -24.68592 -22.9023860594 -23.3482704753 +6575 128.55089 64.89744 -24.67231 0.00349 -24.67231 -22.8906979771 -23.3361019106 +6580 128.36906 64.80653 -24.65872 0.00351 -24.65872 -22.8790257571 -23.3239502426 +6585 128.18811 64.71605 -24.64515 0.00353 -24.64515 -22.8673694129 -23.3118154815 +6590 128.00802 64.62601 -24.6316 0.00354 -24.6316 -22.8557289577 -23.2996976371 +6595 127.82879 64.53639 -24.61807 0.00356 -24.61807 -22.8441044047 -23.2875967194 +6600 127.6504 64.4472 -24.60456 0.00358 -24.60456 -22.8324957672 -23.2755127383 +6605 127.47285 64.35842 -24.59107 0.00359 -24.59107 -22.8209030582 -23.2634457036 +6610 127.29612 64.27006 -24.5776 0.00361 -24.5776 -22.8093262908 -23.2513956252 +6615 127.12022 64.18211 -24.56415 0.00363 -24.56415 -22.797765478 -23.2393625127 +6620 126.94512 64.09456 -24.55072 0.00364 -24.55072 -22.7862206327 -23.2273463759 +6625 126.77083 64.00741 -24.53732 0.00366 -24.53732 -22.774701768 -23.2153572244 +6630 126.59732 63.92066 -24.52393 0.00368 -24.52393 -22.7631888965 -23.2033750679 +6635 126.42461 63.8343 -24.51056 0.00369 -24.51056 -22.7516920311 -23.1914099161 +6640 126.25267 63.74833 -24.49721 0.00371 -24.49721 -22.7402111846 -23.1794617783 +6645 126.0815 63.66275 -24.48389 0.00373 -24.48389 -22.7287563696 -23.1675406642 +6650 125.91109 63.57754 -24.47058 0.00374 -24.47058 -22.7173075986 -23.1556265832 +6655 125.74143 63.49272 -24.45729 0.00376 -24.45729 -22.7058748844 -23.1437295447 +6660 125.57252 63.40826 -24.44402 0.00378 -24.44402 -22.6944582394 -23.1318495582 +6665 125.40435 63.32418 -24.43078 0.00379 -24.43078 -22.6830676761 -23.1199966329 +6670 125.23691 63.24046 -24.41755 0.00381 -24.41755 -22.6716832069 -23.1081507782 +6675 125.0702 63.1571 -24.40434 0.00383 -24.40434 -22.6603148442 -23.0963220034 +6680 124.9042 63.0741 -24.39115 0.00384 -24.39115 -22.6489626002 -23.0845103177 +6685 124.73891 62.99146 -24.37799 0.00386 -24.37799 -22.6376364872 -23.0727257302 +6690 124.57433 62.90916 -24.36484 0.00388 -24.36484 -22.6263165175 -23.0609482502 +6695 124.41044 62.82722 -24.35171 0.00389 -24.35171 -22.6150127031 -23.0491878867 +6700 124.24724 62.74562 -24.3386 0.00391 -24.3386 -22.6037250562 -23.0374446488 +6705 124.08473 62.66437 -24.32551 0.00393 -24.32551 -22.5924535889 -23.0257185456 +6710 123.92289 62.58345 -24.31244 0.00394 -24.31244 -22.5811983131 -23.0140095861 +6715 123.76173 62.50287 -24.29939 0.00396 -24.29939 -22.5699592408 -23.0023177792 +6720 123.60123 62.42262 -24.28636 0.00397 -24.28636 -22.5587363838 -22.9906431338 +6725 123.44139 62.3427 -24.27335 0.00399 -24.27335 -22.5475297542 -22.9789856589 +6730 123.2822 62.2631 -24.26035 0.00401 -24.26035 -22.5363293635 -22.9673353633 +6735 123.12366 62.18383 -24.24738 0.00402 -24.24738 -22.5251552237 -22.9557122558 +6740 122.96576 62.10488 -24.23443 0.00404 -24.23443 -22.5139973463 -22.9441063452 +6745 122.8085 62.02625 -24.22149 0.00406 -24.22149 -22.5028457432 -22.9325076402 +6750 122.65187 61.94793 -24.20858 0.00407 -24.20858 -22.4917204257 -22.9209361496 +6755 122.49586 61.86993 -24.19568 0.00409 -24.19568 -22.4806014056 -22.9093718819 +6760 122.34046 61.79223 -24.1828 0.00410 -24.1828 -22.4694986944 -22.8978248459 +6765 122.18569 61.71484 -24.16994 0.00412 -24.16994 -22.4584123034 -22.8862950501 +6770 122.03152 61.63776 -24.1571 0.00414 -24.1571 -22.4473422442 -22.8747825031 +6775 121.87795 61.56098 -24.14428 0.00415 -24.14428 -22.436288528 -22.8632872134 +6780 121.72498 61.48449 -24.13148 0.00417 -24.13148 -22.4252511662 -22.8518091896 +6785 121.57261 61.4083 -24.1187 0.00419 -24.1187 -22.4142301701 -22.84034844 +6790 121.42082 61.33241 -24.10594 0.00420 -24.10594 -22.4032255509 -22.8289049731 +6795 121.26961 61.25681 -24.09319 0.00422 -24.09319 -22.3922273199 -22.8174687973 +6800 121.11899 61.18149 -24.08046 0.00423 -24.08046 -22.381245488 -22.8060499209 +6805 120.96893 61.10647 -24.06776 0.00425 -24.06776 -22.3702900664 -22.7946583523 +6810 120.81944 61.03172 -24.05507 0.00427 -24.05507 -22.3593410662 -22.7832740997 +6815 120.67052 60.95726 -24.0424 0.00428 -24.0424 -22.3484084984 -22.7719071713 +6820 120.52216 60.88308 -24.02975 0.00430 -24.02975 -22.3374923739 -22.7605575755 +6825 120.37435 60.80917 -24.01711 0.00432 -24.01711 -22.3265827036 -22.7492153204 +6830 120.22709 60.73554 -24.0045 0.00433 -24.0045 -22.3156994984 -22.737900414 +6835 120.08038 60.66219 -23.9919 0.00435 -23.9919 -22.3048227692 -22.7265928647 +6840 119.9342 60.5891 -23.97933 0.00436 -23.97933 -22.2939725266 -22.7153126803 +6845 119.78857 60.51628 -23.96677 0.00438 -23.96677 -22.2831287814 -22.7040398691 +6850 119.64346 60.44373 -23.95422 0.00440 -23.95422 -22.2722915444 -22.6927744389 +6855 119.49889 60.37144 -23.9417 0.00441 -23.9417 -22.2614808261 -22.6815363978 +6860 119.35484 60.29942 -23.9292 0.00443 -23.9292 -22.2506866372 -22.6703157537 +6865 119.21131 60.22765 -23.91671 0.00444 -23.91671 -22.2398989882 -22.6591025146 +6870 119.06829 60.15615 -23.90424 0.00446 -23.90424 -22.2291278896 -22.6479066884 +6875 118.92579 60.0849 -23.89179 0.00448 -23.89179 -22.218373352 -22.6367282828 +6880 118.7838 60.0139 -23.87936 0.00449 -23.87936 -22.2076353857 -22.6255673057 +6885 118.64231 59.94316 -23.86695 0.00451 -23.86695 -22.1969140011 -22.614423765 +6890 118.50132 59.87266 -23.85455 0.00452 -23.85455 -22.1861992086 -22.6032876683 +6895 118.36083 59.80242 -23.84217 0.00454 -23.84217 -22.1755010185 -22.5921690234 +6900 118.22083 59.73242 -23.82981 0.00456 -23.82981 -22.1648194411 -22.5810678381 +6905 118.08132 59.66266 -23.81747 0.00457 -23.81747 -22.1541544865 -22.5699841199 +6910 117.9423 59.59315 -23.80515 0.00459 -23.80515 -22.143506165 -22.5589178765 +6915 117.80376 59.52388 -23.79284 0.00460 -23.79284 -22.1328644867 -22.5478591155 +6920 117.6657 59.45485 -23.78055 0.00462 -23.78055 -22.1222394617 -22.5368178445 +6925 117.52811 59.38605 -23.76828 0.00463 -23.76828 -22.1116311001 -22.525794071 +6930 117.39099 59.3175 -23.75603 0.00465 -23.75603 -22.1010394118 -22.5147878026 +6935 117.25435 59.24917 -23.7438 0.00467 -23.7438 -22.090464407 -22.5037990467 +6940 117.11816 59.18108 -23.73158 0.00468 -23.73158 -22.0798960954 -22.4928178108 +6945 116.98244 59.11322 -23.71938 0.00470 -23.71938 -22.069344487 -22.4818541023 +6950 116.84718 59.04559 -23.7072 0.00471 -23.7072 -22.0588095917 -22.4709079286 +6955 116.71237 58.97819 -23.69503 0.00473 -23.69503 -22.0482814193 -22.4599692971 +6960 116.57801 58.91101 -23.68288 0.00475 -23.68288 -22.0377699795 -22.4490482151 +6965 116.44411 58.84405 -23.67075 0.00476 -23.67075 -22.0272752821 -22.4381446899 +6970 116.31064 58.77732 -23.65864 0.00478 -23.65864 -22.0167973369 -22.4272587288 +6975 116.17762 58.71081 -23.64655 0.00479 -23.64655 -22.0063361535 -22.416390339 +6980 116.04504 58.64452 -23.63447 0.00481 -23.63447 -21.9958817414 -22.4055295279 +6985 115.9129 58.57845 -23.62241 0.00483 -23.62241 -21.9854441104 -22.3946863024 +6990 115.78119 58.51259 -23.61036 0.00484 -23.61036 -21.9750132699 -22.3838506699 +6995 115.64991 58.44695 -23.59834 0.00486 -23.59834 -21.9646092295 -22.3730426375 +7000 115.51905 58.38153 -23.58633 0.00487 -23.58633 -21.9542119986 -22.3622422122 +7005 115.38862 58.31631 -23.57434 0.00489 -23.57434 -21.9438315867 -22.3514594012 +7010 115.25861 58.25131 -23.56236 0.00490 -23.56236 -21.9334580032 -22.3406842115 +7015 115.12902 58.18651 -23.5504 0.00492 -23.5504 -21.9231012575 -22.3299266501 +7020 114.99985 58.12192 -23.53846 0.00494 -23.53846 -21.9127613588 -22.319186724 +7025 114.87109 58.05754 -23.52654 0.00495 -23.52654 -21.9024383165 -22.3084644402 +7030 114.74274 57.99337 -23.51463 0.00497 -23.51463 -21.8921221398 -22.2977498056 +7035 114.6148 57.9294 -23.50274 0.00498 -23.50274 -21.8818228379 -22.2870528272 +7040 114.48726 57.86563 -23.49087 0.00500 -23.49087 -21.8715404201 -22.2763735118 +7045 114.36012 57.80206 -23.47902 0.00502 -23.47902 -21.8612748955 -22.2657118662 +7050 114.23339 57.73869 -23.46718 0.00503 -23.46718 -21.8510162731 -22.2550578974 +7055 114.10705 57.67552 -23.45535 0.00505 -23.45535 -21.8407645622 -22.2444116122 +7060 113.9811 57.61255 -23.44355 0.00506 -23.44355 -21.8305397716 -22.2337930172 +7065 113.85555 57.54978 -23.43176 0.00508 -23.43176 -21.8203219104 -22.2231821193 +7070 113.73039 57.48719 -23.41999 0.00509 -23.41999 -21.8101209876 -22.2125889252 +7075 113.60561 57.42481 -23.40823 0.00511 -23.40823 -21.799927012 -22.2020034415 +7080 113.48122 57.36261 -23.39649 0.00513 -23.39649 -21.7897499927 -22.1914356751 +7085 113.35721 57.3006 -23.38477 0.00514 -23.38477 -21.7795899385 -22.1808856324 +7090 113.23358 57.23879 -23.37307 0.00516 -23.37307 -21.7694468582 -22.1703533202 +7095 113.11033 57.17716 -23.36138 0.00517 -23.36138 -21.7593107606 -22.159828745 +7100 112.98745 57.11572 -23.3497 0.00519 -23.3497 -21.7491816544 -22.1493119135 +7105 112.86494 57.05447 -23.33805 0.00520 -23.33805 -21.7390795485 -22.1388228321 +7110 112.74281 56.9934 -23.32641 0.00522 -23.32641 -21.7289844514 -22.1283415073 +7115 112.62104 56.93252 -23.31478 0.00524 -23.31478 -21.7188963719 -22.1178679457 +7120 112.49964 56.87182 -23.30318 0.00525 -23.30318 -21.7088353185 -22.1074221538 +7125 112.3786 56.8113 -23.29158 0.00527 -23.29158 -21.6987713 -22.096974138 +7130 112.25792 56.75096 -23.28001 0.00528 -23.28001 -21.6887343248 -22.0865539046 +7135 112.13761 56.6908 -23.26845 0.00530 -23.26845 -21.6787044014 -22.0761414602 +7140 112.01764 56.63082 -23.25691 0.00531 -23.25691 -21.6686915384 -22.065746811 +7145 111.89804 56.57102 -23.24538 0.00533 -23.24538 -21.6586857442 -22.0553599635 +7150 111.77878 56.51139 -23.23387 0.00535 -23.23387 -21.6486970273 -22.0449909239 +7155 111.65988 56.45194 -23.22238 0.00536 -23.22238 -21.638725396 -22.0346396986 +7160 111.54132 56.39266 -23.2109 0.00538 -23.2109 -21.6287608587 -22.0242962938 +7165 111.42312 56.33356 -23.19944 0.00539 -23.19944 -21.6188134238 -22.0139707158 +7170 111.30525 56.27463 -23.18799 0.00541 -23.18799 -21.6088730996 -22.0036529707 +7175 111.18773 56.21586 -23.17656 0.00542 -23.17656 -21.5989498943 -21.9933530649 +7180 111.07055 56.15727 -23.16515 0.00544 -23.16515 -21.5890438161 -21.9830710044 +7185 110.9537 56.09885 -23.15375 0.00546 -23.15375 -21.5791448734 -21.9727967955 +7190 110.83719 56.0406 -23.14237 0.00547 -23.14237 -21.5692630742 -21.9625404443 +7195 110.72102 55.98251 -23.131 0.00549 -23.131 -21.5593884266 -21.9522919568 +7200 110.60518 55.92459 -23.11965 0.00550 -23.11965 -21.5495309389 -21.9420613393 +7205 110.48967 55.86683 -23.10832 0.00552 -23.10832 -21.5396906191 -21.9318485976 +7210 110.37448 55.80924 -23.097 0.00553 -23.097 -21.5298574753 -21.9216437379 +7215 110.25963 55.75181 -23.08569 0.00555 -23.08569 -21.5200315154 -21.9114467662 +7220 110.1451 55.69455 -23.07441 0.00557 -23.07441 -21.5102327475 -21.9012776885 +7225 110.03089 55.63744 -23.06313 0.00558 -23.06313 -21.5004311795 -21.8911065107 +7230 109.917 55.5805 -23.05188 0.00560 -23.05188 -21.4906568194 -21.8809632389 +7235 109.80343 55.52372 -23.04064 0.00561 -23.04064 -21.480889675 -21.8708278788 +7240 109.69018 55.46709 -23.02941 0.00563 -23.02941 -21.4711297543 -21.8607004365 +7245 109.57725 55.41062 -23.0182 0.00564 -23.0182 -21.4613870651 -21.8505909178 +7250 109.46463 55.35431 -23.00701 0.00566 -23.00701 -21.4516616151 -21.8404993286 +7255 109.35232 55.29816 -22.99583 0.00568 -22.99583 -21.4419434122 -21.8304156747 +7260 109.24032 55.24216 -22.98466 0.00569 -22.98466 -21.4322324642 -21.820339962 +7265 109.12863 55.18632 -22.97352 0.00571 -22.97352 -21.4225487787 -21.8102921961 +7270 109.01725 55.13062 -22.96238 0.00572 -22.96238 -21.4128623635 -21.800242383 +7275 108.90617 55.07509 -22.95127 0.00574 -22.95127 -21.4032032262 -21.7902205283 +7280 108.7954 55.0197 -22.94016 0.00575 -22.94016 -21.3935413744 -21.7801966378 +7285 108.68493 54.96446 -22.92908 0.00577 -22.92908 -21.3839068158 -21.7702007171 +7290 108.57476 54.90938 -22.918 0.00579 -22.918 -21.374269558 -21.7602027721 +7295 108.46488 54.85444 -22.90695 0.00580 -22.90695 -21.3646596085 -21.7502328082 +7300 108.35531 54.79965 -22.89591 0.00582 -22.89591 -21.3550569748 -21.7402708313 +7305 108.24603 54.74502 -22.88488 0.00583 -22.88488 -21.3454616645 -21.7303168469 +7310 108.13705 54.69052 -22.87387 0.00585 -22.87387 -21.3358836849 -21.7203808605 +7315 108.02835 54.63618 -22.86287 0.00586 -22.86287 -21.3263130436 -21.7104528779 +7320 107.91995 54.58198 -22.85189 0.00588 -22.85189 -21.3167597479 -21.7005429045 +7325 107.81184 54.52792 -22.84092 0.00590 -22.84092 -21.3072138053 -21.6906409459 +7330 107.70401 54.47401 -22.82997 0.00591 -22.82997 -21.2976852231 -21.6807570076 +7335 107.59648 54.42024 -22.81904 0.00593 -22.81904 -21.2881740086 -21.6708910951 +7340 107.48922 54.36661 -22.80811 0.00594 -22.80811 -21.2786601692 -21.6610232139 +7345 107.38225 54.31313 -22.79721 0.00596 -22.79721 -21.2691737121 -21.6511833694 +7350 107.27556 54.25978 -22.78632 0.00597 -22.78632 -21.2596946446 -21.6413515671 +7355 107.16915 54.20658 -22.77544 0.00599 -22.77544 -21.2502229738 -21.6315278125 +7360 107.06303 54.15351 -22.76458 0.00601 -22.76458 -21.240768707 -21.6217221108 +7365 106.95717 54.10059 -22.75373 0.00602 -22.75373 -21.2313218515 -21.6119244675 +7370 106.8516 54.0478 -22.7429 0.00604 -22.7429 -21.2218924142 -21.6021448879 +7375 106.7463 53.99515 -22.73208 0.00605 -22.73208 -21.2124704023 -21.5923733774 +7380 106.64127 53.94263 -22.72128 0.00607 -22.72128 -21.203065823 -21.5826199414 +7385 106.53651 53.89026 -22.71049 0.00608 -22.71049 -21.1936686832 -21.572874585 +7390 106.43203 53.83801 -22.69971 0.00610 -22.69971 -21.1842789901 -21.5631373136 +7395 106.32781 53.78591 -22.68895 0.00612 -22.68895 -21.1749067506 -21.5534181324 +7400 106.22386 53.73393 -22.67821 0.00613 -22.67821 -21.1655519718 -21.5437170467 +7405 106.12018 53.68209 -22.66748 0.00615 -22.66748 -21.1562046605 -21.5340240617 +7410 106.01676 53.63038 -22.65676 0.00616 -22.65676 -21.1468648238 -21.5243391826 +7415 105.91361 53.57881 -22.64606 0.00618 -22.64606 -21.1375424685 -21.5146724146 +7420 105.81072 53.52736 -22.63537 0.00620 -22.63537 -21.1282276016 -21.5050137628 +7425 105.70809 53.47604 -22.6247 0.00621 -22.6247 -21.1189302298 -21.4953732325 +7430 105.60572 53.42486 -22.61404 0.00623 -22.61404 -21.1096403601 -21.4857408287 +7435 105.50361 53.3738 -22.6034 0.00624 -22.6034 -21.1003679992 -21.4761265565 +7440 105.40175 53.32288 -22.59277 0.00626 -22.59277 -21.091103154 -21.466520421 +7445 105.30016 53.27208 -22.58215 0.00627 -22.58215 -21.0818458311 -21.4569224274 +7450 105.19881 53.22141 -22.57155 0.00629 -22.57155 -21.0726060374 -21.4473425806 +7455 105.09772 53.17086 -22.56096 0.00631 -22.56096 -21.0633737796 -21.4377708857 +7460 104.99689 53.12044 -22.55039 0.00632 -22.55039 -21.0541590643 -21.4282173477 +7465 104.8963 53.07015 -22.53983 0.00634 -22.53983 -21.0449518981 -21.4186719717 +7470 104.79596 53.01998 -22.52929 0.00635 -22.52929 -21.0357622879 -21.4091447625 +7475 104.69587 52.96994 -22.51876 0.00637 -22.51876 -21.0265802401 -21.3996257252 +7480 104.59603 52.92002 -22.50824 0.00638 -22.50824 -21.0174057613 -21.3901148646 +7485 104.49644 52.87022 -22.49774 0.00640 -22.49774 -21.0082488582 -21.3806221858 +7490 104.39709 52.82055 -22.48725 0.00642 -22.48725 -20.9990995373 -21.3711376937 +7495 104.29799 52.77099 -22.47678 0.00643 -22.47678 -20.9899678051 -21.361671393 +7500 104.19912 52.72156 -22.46632 0.00645 -22.46632 -20.980843668 -21.3522132888 +7505 104.1005 52.67225 -22.45587 0.00646 -22.45587 -20.9717271327 -21.3427633858 +7510 104.00212 52.62306 -22.44544 0.00648 -22.44544 -20.9626282054 -21.333331689 +7515 103.90398 52.57399 -22.43502 0.00649 -22.43502 -20.9535368927 -21.323908203 +7520 103.80608 52.52504 -22.42461 0.00651 -22.42461 -20.944453201 -21.3144929328 +7525 103.70841 52.47621 -22.41422 0.00653 -22.41422 -20.9353871367 -21.3050958831 +7530 103.61098 52.42749 -22.40385 0.00654 -22.40385 -20.926338706 -21.2957170587 +7535 103.51379 52.37889 -22.39348 0.00656 -22.39348 -20.9172879154 -21.2863364643 +7540 103.41683 52.33041 -22.38313 0.00657 -22.38313 -20.9082547711 -21.2769741047 +7545 103.3201 52.28205 -22.3728 0.00659 -22.3728 -20.8992392796 -21.2676299846 +7550 103.2236 52.2338 -22.36248 0.00661 -22.36248 -20.8902314469 -21.2582941087 +7555 103.12734 52.18567 -22.35217 0.00662 -22.35217 -20.8812312794 -21.2489664817 +7560 103.0313 52.13765 -22.34187 0.00664 -22.34187 -20.8722387833 -21.2396471082 +7565 102.93549 52.08975 -22.33159 0.00665 -22.33159 -20.8632639648 -21.230345993 +7570 102.83991 52.04196 -22.32132 0.00667 -22.32132 -20.8542968301 -21.2210531406 +7575 102.74456 51.99428 -22.31107 0.00668 -22.31107 -20.8453473854 -21.2117785556 +7580 102.64943 51.94672 -22.30083 0.00670 -22.30083 -20.8364056367 -21.2025122428 +7585 102.55453 51.89926 -22.2906 0.00672 -22.2906 -20.8274715903 -21.1932542066 +7590 102.45985 51.85192 -22.28039 0.00673 -22.28039 -20.8185552521 -21.1840144516 +7595 102.36539 51.80469 -22.27019 0.00675 -22.27019 -20.8096466283 -21.1747829824 +7600 102.27115 51.75758 -22.26 0.00676 -22.26 -20.8007457249 -21.1655598035 +7605 102.17713 51.71057 -22.24983 0.00678 -22.24983 -20.791862548 -21.1563549195 +7610 102.08334 51.66367 -22.23967 0.00680 -22.23967 -20.7829871036 -21.1471583348 +7615 101.98976 51.61688 -22.22952 0.00681 -22.22952 -20.7741193976 -21.1379700539 +7620 101.8964 51.5702 -22.21939 0.00683 -22.21939 -20.765269436 -21.1288000814 +7625 101.80325 51.52363 -22.20927 0.00684 -22.20927 -20.7564272248 -21.1196384217 +7630 101.71032 51.47716 -22.19916 0.00686 -22.19916 -20.7475927698 -21.1104850792 +7635 101.61761 51.4308 -22.18907 0.00687 -22.18907 -20.7387760771 -21.1013500583 +7640 101.52511 51.38455 -22.17899 0.00689 -22.17899 -20.7299671524 -21.0922233635 +7645 101.43282 51.33841 -22.16892 0.00691 -22.16892 -20.7211660017 -21.0831049991 +7650 101.34074 51.29237 -22.15887 0.00692 -22.15887 -20.7123826308 -21.0740049696 +7655 101.24888 51.24644 -22.14883 0.00694 -22.14883 -20.7036070455 -21.0649132794 +7660 101.15722 51.20061 -22.1388 0.00695 -22.1388 -20.6948392516 -21.0558299326 +7665 101.06577 51.15489 -22.12879 0.00697 -22.12879 -20.6860892548 -21.0467649338 +7670 100.97454 51.10927 -22.11879 0.00699 -22.11879 -20.6773470611 -21.0377082872 +7675 100.8835 51.06375 -22.1088 0.00700 -22.1088 -20.668612676 -21.0286599971 +7680 100.79268 51.01834 -22.09882 0.00702 -22.09882 -20.6598861053 -21.0196200678 +7685 100.70206 50.97303 -22.08886 0.00703 -22.08886 -20.6511773548 -21.0105985036 +7690 100.61165 50.92782 -22.07891 0.00705 -22.07891 -20.64247643 -21.0015853088 +7695 100.52143 50.88272 -22.06897 0.00706 -22.06897 -20.6337833367 -20.9925804876 +7700 100.43143 50.83771 -22.05905 0.00708 -22.05905 -20.6251080806 -20.9835940441 +7705 100.34162 50.79281 -22.04914 0.00710 -22.04914 -20.6164406671 -20.9746159828 +7710 100.25201 50.74801 -22.03924 0.00711 -22.03924 -20.607781102 -20.9656463077 +7715 100.16261 50.7033 -22.02936 0.00713 -22.02936 -20.5991393907 -20.956695023 +7720 100.0734 50.6587 -22.01948 0.00714 -22.01948 -20.590495539 -20.947742133 +7725 99.9844 50.6142 -22.00962 0.00716 -22.00962 -20.5818695523 -20.9388076417 +7730 99.89559 50.56979 -21.99978 0.00718 -21.99978 -20.5732614361 -20.9298915533 +7735 99.80698 50.52549 -21.98994 0.00719 -21.98994 -20.564651196 -20.920973872 +7740 99.71856 50.48128 -21.98012 0.00721 -21.98012 -20.5560588374 -20.9120746019 +7745 99.63034 50.43717 -21.97031 0.00722 -21.97031 -20.5474743658 -20.903183747 +7750 99.54231 50.39316 -21.96052 0.00724 -21.96052 -20.5389077867 -20.8943113114 +7755 99.45448 50.34924 -21.95073 0.00726 -21.95073 -20.5303391055 -20.8854372993 +7760 99.36684 50.30542 -21.94096 0.00727 -21.94096 -20.5217883277 -20.8765817147 +7765 99.2794 50.2617 -21.93121 0.00729 -21.93121 -20.5132554585 -20.8677445616 +7770 99.19214 50.21807 -21.92146 0.00730 -21.92146 -20.5047205034 -20.8589058441 +7775 99.10507 50.17454 -21.91173 0.00732 -21.91173 -20.4962034677 -20.8500855661 +7780 99.0182 50.1311 -21.90201 0.00734 -21.90201 -20.4876943568 -20.8412737317 +7785 98.93151 50.08776 -21.8923 0.00735 -21.8923 -20.479193176 -20.832470345 +7790 98.84501 50.04451 -21.8826 0.00737 -21.8826 -20.4706999306 -20.8236754097 +7795 98.7587 50.00135 -21.87292 0.00738 -21.87292 -20.4622246259 -20.81489893 +7800 98.67258 49.95829 -21.86325 0.00740 -21.86325 -20.4537572671 -20.8061309098 +7805 98.58664 49.91532 -21.85359 0.00742 -21.85359 -20.4452978596 -20.7973713529 +7810 98.50089 49.87244 -21.84395 0.00743 -21.84395 -20.4368564085 -20.7886302634 +7815 98.41532 49.82966 -21.83431 0.00745 -21.83431 -20.428412919 -20.7798876451 +7820 98.32993 49.78697 -21.82469 0.00746 -21.82469 -20.4199873963 -20.771163502 +7825 98.24473 49.74436 -21.81508 0.00748 -21.81508 -20.4115698457 -20.7624478379 +7830 98.15971 49.70185 -21.80549 0.00750 -21.80549 -20.4031702723 -20.7537506566 +7835 98.07487 49.65944 -21.7959 0.00751 -21.7959 -20.3947686812 -20.7450519622 +7840 97.99021 49.61711 -21.78633 0.00753 -21.78633 -20.3863850775 -20.7363717583 +7845 97.90574 49.57487 -21.77677 0.00754 -21.77677 -20.3780094664 -20.7277000488 +7850 97.82144 49.53272 -21.76722 0.00756 -21.76722 -20.3696418529 -20.7190368375 +7855 97.73732 49.49066 -21.75769 0.00758 -21.75769 -20.3612922422 -20.7103921283 +7860 97.65338 49.44869 -21.74816 0.00759 -21.74816 -20.3529406392 -20.701745925 +7865 97.56961 49.40681 -21.73865 0.00761 -21.73865 -20.344607049 -20.6931182312 +7870 97.48603 49.36501 -21.72915 0.00762 -21.72915 -20.3362814767 -20.6844990509 +7875 97.40261 49.32331 -21.71966 0.00764 -21.71966 -20.3279639272 -20.6758883877 +7880 97.31938 49.28169 -21.71019 0.00766 -21.71019 -20.3196644056 -20.6672962453 +7885 97.23632 49.24016 -21.70073 0.00767 -21.70073 -20.3113729168 -20.6587126276 +7890 97.15343 49.19871 -21.69127 0.00769 -21.69127 -20.3030794657 -20.6501275381 +7895 97.07071 49.15736 -21.68184 0.00770 -21.68184 -20.2948140573 -20.6415709808 +7900 96.98817 49.11608 -21.67241 0.00772 -21.67241 -20.2865466965 -20.6330129591 +7905 96.9058 49.0749 -21.66299 0.00774 -21.66299 -20.2782873883 -20.6244634768 +7910 96.8236 49.0338 -21.65359 0.00775 -21.65359 -20.2700461375 -20.6159325376 +7915 96.74157 48.99279 -21.6442 0.00777 -21.6442 -20.2618129489 -20.6074101451 +7920 96.65971 48.95186 -21.63482 0.00778 -21.63482 -20.2535878275 -20.598896303 +7925 96.57802 48.91101 -21.62545 0.00780 -21.62545 -20.2453707781 -20.5903910148 +7930 96.4965 48.87025 -21.61609 0.00782 -21.61609 -20.2371618055 -20.5818942843 +7935 96.41515 48.82957 -21.60675 0.00783 -21.60675 -20.2289709145 -20.573416115 +7940 96.33396 48.78898 -21.59742 0.00785 -21.59742 -20.2207881099 -20.5649465105 +7945 96.25294 48.74847 -21.5881 0.00787 -21.5881 -20.2126133965 -20.5564854744 +7950 96.17209 48.70804 -21.57879 0.00788 -21.57879 -20.2044467791 -20.5480330102 +7955 96.0914 48.6677 -21.56949 0.00790 -21.56949 -20.1962882623 -20.5395891216 +7960 96.01088 48.62744 -21.56021 0.00791 -21.56021 -20.188147851 -20.531163812 +7965 95.93052 48.58726 -21.55093 0.00793 -21.55093 -20.1800055498 -20.522737085 +7970 95.85032 48.54716 -21.54167 0.00795 -21.54167 -20.1718813634 -20.5143289442 +7975 95.77029 48.50714 -21.53242 0.00796 -21.53242 -20.1637652965 -20.505929393 +7980 95.69042 48.46721 -21.52318 0.00798 -21.52318 -20.1556573538 -20.4975384349 +7985 95.61071 48.42736 -21.51395 0.00799 -21.51395 -20.1475575399 -20.4891560735 +7990 95.53116 48.38758 -21.50474 0.00801 -21.50474 -20.1394758595 -20.4807923121 +7995 95.45178 48.34789 -21.49553 0.00803 -21.49553 -20.1313923171 -20.4724271543 +8000 95.37255 48.30827 -21.48634 0.00804 -21.48634 -20.1233269175 -20.4640806035 +8005 95.29348 48.26874 -21.47716 0.00806 -21.47716 -20.1152696651 -20.4557426632 +8010 95.21457 48.22929 -21.46799 0.00808 -21.46799 -20.1072205646 -20.4474133368 +8015 95.13582 48.18991 -21.45883 0.00809 -21.45883 -20.0991796204 -20.4390926277 +8020 95.05723 48.15061 -21.44968 0.00811 -21.44968 -20.0911468373 -20.4307805393 +8025 94.97879 48.1114 -21.44055 0.00812 -21.44055 -20.0831322196 -20.422487075 +8030 94.90051 48.07226 -21.43142 0.00814 -21.43142 -20.0751157719 -20.4141922383 +8035 94.82239 48.03319 -21.42231 0.00816 -21.42231 -20.0671174987 -20.4059160324 +8040 94.74442 47.99421 -21.41321 0.00817 -21.41321 -20.0591274045 -20.3976484607 +8045 94.66661 47.9553 -21.40412 0.00819 -21.40412 -20.0511454938 -20.3893895267 +8050 94.58895 47.91647 -21.39504 0.00821 -21.39504 -20.043171771 -20.3811392336 +8055 94.51144 47.87772 -21.38597 0.00822 -21.38597 -20.0352062405 -20.3728975847 +8060 94.43409 47.83904 -21.37691 0.00824 -21.37691 -20.0272489068 -20.3646645834 +8065 94.35689 47.80044 -21.36787 0.00825 -21.36787 -20.0193097743 -20.3564502331 +8070 94.27984 47.76192 -21.35883 0.00827 -21.35883 -20.0113688474 -20.3482345369 +8075 94.20294 47.72347 -21.34981 0.00829 -21.34981 -20.0034461304 -20.3400374982 +8080 94.1262 47.6851 -21.3408 0.00830 -21.3408 -19.9955316278 -20.3318491203 +8085 94.0496 47.6468 -21.3318 0.00832 -21.3318 -19.9876253439 -20.3236694064 +8090 93.97316 47.60858 -21.32281 0.00834 -21.32281 -19.9797272831 -20.3154983598 +8095 93.89686 47.57043 -21.31383 0.00835 -21.31383 -19.9718374496 -20.3073359837 +8100 93.82071 47.53236 -21.30486 0.00837 -21.30486 -19.9639558478 -20.2991822814 +8105 93.74471 47.49436 -21.29591 0.00838 -21.29591 -19.9560924819 -20.291047256 +8110 93.66886 47.45643 -21.28696 0.00840 -21.28696 -19.9482273564 -20.2829109109 +8115 93.59316 47.41858 -21.27803 0.00842 -21.27803 -19.9403804753 -20.2747932492 +8120 93.5176 47.3808 -21.26911 0.00843 -21.26911 -19.9325418431 -20.266684274 +8125 93.44219 47.34309 -21.26019 0.00845 -21.26019 -19.9247014639 -20.2585739887 +8130 93.36692 47.30546 -21.25129 0.00847 -21.25129 -19.9168793419 -20.2504823963 +8135 93.2918 47.2679 -21.2424 0.00848 -21.2424 -19.9090654815 -20.2423995 +8140 93.21682 47.23041 -21.23352 0.00850 -19.2351276132 -19.9012598867 -20.234325303 +8145 93.14199 47.193 -21.22466 0.00852 -19.2278766312 -19.8934725618 -20.2262698084 +8150 93.0673 47.15565 -21.2158 0.00853 -19.2206230603 -19.885683511 -20.2182130193 +8155 92.99276 47.11838 -21.20695 0.00855 -19.2133769066 -19.8779027383 -20.2101649389 +8160 92.91835 47.08118 -21.19812 0.00856 -19.2061481765 -19.870140248 -20.2021355703 +8165 92.84409 47.04405 -21.18929 0.00858 -19.1989168761 -19.8623760443 -20.1941049165 +8170 92.76998 47.00699 -21.18048 0.00860 -19.1917030116 -19.8546301311 -20.1860929807 +8175 92.696 46.97 -21.17167 0.00861 -19.1844865892 -19.8468825127 -20.178079766 +8180 92.62216 46.93308 -21.16288 0.00863 -19.1772876151 -19.8391531931 -20.1700852753 +8185 92.54846 46.89623 -21.1541 0.00865 -19.1700960952 -19.8314321764 -20.1620995119 +8190 92.47491 46.85945 -21.14533 0.00866 -19.1629120358 -19.8237194666 -20.1541224787 +8195 92.40149 46.82274 -21.13657 0.00868 -19.155735443 -19.8160150679 -20.1461541788 +8200 92.32821 46.7861 -21.12782 0.00870 -19.1485663227 -19.8083189843 -20.1381946152 +8205 92.25507 46.74953 -21.11908 0.00871 -19.1414046811 -19.8006312198 -20.1302437909 +8210 92.18206 46.71303 -21.11035 0.00873 -19.1342505242 -19.7929517785 -20.1223017089 +8215 92.1092 46.6766 -21.10163 0.00874 -19.1271038579 -19.7852806642 -20.1143683724 +8220 92.03647 46.64023 -21.09292 0.00876 -19.1199646883 -19.7776178811 -20.1064437841 +8225 91.96388 46.60394 -21.08423 0.00878 -19.1128430214 -19.7699734331 -20.0985379472 +8230 91.89142 46.56771 -21.07554 0.00879 -19.105718863 -19.7623273241 -20.0906308646 +8235 91.8191 46.53155 -21.06687 0.00881 -19.0986122192 -19.7546995582 -20.0827425393 +8240 91.74691 46.49546 -21.0582 0.00883 -19.0915030958 -19.7470701392 -20.0748529742 +8245 91.67486 46.45943 -21.04955 0.00884 -19.0844114987 -19.7394590712 -20.0669821723 +8250 91.60294 46.42347 -21.0409 0.00886 -19.0773174339 -19.7318463579 -20.0591101365 +8255 91.53116 46.38758 -21.03227 0.00888 -19.0702409071 -19.7242520034 -20.0512568697 +8260 91.45951 46.35175 -21.02365 0.00889 -19.0631719242 -19.7166660115 -20.0434123749 +8265 91.38799 46.316 -21.01503 0.00891 -19.056100491 -19.7090783861 -20.035566655 +8270 91.31661 46.2803 -21.00643 0.00893 -19.0490466134 -19.701509131 -20.0277397128 +8275 91.24535 46.24468 -20.99784 0.00894 -19.042000297 -19.6939482502 -20.0199215513 +8280 91.17423 46.20912 -20.98926 0.00896 -19.0349615477 -19.6863957474 -20.0121121734 +8285 91.10324 46.17362 -20.98069 0.00898 -19.0279303713 -19.6788516265 -20.0043115818 +8290 91.03238 46.13819 -20.97213 0.00899 -19.0209067734 -19.6713158913 -19.9965197796 +8295 90.96165 46.10283 -20.96358 0.00901 -19.0138907598 -19.6637885456 -19.9887367695 +8300 90.89105 46.06753 -20.95504 0.00903 -19.0068823361 -19.6562695933 -19.9809625544 +8305 90.82058 46.03229 -20.94651 0.00904 -18.999881508 -19.648759038 -19.9731971371 +8310 90.75024 45.99712 -20.93799 0.00906 -18.9928882812 -19.6412568836 -19.9654405204 +8315 90.68003 45.96201 -20.92948 0.00908 -18.9859026614 -19.6337631338 -19.9576927073 +8320 90.60994 45.92697 -20.92098 0.00909 -18.9789246541 -19.6262777925 -19.9499537004 +8325 90.53998 45.89199 -20.91249 0.00911 -18.9719542649 -19.6188008632 -19.9422235026 +8330 90.47015 45.85708 -20.90401 0.00912 -18.9649914995 -19.6113323497 -19.9345021167 +8335 90.40045 45.82222 -20.89554 0.00914 -18.9580363634 -19.6038722558 -19.9267895454 +8340 90.33087 45.78744 -20.88709 0.00916 -18.9510988621 -19.5964305852 -19.9190957916 +8345 90.26142 45.75271 -20.87864 0.00917 -18.9441590013 -19.5889873415 -19.911400858 +8350 90.1921 45.71805 -20.8702 0.00919 -18.9372267863 -19.5815525284 -19.9037147474 +8355 90.1229 45.68345 -20.86177 0.00921 -18.9303022228 -19.5741261496 -19.8960374624 +8360 90.05382 45.64891 -20.85335 0.00922 -18.9233853162 -19.5667082087 -19.888369006 +8365 89.98487 45.61443 -20.84495 0.00924 -18.9164860719 -19.5593087094 -19.8807193807 +8370 89.91604 45.58002 -20.83655 0.00926 -18.9095844954 -19.5519076553 -19.8730685893 +8375 89.84734 45.54567 -20.82816 0.00927 -18.9026905922 -19.5445150501 -19.8654266346 +8380 89.77876 45.51138 -20.81978 0.00929 -18.8958043677 -19.5371308973 -19.8577935192 +8385 89.7103 45.47715 -20.81141 0.00931 -18.8889258272 -19.5297552006 -19.8501692458 +8390 89.64197 45.44298 -20.80306 0.00932 -18.8820649761 -19.5223979635 -19.8425638172 +8395 89.57375 45.40888 -20.79471 0.00934 -18.8752018198 -19.5150391896 -19.834957236 +8400 89.50566 45.37483 -20.78637 0.00936 -18.8683463637 -19.5076888825 -19.8273595049 +8405 89.43769 45.34085 -20.77804 0.00937 -18.8614986131 -19.5003470457 -19.8197706265 +8410 89.36984 45.30692 -20.76973 0.00939 -18.8546685732 -19.4930236828 -19.8122006035 +8415 89.30211 45.27306 -20.76142 0.00941 -18.8478362495 -19.4856987973 -19.8046294386 +8420 89.23451 45.23925 -20.75312 0.00942 -18.8410116472 -19.4783823927 -19.7970671344 +8425 89.16702 45.20551 -20.74483 0.00944 -18.8341947715 -19.4710744726 -19.7895136935 +8430 89.09965 45.17182 -20.73655 0.00946 -18.8273856277 -19.4637750404 -19.7819691186 +8435 89.0324 45.1382 -20.72828 0.00947 -18.820584221 -19.4564840997 -19.7744334122 +8440 88.96527 45.10463 -20.72002 0.00949 -18.8137905567 -19.4492016538 -19.7669065771 +8445 88.89825 45.07113 -20.71178 0.00951 -18.8070146399 -19.4419377064 -19.7593986157 +8450 88.83136 45.03768 -20.70354 0.00952 -18.8002364758 -19.4346722607 -19.7518895307 +8455 88.76458 45.00429 -20.69531 0.00954 -18.7934660697 -19.4274153204 -19.7443893247 +8460 88.69792 44.97096 -20.68709 0.00956 -18.7867034267 -19.4201668887 -19.7368980002 +8465 88.63137 44.93769 -20.67888 0.00958 -18.7799485518 -19.4129269692 -19.7294155598 +8470 88.56495 44.90447 -20.67068 0.00959 -18.7732014503 -19.4056955653 -19.7219420061 +8475 88.49864 44.87132 -20.66249 0.00961 -18.7664621271 -19.3984726803 -19.7144773416 +8480 88.43244 44.83822 -20.6543 0.00963 -18.7597205876 -19.3912483177 -19.7070115689 +8485 88.36636 44.80518 -20.64613 0.00964 -18.7529968366 -19.3840424808 -19.6995646904 +8490 88.30039 44.7722 -20.63797 0.00966 -18.7462808792 -19.3768451731 -19.6921267089 +8495 88.23454 44.73927 -20.62982 0.00968 -18.7395727206 -19.3696563978 -19.6846976267 +8500 88.16881 44.7064 -20.62168 0.00969 -18.7328723657 -19.3624761583 -19.6772774463 +8505 88.10318 44.67359 -20.61354 0.00971 -18.7261698196 -19.3552944581 -19.6698561704 +8510 88.03767 44.64084 -20.60542 0.00973 -18.7194850872 -19.3481313003 -19.6624538013 +8515 87.97228 44.60814 -20.5973 0.00974 -18.7127981735 -19.3409666884 -19.6550503416 +8520 87.907 44.5755 -20.5892 0.00976 -18.7061290835 -19.3338206256 -19.6476657938 +8525 87.84183 44.54291 -20.58111 0.00978 -18.6994678222 -19.3266831152 -19.6402901603 +8530 87.77677 44.51038 -20.57302 0.00979 -18.6928043945 -19.3195441606 -19.6329134436 +8535 87.71182 44.47791 -20.56494 0.00981 -18.6861488053 -19.312413765 -19.6255456461 +8540 87.64699 44.44549 -20.55688 0.00983 -18.6795110595 -19.3053019317 -19.6181967704 +8545 87.58226 44.41313 -20.54882 0.00984 -18.672871162 -19.2981886639 -19.6108468189 +8550 87.51765 44.38083 -20.54077 0.00986 -18.6662391178 -19.291083965 -19.6035057939 +8555 87.45315 44.34857 -20.53273 0.00988 -18.6596149316 -19.2839878381 -19.596173698 +8560 87.38876 44.31638 -20.52471 0.00990 -18.6530086083 -19.2769102864 -19.5888605336 +8565 87.32448 44.28424 -20.51669 0.00991 -18.6464001527 -19.2698313133 -19.581546303 +8570 87.2603 44.25215 -20.50868 0.00993 -18.6397995697 -19.2627609219 -19.5742410088 +8575 87.19624 44.22012 -20.50067 0.00995 -18.6331968641 -19.2556891155 -19.5669346532 +8580 87.13229 44.18814 -20.49268 0.00996 -18.6266120407 -19.2486358971 -19.5596472387 +8585 87.06844 44.15622 -20.4847 0.00998 -18.6200351042 -19.2415912701 -19.5523687677 +8590 87.0047 44.12435 -20.47673 0.01000 -18.6134660594 -19.2345552375 -19.5450992426 +8595 86.94107 44.09254 -20.46876 0.01001 -18.606894911 -19.2275178026 -19.5378286657 +8600 86.87755 44.06078 -20.46081 0.01003 -18.6003416639 -19.2204989685 -19.5305770394 +8605 86.81414 44.02907 -20.45287 0.01005 -18.5937963226 -19.2134887383 -19.523334366 +8610 86.75083 43.99741 -20.44493 0.01006 -18.587248892 -19.2064771152 -19.516090648 +8615 86.68763 43.96581 -20.437 0.01008 -18.5807093766 -19.1994741023 -19.5088558876 +8620 86.62453 43.93427 -20.42909 0.01010 -18.5741877813 -19.1924897027 -19.5016400873 +8625 86.56155 43.90277 -20.42118 0.01012 -18.5676641106 -19.1855039196 -19.4944232492 +8630 86.49866 43.87133 -20.41328 0.01013 -18.5611483692 -19.178526756 -19.4872153759 +8635 86.43589 43.83994 -20.40539 0.01015 -18.5546405617 -19.1715582151 -19.4800164695 +8640 86.37321 43.80861 -20.39751 0.01017 -18.5481406928 -19.1645982998 -19.4728265323 +8645 86.31065 43.77732 -20.38964 0.01018 -18.541648767 -19.1576470134 -19.4656455668 +8650 86.24818 43.74609 -20.38177 0.01020 -18.535154789 -19.1506943588 -19.4584635752 +8655 86.18582 43.71491 -20.37392 0.01022 -18.5286787633 -19.143760339 -19.4513005597 +8660 86.12357 43.68378 -20.36607 0.01023 -18.5222006946 -19.1368249573 -19.4441365227 +8665 86.06142 43.65271 -20.35824 0.01025 -18.5157405873 -19.1299082165 -19.4369914664 +8670 85.99937 43.62168 -20.35041 0.01027 -18.5092784459 -19.1229901197 -19.4298453932 +8675 85.93742 43.59071 -20.3426 0.01029 -18.5028342752 -19.1160906699 -19.4227183052 +8680 85.87558 43.55979 -20.33479 0.01030 -18.4963880794 -19.1091898702 -19.4155902047 +8685 85.81384 43.52892 -20.32699 0.01032 -18.4899498632 -19.1022977235 -19.408471094 +8690 85.7522 43.4981 -20.3192 0.01034 -18.483519631 -19.0954142329 -19.4013609753 +8695 85.69067 43.46733 -20.31142 0.01035 -18.4770973874 -19.0885394012 -19.3942598509 +8700 85.62923 43.43662 -20.30364 0.01037 -18.4706731367 -19.0816632315 -19.387157723 +8705 85.5679 43.40595 -20.29588 0.01039 -18.4642668833 -19.0748057268 -19.3800745938 +8710 85.50667 43.37533 -20.28813 0.01041 -18.4578686319 -19.06795689 -19.3730004655 +8715 85.44553 43.34477 -20.28038 0.01042 -18.4514683867 -19.061106724 -19.3659253404 +8720 85.3845 43.31425 -20.27264 0.01044 -18.4450761521 -19.0542652318 -19.3588592206 +8725 85.32357 43.28379 -20.26492 0.01046 -18.4387019326 -19.0474424163 -19.3518121083 +8730 85.26274 43.25337 -20.2572 0.01047 -18.4323257326 -19.0406182805 -19.3447640058 +8735 85.20201 43.223 -20.24949 0.01049 -18.4259575564 -19.0338028272 -19.3377249151 +8740 85.14137 43.19269 -20.24178 0.01051 -18.4195874083 -19.0269860593 -19.3306848386 +8745 85.08084 43.16242 -20.23409 0.01053 -18.4132352928 -19.0201879798 -19.3236637783 +8750 85.0204 43.1322 -20.22641 0.01054 -18.4068912141 -19.0133985916 -19.3166517365 +8755 84.96007 43.10203 -20.21873 0.01056 -18.4005451766 -19.0066078974 -19.3096387153 +8760 84.89983 43.07191 -20.21107 0.01058 -18.3942171845 -18.9998359003 -19.3026447167 +8765 84.83969 43.04184 -20.20341 0.01059 -18.3878872422 -18.993062603 -19.2956497431 +8770 84.77964 43.01182 -20.19576 0.01061 -18.3815653539 -18.9862980084 -19.2886637965 +8775 84.7197 42.98185 -20.18812 0.01063 -18.3752515239 -18.9795421193 -19.2816868791 +8780 84.65985 42.95192 -20.18049 0.01065 -18.3689457565 -18.9727949386 -19.2747189929 +8785 84.60009 42.92205 -20.17287 0.01066 -18.3626480559 -18.9660564691 -19.2677601402 +8790 84.54044 42.89222 -20.16525 0.01068 -18.3563484264 -18.9593167137 -19.260800323 +8795 84.48088 42.86244 -20.15765 0.01070 -18.3500668721 -18.9525956751 -19.2538595434 +8800 84.42141 42.83271 -20.15005 0.01071 -18.3437833972 -18.9458733561 -19.2469178036 +8805 84.36204 42.80302 -20.14246 0.01073 -18.337508006 -18.9391597596 -19.2399851056 +8810 84.30277 42.77339 -20.13488 0.01075 -18.3312407026 -18.9324548883 -19.2330614515 +8815 84.24359 42.7438 -20.12731 0.01077 -18.3249814913 -18.925758745 -19.2261468434 +8820 84.18451 42.71425 -20.11975 0.01078 -18.3187303761 -18.9190713325 -19.2192412834 +8825 84.12552 42.68476 -20.1122 0.01080 -18.3124873612 -18.9123926536 -19.2123447736 +8830 84.06662 42.65531 -20.10465 0.01082 -18.3062424507 -18.9057127109 -19.2054473159 +8835 84.00782 42.62591 -20.09711 0.01084 -18.3000056488 -18.8990415073 -19.1985589126 +8840 83.94912 42.59656 -20.08959 0.01085 -18.2937869595 -18.8923890455 -19.1916895656 +8845 83.8905 42.56725 -20.08207 0.01087 -18.287566387 -18.8857353282 -19.184819277 +8850 83.83198 42.53799 -20.07455 0.01089 -18.2813439354 -18.8790803581 -19.1779480489 +8855 83.77356 42.50878 -20.06705 0.01090 -18.2751396087 -18.872444138 -19.1710958832 +8860 83.71522 42.47961 -20.05956 0.01092 -18.268943411 -18.8658166705 -19.164252782 +8865 83.65698 42.45049 -20.05207 0.01094 -18.2627453463 -18.8591879584 -19.1574087473 +8870 83.59883 42.42142 -20.0446 0.01096 -18.2565654186 -18.8525780044 -19.1505837812 +8875 83.54078 42.39239 -20.03713 0.01097 -18.2503836321 -18.845966811 -19.1437578856 +8880 83.48281 42.3634 -20.02967 0.01099 -18.2442099907 -18.8393643812 -19.1369410625 +8885 83.42494 42.33447 -20.02221 0.01101 -18.2380344984 -18.8327607173 -19.1301233141 +8890 83.36715 42.30558 -20.01477 0.01103 -18.2318771592 -18.8261758223 -19.1233246422 +8895 83.30946 42.27673 -20.00734 0.01104 -18.2257279771 -18.8195996986 -19.1165350489 +8900 83.25186 42.24793 -19.99991 0.01106 -18.219576956 -18.813022349 -19.109744536 +8905 83.19435 42.21917 -19.99249 0.01108 -18.2134341 -18.806453776 -19.1029631058 +8910 83.13693 42.19046 -19.98508 0.01110 -18.2072994129 -18.7998939824 -19.0961907599 +8915 83.0796 42.1618 -19.97768 0.01111 -18.2011728987 -18.7933429707 -19.0894275006 +8920 83.02236 42.13318 -19.97028 0.01113 -18.1950445613 -18.7867907436 -19.0826633297 +8925 82.96521 42.1046 -19.9629 0.01115 -18.1889344047 -18.7802573036 -19.0759182491 +8930 82.90815 42.07607 -19.95552 0.01117 -18.1828224327 -18.7737226534 -19.0691722608 +8935 82.85117 42.04759 -19.94815 0.01118 -18.1767186492 -18.7671967955 -19.0624353669 +8940 82.79429 42.01914 -19.94079 0.01120 -18.1706230582 -18.7606797326 -19.0557075691 +8945 82.73749 41.99075 -19.93344 0.01122 -18.1645356633 -18.7541714672 -19.0489888695 +8950 82.68079 41.96239 -19.9261 0.01124 -18.1584564687 -18.7476720019 -19.0422792699 +8955 82.62417 41.93408 -19.91876 0.01125 -18.152375478 -18.7411713393 -19.0355687724 +8960 82.56764 41.90582 -19.91143 0.01127 -18.1463026951 -18.7346794818 -19.0288673787 +8965 82.5112 41.8776 -19.90411 0.01129 -18.1402381238 -18.7281964321 -19.0221750909 +8970 82.45484 41.84942 -19.8968 0.01131 -18.134181768 -18.7217221928 -19.0154919108 +8975 82.39857 41.82129 -19.8895 0.01132 -18.1281336314 -18.7152567662 -19.0088178403 +8980 82.34239 41.79319 -19.8822 0.01134 -18.1220837179 -18.708790155 -19.0021428813 +8985 82.28629 41.76515 -19.87492 0.01136 -18.1160520311 -18.7023423617 -18.9954870358 +8990 82.23029 41.73714 -19.86764 0.01138 -18.110018575 -18.6958933888 -18.9888303056 +8995 82.17436 41.70918 -19.86037 0.01139 -18.1039933532 -18.6894532389 -18.9821826925 +9000 82.11853 41.68126 -19.8531 0.01141 -18.0979663696 -18.6830119143 -18.9755341985 +9005 82.06278 41.65339 -19.84585 0.01143 -18.0919576277 -18.6765894176 -18.9689048255 +9010 82.00711 41.62556 -19.8386 0.01145 -18.0859471314 -18.6701657513 -18.9622745752 +9015 81.95153 41.59777 -19.83136 0.01146 -18.0799448844 -18.6637509178 -18.9556534495 +9020 81.89604 41.57002 -19.82413 0.01148 -18.0739508904 -18.6573449197 -18.9490414504 +9025 81.84063 41.54231 -19.81691 0.01150 -18.0679651531 -18.6509477594 -18.9424385796 +9030 81.7853 41.51465 -19.8097 0.01152 -18.0619876761 -18.6445594393 -18.935844839 +9035 81.73006 41.48703 -19.80249 0.01153 -18.0560084632 -18.638169962 -18.9292502304 +9040 81.67491 41.45945 -19.79529 0.01155 -18.050037518 -18.6317893298 -18.9226647557 +9045 81.61984 41.43192 -19.7881 0.01157 -18.0440748442 -18.6254175451 -18.9160884167 +9050 81.56485 41.40442 -19.78092 0.01159 -18.0381204453 -18.6190546105 -18.9095212152 +9055 81.50994 41.37697 -19.77374 0.01160 -18.0321643251 -18.6126905283 -18.902953153 +9060 81.45512 41.34956 -19.76658 0.01162 -18.0262264872 -18.606345301 -18.896404232 +9065 81.40038 41.32219 -19.75942 0.01164 -18.0202869351 -18.5999989309 -18.8898544539 +9070 81.34573 41.29486 -19.75227 0.01166 -18.0143556726 -18.5936614204 -18.8833138205 +9075 81.29116 41.26758 -19.74512 0.01167 -18.0084227031 -18.5873227721 -18.8767723337 +9080 81.23667 41.24033 -19.73799 0.01169 -18.0025080303 -18.5810029882 -18.8702499952 +9085 81.18226 41.21313 -19.73086 0.01171 -17.9965916577 -18.5746820711 -18.8637268069 +9090 81.12793 41.18597 -19.72374 0.01173 -17.9906835889 -18.5683700232 -18.8572127704 +9095 81.07369 41.15884 -19.71663 0.01174 -17.9847838274 -18.5620668469 -18.8507078876 +9100 81.01953 41.13176 -19.70953 0.01176 -17.9788923769 -18.5557725445 -18.8442121603 +9105 80.96545 41.10472 -19.70243 0.01178 -17.9729992408 -18.5494771184 -18.8377155902 +9110 80.91145 41.07772 -19.69534 0.01180 -17.9671144226 -18.5431905709 -18.8312281791 +9115 80.85753 41.05076 -19.68826 0.01182 -17.9612379259 -18.5369129045 -18.8247499288 +9120 80.80369 41.02385 -19.68119 0.01183 -17.9553697542 -18.5306441213 -18.8182808409 +9125 80.74993 40.99697 -19.67412 0.01185 -17.9494999109 -18.5243742238 -18.8118109172 +9130 80.69626 40.97013 -19.66707 0.01187 -17.9436483996 -18.5181232143 -18.8053601596 +9135 80.64266 40.94333 -19.66002 0.01189 -17.9377952237 -18.5118710951 -18.7989085696 +9140 80.58914 40.91657 -19.65297 0.01190 -17.9319403867 -18.5056178684 -18.7924561491 +9145 80.53571 40.88985 -19.64594 0.01192 -17.926103892 -18.4993835367 -18.7860228998 +9150 80.48235 40.86318 -19.63891 0.01194 -17.9202657432 -18.4931481022 -18.7795888234 +9155 80.42907 40.83654 -19.6319 0.01196 -17.9144459435 -18.4869315671 -18.7731739216 +9160 80.37588 40.80994 -19.62488 0.01198 -17.9086144965 -18.4807039339 -18.7667481962 +9165 80.32276 40.78338 -19.61788 0.01199 -17.9028014056 -18.4744952047 -18.7603416487 +9170 80.26972 40.75686 -19.61089 0.01201 -17.8969966742 -18.4682953818 -18.7539442811 +9175 80.21675 40.73038 -19.6039 0.01203 -17.8911903057 -18.4620944675 -18.7475460948 +9180 80.16387 40.70393 -19.59692 0.01205 -17.8853923034 -18.4559024641 -18.7411570918 +9185 80.11106 40.67753 -19.58994 0.01206 -17.8795926708 -18.4497093737 -18.7347672735 +9190 80.05834 40.65117 -19.58298 0.01208 -17.8738114112 -18.4435351987 -18.7283966418 +9195 80.00569 40.62484 -19.57602 0.01210 -17.868028528 -18.4373599414 -18.7220251982 +9200 79.95312 40.59856 -19.56907 0.01212 -17.8622540245 -18.4311936038 -18.7156629446 +9205 79.90062 40.57231 -19.56213 0.01214 -17.8564879041 -18.4250361883 -18.7093098824 +9210 79.8482 40.5461 -19.55519 0.01215 -17.8507201701 -18.4188776971 -18.7029560135 +9215 79.79586 40.51993 -19.54826 0.01217 -17.8449608259 -18.4127281324 -18.6966113395 +9220 79.7436 40.4938 -19.54134 0.01219 -17.8392098747 -18.4065874964 -18.690275862 +9225 79.69141 40.46771 -19.53443 0.01221 -17.8334673199 -18.4004557913 -18.6839495827 +9230 79.6393 40.44165 -19.52753 0.01223 -17.8277331647 -18.3943330193 -18.6776325032 +9235 79.58727 40.41563 -19.52063 0.01224 -17.8219974124 -18.3882091826 -18.6713146252 +9240 79.53531 40.38966 -19.51374 0.01226 -17.8162700664 -18.3820942834 -18.6650059503 +9245 79.48343 40.36371 -19.50686 0.01228 -17.8105511299 -18.3759883238 -18.6587064802 +9250 79.43162 40.33781 -19.49998 0.01230 -17.8048306062 -18.3698813062 -18.6524062164 +9255 79.37989 40.31195 -19.49311 0.01232 -17.7991184984 -18.3637832325 -18.6461151607 +9260 79.32824 40.28612 -19.48625 0.01233 -17.7934148099 -18.357694105 -18.6398333146 +9265 79.27665 40.26033 -19.4794 0.01235 -17.7877195439 -18.3516139258 -18.6335606797 +9270 79.22515 40.23457 -19.47255 0.01237 -17.7820227036 -18.3455326971 -18.6272872577 +9275 79.17372 40.20886 -19.46572 0.01239 -17.7763442923 -18.339470421 -18.6210330502 +9280 79.12236 40.18318 -19.45889 0.01241 -17.7706643131 -18.3334070997 -18.6147780587 +9285 79.07108 40.15754 -19.45206 0.01242 -17.7649827692 -18.3273427353 -18.6085222849 +9290 79.01987 40.13194 -19.44525 0.01244 -17.7593196638 -18.32129733 -18.6022857304 +9295 78.96874 40.10637 -19.43844 0.01246 -17.7536550002 -18.3152508857 -18.5960483968 +9300 78.91768 40.08084 -19.43164 0.01248 -17.7479987814 -18.3092134048 -18.5898202856 +9305 78.86669 40.05535 -19.42484 0.01250 -17.7423410107 -18.3031748892 -18.5835913984 +9310 78.81578 40.02989 -19.41805 0.01251 -17.7366916912 -18.297145341 -18.5773717368 +9315 78.76494 40.00447 -19.41127 0.01253 -17.7310508261 -18.2911247625 -18.5711613024 +9320 78.71418 39.97909 -19.4045 0.01255 -17.7254184185 -18.2851131556 -18.5649600968 +9325 78.66348 39.95374 -19.39774 0.01257 -17.7197944714 -18.2791105225 -18.5587681215 +9330 78.61286 39.92843 -19.39098 0.01259 -17.7141689882 -18.2731068652 -18.5525753781 +9335 78.56232 39.90316 -19.38423 0.01260 -17.7085519718 -18.2671121858 -18.5463918681 +9340 78.51184 39.87792 -19.37749 0.01262 -17.7029434253 -18.2611264864 -18.5402175931 +9345 78.46144 39.85272 -19.37075 0.01264 -17.697333352 -18.2551397691 -18.5340425546 +9350 78.41111 39.82755 -19.36402 0.01266 -17.6917317547 -18.2491620359 -18.5278767542 +9355 78.36085 39.80242 -19.3573 0.01268 -17.6861386368 -18.2431932888 -18.5217201935 +9360 78.31066 39.77733 -19.35058 0.01269 -17.6805440011 -18.2372235299 -18.5155628739 +9365 78.26054 39.75227 -19.34388 0.01271 -17.6749678508 -18.2312727613 -18.509424797 +9370 78.2105 39.72725 -19.33718 0.01273 -17.6693901889 -18.225320985 -18.5032859643 +9375 78.16053 39.70226 -19.33048 0.01275 -17.6638110185 -18.219368203 -18.4971463773 +9380 78.11063 39.67731 -19.3238 0.01277 -17.6582503426 -18.2134344174 -18.4910260376 +9385 78.06079 39.6524 -19.31712 0.01278 -17.6526881643 -18.2074996301 -18.4849049467 +9390 78.01103 39.62752 -19.31045 0.01280 -17.6471344865 -18.2015738432 -18.4787931061 +9395 77.96134 39.60267 -19.30378 0.01282 -17.6415793123 -18.1956470587 -18.4726805173 +9400 77.91172 39.57786 -19.29713 0.01284 -17.6360426447 -18.1897392786 -18.4665871817 +9405 77.86218 39.55309 -19.29047 0.01286 -17.6304944867 -18.1838205049 -18.460483101 +9410 77.8127 39.52835 -19.28383 0.01288 -17.6249648413 -18.1779207395 -18.4543982766 +9415 77.76329 39.50364 -19.27719 0.01289 -17.6194337114 -18.1720199846 -18.4483127099 +9420 77.71395 39.47897 -19.27057 0.01291 -17.6139211001 -18.166138242 -18.4422464025 +9425 77.66468 39.45434 -19.26394 0.01293 -17.6083970103 -18.1602455138 -18.4361693559 +9430 77.61548 39.42974 -19.25733 0.01295 -17.6028914449 -18.1543718019 -18.4301115715 +9435 77.56634 39.40517 -19.25072 0.01297 -17.597384407 -18.1484971082 -18.4240530509 +9440 77.51728 39.38064 -19.24412 0.01298 -17.5918858994 -18.1426314348 -18.4180037954 +9445 77.46829 39.35614 -19.23752 0.01300 -17.5863859251 -18.1367647836 -18.4119538065 +9450 77.41936 39.33168 -19.23094 0.01302 -17.580904487 -18.1309171566 -18.4059230858 +9455 77.37051 39.30725 -19.22436 0.01304 -17.5754215881 -18.1250685556 -18.3998916347 +9460 77.32172 39.28286 -19.21778 0.01306 -17.5699372312 -18.1192189827 -18.3938594546 +9465 77.273 39.2585 -19.21122 0.01308 -17.5644714193 -18.1133884398 -18.3878465469 +9470 77.22435 39.23417 -19.20466 0.01309 -17.5590041552 -18.1075569288 -18.3818329132 +9475 77.17576 39.20988 -19.19811 0.01311 -17.5535454418 -18.1017344516 -18.3758285549 +9480 77.12725 39.18562 -19.19156 0.01313 -17.5480852821 -18.0959110101 -18.3698234734 +9485 77.0788 39.1614 -19.18502 0.01315 -17.5426336789 -18.0900966064 -18.3638276701 +9490 77.03042 39.13721 -19.17849 0.01317 -17.5371906351 -18.0842912422 -18.3578411466 +9495 76.9821 39.11305 -19.17197 0.01319 -17.5317561535 -18.0784949195 -18.3518639041 +9500 76.93386 39.08893 -19.16545 0.01320 -17.5263202369 -18.0726976401 -18.3458859442 +9505 76.88568 39.06484 -19.15894 0.01322 -17.5208928883 -18.0669094061 -18.3399172682 +9510 76.83757 39.04078 -19.15243 0.01324 -17.5154641104 -18.0611202192 -18.3339478777 +9515 76.78952 39.01676 -19.14593 0.01326 -17.5100439061 -18.0553400814 -18.3279877739 +9520 76.74154 38.99277 -19.13944 0.01328 -17.5046322782 -18.0495689946 -18.3220369583 +9525 76.69363 38.96881 -19.13296 0.01330 -17.4992292295 -18.0438069605 -18.3160954323 +9530 76.64578 38.94489 -19.12648 0.01331 -17.4938247628 -18.0380439811 -18.3101531974 +9535 76.598 38.921 -19.12001 0.01333 -17.488428881 -18.0322900583 -18.3042202549 +9540 76.55028 38.89714 -19.11355 0.01335 -17.4830415867 -18.0265451939 -18.2982966061 +9545 76.50263 38.87332 -19.10709 0.01337 -17.4776528829 -18.0207993897 -18.2923722526 +9550 76.45505 38.84953 -19.10064 0.01339 -17.4722727722 -18.0150626477 -18.2864571957 +9555 76.40753 38.82577 -19.0942 0.01341 -17.4669012575 -18.0093349696 -18.2805514367 +9560 76.36008 38.80204 -19.08776 0.01342 -17.4615283414 -18.0036063574 -18.2746449771 +9565 76.31269 38.77835 -19.08133 0.01344 -17.4561640268 -17.9978868128 -18.2687478182 +9570 76.26537 38.75468 -19.07491 0.01346 -17.4508083165 -17.9921763376 -18.2628599615 +9575 76.21811 38.73105 -19.06849 0.01348 -17.445451213 -17.9864649338 -18.2569714082 +9580 76.17092 38.70746 -19.06208 0.01350 -17.4401027193 -17.9807626031 -18.2510921597 +9585 76.12379 38.68389 -19.05568 0.01352 -17.4347628379 -17.9750693473 -18.2452222175 +9590 76.07672 38.66036 -19.04929 0.01354 -17.4294315717 -17.9693851683 -18.2393615828 +9595 76.02972 38.63686 -19.0429 0.01355 -17.4240989233 -17.9637000678 -18.2335002571 +9600 75.98279 38.61339 -19.03651 0.01357 -17.4187648955 -17.9580140477 -18.2276382416 +9605 75.93591 38.58996 -19.03014 0.01359 -17.4134494909 -17.9523471098 -18.2217955377 +9610 75.88911 38.56655 -19.02377 0.01361 -17.4081327122 -17.9466792558 -18.2159521468 +9615 75.84236 38.54318 -19.0174 0.01363 -17.4028145622 -17.9410104876 -18.2101080703 +9620 75.79568 38.51984 -19.01105 0.01365 -17.3975150434 -17.9353608068 -18.2042833093 +9625 75.74906 38.49653 -19.0047 0.01367 -17.3922141586 -17.9297102155 -18.1984578654 +9630 75.70251 38.47325 -18.99835 0.01368 -17.3869119104 -17.9240587151 -18.1926317398 +9635 75.65601 38.45001 -18.99202 0.01370 -17.3816283015 -17.9184263077 -18.1868249338 +9640 75.60959 38.42679 -18.98569 0.01372 -17.3763433345 -17.9127929949 -18.1810174488 +9645 75.56322 38.40361 -18.97936 0.01374 -17.371057012 -17.9071587784 -18.175209286 +9650 75.51692 38.38046 -18.97305 0.01376 -17.3657893368 -17.9015436601 -18.1694204469 +9655 75.47068 38.35734 -18.96674 0.01378 -17.3605203114 -17.8959276417 -18.1636309327 +9660 75.4245 38.33425 -18.96043 0.01380 -17.3552499385 -17.8903107249 -18.1578407447 +9665 75.37838 38.31119 -18.95414 0.01381 -17.3499982207 -17.8847129115 -18.1520698843 +9670 75.33233 38.28816 -18.94785 0.01383 -17.3447451605 -17.8791142033 -18.1462983527 +9675 75.28634 38.26517 -18.94156 0.01385 -17.3394907606 -17.8735146019 -18.1405261513 +9680 75.2404 38.2422 -18.93528 0.01387 -17.3342450236 -17.867924109 -18.1347632813 +9685 75.19454 38.21927 -18.92901 0.01389 -17.329007952 -17.8623427265 -18.129009744 +9690 75.14873 38.19636 -18.92275 0.01391 -17.3237795485 -17.856770456 -18.1232655408 +9695 75.10298 38.17349 -18.91649 0.01393 -17.3185498156 -17.8511972993 -18.1175206728 +9700 75.0573 38.15065 -18.91024 0.01394 -17.3133287559 -17.845633258 -18.1117851415 +9705 75.01168 38.12784 -18.90399 0.01396 -17.3081063719 -17.8400683339 -18.106048948 +9710 74.96611 38.10506 -18.89775 0.01398 -17.3028926662 -17.8345125287 -18.1003220937 +9715 74.92061 38.08231 -18.89152 0.01400 -17.2976876414 -17.8289658441 -18.0946045799 +9720 74.87517 38.05959 -18.88529 0.01402 -17.2924813 -17.8234182817 -18.0888864077 +9725 74.82979 38.0369 -18.87907 0.01404 -17.2872836445 -17.8178798432 -18.0831775785 +9730 74.78447 38.01424 -18.87286 0.01406 -17.2820946774 -17.8123505304 -18.0774780935 +9735 74.73921 37.99161 -18.86665 0.01408 -17.2769044014 -17.806820345 -18.071777954 +9740 74.69401 37.96901 -18.86045 0.01409 -17.2717228188 -17.8012992885 -18.0660871613 +9745 74.64887 37.94644 -18.85426 0.01411 -17.2665499323 -17.7957873627 -18.0604057166 +9750 74.60379 37.9239 -18.84807 0.01413 -17.2613757442 -17.7902745692 -18.0547236211 +9755 74.55877 37.90139 -18.84189 0.01415 -17.2562102571 -17.7847709098 -18.0490508761 +9760 74.51381 37.87891 -18.83571 0.01417 -17.2510434736 -17.779266386 -18.0433774829 +9765 74.46891 37.85646 -18.82955 0.01419 -17.245895396 -17.7737809995 -18.0377234427 +9770 74.42407 37.83404 -18.82338 0.01421 -17.2407360269 -17.768284752 -18.0320587567 +9775 74.37929 37.81165 -18.81723 0.01423 -17.2355953687 -17.7628076451 -18.0264134262 +9780 74.33457 37.78928 -18.81108 0.01424 -17.2304534238 -17.7573296805 -18.0207674524 +9785 74.28991 37.76695 -18.80493 0.01426 -17.2253101949 -17.7518508598 -18.0151208365 +9790 74.2453 37.74465 -18.7988 0.01428 -17.2201856842 -17.7463911846 -18.0094935797 +9795 74.20075 37.72238 -18.79266 0.01430 -17.2150498943 -17.7409206566 -18.0038556834 +9800 74.15627 37.70013 -18.78654 0.01432 -17.2099328276 -17.7354692774 -17.9982371486 +9805 74.11184 37.67792 -18.78042 0.01434 -17.2048144864 -17.7300170486 -17.9926179766 +9810 74.06747 37.65573 -18.77431 0.01436 -17.1997048734 -17.7245739719 -17.9870081687 +9815 74.02316 37.63358 -18.7682 0.01438 -17.1945939908 -17.7191300488 -17.981397726 +9820 73.9789 37.61145 -18.7621 0.01439 -17.1894918411 -17.7136952809 -17.9757966498 +9825 73.93471 37.58935 -18.75601 0.01441 -17.1843984266 -17.70826967 -17.9702049412 +9830 73.89057 37.56728 -18.74992 0.01443 -17.1793037499 -17.7028432174 -17.9646126014 +9835 73.84649 37.54524 -18.74384 0.01445 -17.1742178133 -17.697425925 -17.9590296317 +9840 73.80246 37.52323 -18.73776 0.01447 -17.1691306191 -17.6920077942 -17.9534460333 +9845 73.7585 37.50125 -18.7317 0.01449 -17.1640621699 -17.6866088267 -17.9478818073 +9850 73.71459 37.47929 -18.72563 0.01451 -17.1589824678 -17.6811990239 -17.9423069549 +9855 73.67074 37.45737 -18.71958 0.01453 -17.1539215154 -17.6758083877 -17.9367514773 +9860 73.62694 37.43547 -18.71352 0.01455 -17.148849315 -17.6704069194 -17.9311853757 +9865 73.58321 37.4136 -18.70748 0.01456 -17.1437958689 -17.6650246206 -17.9256386513 +9870 73.53953 37.39176 -18.70144 0.01458 -17.1387411795 -17.659641493 -17.9200913053 +9875 73.4959 37.36995 -18.69541 0.01460 -17.1336952492 -17.6542675381 -17.9145533388 +9880 73.45234 37.34817 -18.68938 0.01462 -17.1286480802 -17.6488927575 -17.909014753 +9885 73.40883 37.32641 -18.68336 0.01464 -17.123609675 -17.6435271527 -17.903485549 +9890 73.36537 37.30469 -18.67735 0.01466 -17.1185800359 -17.6381707253 -17.8979657281 +9895 73.32198 37.28299 -18.67134 0.01468 -17.1135491651 -17.6328134768 -17.8924452914 +9900 73.27863 37.26132 -18.66534 0.01470 -17.1085270651 -17.6274654088 -17.88693424 +9905 73.23535 37.23967 -18.65934 0.01472 -17.103503738 -17.6221165228 -17.8814225752 +9910 73.19212 37.21806 -18.65336 0.01474 -17.0984991863 -17.6167868203 -17.875930298 +9915 73.14894 37.19647 -18.64737 0.01475 -17.0934834122 -17.611446303 -17.8704274096 +9920 73.10583 37.17491 -18.64139 0.01477 -17.0884764181 -17.6061149722 -17.8649339112 +9925 73.06276 37.15338 -18.63542 0.01479 -17.0834782062 -17.6007928296 -17.8594498039 +9930 73.01976 37.13188 -18.62946 0.01481 -17.0784887787 -17.5954798767 -17.8539750889 +9935 72.9768 37.1104 -18.6235 0.01483 -17.0734981381 -17.590166115 -17.8484997673 +9940 72.93391 37.08895 -18.61754 0.01485 -17.0685062865 -17.584851546 -17.8430238401 +9945 72.89107 37.06753 -18.6116 0.01487 -17.0635332262 -17.5795561711 -17.8375673087 +9950 72.84828 37.04614 -18.60565 0.01489 -17.0585489595 -17.5742499921 -17.8321001741 +9955 72.80555 37.02477 -18.59972 0.01491 -17.0535834886 -17.5689630102 -17.8266524373 +9960 72.76287 37.00343 -18.59379 0.01493 -17.0486168158 -17.5636752271 -17.8212040996 +9965 72.72025 36.98212 -18.58787 0.01495 -17.0436589434 -17.5583966442 -17.8157651621 +9970 72.67768 36.96084 -18.58195 0.01496 -17.0386998735 -17.553117263 -17.8103256259 +9975 72.63517 36.93958 -18.57604 0.01498 -17.0337496085 -17.547847085 -17.8048954921 +9980 72.59271 36.91835 -18.57013 0.01500 -17.0287981505 -17.5425761118 -17.7994647618 +9985 72.5503 36.89715 -18.56423 0.01502 -17.0238555017 -17.5373143447 -17.7940434362 +9990 72.50795 36.87597 -18.55834 0.01504 -17.0189216645 -17.5320617852 -17.7886315163 +9995 72.46565 36.85483 -18.55245 0.01506 -17.0139866409 -17.5268084349 -17.7832190032 +10000 72.42341 36.8337 -18.54657 0.01508 -17.0090604332 -17.5215642952 -17.7778158981 +10005 72.38122 36.81261 -18.54069 0.01510 -17.0041330436 -17.5163193675 -17.772412202 +10010 72.33908 36.79154 -18.53482 0.01512 -16.9992144743 -17.5110836534 -17.7670179161 +10015 72.297 36.7705 -18.52895 0.01514 -16.9942947275 -17.5058471543 -17.7616230414 +10020 72.25497 36.74948 -18.5231 0.01516 -16.9893938053 -17.5006298716 -17.7562475791 +10025 72.21299 36.7285 -18.51724 0.01518 -16.98448171 -17.4954018069 -17.7508615302 +10030 72.17107 36.70753 -18.5114 0.01519 -16.9795884437 -17.4901929614 -17.7454948958 +10035 72.1292 36.6866 -18.50555 0.01521 -16.9746840086 -17.4849733368 -17.740117677 +10040 72.08738 36.66569 -18.49972 0.01523 -16.9697984069 -17.4797729344 -17.7347598749 +10045 72.04561 36.64481 -18.49389 0.01525 -16.9649116407 -17.4745717557 -17.7294014905 +10050 72.0039 36.62395 -18.48807 0.01527 -16.9600337121 -17.4693798021 -17.724052525 +10055 71.96224 36.60312 -18.48225 0.01529 -16.9551546233 -17.464187075 -17.7187029794 +10060 71.92064 36.58232 -18.47644 0.01531 -16.9502843765 -17.459003576 -17.7133628548 +10065 71.87908 36.56154 -18.47063 0.01533 -16.9454129738 -17.4538193063 -17.7080221522 +10070 71.83758 36.54079 -18.46483 0.01535 -16.9405504173 -17.4486442674 -17.7026908727 +10075 71.79613 36.52006 -18.45903 0.01537 -16.9356867091 -17.4434684607 -17.6973590174 +10080 71.75473 36.49937 -18.45324 0.01539 -16.9308318515 -17.4383018877 -17.6920365873 +10085 71.71338 36.47869 -18.44746 0.01541 -16.9259858463 -17.4331445498 -17.6867235836 +10090 71.67209 36.45804 -18.44168 0.01543 -16.9211386959 -17.4279864483 -17.6814100071 +10095 71.63085 36.43742 -18.43591 0.01545 -16.9163004023 -17.4228375847 -17.6761058591 +10100 71.58966 36.41683 -18.43014 0.01546 -16.9114609676 -17.4176879604 -17.6708011405 +10105 71.54852 36.39626 -18.42438 0.01548 -16.9066303939 -17.4125475767 -17.6655058525 +10110 71.50743 36.37571 -18.41863 0.01550 -16.9018086832 -17.4074164351 -17.660219996 +10115 71.46639 36.3552 -18.41288 0.01552 -16.8969858378 -17.4022845369 -17.654933572 +10120 71.4254 36.3347 -18.40714 0.01554 -16.8921718595 -17.3971618836 -17.6496565817 +10125 71.38447 36.31423 -18.4014 0.01556 -16.8873567506 -17.3920384765 -17.6443790261 +10130 71.34359 36.29379 -18.39567 0.01558 -16.8825505131 -17.3869243169 -17.6391109061 +10135 71.30275 36.27338 -18.38994 0.01560 -16.8777431491 -17.3818094064 -17.6338422229 +10140 71.26197 36.25299 -18.38422 0.01562 -16.8729446605 -17.3767037462 -17.6285829774 +10145 71.22124 36.23262 -18.3785 0.01564 -16.8681450495 -17.3715973377 -17.6233231708 +10150 71.18056 36.21228 -18.37279 0.01566 -16.8633543182 -17.3665001823 -17.6180728039 +10155 71.13993 36.19196 -18.36709 0.01568 -16.8585724685 -17.3614122814 -17.6128318779 +10160 71.09935 36.17167 -18.36139 0.01570 -16.8537895025 -17.3563236362 -17.6075903937 +10165 71.05882 36.15141 -18.3557 0.01572 -16.8490154223 -17.3512442482 -17.6023583525 +10170 71.01834 36.13117 -18.35001 0.01574 -16.8442402298 -17.3461641188 -17.597125755 +10175 70.97791 36.11095 -18.34433 0.01576 -16.8394739271 -17.3410932492 -17.5919026025 +10180 70.93753 36.09076 -18.33865 0.01578 -16.8347065163 -17.3360216408 -17.5866788959 +10185 70.8972 36.0706 -18.33298 0.01579 -16.8299479992 -17.3309592949 -17.5814646363 +10190 70.85692 36.05046 -18.32732 0.01581 -16.825198378 -17.325906213 -18.32732 +10195 70.81669 36.03034 -18.32166 0.01583 -16.8204476547 -17.3208523963 -18.32166 +10200 70.7765 36.01025 -18.316 0.01585 -16.8156958311 -17.3157978461 -18.316 +10205 70.73637 35.99019 -18.31036 0.01587 -16.8109629095 -17.3107625639 -18.31036 +10210 70.69629 35.97014 -18.30471 0.01589 -16.8062188916 -17.3057165509 -18.30471 +10215 70.65626 35.95013 -18.29908 0.01591 -16.8014937796 -17.3006898084 -18.29908 +10220 70.61627 35.93014 -18.29345 0.01593 -16.7967675753 -17.2956623378 -18.29345 +10225 70.57634 35.91017 -18.28782 0.01595 -16.7920402809 -17.2906341403 -18.28782 +10230 70.53645 35.89023 -18.2822 0.01597 -16.7873218981 -17.2856152174 -18.2822 +10235 70.49661 35.87031 -18.27658 0.01599 -16.7826024291 -17.2805955703 -18.27658 +10240 70.45682 35.85041 -18.27097 0.01601 -16.7778918758 -17.2755852002 -18.27097 +10245 70.41708 35.83054 -18.26537 0.01603 -16.7731902401 -17.2705841087 -18.26537 +10250 70.37739 35.8107 -18.25977 0.01605 -16.768487524 -17.2655822968 -18.25977 +10255 70.33775 35.79088 -18.25418 0.01607 -16.7637937294 -17.260589766 -18.25418 +10260 70.29816 35.77108 -18.24859 0.01609 -16.7590988582 -17.2555965174 -18.24859 +10265 70.25861 35.7513 -18.24301 0.01611 -16.7544129125 -17.2506125525 -18.24301 +10270 70.21911 35.73156 -18.23743 0.01613 -16.7497258942 -17.2456278725 -18.23743 +10275 70.17966 35.71183 -18.23186 0.01615 -16.7450478051 -17.2406524787 -18.23186 +10280 70.14026 35.69213 -18.22629 0.01617 -16.7403686472 -17.2356763723 -18.22629 +10285 70.1009 35.67245 -18.22073 0.01619 -16.7356984224 -17.2307095547 -18.22073 +10290 70.0616 35.6528 -18.21518 0.01621 -16.7310371327 -17.2257520272 -18.21518 +10295 70.02234 35.63317 -18.20963 0.01623 -16.7263747799 -17.2207937909 -18.20963 +10300 69.98313 35.61356 -18.20408 0.01625 -16.7217113659 -17.2158348472 -18.20408 +10305 69.94396 35.59398 -18.19854 0.01626 -16.7170568927 -17.2108851973 -18.19854 +10310 69.90485 35.57442 -18.19301 0.01628 -16.7124113622 -17.2059448425 -18.19301 +10315 69.86578 35.55489 -18.18748 0.01630 -16.7077647762 -17.2010037841 -18.18748 +10320 69.82676 35.53538 -18.18196 0.01632 -16.7031271367 -17.1960720234 -18.18196 +10325 69.78778 35.51589 -18.17644 0.01634 -16.6984884454 -17.1911395615 -18.17644 +10330 69.74885 35.49643 -18.17093 0.01636 -16.6938587044 -17.1862163997 -18.17093 +10335 69.70997 35.47699 -18.16542 0.01638 -16.6892279154 -17.1812925393 -18.16542 +10340 69.67114 35.45757 -18.15992 0.01640 -16.6846060804 -17.1763779816 -18.15992 +10345 69.63235 35.43818 -18.15442 0.01642 -16.6799832011 -17.1714627277 -18.15442 +10350 69.59361 35.41881 -18.14893 0.01644 -16.6753692796 -17.1665567789 -18.14893 +10355 69.55492 35.39946 -18.14345 0.01646 -16.6707643175 -17.1616601365 -18.14345 +10360 69.51627 35.38013 -18.13797 0.01648 -16.6661583168 -17.1567628016 -18.13797 +10365 69.47767 35.36083 -18.13249 0.01650 -16.6615512794 -17.1518647756 -18.13249 +10370 69.43911 35.34156 -18.12702 0.01652 -16.656953207 -17.1469760597 -18.12702 +10375 69.4006 35.3223 -18.12156 0.01654 -16.6523641015 -17.142096655 -18.12156 +10380 69.36214 35.30307 -18.1161 0.01656 -16.6477739648 -17.1372165628 -18.1161 +10385 69.32372 35.28386 -18.11064 0.01658 -16.6431827987 -17.1323357843 -18.11064 +10390 69.28535 35.26468 -18.10519 0.01660 -16.6386006049 -17.1274643208 -18.10519 +10395 69.24703 35.24551 -18.09975 0.01662 -16.6340273854 -17.1226021734 -18.09975 +10400 69.20875 35.22637 -18.09431 0.01664 -16.6294531419 -17.1177393433 -18.09431 +10405 69.17052 35.20726 -18.08888 0.01666 -16.6248878762 -17.1128858319 -18.08888 +10410 69.13233 35.18816 -18.08345 0.01668 -16.6203215903 -17.1080316402 -18.08345 +10415 69.09419 35.16909 -18.07803 0.01670 -16.6157642857 -17.1031867695 -18.07803 +10420 69.05609 35.15004 -18.07261 0.01672 -16.6112059645 -17.098341221 -18.07261 +10425 69.01804 35.13102 -18.0672 0.01674 -16.6066566283 -17.0935049958 -18.0672 +10430 68.98003 35.11202 -18.06179 0.01676 -16.602106279 -17.0886680953 -18.06179 +10435 68.94207 35.09303 -18.05639 0.01678 -16.5975649183 -17.0838405204 -18.05639 +10440 68.90415 35.07408 -18.05099 0.01680 -16.593022548 -17.0790122726 -18.05099 +10445 68.86628 35.05514 -18.0456 0.01682 -16.58848917 -17.0741933529 -18.0456 +10450 68.82845 35.03623 -18.04022 0.01684 -16.5839647859 -17.0693837625 -18.04022 +10455 68.79067 35.01734 -18.03483 0.01686 -16.5794293976 -17.0645635026 -18.03483 +10460 68.75294 34.99847 -18.02946 0.01688 -16.5749130068 -17.0597625744 -18.02946 +10465 68.71524 34.97962 -18.02409 0.01690 -16.5703956152 -17.054960979 -18.02409 +10470 68.6776 34.9608 -18.01872 0.01692 -16.5658772248 -17.0501587177 -18.01872 +10475 68.63999 34.942 -18.01336 0.01694 -16.5613678371 -17.0453657916 -18.01336 +10480 68.60243 34.92322 -18.00801 0.01696 -16.5568674539 -17.0405822019 -18.00801 +10485 68.56492 34.90446 -18.00265 0.01698 -16.5523560771 -17.0357879496 -18.00265 +10490 68.52745 34.88572 -17.99731 0.01700 -16.5478637083 -17.0310130361 -17.99731 +10495 68.49002 34.86701 -17.99197 0.01702 -16.5433703493 -17.0262374624 -17.99197 +10500 68.45264 34.84832 -17.98663 0.01704 -16.5388760017 -17.0214612298 -17.98663 +10505 68.4153 34.82965 -17.9813 0.01706 -16.5343906674 -17.0166943393 -17.9813 +10510 68.378 34.811 -17.97598 0.01708 -16.5299143481 -17.0119367921 -17.97598 +10515 68.34075 34.79238 -17.97066 0.01710 -16.5254370455 -17.0071785893 -17.97066 +10520 68.30354 34.77377 -17.96534 0.01712 -16.5209587613 -17.0024197322 -17.96534 +10525 68.26638 34.75519 -17.96003 0.01714 -16.5164894971 -16.9976702218 -17.96003 +10530 68.22926 34.73663 -17.95473 0.01716 -16.5120292548 -16.9929300593 -17.95473 +10535 68.19218 34.71809 -17.94943 0.01718 -16.5075680361 -16.9881892458 -17.94943 +10540 68.15515 34.69957 -17.94413 0.01720 -16.5031058426 -16.9834477825 -17.94413 +10545 68.11816 34.68108 -17.93885 0.01722 -16.498662676 -16.9787256705 -17.93885 +10550 68.08121 34.66261 -17.93356 0.01724 -16.494208538 -16.9739929109 -17.93356 +10555 68.04431 34.64415 -17.92828 0.01726 -16.4897634304 -16.9692695049 -17.92828 +10560 68.00745 34.62572 -17.92301 0.01728 -16.4853273548 -16.9645554535 -17.92301 +10565 67.97063 34.60731 -17.91774 0.01730 -16.4808903128 -16.9598407579 -17.91774 +10570 67.93385 34.58893 -17.91247 0.01732 -16.4764523063 -16.9551254192 -17.91247 +10575 67.89712 34.57056 -17.90721 0.01734 -16.4720233367 -16.9504194386 -17.90721 +10580 67.86043 34.55222 -17.90196 0.01736 -16.4676034059 -16.9457228171 -17.90196 +10585 67.82378 34.53389 -17.89671 0.01738 -16.4631825155 -16.9410255559 -17.89671 +10590 67.78718 34.51559 -17.89146 0.01740 -16.4587606671 -16.936327656 -17.89146 +10595 67.75062 34.49731 -17.88622 0.01742 -16.4543478624 -16.9316391186 -17.88622 +10600 67.7141 34.47905 -17.88099 0.01744 -16.4499441031 -16.9269599448 -17.88099 +10605 67.67762 34.46081 -17.87576 0.01746 -16.4455393907 -16.9222801356 -17.87576 +10610 67.64118 34.44259 -17.87053 0.01748 -16.4411337271 -16.9175996922 -17.87053 +10615 67.60479 34.42439 -17.86531 0.01750 -16.4367371137 -16.9129286157 -17.86531 +10620 67.56844 34.40622 -17.8601 0.01752 -16.4323495523 -16.9082669071 -17.8601 +10625 67.53213 34.38806 -17.85489 0.01754 -16.4279610444 -16.9036045677 -17.85489 +10630 67.49586 34.36993 -17.84968 0.01756 -16.4235715918 -16.8989415983 -17.84968 +10635 67.45964 34.35182 -17.84448 0.01758 -16.419191196 -16.8942880002 -17.84448 +10640 67.42345 34.33373 -17.83928 0.01760 -16.4148098586 -16.8896337744 -17.83928 +10645 67.38731 34.31565 -17.83409 0.01762 -16.4104375814 -16.8849889219 -17.83409 +10650 67.35121 34.2976 -17.82891 0.01764 -16.4060743658 -16.880353444 -17.82891 +10655 67.31515 34.27957 -17.82373 0.01766 -16.4017102136 -16.8757173416 -17.82373 +10660 67.27913 34.26157 -17.81855 0.01769 -16.3973451263 -16.8710806158 -17.81855 +10665 67.24316 34.24358 -17.81338 0.01771 -16.3929891055 -16.8664532677 -17.81338 +10670 67.20722 34.22561 -17.80821 0.01773 -16.3886321529 -16.8618252984 -17.80821 +10675 67.17133 34.20766 -17.80305 0.01775 -16.38428427 -16.8572067089 -17.80305 +10680 67.13547 34.18974 -17.79789 0.01777 -16.3799354585 -16.8525875003 -17.79789 +10685 67.09966 34.17183 -17.79274 0.01779 -16.3755957198 -16.8479776736 -17.79274 +10690 67.06389 34.15395 -17.7876 0.01781 -16.3712650557 -16.84337723 -17.7876 +10695 67.02816 34.13608 -17.78245 0.01783 -16.3669234677 -16.8387661704 -17.78245 +10700 66.99247 34.11824 -17.77732 0.01785 -16.3626009573 -16.8341744959 -17.77732 +10705 66.95682 34.10041 -17.77218 0.01787 -16.3582675263 -16.8295722076 -17.77218 +10710 66.92121 34.08261 -17.76705 0.01789 -16.353943176 -16.8249793066 -17.76705 +10715 66.88565 34.06482 -17.76193 0.01791 -16.3496279081 -16.8203957938 -17.76193 +10720 66.85012 34.04706 -17.75681 0.01793 -16.3453117243 -16.8158116703 -17.75681 +10725 66.81463 34.02932 -17.7517 0.01795 -16.3410046259 -16.8112369371 -17.7517 +10730 66.77919 34.01159 -17.74659 0.01797 -16.3366966146 -16.8066615954 -17.74659 +10735 66.74378 33.99389 -17.74149 0.01799 -16.332397692 -16.8020956461 -17.74149 +10740 66.70842 33.97621 -17.73639 0.01801 -16.3280978596 -16.7975290903 -17.73639 +10745 66.67309 33.95855 -17.73129 0.01803 -16.3237971189 -16.792961929 -17.73129 +10750 66.63781 33.9409 -17.7262 0.01805 -16.3195054715 -16.7884041632 -17.7262 +10755 66.60256 33.92328 -17.72112 0.01807 -16.315222919 -16.7838557939 -17.72112 +10760 66.56736 33.90568 -17.71604 0.01809 -16.3109394628 -16.7793068223 -17.71604 +10765 66.53219 33.8881 -17.71096 0.01811 -16.3066551045 -16.7747572492 -17.71096 +10770 66.49706 33.87053 -17.70589 0.01813 -16.3023798457 -16.7702170758 -17.70589 +10775 66.46198 33.85299 -17.70082 0.01815 -16.2981036879 -16.765676303 -17.70082 +10780 66.42693 33.83547 -17.69576 0.01818 -16.2938366325 -16.7611449319 -17.69576 +10785 66.39193 33.81796 -17.69071 0.01820 -16.2895786812 -16.7566229635 -17.69071 +10790 66.35696 33.80048 -17.68565 0.01822 -16.2853098354 -16.7520903988 -17.68565 +10795 66.32203 33.78301 -17.68061 0.01824 -16.2810600966 -16.7475772387 -17.68061 +10800 66.28714 33.76557 -17.67556 0.01826 -16.2767994664 -16.7430534844 -17.67556 +10805 66.25229 33.74815 -17.67053 0.01828 -16.2725579462 -16.7385491368 -17.67053 +10810 66.21748 33.73074 -17.66549 0.01830 -16.2683055377 -16.7340341969 -17.66549 +10815 66.18271 33.71336 -17.66046 0.01832 -16.2640622422 -16.7295286657 -17.66046 +10820 66.14798 33.69599 -17.65544 0.01834 -16.2598280612 -16.7250325442 -17.65544 +10825 66.11328 33.67864 -17.65042 0.01836 -16.2555929964 -16.7205358334 -17.65042 +10830 66.07863 33.66132 -17.6454 0.01838 -16.251357049 -16.7160385344 -17.6454 +10835 66.04402 33.64401 -17.64039 0.01840 -16.2471302208 -16.711550648 -17.64039 +10840 66.00944 33.62672 -17.63539 0.01842 -16.242912513 -16.7070721753 -17.63539 +10845 65.9749 33.60945 -17.63039 0.01844 -16.2386939272 -16.7025931173 -17.63039 +10850 65.9404 33.5922 -17.62539 0.01846 -16.234474465 -16.698113475 -17.62539 +10855 65.90594 33.57497 -17.6204 0.01848 -16.2302641277 -16.6936432492 -17.6204 +10860 65.87152 33.55776 -17.61541 0.01850 -16.2260529168 -16.6891724412 -17.61541 +10865 65.83713 33.54057 -17.61043 0.01853 -16.2218508338 -16.6847110517 -17.61043 +10870 65.80279 33.52339 -17.60545 0.01855 -16.2176478801 -16.6802490817 -17.60545 +10875 65.76848 33.50624 -17.60048 0.01857 -16.2134540573 -16.6757965323 -17.60048 +10880 65.73421 33.48911 -17.59551 0.01859 -16.2092593667 -16.6713434045 -17.59551 +10885 65.69998 33.47199 -17.59054 0.01861 -16.2050638099 -16.6668896991 -17.59054 +10890 65.66579 33.45489 -17.58559 0.01863 -16.2008873883 -16.6624554172 -17.58559 +10895 65.63163 33.43782 -17.58063 0.01865 -16.1967001033 -16.6580105597 -17.58063 +10900 65.59752 33.42076 -17.57568 0.01867 -16.1925219563 -16.6535751276 -17.57568 +10905 65.56344 33.40372 -17.57073 0.01869 -16.1883429489 -16.6491391218 -17.57073 +10910 65.5294 33.3867 -17.56579 0.01871 -16.1841730825 -16.6447125434 -17.56579 +10915 65.49539 33.3697 -17.56085 0.01873 -16.1800023584 -16.6402853932 -17.56085 +10920 65.46143 33.35271 -17.55592 0.01875 -16.1758407781 -16.6358676722 -17.55592 +10925 65.4275 33.33575 -17.55099 0.01877 -16.1716783431 -16.6314493814 -17.55099 +10930 65.39361 33.3188 -17.54607 0.01879 -16.1675250548 -16.6270405217 -17.54607 +10935 65.35976 33.30188 -17.54115 0.01882 -16.1633709145 -16.622631094 -17.54115 +10940 65.32594 33.28497 -17.53624 0.01884 -16.1592259238 -16.6182310994 -17.53624 +10945 65.29216 33.26808 -17.53133 0.01886 -16.155080084 -16.6138305387 -17.53133 +10950 65.25842 33.25121 -17.52642 0.01888 -16.1509333965 -16.6094294129 -17.52642 +10955 65.22472 33.23436 -17.52152 0.01890 -16.1467958628 -16.605037723 -17.52152 +10960 65.19105 33.21752 -17.51662 0.01892 -16.1426574843 -16.6006454699 -17.51662 +10965 65.15742 33.20071 -17.51173 0.01894 -16.1385282623 -16.5962626544 -17.51173 +10970 65.12383 33.18391 -17.50684 0.01896 -16.1343981983 -16.5918792776 -17.50684 +10975 65.09027 33.16714 -17.50196 0.01898 -16.1302772937 -16.5875053404 -17.50196 +10980 65.05675 33.15038 -17.49708 0.01900 -16.1261555498 -16.5831308436 -17.49708 +10985 65.02327 33.13363 -17.49221 0.01902 -16.122042968 -16.5787657883 -17.49221 +10990 64.98982 33.11691 -17.48734 0.01904 -16.1179295498 -16.5744001754 -17.48734 +10995 64.95641 33.10021 -17.48247 0.01907 -16.1138152965 -16.5700340058 -17.48247 +11000 64.92304 33.08352 -17.47761 0.01909 -16.1097102095 -16.5656772803 -17.47761 +11005 64.88971 33.06685 -17.47275 0.01911 -16.1056042902 -16.56132 -17.47275 +11010 64.85641 33.0502 -17.4679 0.01913 -16.1015075399 -16.5569721657 -17.4679 +11015 64.82314 33.03357 -17.46305 0.01915 -16.09740996 -16.5526237783 -17.46305 +11020 64.78992 33.01696 -17.45821 0.01917 -16.093321552 -16.5482848389 -17.45821 +11025 64.75673 33.00036 -17.45337 0.01919 -16.0892323171 -16.5439453482 -17.45337 +11030 64.72357 32.98379 -17.44854 0.01921 -16.0851522568 -16.5396153072 -17.44854 +11035 64.69046 32.96723 -17.44371 0.01923 -16.0810713723 -16.5352847167 -17.44371 +11040 64.65737 32.95069 -17.43888 0.01925 -16.0769896651 -16.5309535778 -17.43888 +11045 64.62433 32.93416 -17.43406 0.01928 -16.0729171365 -16.5266318913 -17.43406 +11050 64.59132 32.91766 -17.42924 0.01930 -16.0688437878 -16.5223096581 -17.42924 +11055 64.55834 32.90117 -17.42443 0.01932 -16.0647796204 -16.5179968791 -17.42443 +11060 64.52541 32.8847 -17.41962 0.01934 -16.0607146357 -16.5136835552 -17.41962 +11065 64.4925 32.86825 -17.41482 0.01936 -16.056658835 -16.5093796873 -17.41482 +11070 64.45964 32.85182 -17.41002 0.01938 -16.0526022196 -16.5050752762 -17.41002 +11075 64.42681 32.8354 -17.40522 0.01940 -16.0485447909 -16.500770323 -17.40522 +11080 64.39401 32.81901 -17.40043 0.01942 -16.0444965501 -16.4964748284 -17.40043 +11085 64.36125 32.80263 -17.39564 0.01944 -16.0404474987 -16.4921787934 -17.39564 +11090 64.32853 32.78626 -17.39086 0.01946 -16.036407638 -16.4878922188 -17.39086 +11095 64.29584 32.76992 -17.38608 0.01949 -16.0323669692 -16.4836051056 -17.38608 +11100 64.26318 32.75359 -17.38131 0.01951 -16.0283354938 -16.4793274545 -17.38131 +11105 64.23057 32.73728 -17.37654 0.01953 -16.024303213 -16.4750492665 -17.37654 +11110 64.19798 32.72099 -17.37178 0.01955 -16.0202801281 -16.4707805425 -17.37178 +11115 64.16543 32.70472 -17.36701 0.01957 -16.0162462405 -16.4665012834 -17.36701 +11120 64.13292 32.68846 -17.36226 0.01959 -16.0122315514 -16.46224149 -17.36226 +11125 64.10044 32.67222 -17.35751 0.01961 -16.0082160623 -16.4579811631 -17.35751 +11130 64.068 32.656 -17.35276 0.01963 -16.0041997743 -16.4537203037 -17.35276 +11135 64.03559 32.6398 -17.34801 0.01965 -16.0001826888 -16.4494589126 -17.34801 +11140 64.00322 32.62361 -17.34327 0.01968 -15.9961748071 -16.4452069907 -17.34327 +11145 63.97088 32.60744 -17.33854 0.01970 -15.9921761304 -16.4409645389 -17.33854 +11150 63.93858 32.59129 -17.33381 0.01972 -15.9881766602 -16.436721558 -17.33381 +11155 63.90631 32.57515 -17.32908 0.01974 -15.9841763976 -16.4324780489 -17.32908 +11160 63.87408 32.55904 -17.32436 0.01976 -15.9801853439 -16.4282440124 -17.32436 +11165 63.84188 32.54294 -17.31964 0.01978 -15.9761935005 -16.4240094494 -17.31964 +11170 63.80971 32.52686 -17.31493 0.01980 -15.9722108687 -16.4197843607 -17.31493 +11175 63.77758 32.51079 -17.31022 0.01982 -15.9682274496 -16.4155587473 -17.31022 +11180 63.74548 32.49474 -17.30551 0.01985 -15.9642432446 -16.4113326099 -17.30551 +11185 63.71342 32.47871 -17.30081 0.01987 -15.9602682549 -16.4071159494 -17.30081 +11190 63.68139 32.4627 -17.29611 0.01989 -15.9562924819 -16.4028987667 -17.29611 +11195 63.6494 32.4467 -17.29142 0.01991 -15.9523259268 -16.3986910625 -17.29142 +11200 63.61744 32.43072 -17.28673 0.01993 -15.9483585909 -16.3944828379 -17.28673 +11205 63.58551 32.41476 -17.28204 0.01995 -15.9443904753 -16.3902740935 -17.28204 +11210 63.55362 32.39881 -17.27736 0.01997 -15.9404315815 -16.3860748302 -17.27736 +11215 63.52177 32.38288 -17.27269 0.01999 -15.9364819106 -16.3818850489 -17.27269 +11220 63.48994 32.36697 -17.26801 0.02002 -15.9325214639 -16.3776847503 -17.26801 +11225 63.45815 32.35108 -17.26335 0.02004 -15.9285802426 -16.3735039355 -17.26335 +11230 63.4264 32.3352 -17.25868 0.02006 -15.9246282481 -16.3693126051 -17.25868 +11235 63.39467 32.31934 -17.25402 0.02008 -15.9206854815 -16.3651307599 -17.25402 +11240 63.36299 32.30349 -17.24937 0.02010 -15.9167519441 -16.360958401 -17.24937 +11245 63.33133 32.28767 -17.24472 0.02012 -15.9128176371 -16.3567855289 -17.24472 +11250 63.29971 32.27185 -17.24007 0.02014 -15.9088825618 -16.3526121447 -17.24007 +11255 63.26812 32.25606 -17.23543 0.02016 -15.9049567194 -16.3484482491 -17.23543 +11260 63.23657 32.24028 -17.23079 0.02019 -15.9010301112 -16.3442838429 -17.23079 +11265 63.20505 32.22452 -17.22615 0.02021 -15.8971027383 -16.340118927 -17.22615 +11270 63.17356 32.20878 -17.22152 0.02023 -15.8931846021 -16.3359635021 -17.22152 +11275 63.1421 32.19305 -17.21689 0.02025 -15.8892657036 -16.3318075691 -17.21689 +11280 63.11068 32.17734 -17.21227 0.02027 -15.8853560443 -16.3276611288 -17.21227 +11285 63.07929 32.16165 -17.20765 0.02029 -15.8814456252 -16.3235141821 -17.20765 +11290 63.04794 32.14597 -17.20304 0.02031 -15.8775444476 -16.3193767296 -17.20304 +11295 63.01662 32.13031 -17.19843 0.02034 -15.8736425127 -16.3152387724 -17.19843 +11300 62.98533 32.11466 -17.19382 0.02036 -15.8697398217 -16.311100311 -17.19382 +11305 62.95407 32.09904 -17.18922 0.02038 -15.8658463759 -16.3069713464 -17.18922 +11310 62.92285 32.08343 -17.18462 0.02040 -15.8619521764 -16.3028418794 -17.18462 +11315 62.89166 32.06783 -17.18003 0.02042 -15.8580672244 -16.2987219108 -17.18003 +11320 62.8605 32.05225 -17.17544 0.02044 -15.8541815212 -16.2946014413 -17.17544 +11325 62.82938 32.03669 -17.17085 0.02046 -15.8502950679 -16.2904804718 -17.17085 +11330 62.79829 32.02114 -17.16627 0.02049 -15.8464178658 -16.286369003 -17.16627 +11335 62.76723 32.00561 -17.16169 0.02051 -15.8425399161 -16.2822570358 -17.16169 +11340 62.7362 31.9901 -17.15712 0.02053 -15.8386712198 -16.278154571 -17.15712 +11345 62.7052 31.9746 -17.15255 0.02055 -15.8348017783 -16.2740516093 -17.15255 +11350 62.67424 31.95912 -17.14798 0.02057 -15.8309315927 -16.2699481515 -17.14798 +11355 62.64331 31.94366 -17.14342 0.02059 -15.8270706642 -16.2658541985 -17.14342 +11360 62.61242 31.92821 -17.13886 0.02061 -15.823208994 -16.261759751 -17.13886 +11365 62.58155 31.91278 -17.13431 0.02064 -15.8193565832 -16.2576748099 -17.13431 +11370 62.55072 31.89736 -17.12976 0.02066 -15.8155034331 -16.2535893758 -17.12976 +11375 62.51992 31.88196 -17.12521 0.02068 -15.8116495447 -16.2495034495 -17.12521 +11380 62.48915 31.86657 -17.12067 0.02070 -15.8078049194 -16.245427032 -17.12067 +11385 62.45841 31.85121 -17.11613 0.02072 -15.8039595582 -16.2413501238 -17.11613 +11390 62.42771 31.83585 -17.1116 0.02074 -15.8001234623 -16.2372827259 -17.1116 +11395 62.39704 31.82052 -17.10707 0.02077 -15.7962866329 -16.233214839 -17.10707 +11400 62.3664 31.8052 -17.10254 0.02079 -15.7924490712 -16.2291464639 -17.10254 +11405 62.33579 31.78989 -17.09802 0.02081 -15.7886207782 -16.2250876012 -17.09802 +11410 62.30521 31.77461 -17.09351 0.02083 -15.7848017553 -16.2210382519 -17.09351 +11415 62.27467 31.75933 -17.08899 0.02085 -15.7809720034 -16.2169784167 -17.08899 +11420 62.24415 31.74408 -17.08448 0.02087 -15.7771515238 -16.2129280963 -17.08448 +11425 62.21367 31.72883 -17.07998 0.02090 -15.7733403177 -16.2088872916 -17.07998 +11430 62.18322 31.71361 -17.07547 0.02092 -15.7695183861 -16.2048360032 -17.07547 +11435 62.1528 31.6984 -17.07098 0.02094 -15.7657157302 -16.200804232 -17.07098 +11440 62.12241 31.68321 -17.06648 0.02096 -15.7619023512 -16.1967619786 -17.06648 +11445 62.09206 31.66803 -17.06199 0.02098 -15.7580982502 -16.192729244 -17.06199 +11450 62.06173 31.65287 -17.0575 0.02100 -15.7542934283 -16.1886960287 -17.0575 +11455 62.03144 31.63772 -17.05302 0.02103 -15.7504978867 -16.1846723337 -17.05302 +11460 62.00118 31.62259 -17.04854 0.02105 -15.7467016265 -16.1806481596 -17.04854 +11465 61.97095 31.60747 -17.04407 0.02107 -15.7429146488 -16.1766335072 -17.04407 +11470 61.94075 31.59237 -17.0396 0.02109 -15.7391269548 -16.1726183772 -17.0396 +11475 61.91058 31.57729 -17.03513 0.02111 -15.7353385456 -16.1686027704 -17.03513 +11480 61.88044 31.56222 -17.03067 0.02113 -15.7315594224 -16.1645966876 -17.03067 +11485 61.85034 31.54717 -17.02621 0.02116 -15.7277795861 -16.1605901294 -17.02621 +11490 61.82026 31.53213 -17.02175 0.02118 -15.723999038 -16.1565830968 -17.02175 +11495 61.79022 31.51711 -17.0173 0.02120 -15.7202277792 -16.1525855902 -17.0173 +11500 61.7602 31.5021 -17.01286 0.02122 -15.7164658108 -16.1485976107 -17.01286 +11505 61.73022 31.48711 -17.00841 0.02124 -15.7126931338 -16.1445991587 -17.00841 +11510 61.70027 31.47213 -17.00397 0.02127 -15.7089297495 -16.1406102352 -17.00397 +11515 61.67035 31.45717 -16.99954 0.02129 -15.7051756589 -16.1366308409 -16.99954 +11520 61.64046 31.44223 -16.9951 0.02131 -15.7014108632 -16.1326409764 -16.9951 +11525 61.6106 31.4273 -16.99068 0.02133 -15.6976653633 -16.1286706425 -16.99068 +11530 61.58077 31.41238 -16.98625 0.02135 -15.6939091605 -16.12468984 -16.98625 +11535 61.55097 31.39749 -16.98183 0.02137 -15.6901622558 -16.1207185696 -16.98183 +11540 61.5212 31.3826 -16.97742 0.02140 -15.6864246504 -16.116756832 -16.97742 +11545 61.49146 31.36773 -16.973 0.02142 -15.6826763452 -16.112784628 -16.973 +11550 61.46176 31.35288 -16.96859 0.02144 -15.6789373415 -16.1088219582 -16.96859 +11555 61.43208 31.33804 -16.96419 0.02146 -15.6752076402 -16.1048688234 -16.96419 +11560 61.40243 31.32322 -16.95979 0.02148 -15.6714772426 -16.1009152243 -16.95979 +11565 61.37282 31.30841 -16.95539 0.02151 -15.6677461496 -16.0969611617 -16.95539 +11570 61.34323 31.29361 -16.951 0.02153 -15.6640243623 -16.0930166363 -16.951 +11575 61.31367 31.27884 -16.94661 0.02155 -15.6603018819 -16.0890716487 -16.94661 +11580 61.28415 31.26407 -16.94222 0.02157 -15.6565787094 -16.0851261998 -16.94222 +11585 61.25465 31.24932 -16.93784 0.02159 -15.6528648459 -16.0811902902 -16.93784 +11590 61.22518 31.23459 -16.93346 0.02162 -15.6491502924 -16.0772539206 -16.93346 +11595 61.19575 31.21987 -16.92908 0.02164 -15.6454350501 -16.0733170918 -16.92908 +11600 61.16634 31.20517 -16.92471 0.02166 -15.64172912 -16.0693898044 -16.92471 +11605 61.13696 31.19048 -16.92035 0.02168 -15.6380325031 -16.0654720592 -16.92035 +11610 61.10762 31.17581 -16.91598 0.02170 -15.6343252006 -16.0615438569 -16.91598 +11615 61.0783 31.16115 -16.91162 0.02173 -15.6306272134 -16.0576251982 -16.91162 +11620 61.04901 31.14651 -16.90727 0.02175 -15.6269385428 -16.0537160838 -16.90727 +11625 61.01975 31.13188 -16.90291 0.02177 -15.6232391896 -16.0497965145 -16.90291 +11630 60.99052 31.11726 -16.89857 0.02179 -15.619559155 -16.0458964908 -16.89857 +11635 60.96133 31.10266 -16.89422 0.02181 -15.61586844 -16.0419860135 -16.89422 +11640 60.93216 31.08808 -16.88988 0.02184 -15.6121870457 -16.0380850834 -16.88988 +11645 60.90302 31.07351 -16.88554 0.02186 -15.6085049731 -16.0341837011 -16.88554 +11650 60.87391 31.05895 -16.88121 0.02188 -15.6048322233 -16.0302918673 -16.88121 +11655 60.84482 31.04441 -16.87688 0.02190 -15.6011587973 -16.0263995827 -16.87688 +11660 60.81577 31.02989 -16.87255 0.02192 -15.5974846962 -16.022506848 -16.87255 +11665 60.78675 31.01537 -16.86823 0.02195 -15.5938199209 -16.0186236639 -16.86823 +11670 60.75776 31.00088 -16.86391 0.02197 -15.5901544726 -16.0147400311 -16.86391 +11675 60.72879 30.9864 -16.8596 0.02199 -15.5864983523 -16.0108659503 -16.8596 +11680 60.69986 30.97193 -16.85529 0.02201 -15.5828415609 -16.0069914222 -16.85529 +11685 60.67095 30.95748 -16.85098 0.02203 -15.5791840997 -16.0031164474 -16.85098 +11690 60.64207 30.94304 -16.84667 0.02206 -15.5755259695 -15.9992410267 -16.84667 +11695 60.61323 30.92861 -16.84237 0.02208 -15.5718771713 -15.9953751607 -16.84237 +11700 60.58441 30.9142 -16.83808 0.02210 -15.5682377064 -15.9915188501 -16.83808 +11705 60.55562 30.89981 -16.83378 0.02212 -15.5645875755 -15.9876520956 -16.83378 +11710 60.52685 30.88543 -16.82949 0.02215 -15.5609467798 -15.9837948979 -16.82949 +11715 60.49812 30.87106 -16.82521 0.02217 -15.5573153204 -15.9799472577 -16.82521 +11720 60.46942 30.85671 -16.82093 0.02219 -15.5536831981 -15.9760991756 -16.82093 +11725 60.44074 30.84237 -16.81665 0.02221 -15.550050414 -15.9722506523 -16.81665 +11730 60.4121 30.82805 -16.81237 0.02223 -15.5464169692 -15.9684016885 -16.81237 +11735 60.38348 30.81374 -16.8081 0.02226 -15.5427928647 -15.9645622849 -16.8081 +11740 60.35489 30.79944 -16.80384 0.02228 -15.5391781014 -15.9607324421 -16.80384 +11745 60.32633 30.78516 -16.79957 0.02230 -15.5355526803 -15.9568921609 -16.79957 +11750 60.29779 30.7709 -16.79531 0.02232 -15.5319366026 -15.9530614418 -16.79531 +11755 60.26929 30.75665 -16.79106 0.02235 -15.5283298691 -15.9492402856 -16.79106 +11760 60.24081 30.74241 -16.7868 0.02237 -15.5247124808 -15.9454086928 -16.7868 +11765 60.21237 30.72818 -16.78255 0.02239 -15.5211044389 -15.9415866643 -16.78255 +11770 60.18395 30.71397 -16.77831 0.02241 -15.5175057442 -15.9377742006 -16.77831 +11775 60.15556 30.69978 -16.77407 0.02243 -15.5139063978 -15.9339613024 -16.77407 +11780 60.12719 30.6856 -16.76983 0.02246 -15.5103064006 -15.9301479704 -16.76983 +11785 60.09886 30.67143 -16.76559 0.02248 -15.5067057537 -15.9263342053 -16.76559 +11790 60.07055 30.65728 -16.76136 0.02250 -15.5031144581 -15.9225300076 -16.76136 +11795 60.04228 30.64314 -16.75713 0.02252 -15.4995225146 -15.9187253781 -16.75713 +11800 60.01403 30.62901 -16.75291 0.02255 -15.4959399244 -15.9149303174 -16.75291 +11805 59.9858 30.6149 -16.74869 0.02257 -15.4923566884 -15.9111348261 -16.74869 +11810 59.95761 30.6008 -16.74447 0.02259 -15.4887728075 -15.907338905 -16.74447 +11815 59.92944 30.58672 -16.74026 0.02261 -15.4851982828 -15.9035525546 -16.74026 +11820 59.9013 30.57265 -16.73605 0.02264 -15.4816231152 -15.8997657757 -16.73605 +11825 59.87319 30.5586 -16.73184 0.02266 -15.4780473057 -15.8959785688 -16.73184 +11830 59.84511 30.54455 -16.72764 0.02268 -15.4744808553 -15.8922009347 -16.72764 +11835 59.81705 30.53053 -16.72344 0.02270 -15.470913765 -15.8884228739 -16.72344 +11840 59.78903 30.51651 -16.71925 0.02272 -15.4673560357 -15.8846543871 -16.71925 +11845 59.76103 30.50251 -16.71505 0.02275 -15.4637876683 -15.880875475 -16.71505 +11850 59.73305 30.48853 -16.71087 0.02277 -15.4602386639 -15.8771161382 -16.71087 +11855 59.70511 30.47455 -16.70668 0.02279 -15.4566790234 -15.8733463773 -16.70668 +11860 59.67719 30.4606 -16.7025 0.02281 -15.4531287478 -15.869586193 -16.7025 +11865 59.6493 30.44665 -16.69832 0.02284 -15.4495778381 -15.865825586 -16.69832 +11870 59.62144 30.43272 -16.69415 0.02286 -15.4460362951 -15.8620745568 -16.69415 +11875 59.5936 30.4188 -16.68998 0.02288 -15.4424941199 -15.8583231061 -16.68998 +11880 59.5658 30.4049 -16.68581 0.02290 -15.4389513133 -15.8545712345 -16.68581 +11885 59.53801 30.39101 -16.68164 0.02293 -15.4354078765 -15.8508189427 -16.68164 +11890 59.51026 30.37713 -16.67748 0.02295 -15.4318738102 -15.8470762314 -16.67748 +11895 59.48253 30.36327 -16.67333 0.02297 -15.4283491155 -15.843343101 -16.67333 +11900 59.45484 30.34942 -16.66917 0.02299 -15.4248137933 -15.8395995523 -16.66917 +11905 59.42716 30.33558 -16.66502 0.02302 -15.4212878445 -15.8358655859 -16.66502 +11910 59.39952 30.32176 -16.66088 0.02304 -15.4177712701 -15.8321412025 -16.66088 +11915 59.3719 30.30795 -16.65673 0.02306 -15.414244071 -15.8284064025 -16.65673 +11920 59.34431 30.29416 -16.6526 0.02308 -15.4107362482 -15.8246911868 -16.6526 +11925 59.31675 30.28037 -16.64846 0.02311 -15.4072178026 -15.8209655559 -16.64846 +11930 59.28921 30.2666 -16.64433 0.02313 -15.4037087351 -15.8172495103 -16.64433 +11935 59.2617 30.25285 -16.6402 0.02315 -15.4001990467 -15.8135330509 -16.6402 +11940 59.23422 30.23911 -16.63607 0.02317 -15.3966887383 -15.8098161781 -16.63607 +11945 59.20676 30.22538 -16.63195 0.02320 -15.3931878108 -15.8061088925 -16.63195 +11950 59.17933 30.21166 -16.62783 0.02322 -15.3896862651 -15.8024011949 -16.62783 +11955 59.15193 30.19796 -16.62372 0.02324 -15.3861941023 -15.7987030858 -16.62372 +11960 59.12455 30.18427 -16.6196 0.02327 -15.3826913231 -15.7949945659 -16.6196 +11965 59.0972 30.1706 -16.6155 0.02329 -15.3792079286 -15.7913056357 -16.6155 +11970 59.06988 30.15694 -16.61139 0.02331 -15.3757139196 -15.7876062958 -16.61139 +11975 59.04258 30.14329 -16.60729 0.02333 -15.3722292971 -15.7839165469 -16.60729 +11980 59.01531 30.12965 -16.60319 0.02336 -15.3687440619 -15.7802263896 -16.60319 +11985 58.98807 30.11603 -16.5991 0.02338 -15.3652682151 -15.7765458246 -16.5991 +11990 58.96085 30.10242 -16.59501 0.02340 -15.3617917574 -15.7728648523 -16.59501 +11995 58.93366 30.08883 -16.59092 0.02342 -15.3583146899 -15.7691834734 -16.59092 +12000 58.90649 30.07525 -16.58683 0.02345 -15.3548370134 -15.7655016885 -16.58683 + 1.2313812712 0.8209205017 0 + 1.230770163 0.8205130967 0 + 1.230159661 0.8201060959 0 + 1.2295497643 0.8196994986 0 + 1.2289404721 0.8192933044 0 + 1.2283317835 0.8188875125 0 + 1.2277236976 0.8184821223 0 + 1.2271162134 0.8180771334 0 + 1.2265093301 0.817672545 0 + 1.2259030467 0.8172683566 0 + 1.2252973625 0.8168645677 0 + 1.2246922765 0.8164611775 0 + 1.2240877878 0.8160581855 0 + 1.2234838955 0.8156555912 0 + 1.2228805988 0.8152533939 0 + 1.2222778968 0.814851593 0 + 1.2216757885 0.814450188 0 + 1.2210742732 0.8140491783 0 + 1.2204733499 0.8136485633 0 + 1.2198730178 0.8132483424 0 + 1.219273276 0.812848515 0 + 1.2186741236 0.8124490806 0 + 1.2180755598 0.8120500385 0 + 1.2174775837 0.8116513883 0 + 1.2168801944 0.8112531292 0 + 1.2162833911 0.8108552608 0 + 1.2156871728 0.8104577825 0 + 1.2150915389 0.8100606937 0 + 1.2144964882 0.8096639938 0 + 1.2139020202 0.8092676822 0 + 1.2133081338 0.8088717584 0 + 1.2127148282 0.8084762218 0 + 1.2121221026 0.8080810719 0 + 1.2115299561 0.8076863081 0 + 1.2109383878 0.8072919297 0 + 1.210347397 0.8068979363 0 + 1.2097569828 0.8065043273 0 + 1.2091671443 0.8061111022 0 + 1.2085778807 0.8057182602 0 + 1.2079891912 0.805325801 0 + 1.2074010748 0.8049337239 0 + 1.2068135309 0.8045420284 0 + 1.2062265585 0.804150714 0 + 1.2056401567 0.80375978 0 + 1.2050543249 0.8033692259 0 + 1.2044690621 0.8029790512 0 + 1.2038843676 0.8025892553 0 + 1.2033002404 0.8021998376 0 + 1.2027166798 0.8018107977 0 + 1.2021336849 0.8014221349 0 + 1.201551255 0.8010338487 0 + 1.2009693891 0.8006459386 0 + 1.2003880865 0.800258404 0 + 1.1998073464 0.7998712444 0 + 1.1992271679 0.7994844592 0 + 1.1986475503 0.7990980479 0 + 1.1980684927 0.79871201 0 + 1.1974899943 0.7983263449 0 + 1.1969120543 0.797941052 0 + 1.1963346718 0.7975561308 0 + 1.1957578462 0.7971715808 0 + 1.1951815765 0.7967874015 0 + 1.194605862 0.7964035923 0 + 1.1940307019 0.7960201527 0 + 1.1934560954 0.7956370821 0 + 1.1928820416 0.7952543801 0 + 1.1923085398 0.794872046 0 + 1.1917355892 0.7944900794 0 + 1.191163189 0.7941084797 0 + 1.1905913383 0.7937272463 0 + 1.1900200365 0.7933463789 0 + 1.1894492827 0.7929658768 0 + 1.1888790761 0.7925857395 0 + 1.1883094159 0.7922059665 0 + 1.1877403014 0.7918265573 0 + 1.1871717318 0.7914475113 0 + 1.1866037062 0.7910688281 0 + 1.186036224 0.790690507 0 + 1.1854692842 0.7903125476 0 + 1.1849028863 0.7899349494 0 + 1.1843370293 0.7895577119 0 + 1.1837717125 0.7891808345 0 + 1.1832069351 0.7888043166 0 + 1.1826426964 0.7884281579 0 + 1.1820789956 0.7880523578 0 + 1.1815158318 0.7876769158 0 + 1.1809532045 0.7873018313 0 + 1.1803911127 0.7869271039 0 + 1.1798295557 0.786552733 0 + 1.1792685328 0.7861787182 0 + 1.1787080432 0.7858050588 0 + 1.1781480861 0.7854317545 0 + 1.1775886607 0.7850588048 0 + 1.1770297664 0.784686209 0 + 1.1764714024 0.7843139667 0 + 1.1759135679 0.7839420775 0 + 1.1753562621 0.7835705407 0 + 1.1747994843 0.783199356 0 + 1.1742432338 0.7828285227 0 + 1.1736875098 0.7824580404 0 + 1.1731323115 0.7820879087 0 + 1.1725776383 0.7817181269 0 + 1.1720234893 0.7813486947 0 + 1.1714698638 0.7809796115 0 + 1.1709167611 0.7806108768 0 + 1.1703641805 0.7802424901 0 + 1.1698121212 0.779874451 0 + 1.1692605824 0.7795067589 0 + 1.1687095635 0.7791394134 0 + 1.1681590636 0.7787724139 0 + 1.1676090822 0.77840576 0 + 1.1670596183 0.7780394512 0 + 1.1665106714 0.777673487 0 + 1.1659622406 0.7773078669 0 + 1.1654143253 0.7769425904 0 + 1.1648669246 0.7765776571 0 + 1.164320038 0.7762130664 0 + 1.1637736647 0.7758488179 0 + 1.1632278039 0.7754849111 0 + 1.1626824549 0.7751213455 0 + 1.162137617 0.7747581207 0 + 1.1615932895 0.7743952361 0 + 1.1610494717 0.7740326913 0 + 1.1605061628 0.7736704858 0 + 1.1599633622 0.7733086191 0 + 1.1594210691 0.7729470908 0 + 1.1588792829 0.7725859004 0 + 1.1583380027 0.7722250473 0 + 1.1577972279 0.7718645312 0 + 1.1572569578 0.7715043516 0 + 1.1567171918 0.7711445079 0 + 1.1561779289 0.7707849998 0 + 1.1556391687 0.7704258267 0 + 1.1551009103 0.7700669881 0 + 1.1545631531 0.7697084837 0 + 1.1540258964 0.769350313 0 + 1.1534891395 0.7689924754 0 + 1.1529528816 0.7686349706 0 + 1.1524171221 0.768277798 0 + 1.1518818603 0.7679209572 0 + 1.1513470955 0.7675644477 0 + 1.150812827 0.7672082691 0 + 1.1502790541 0.7668524209 0 + 1.1497457762 0.7664969026 0 + 1.1492129924 0.7661417139 0 + 1.1486807022 0.7657868542 0 + 1.1481489049 0.765432323 0 + 1.1476175998 0.76507812 0 + 1.1470867861 0.7647242446 0 + 1.1465564633 0.7643706964 0 + 1.1460266306 0.764017475 0 + 1.1454972873 0.7636645799 0 + 1.1449684329 0.7633120106 0 + 1.1444400665 0.7629597667 0 + 1.1439121875 0.7626078478 0 + 1.1433847953 0.7622562534 0 + 1.1428578892 0.761904983 0 + 1.1423314685 0.7615540363 0 + 1.1418055325 0.7612034127 0 + 1.1412800806 0.7608531118 0 + 1.1407551121 0.7605031331 0 + 1.1402306263 0.7601534763 0 + 1.1397066226 0.7598041409 0 + 1.1391831002 0.7594551264 0 + 1.1386600586 0.7591064324 0 + 1.1381374971 0.7587580584 0 + 1.137615415 0.758410004 0 + 1.1370938117 0.7580622689 0 + 1.1365726864 0.7577148524 0 + 1.1360520386 0.7573677542 0 + 1.1355318676 0.7570209739 0 + 1.1350121727 0.7566745111 0 + 1.1344929533 0.7563283651 0 + 1.1339742087 0.7559825358 0 + 1.1334559383 0.7556370226 0 + 1.1329381414 0.755291825 0 + 1.1324208174 0.7549469427 0 + 1.1319039656 0.7546023752 0 + 1.1313875854 0.7542581221 0 + 1.1308716762 0.7539141829 0 + 1.1303562372 0.7535705573 0 + 1.1298412678 0.7532272448 0 + 1.1293267675 0.752884245 0 + 1.1288127356 0.7525415573 0 + 1.1282991713 0.7521991816 0 + 1.1277860742 0.7518571172 0 + 1.1272734435 0.7515153637 0 + 1.1267612786 0 0 + 1.126249579 0 0 + 1.1257383438 0 0 + 1.1252275726 0 0 + 1.1247172647 0 0 + 1.1242074194 0 0 + 1.1236980361 0 0 + 1.1231891143 0 0 + 1.1226806532 0 0 + 1.1221726523 0 0 + 1.1216651108 0 0 + 1.1211580283 0 0 + 1.1206514041 0 0 + 1.1201452375 0 0 + 1.119639528 0 0 + 1.1191342748 0 0 + 1.1186294775 0 0 + 1.1181251354 0 0 + 1.1176212478 0 0 + 1.1171178142 0 0 + 1.1166148339 0 0 + 1.1161123063 0 0 + 1.1156102309 0 0 + 1.115108607 0 0 + 1.1146074339 0 0 + 1.1141067112 0 0 + 1.1136064381 0 0 + 1.1131066142 0 0 + 1.1126072387 0 0 + 1.112108311 0 0 + 1.1116098307 0 0 + 1.111111797 0 0 + 1.1106142094 0 0 + 1.1101170672 0 0 + 1.1096203699 0 0 + 1.1091241169 0 0 + 1.1086283076 0 0 + 1.1081329413 0 0 + 1.1076380176 0 0 + 1.1071435357 0 0 + 1.1066494951 0 0 + 1.1061558953 0 0 + 1.1056627356 0 0 + 1.1051700154 0 0 + 1.1046777342 0 0 + 1.1041858913 0 0 + 1.1036944862 0 0 + 1.1032035183 0 0 + 1.102712987 0 0 + 1.1022228918 0 0 + 1.101733232 0 0 + 1.101244007 0 0 + 1.1007552164 0 0 + 1.1002668594 0 0 + 1.0997789356 0 0 + 1.0992914444 0 0 + 1.0988043851 0 0 + 1.0983177572 0 0 + 1.0978315602 0 0 + 1.0973457934 0 0 + 1.0968604564 0 0 + 1.0963755484 0 0 + 1.095891069 0 0 + 1.0954070176 0 0 + 1.0949233936 0 0 + 1.0944401965 0 0 + 1.0939574257 0 0 + 1.0934750805 0 0 + 1.0929931606 0 0 + 1.0925116652 0 0 + 1.0920305939 0 0 + 1.0915499461 0 0 + 1.0910697211 0 0 + 1.0905899186 0 0 + 1.0901105378 0 0 + 1.0896315783 0 0 + 1.0891530395 0 0 + 1.0886749208 0 0 + 1.0881972218 0 0 + 1.0877199417 0 0 + 1.0872430801 0 0 + 1.0867666365 0 0 + 1.0862906103 0 0 + 1.0858150009 0 0 + 1.0853398077 0 0 + 1.0848650304 0 0 + 1.0843906682 0 0 + 1.0839167206 0 0 + 1.0834431872 0 0 + 1.0829700674 0 0 + 1.0824973606 0 0 + 1.0820250662 0 0 + 1.0815531838 0 0 + 1.0810817128 0 0 + 1.0806106527 0 0 + 1.0801400029 0 0 + 1.0796697629 0 0 + 1.0791999322 0 0 + 1.0787305102 0 0 + 1.0782614964 0 0 + 1.0777928902 0 0 + 1.0773246912 0 0 + 1.0768568988 0 0 + 1.0763895124 0 0 + 1.0759225316 0 0 + 1.0754559559 0 0 + 1.0749897845 0 0 + 1.0745240172 0 0 + 1.0740586533 0 0 + 1.0735936923 0 0 + 1.0731291337 0 0 + 1.072664977 0 0 + 1.0722012216 0 0 + 1.071737867 0 0 + 1.0712749128 0 0 + 1.0708123583 0 0 + 1.0703502031 0 0 + 1.0698884467 0 0 + 1.0694270885 0 0 + 1.068966128 0 0 + 1.0685055647 0 0 + 1.0680453981 0 0 + 1.0675856278 0 0 + 1.067126253 0 0 + 1.0666672735 0 0 + 1.0662086886 0 0 + 1.0657504978 0 0 + 1.0652927007 0 0 + 1.0648352967 0 0 + 1.0643782853 0 0 + 1.0639216661 0 0 + 1.0634654384 0 0 + 1.0630096019 0 0 + 1.0625541559 0 0 + 1.0620991001 0 0 + 1.0616444339 0 0 + 1.0611901568 0 0 + 1.0607362683 0 0 + 1.0602827679 0 0 + 1.059829655 0 0 + 1.0593769294 0 0 + 1.0589245903 0 0 + 1.0584726373 0 0 + 1.05802107 0 0 + 1.0575698878 0 0 + 1.0571190902 0 0 + 1.0566686768 0 0 + 1.0562186471 0 0 + 1.0557690005 0 0 + 1.0553197366 0 0 + 1.0548708549 0 0 + 1.0544223549 0 0 + 1.0539742361 0 0 + 1.053526498 0 0 + 1.0530791402 0 0 + 1.0526321621 0 0 + 1.0521855633 0 0 + 1.0517393434 0 0 + 1.0512935017 0 0 + 1.0508480378 0 0 + 1.0504029514 0 0 + 1.0499582417 0 0 + 1.0495139085 0 0 + 1.0490699512 0 0 + 1.0486263694 0 0 + 1.0481831625 0 0 + 1.04774033 0 0 + 1.0472978717 0 0 + 1.0468557868 0 0 + 1.046414075 0 0 + 1.0459727358 0 0 + 1.0455317688 0 0 + 1.0450911733 0 0 + 1.0446509491 0 0 + 1.0442110956 0 0 + 1.0437716123 0 0 + 1.0433324989 0 0 + 1.0428937547 0 0 + 1.0424553794 0 0 + 1.0420173724 0 0 + 1.0415797334 0 0 + 1.0411424619 0 0 + 1.0407055573 0 0 + 1.0402690192 0 0 + 1.0398328473 0 0 + 1.0393970409 0 0 + 1.0389615997 0 0 + 1.0385265232 0 0 + 1.0380918109 0 0 + 1.0376574624 0 0 + 1.0372234772 0 0 + 1.0367898549 0 0 + 1.036356595 0 0 + 1.035923697 0 0 + 1.0354911606 0 0 + 1.0350589852 0 0 + 1.0346271704 0 0 + 1.0341957157 0 0 + 1.0337646207 0 0 + 1.033333885 0 0 + diff --git a/ota.py b/ota.py new file mode 100755 index 0000000..0b26278 --- /dev/null +++ b/ota.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_fluo import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="Fluo"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/panel_122_old.py b/panel_122_old.py new file mode 100644 index 0000000..6f2cf3b --- /dev/null +++ b/panel_122_old.py @@ -0,0 +1,184 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + + +# config +nshots = 10 +qlength = 100 +histlength = 50 + +# channels +chname_pbpsint = "SAROP11-PBPS122:INTENSITY" +chname_pbpsx = "SAROP11-PBPS122:XPOS" +chname_pbpsy = "SAROP11-PBPS122:YPOS" +chname_events = "SAR-CVME-TIFALL4:EvtSet" + +# create channels +ch_int = BS(chname_pbpsint) +ch_x = BS(chname_pbpsx) +ch_y = BS(chname_pbpsy) +ch_events = BS(chname_events) + +iso_format = "%Y-%m-%d %H:%M:%S" + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.int = np.empty(nshots) + self.x = np.empty(nshots) + self.y = np.empty(nshots) + + self.ints = deque(maxlen=qlength) + self.intstds = deque(maxlen=qlength) + self.inthist = deque(maxlen=histlength) + self.xs = deque(maxlen=qlength) + self.xstds = deque(maxlen=qlength) + self.xhist = deque(maxlen=histlength) + self.ys = deque(maxlen=qlength) + self.ystds = deque(maxlen=qlength) + self.yhist = deque(maxlen=histlength) + + self.plot_ints = plot_ints = PlotPanel(self, figsize=(6,3)) + self.plot_histI = plot_histI = PlotPanel(self, figsize=(2,3)) + self.plot_posXs = plot_posXs = PlotPanel(self, figsize=(6,3)) + self.plot_histX = plot_histX = PlotPanel(self, figsize=(2,3)) + self.plot_posYs = plot_posYs = PlotPanel(self, figsize=(6,3)) + self.plot_histY = plot_histY = PlotPanel(self, figsize=(2,3)) + + plots1 = (plot_ints, plot_histI) + plots2 = (plot_posXs, plot_histX) + plots3 = (plot_posYs, plot_histY) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + hb_plot3 = make_filled_hbox(plots3) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_plot3, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.int = np.empty(nshots) + self.x = np.empty(nshots) + self.y = np.empty(nshots) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_int.get() + self.int[i] = tempb + tempc = ch_x.get() + self.x[i] = tempc + tempd = ch_y.get() + self.y[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + self.ints.append(np.mean(self.int)) + self.intstds.append(np.std(self.int)) + self.xs.append(np.mean(self.x)) + self.xstds.append(np.std(self.x)) + self.ys.append(np.mean(self.y)) + self.ystds.append(np.std(self.y)) + + self.inthist.append(self.int) + self.xhist.append(self.x) + self.yhist.append(self.y) + + self.draw_plot() + + + def draw_plot(self): + self.plot_ints.clear() + self.plot_histI.clear() + self.plot_posXs.clear() + self.plot_histX.clear() + self.plot_posYs.clear() + self.plot_histY.clear() + + self.plot_ints.set_xlabel('time ago, a.u.') + self.plot_ints.set_ylabel('intensity, a.u.') + self.plot_histI.set_xlabel('intensity, a.u.') + self.plot_histI.set_xlim(-0.1, 3) + self.plot_posXs.set_xlabel('time ago, a.u.') + self.plot_posXs.set_ylabel('position X, mm') + self.plot_histX.set_xlabel('position X, mm') + self.plot_histX.set_xlim(-0.5, 0.5) + self.plot_posYs.set_xlabel('time ago, a.u.') + self.plot_posYs.set_ylabel('position Y, mm') + self.plot_histY.set_xlabel('position Y, mm') + self.plot_histY.set_xlim(-0.5, 0.5) + + self.plot_ints.fill_between(np.arange(0, len(self.ints)), np.asarray(self.intstds)+np.asarray(self.ints), -np.asarray(self.intstds)+np.asarray(self.ints), color='gold') + self.plot_ints.plot(np.arange(0, len(self.ints)), self.ints, '-', color='orangered') + self.plot_ints.axhline(y=1, color='k', linestyle="--") + + self.plot_posXs.fill_between(np.arange(0, len(self.xs)), np.asarray(self.xstds)+np.asarray(self.xs), -np.asarray(self.xstds)+np.asarray(self.xs), color='lightskyblue') + self.plot_posXs.plot(np.arange(0, len(self.xs)), self.xs, '-', color='dodgerblue') + self.plot_posXs.axhline(y=0, color='k', linestyle="--") + + self.plot_posYs.fill_between(np.arange(0, len(self.ys)), np.asarray(self.ystds)+np.asarray(self.ys), -np.asarray(self.ystds)+np.asarray(self.ys), color='lightgreen') + self.plot_posYs.plot(np.arange(0, len(self.ys)), self.ys, '-', color='green') + self.plot_posYs.axhline(y=0, color='k', linestyle="--") + + #if (len(self.int) > 0): + #self.plot_histI.hist(self.int, facecolor='orangered')#, edgecolor='black') + self.plot_histI.hist(np.ravel(self.inthist), facecolor='orangered', edgecolor='black') + self.plot_histI.axvline(x=np.mean(self.inthist), color='k', linestyle="--") + self.plot_histI.set_title('Intensity: {:.4f} a.u.'.format(np.nanmean(self.inthist))) + self.plot_histX.hist(np.ravel(self.xhist), facecolor='dodgerblue', edgecolor='black') + self.plot_histX.set_title('Position X: {:.4f} mm'.format(np.nanmean(self.xhist))) + self.plot_histX.axvline(x=np.mean(self.xhist), color='k', linestyle="--") + self.plot_histY.hist(np.ravel(self.yhist), facecolor='green', edgecolor='black') + self.plot_histY.set_title('Position Y: {:.4f} mm'.format(np.nanmean(self.yhist))) + self.plot_histY.axvline(x=np.mean(self.yhist), color='k', linestyle="--") + + self.plot_ints.draw() + self.plot_posXs.draw() + self.plot_posYs.draw() + + self.plot_histI.draw() + self.plot_histX.draw() + self.plot_histY.draw() + + + def on_click_clearQ(self, _event): + + self.ints.clear() + self.intstds.clear() + self.xs.clear() + self.xstds.clear() + self.ys.clear() + self.ystds.clear() diff --git a/panel_c365.py b/panel_c365.py new file mode 100644 index 0000000..dfe93fd --- /dev/null +++ b/panel_c365.py @@ -0,0 +1,228 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + + +# config +nshots = 500 +mm2fs = 6671.2 # light speed and delay stages +ttThreshold = 5 +iZeroThreshold = 0.15 + +# spectrometer axis in time +timeAx = -2.31*(np.arange(0, 2048)-1024) + +# channels +STAGEpv = epics.PV('SLAAR11-LMOT-M452:MOTOR_1.VAL') # global globi +chname_amplitude = "SARES11-SPEC125-M1.edge_amplitude" +chname_jitter = "SARES11-SPEC125-M1.edge_position" +chname_deriv = "SARES11-SPEC125-M1.edge_derivative" +chname_events = "SAR-CVME-TIFALL4:EvtSet" +chname_iZero = "SAROP11-PBPS122:INTENSITY" + +# create channels +ch_amp = BS(chname_amplitude) +ch_jitter = BS(chname_jitter) +ch_events = BS(chname_events) +ch_iZero = BS(chname_iZero) +ch_deriv = BS(chname_deriv) + +iso_format = "%Y-%m-%d %H:%M:%S" + +def goodshots(events, iZero, amps, *arrays): +#def goodshots(events, amps, *arrays): + fel = events[:, 13] + laser = events[:, 18] + darkShot = events[:, 21] + pulsePicking = events[:,200] + iZero = iZero + amplitudes = amps +# pumped_shots = np.logical_and.reduce((fel, laser, np.logical_not(darkShot), amps > ttThreshold)) + pumped_shots = np.logical_and.reduce((fel, laser, np.logical_not(darkShot), iZero > iZeroThreshold, amps > ttThreshold)) +# pumped_shots = np.logical_and.reduce((fel, laser, np.logical_not(darkShot))) + return [a[pumped_shots] for a in arrays] + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.jitter = np.empty(nshots) + self.amp = np.empty(nshots) + self.iZero = np.empty(nshots) + self.deriv = np.empty((nshots,2048)) + self.edge = np.empty((nshots,2048)) + + self.stagePos = deque(maxlen=1000) + self.jitters = deque(maxlen=1000) + self.jstds = deque(maxlen=1000) + self.amps = deque(maxlen=1000) + self.astds = deque(maxlen=1000) + + self.plot_jitters = plot_jitters = PlotPanel(self, figsize=(2,3)) + self.plot_amps = plot_amps = PlotPanel(self, figsize=(2,3)) + self.plot_edges = plot_edges = PlotPanel(self, figsize=(6,5)) + + plots1 = (plot_edges,) + hb_plot1 = make_filled_hbox(plots1) + + plots2 = (plot_jitters, plot_amps) + hb_plot2 = make_filled_hbox(plots2) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) +# hb_btns = make_filled_hbox(btns) + + self.plot_stage = plot_stage = PlotPanel(self, figsize=(6,2)) + self.plot_timeseries_jitters = plot_timeseries_jitters = PlotPanel(self, figsize=(6,2)) + self.plot_timeseries_amps = plot_timeseries_amps = PlotPanel(self, figsize=(6,2)) + plots3 = (plot_timeseries_jitters,) + plots4 = (plot_timeseries_amps,) + plots5 = (plot_stage,) + hb_plot3 = make_filled_hbox(plots3) + hb_plot4 = make_filled_hbox(plots4) + hb_plot5 = make_filled_hbox(plots5) + + self.chkbx_feedback = chkbx_feedback = wx.CheckBox(self, label="feedback") + chkbxs = (btn_clearQ, chkbx_feedback) + hb_chkbx = make_filled_hbox(chkbxs) + + widgets = (hb_plot1, hb_plot2, hb_plot3, hb_plot4, hb_plot5, hb_chkbx) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.jitter = np.empty(nshots) + self.amp = np.empty(nshots) + self.iZero = np.empty(nshots) + self.deriv = np.empty((nshots,2048)) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_jitter.get() + self.jitter[i] = tempb + tempc = ch_amp.get() + self.amp[i] = tempc + tempd = ch_iZero.get() + self.iZero[i] = tempd + tempe = ch_deriv.get() + self.deriv[i] = tempe + next(bsstream) + wx.GetApp().Yield() + + self.deriv, self.amp, self.jitter = goodshots(self.evts, self.iZero, self.amp, self.deriv, self.amp, self.jitter) + #self.deriv, self.amp, self.jitter = goodshots(self.evts, self.amp, self.deriv, self.amp, self.jitter) + + if (len(np.asarray(self.jitter)) > 1): + self.jitters.append(np.mean(self.jitter)) + self.jstds.append(np.std(self.jitter)) + self.amps.append(np.mean(self.amp)) + self.astds.append(np.std(self.amp)) + + if (self.chkbx_feedback.IsChecked()) & (np.abs(np.mean(self.jitter)) > 50) & (np.abs(np.mean(self.jitter)) < 750): + moveTo = STAGEpv.get()*mm2fs - np.mean(self.jitter) + STAGEpv.put(moveTo/mm2fs) + + self.stagePos.append(STAGEpv.get()) + + else: + print("{} Where are my X-rays?".format(self.time)) + self.jitters.append(np.nan) + self.jstds.append(np.nan) + self.amps.append(np.nan) + self.astds.append(np.nan) + self.stagePos.append(np.nan) + + self.draw_plot() + + + def draw_plot(self): + self.plot_jitters.clear() + self.plot_amps.clear() + self.plot_edges.clear() + self.plot_timeseries_jitters.clear() + self.plot_timeseries_amps.clear() + self.plot_stage.clear() + + self.plot_edges.set_xlabel('relative arrival time, fs') + self.plot_edges.set_xlim(-10000,10000) + #self.plot_edges.set_ylim(-5, ) + self.plot_edges.set_ylabel('transmission change, %') + + self.plot_timeseries_jitters.set_xlabel('time ago, a.u.') + self.plot_timeseries_jitters.set_ylabel('arrival time, fs') + + self.plot_timeseries_amps.set_xlabel('time ago, a.u.') + self.plot_timeseries_amps.set_ylabel('edge amplitude, %') + + self.plot_stage.set_xlabel('time ago, a.u.') + self.plot_stage.set_ylabel('m452 position, mm') + + self.plot_edges.set_xlabel('relative arrival time, fs') + self.plot_edges.set_xlim(-1500,1500) + self.plot_edges.set_ylabel('transmission change, %') + + self.plot_jitters.set_xlabel('relative arrival time, fs') + self.plot_jitters.set_ylabel('counts') + + self.plot_amps.set_xlabel('edge amplitudes, %') + self.plot_amps.set_ylabel('counts') + + if (len(self.deriv) > 0): + self.plot_edges.plot(timeAx, self.deriv[random.randrange(0, len(self.deriv))], color='grey') + self.plot_edges.plot(timeAx, self.deriv[random.randrange(0, len(self.deriv))], color='grey') + self.plot_edges.plot(timeAx, self.deriv[random.randrange(0, len(self.deriv))], color='grey') + self.plot_edges.plot(timeAx, self.deriv[random.randrange(0, len(self.deriv))], color='grey') + self.plot_edges.plot(timeAx, self.deriv[random.randrange(0, len(self.deriv))], color='grey') + self.plot_edges.plot(timeAx, np.mean(self.deriv, axis=0), color='orangered') + self.plot_edges.set_title("{}, offset of {}$\,$fs, jitter of {}$\,$fs rms".format(self.time,np.round(np.mean(self.jitter),1), np.round((np.std(self.jitter)),1))) + self.plot_edges.axvline(x=np.mean(self.jitter), color='k', linestyle="--") + self.plot_jitters.hist(self.jitter, facecolor='orangered', edgecolor='black') + self.plot_amps.hist(self.amp, facecolor='orangered', edgecolor='black') + + self.plot_stage.plot(self.stagePos, 'o-') + self.plot_timeseries_jitters.fill_between(np.arange(0, len(self.jitters)), np.asarray(self.jstds)+np.asarray(self.jitters), -np.asarray(self.jstds)+np.asarray(self.jitters), color='gold') + self.plot_timeseries_jitters.plot(np.arange(0, len(self.jitters)), self.jitters, 'o-', color='orangered') + self.plot_timeseries_amps.plot(np.arange(0, len(self.amps)), self.amps, 'o-', color='orangered') + self.plot_timeseries_amps.fill_between(np.arange(0, len(self.amps)), np.asarray(self.astds)+np.asarray(self.amps), -np.asarray(self.astds)+np.asarray(self.amps), color='gold') + + self.plot_edges.draw() + self.plot_jitters.draw() + self.plot_amps.draw() + self.plot_timeseries_jitters.draw() + self.plot_timeseries_amps.draw() + self.plot_stage.draw() + + + def on_click_clearQ(self, _event): + self.jitters.clear() + self.jstds.clear() + self.amps.clear() + self.astds.clear() + self.stagePos.clear() diff --git a/panel_correlate.py b/panel_correlate.py new file mode 100644 index 0000000..6aceee4 --- /dev/null +++ b/panel_correlate.py @@ -0,0 +1,163 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream +from scipy.stats.stats import pearsonr + +# config +nshots = 200 +ttThreshold = 10 +iZeroThreshold = 0.3 + +# channels +chname_jitter = "SARES11-SPEC125-M1.edge_position" +chname_jitter2 = "SARES11-SPEC125-M1.edge_position2" +chname_events = "SAR-CVME-TIFALL4:EvtSet" +chname_iZero = "SAROP11-PBPS122:INTENSITY" + +# create channels +ch_jitter = BS(chname_jitter) +ch_jitter2 = BS(chname_jitter2) +ch_events = BS(chname_events) +ch_iZero = BS(chname_iZero) + +iso_format = "%Y-%m-%d %H:%M:%S" + +def goodshots(events, iZero, *arrays): + fel = events[:, 13] + laser = events[:, 18] + darkShot = events[:, 21] + pulsePicking = events[:,200] + iZero = iZero + pumped_shots = np.logical_and.reduce((fel, laser, np.logical_not(darkShot), iZero > iZeroThreshold)) + return [a[pumped_shots] for a in arrays] + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.jitter = np.empty(nshots) + self.jitter2 = np.empty(nshots) + self.iZero = np.empty(nshots) + + self.jitters = deque(maxlen=1) + self.jitters2 = deque(maxlen=1) + self.corrs = deque(maxlen=1000) + self.diffs = deque(maxlen=10000) + + self.plot_jitters_corr = plot_jitters_corr = PlotPanel(self, figsize=(5,5)) + self.plot_corrs_time = plot_corrs_time = PlotPanel(self, figsize=(5,2)) + self.plot_diffs_time = plot_diffs_time = PlotPanel(self, figsize=(5,2)) + + plots1 = (plot_jitters_corr,) + hb_plot1 = make_filled_hbox(plots1) + + plots2 = (plot_corrs_time,) + hb_plot2 = make_filled_hbox(plots2) + + plots3 = (plot_diffs_time,) + hb_plot3 = make_filled_hbox(plots3) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + widgets = (hb_plot1, hb_plot2, hb_plot3, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.jitter = np.empty(nshots) + self.jitter2 = np.empty(nshots) + self.iZero = np.empty(nshots) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_jitter.get() + self.jitter[i] = tempb + tempc = ch_jitter2.get() + self.jitter2[i] = tempc + tempd = ch_iZero.get() + self.iZero[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + self.jitter, self.jitter2 = goodshots(self.evts, self.iZero, self.jitter, self.jitter2) + + if (len(np.asarray(self.jitter)) > 1): + self.jitters.append(self.jitter) + self.jitters2.append(np.roll(self.jitter2, 0)) + + self.pearscoeff1, _ = pearsonr(np.ravel(self.jitters), np.ravel(self.jitters2)) + self.corrs.append(self.pearscoeff1) + self.diffs.append(np.mean(np.ravel(self.jitters)) - np.mean(np.ravel(self.jitters2))) + + else: + print("{} Where are my X-rays?".format(self.time)) + self.jitters.append(np.nan) + self.jitters2.append(np.nan) + self.corrs.append(np.nan) + self.diffs.append(np.nan) + + self.draw_plot() + + + def draw_plot(self): + self.plot_jitters_corr.clear() + self.plot_corrs_time.clear() + self.plot_diffs_time.clear() + + self.plot_jitters_corr.set_xlabel(chname_jitter) + self.plot_jitters_corr.set_ylabel(chname_jitter2) + self.plot_jitters_corr.grid(True, linestyle='--') + self.plot_jitters_corr.axline((np.mean(np.ravel(self.jitters)),np.mean(np.ravel(self.jitters2))), slope=1, linestyle='--', color='black') + self.plot_jitters_corr.set_title('Correlation: {:.4f}'.format(pearsonr(np.ravel(self.jitters), np.ravel(self.jitters2))[0])) + + self.plot_corrs_time.set_xlabel('time ago, a.u.') + self.plot_corrs_time.set_ylabel('correlation') + self.plot_corrs_time.grid(True, linestyle='--') + + self.plot_diffs_time.set_xlabel('') + self.plot_diffs_time.set_ylabel('') + self.plot_diffs_time.grid(True, linestyle='--') + + self.plot_jitters_corr.scatter(np.ravel(self.jitters), np.ravel(self.jitters2), color='orangered') + self.plot_corrs_time.plot(self.corrs, 'o-', color='orangered') + self.plot_diffs_time.plot(self.diffs) + + self.plot_jitters_corr.draw() + self.plot_corrs_time.draw() + self.plot_diffs_time.draw() + + + def on_click_clearQ(self, _event): + self.jitters.clear() + self.jitters2.clear() + self.corrs.clear() + self.diffs.clear() diff --git a/panel_diff_2TT.py b/panel_diff_2TT.py new file mode 100644 index 0000000..30f7bb8 --- /dev/null +++ b/panel_diff_2TT.py @@ -0,0 +1,192 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime +from scipy.stats.stats import pearsonr + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + +def pumped(events, i0, *arrays): + fel = events[:, 13] + laser = events[:, 18] + darkShot = events[:, 21] + pumped_shots = np.logical_and.reduce((laser, np.logical_not(darkShot), i0 > i0thres)) + return [a[pumped_shots] for a in arrays] + +# config +nshots = 100 +qlength = 10000 +histlength = 1 +i0thres = 0.2 + +# channels +chname_tt1 = "SARES11-SPEC125-M1.edge_position" +chname_tt2 = "SARES11-SPEC125-M1.edge_position2" +chname_i0 = "SAROP11-PBPS122:INTENSITY" +chname_events = "SAR-CVME-TIFALL4:EvtSet" + +# create channels +ch_tt1 = BS(chname_tt1) +ch_tt2 = BS(chname_tt2) +ch_int = BS(chname_i0) +ch_i0 = BS(chname_i0) +ch_events = BS(chname_events) + +iso_format = "%Y-%m-%d %H:%M:%S" + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.tt1 = np.empty(nshots) + self.tt2 = np.empty(nshots) + self.i0 = np.empty(nshots) + + self.tt1hist = deque(maxlen=histlength) + self.tt2hist = deque(maxlen=histlength) + self.tt1s = deque(maxlen=qlength) + self.tt2s = deque(maxlen=qlength) + self.ttdiff = deque(maxlen=qlength) + + self.plot_hist_tt1 = plot_hist_tt1 = PlotPanel(self, figsize=(2,3)) + self.plot_hist_tt2 = plot_hist_tt2 = PlotPanel(self, figsize=(2,3)) + self.plot_corr = plot_corr = PlotPanel(self, figsize=(2,3)) + self.plot_diff = plot_diff = PlotPanel(self, figsize=(2,3)) + + plots1 = (plot_hist_tt1, plot_hist_tt2) + plots2 = (plot_corr,) + plots3 = (plot_diff,) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + hb_plot3 = make_filled_hbox(plots3) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_plot3, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.tt1 = np.empty(nshots) + self.tt2 = np.empty(nshots) + self.int = np.empty(nshots) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_i0.get() + self.i0[i] = tempb + tempc = ch_tt1.get() + self.tt1[i] = tempc + tempd = ch_tt2.get() + self.tt2[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + self.tt1p = np.ravel(pumped(self.evts, self.i0, self.tt1)) + self.tt2p = np.ravel(pumped(self.evts, self.i0, self.tt2)) + + if (len(self.tt1p) > 1): + print ('{} -- {} = {:.2f} a.u.'.format(self.time, chname_i0, np.nanmean(self.i0))) + + self.tt1hist.append(self.tt1p) + self.tt2hist.append(self.tt2p) + self.tt1s.append(np.mean(self.tt1p)) + self.tt2s.append(np.mean(self.tt2p)) + #self.ttdiff.append(np.array(self.tt1s) - np.array(self.tt2s)) + self.ttdiff.append(np.nanmean(np.array(self.tt1p) - np.array(self.tt2p))) + + else: + print ('{} -- {} = {:.2f} a.u. --> No Xrays'.format(self.time, chname_i0, np.nanmean(self.int))) + self.tt1hist.append(np.nan) + self.tt2hist.append(np.nan) + self.tt1s.append(np.nan) + self.tt2s.append(np.nan) + self.ttdiff.append(np.nan) + + self.draw_plot() + + def draw_plot(self): + self.plot_hist_tt1.clear() + self.plot_hist_tt2.clear() + self.plot_corr.clear() + self.plot_diff.clear() + + self.plot_hist_tt1.set_xlabel('Arr time tt (fs)') + self.plot_hist_tt2.set_xlabel('Arr time tt2 (fs)') + self.plot_corr.set_xlabel('Arr time tt1 (fs)') + self.plot_corr.set_ylabel('Arr time tt2 (fs)') + self.plot_diff.set_xlabel('time ago, a.u.') + self.plot_diff.set_ylabel('Difference (fs)') + + if (len(self.tt1p) > 1): + self.plot_hist_tt1.set_title('tt1: {:.2f} fs, jitter: {:.2f}'.format(np.nanmean(self.tt1p), np.nanstd(self.tt1p))) + self.plot_hist_tt2.set_title('tt2: {:.2f} fs, jitter: {:.2f}'.format(np.nanmean(self.tt2p), np.nanstd(self.tt2p))) + + self.plot_hist_tt1.hist(np.ravel(self.tt1hist), facecolor='dodgerblue', edgecolor='black') + self.plot_hist_tt2.hist(np.ravel(self.tt2hist), facecolor='green', edgecolor='black') + + self.plot_corr.set_title('Corr: {:.4f}'.format(pearsonr(np.ravel(self.tt1p), np.ravel(self.tt2p))[0])) + self.plot_corr.plot(np.ravel(self.tt1p), np.ravel(self.tt2p), '.', color='purple') + self.plot_corr.grid() + + #self.plot_diff.plot(np.arange(0, len(self.tt1s)), np.array(self.tt1p) - np.array(self.tt2p), '.', color='orangered') + #self.plot_diff.plot(np.array(self.tt1p) - np.array(self.tt2p), '.', color='orangered') + + self.plot_diff.set_title('Diff: {:.2f} fs'.format(self.ttdiff[-1])) + self.plot_diff.plot(np.arange(0, len(self.ttdiff)), np.array(self.ttdiff), '.', color='orangered') + + self.plot_hist_tt1.draw() + self.plot_hist_tt2.draw() + self.plot_corr.draw() + self.plot_diff.draw() + + + def on_click_clearQ(self, _event): + + self.tt1s.clear() + self.tt2s.clear() + self.ttdiff.clear() + + + + + + + + + + + + + + + + + + diff --git a/panel_fftpbps.py b/panel_fftpbps.py new file mode 100644 index 0000000..271db99 --- /dev/null +++ b/panel_fftpbps.py @@ -0,0 +1,139 @@ +from collections import deque +import random +import wx +import numpy as np +import epics +from datetime import datetime +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel +from bstrd import BS, bsstream + + +# config +nshots = 1000 +x_axis=np.arange(0,100,0.05) +quantile = 0.9 + +# channels +ch_xpos = 'SAROP11-PBPS122:XPOS' +ch_ypos = 'SAROP11-PBPS122:YPOS' +ch_intensity = 'SAROP11-PBPS122:INTENSITY' + +bs_xpos = BS(ch_xpos) +bs_ypos = BS(ch_ypos) +bs_intensity = BS(ch_intensity) + +iso_format = "%Y-%m-%d %H:%M:%S" + +def filter_outliers(quantile, a): + low = np.nanquantile(a, 0.5 - quantile/2) + high = np.nanquantile(a, 0.5 + quantile/2) + + cond_low = a > low + cond_high = a < high + cond = cond_low & cond_high + + return a[cond] + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.x = np.empty(nshots) + self.y = np.empty(nshots) + + self.powerx50Hztimeseries = deque(maxlen=1000) + self.powerxlowfreqtimeseries = deque(maxlen=1000) + self.powerxtrainfrequencies = deque(maxlen=1000) + self.powerx33hz = deque(maxlen=1000) + + self.plot_xy = plot_xy = PlotPanel(self, figsize=(6,2)) + self.plot_fft = plot_fft = PlotPanel(self, figsize=(6,2)) + self.plot_timeseries = plot_timeseries = PlotPanel(self, figsize=(6,2)) + plots1 = (plot_xy, plot_fft, plot_timeseries) + vb_plots1 = make_filled_vbox(plots1) + + widgets = (vb_plots1,) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.x = np.empty(nshots) + self.y = np.empty(nshots) + + for i in range(nshots): + tempa = bs_xpos.get() + self.x[i] = tempa + tempb = bs_ypos.get() + self.y[i] = tempb + next(bsstream) + wx.GetApp().Yield() + + self.x = filter_outliers(quantile, self.x) + self.y = filter_outliers(quantile, self.y) + + if (len(np.asarray(self.x)) > 1): + self.valsdiode = np.hstack((self.x-np.mean(self.x), np.zeros_like(self.x))) + self.vals2diode = np.hstack((self.y - np.mean(self.y), np.zeros_like(self.y))) + self.powerx = np.abs(np.fft.fft(self.valsdiode))**2 + self.powery = np.abs(np.fft.fft(self.vals2diode))**2 + + self.powerxlowfreqtimeseries.append(np.sum(self.powerx[0:200])) + self.powerx50Hztimeseries.append(np.sum(self.powerx[900:1100])) + self.powerxtrainfrequencies.append(np.sum(self.powerx[250:400])) + + else: + print("{} Where are my X-rays?".format(self.time)) + + self.draw_plot() + + + def draw_plot(self): + self.plot_xy.clear() + self.plot_fft.clear() + self.plot_timeseries.clear() + + self.plot_xy.set_xlabel('shots at 100 Hz') + self.plot_xy.set_ylabel('position in mm') + self.plot_xy.set_xlim(0,min(len(self.x),len(self.y))) + self.plot_xy.grid(True, linestyle='--') + + self.plot_xy.plot(self.valsdiode + 0.05) + self.plot_xy.plot(self.vals2diode - 0.05) + + self.plot_fft.set_xlabel('frequency, Hz') + self.plot_fft.set_ylabel('power, a.u.') + self.plot_fft.set_xlim(0,55) + self.plot_fft.grid(True, linestyle='--') + self.plot_fft.axhline(y=-5, xmin=0, xmax=0.175, color='r') + self.plot_fft.axhline(y=-5, xmin=0.8, xmax=1, color='k') + self.plot_fft.axhline(y=-5, xmin=0.25, xmax=0.35, color='g') + + x_axis1=np.linspace(0,100,len(self.powerx)) + x_axis2=np.linspace(0,100,len(self.powery)) + + self.plot_fft.plot(x_axis1, self.powerx) + self.plot_fft.plot(x_axis2, self.powery) + + self.plot_timeseries.set_xlabel('time ago, a.u.') + self.plot_timeseries.set_ylabel('power, a.u.') + self.plot_timeseries.set_ylim(0, 2000) + self.plot_timeseries.grid(True, linestyle='--') + + self.plot_timeseries.plot(self.powerxlowfreqtimeseries, color='r') + self.plot_timeseries.plot(self.powerx50Hztimeseries, color='k') + self.plot_timeseries.plot(self.powerxtrainfrequencies, color='g') + + self.plot_xy.draw() + self.plot_fft.draw() + self.plot_timeseries.draw() diff --git a/panel_fluo.py b/panel_fluo.py new file mode 100644 index 0000000..11aa1c8 --- /dev/null +++ b/panel_fluo.py @@ -0,0 +1,240 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime +from scipy.stats.stats import pearsonr + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + +def unpumped(events, *arrays): + laser = events[:, 18] + darkShot = events[:, 21] + background_shots = np.logical_and.reduce((laser, darkShot)) + return [a[background_shots] for a in arrays] + +def pumped(events, *arrays): + fel = events[:, 13] + laser = events[:, 18] + darkShot = events[:, 21] + pumped_shots = np.logical_and.reduce((laser, np.logical_not(darkShot))) + return [a[pumped_shots] for a in arrays] + + +# config +nshots = 50 +qlength = 100 +histlength = 1 + +# channels +#chname_pbpsint = "SARES11-GES1:PR1_CH1_VAL_GET" +chname_pbpsint = "SAROP11-PBPS122:INTENSITY" +#chname_pbpsint = "SARES11-SPEC125-M1.edge_amplitude" +#chname_pbpsint = "SARES30-LSCP1-FNS:CH0:VAL_GET" + +###--- FLEX Keysight ---### +#chname_fluo1 = "SARES12-GES1:PR1_CH1_VAL_GET" +#chname_fluo2 = "SARES12-GES1:PR1_CH2_VAL_GET" + +###--- PRIME Keysight ---### +chname_fluo1 = "SARES11-GES1:PR1_CH1_VAL_GET" +chname_fluo2 = "SARES11-GES1:PR1_CH2_VAL_GET" + +###--- PALM Keysight ---### +#chname_fluo1 = "SAROP11-GES1:PR1_CH1_VAL_GET" +#chname_fluo2 = "SAROP11-GES1:PR1_CH2_VAL_GET" + +chname_events = "SAR-CVME-TIFALL4:EvtSet" + +# create channels +ch_int = BS(chname_pbpsint) +ch_fluo1 = BS(chname_fluo1) +ch_fluo2 = BS(chname_fluo2) +ch_events = BS(chname_events) + +iso_format = "%Y-%m-%d %H:%M:%S" + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.iZero = np.empty(nshots) + self.fluo1 = np.empty(nshots) + self.fluo2 = np.empty(nshots) + + self.iZerosP = deque(maxlen=qlength) + self.iZerosU = deque(maxlen=qlength) + self.fluo1s = deque(maxlen=qlength) + self.fluo2s = deque(maxlen=qlength) + #self.fluo1sU = deque(maxlen=qlength) + #self.fluo2sU = deque(maxlen=qlength) + + self.corrTime1sP = deque(maxlen=qlength) + self.corrTime1sU = deque(maxlen=qlength) + self.corrTime2sP = deque(maxlen=qlength) + self.corrTime2sU = deque(maxlen=qlength) + + self.fluo1stds = deque(maxlen=qlength) + self.fluo2stds = deque(maxlen=qlength) + + self.iZerocorrsP = deque(maxlen=histlength) + self.fluocorr1sP = deque(maxlen=histlength) + self.fluocorr2sP = deque(maxlen=histlength) + self.iZerocorrsU = deque(maxlen=histlength) + self.fluocorr1sU = deque(maxlen=histlength) + self.fluocorr2sU = deque(maxlen=histlength) + + self.plot_fluo1s = plot_fluo1s = PlotPanel(self, figsize=(4,3)) + self.plot_corr1 = plot_corr1 = PlotPanel(self, figsize=(3,3)) + self.plot_timecorr1 = plot_timecorr1 = PlotPanel(self, figsize=(4,3)) + self.plot_fluo2s = plot_fluo2s = PlotPanel(self, figsize=(4,3)) + self.plot_corr2 = plot_corr2 = PlotPanel(self, figsize=(3,3)) + self.plot_timecorr2 = plot_timecorr2 = PlotPanel(self, figsize=(4,3)) + + plots1 = (plot_fluo1s, plot_corr1, plot_timecorr1) + plots2 = (plot_fluo2s, plot_corr2, plot_timecorr2) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.iZero = np.empty(nshots) + self.fluo1 = np.empty(nshots) + self.fluo2 = np.empty(nshots) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_int.get() + self.iZero[i] = tempb + tempc = ch_fluo1.get() + self.fluo1[i] = tempc + tempd = ch_fluo2.get() + self.fluo2[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + self.iZeroP = pumped(self.evts, self.iZero) + self.fluo1P = pumped(self.evts, self.fluo1) + self.fluo2P = pumped(self.evts, self.fluo2) + + self.iZeroU = unpumped(self.evts, self.iZero) + self.fluo1U = unpumped(self.evts, self.fluo1) + self.fluo2U = unpumped(self.evts, self.fluo2) + + self.iZerosP.append(np.mean(self.iZeroP)) + self.iZerosU.append(np.mean(self.iZeroU)) + + self.iZerocorrsP.append(self.iZeroP) + self.fluocorr1sP.append(self.fluo1P) + self.fluocorr2sP.append(self.fluo2P) + self.iZerocorrsU.append(self.iZeroU) + self.fluocorr1sU.append(self.fluo1U) + self.fluocorr2sU.append(self.fluo2U) + + self.fluo1s.append(np.mean(self.fluo1U)) + self.fluo1stds.append(np.std(self.fluo1U)) + self.fluo2s.append(np.mean(self.fluo2U)) + self.fluo2stds.append(np.std(self.fluo2U)) + + self.corrTime1sP.append(pearsonr(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr1sP))[0]) + self.corrTime2sP.append(pearsonr(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr2sP))[0]) + self.corrTime1sU.append(pearsonr(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr1sU))[0]) + self.corrTime2sU.append(pearsonr(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr2sU))[0]) + + self.draw_plot() + + + def draw_plot(self): + + self.plot_fluo1s.clear() + self.plot_corr1.clear() + self.plot_timecorr1.clear() + self.plot_fluo2s.clear() + self.plot_corr2.clear() + self.plot_timecorr2.clear() + + self.plot_fluo1s.set_xlabel('time ago, a.u.') + self.plot_fluo1s.set_ylabel('Diode 1 OFF, a.u.') + self.plot_corr1.set_xlabel('Izero, a.u.') + self.plot_corr1.set_ylabel('Diode 1, a.u.') + self.plot_timecorr1.set_xlabel('time ago, a.u.') + self.plot_timecorr1.set_ylabel('Correlation 1') + self.plot_fluo2s.set_xlabel('time ago, a.u.') + self.plot_fluo2s.set_ylabel('Diode 2 OFF, a.u.') + self.plot_corr2.set_xlabel('Izero, a.u.') + self.plot_corr2.set_ylabel('Diode 2, a.u.') + self.plot_timecorr2.set_xlabel('time ago, a.u.') + self.plot_timecorr2.set_ylabel('Correlation 2') + + self.plot_fluo1s.fill_between(np.arange(0, len(self.fluo1s)), np.asarray(self.fluo1stds)+np.asarray(self.fluo1s), -np.asarray(self.fluo1stds)+np.asarray(self.fluo1s), color='lightgreen') + self.plot_fluo1s.set_title('Intensity: {:.4f} a.u.'.format(np.nanmean(self.fluo1U))) + self.plot_fluo1s.plot(np.arange(0, len(self.fluo1s)), self.fluo1s, '-', color='green') + + + self.plot_fluo2s.fill_between(np.arange(0, len(self.fluo2s)), np.asarray(self.fluo2stds)+np.asarray(self.fluo2s), -np.asarray(self.fluo2stds)+np.asarray(self.fluo2s), color='lavender') + self.plot_fluo2s.set_title('Intensity: {:.4f} a.u.'.format(np.nanmean(self.fluo2U))) + self.plot_fluo2s.plot(np.arange(0, len(self.fluo2s)), self.fluo2s, '-', color='purple') + + if (len(self.corrTime1sP) > histlength): + self.plot_timecorr1.plot(np.arange(0, len(self.corrTime1sP)), np.asarray(self.corrTime1sP), color='limegreen') + self.plot_timecorr1.plot(np.arange(0, len(self.corrTime1sU)), np.asarray(self.corrTime1sU), color='green') + self.plot_timecorr2.plot(np.arange(0, len(self.corrTime2sP)), np.asarray(self.corrTime2sP), color='violet') + self.plot_timecorr2.plot(np.arange(0, len(self.corrTime2sU)), np.asarray(self.corrTime2sU), color='purple') + + self.plot_corr1.plot(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr1sU), '.', color='green', label='OFF') + self.plot_corr1.plot(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr1sP), '.', color='limegreen', label='ON') + self.plot_corr1.set_title('Corr 1 on: {:.4f} - Corr 1 off: {:.4f}'.format(pearsonr(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr1sP))[0], pearsonr(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr1sU))[0])) + self.plot_corr1.legend(loc='lower right') + + self.plot_corr2.plot(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr2sU), '.', color='purple', label='OFF') + self.plot_corr2.plot(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr2sP), '.', color='violet', label='ON') + self.plot_corr2.set_title('Corr 2 on: {:.4f} - Corr 1 off: {:.4f}'.format(pearsonr(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr2sP))[0], pearsonr(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr2sU))[0])) + self.plot_corr2.legend(loc='lower right') + + self.plot_fluo1s.draw() + self.plot_corr1.draw() + self.plot_timecorr1.draw() + self.plot_fluo2s.draw() + self.plot_corr2.draw() + self.plot_timecorr2.draw() + + + def on_click_clearQ(self, _event): + + self.plot_fluo1s.clear() + self.plot_corr1.clear() + self.plot_timecorr1.clear() + self.plot_fluo2s.clear() + self.plot_corr2.clear() + self.plot_timecorr2.clear() diff --git a/panel_fluo_static.py b/panel_fluo_static.py new file mode 100644 index 0000000..7d23958 --- /dev/null +++ b/panel_fluo_static.py @@ -0,0 +1,241 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime +from scipy.stats.stats import pearsonr + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + +def unpumped(events, *arrays): + laser = events[:, 18] + darkShot = events[:, 21] + background_shots = np.logical_and.reduce((laser, darkShot)) + return [a[background_shots] for a in arrays] + +def pumped(events, *arrays): + fel = events[:, 13] + laser = events[:, 18] + darkShot = events[:, 21] + pumped_shots = np.logical_and.reduce((laser, np.logical_not(darkShot))) + return [a[pumped_shots] for a in arrays] + + +# config +nshots = 50 +qlength = 100 +histlength = 1 + +# channels +chname_pbpsint = "SAROP11-PBPS122:INTENSITY" +#chname_pbpsint = "SARES11-SPEC125-M1.edge_amplitude" +#chname_pbpsint = "SARES30-LSCP1-FNS:CH0:VAL_GET" + +###--- FLEX Keysight ---### +#chname_fluo1 = "SARES12-GES1:PR1_CH1_VAL_GET" +#chname_fluo2 = "SARES12-GES1:PR1_CH2_VAL_GET" + +###--- PRIME Keysight ---### +chname_fluo1 = "SARES11-GES1:PR1_CH1_VAL_GET" +chname_fluo2 = "SARES11-GES1:PR1_CH2_VAL_GET" + +###--- PALM Keysight ---### +#chname_fluo1 = "SAROP11-GES1:PR1_CH1_VAL_GET" +#chname_fluo2 = "SAROP11-GES1:PR1_CH2_VAL_GET" + +chname_events = "SAR-CVME-TIFALL4:EvtSet" + +# create channels +ch_int = BS(chname_pbpsint) +ch_fluo1 = BS(chname_fluo1) +ch_fluo2 = BS(chname_fluo2) +ch_events = BS(chname_events) + +iso_format = "%Y-%m-%d %H:%M:%S" + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.iZero = np.empty(nshots) + self.fluo1 = np.empty(nshots) + self.fluo2 = np.empty(nshots) + + self.iZerosP = deque(maxlen=qlength) + self.iZerosU = deque(maxlen=qlength) + self.fluo1s = deque(maxlen=qlength) + self.fluo2s = deque(maxlen=qlength) + #self.fluo1sU = deque(maxlen=qlength) + #self.fluo2sU = deque(maxlen=qlength) + + self.corrTime1sP = deque(maxlen=qlength) + self.corrTime1sU = deque(maxlen=qlength) + self.corrTime2sP = deque(maxlen=qlength) + self.corrTime2sU = deque(maxlen=qlength) + + self.fluo1stds = deque(maxlen=qlength) + self.fluo2stds = deque(maxlen=qlength) + + self.iZerocorrsP = deque(maxlen=histlength) + self.fluocorr1sP = deque(maxlen=histlength) + self.fluocorr2sP = deque(maxlen=histlength) + self.iZerocorrsU = deque(maxlen=histlength) + self.fluocorr1sU = deque(maxlen=histlength) + self.fluocorr2sU = deque(maxlen=histlength) + + self.plot_fluo1s = plot_fluo1s = PlotPanel(self, figsize=(4,3)) + self.plot_corr1 = plot_corr1 = PlotPanel(self, figsize=(3,3)) + self.plot_timecorr1 = plot_timecorr1 = PlotPanel(self, figsize=(4,3)) + self.plot_fluo2s = plot_fluo2s = PlotPanel(self, figsize=(4,3)) + self.plot_corr2 = plot_corr2 = PlotPanel(self, figsize=(3,3)) + self.plot_timecorr2 = plot_timecorr2 = PlotPanel(self, figsize=(4,3)) + + plots1 = (plot_fluo1s, plot_corr1, plot_timecorr1) + plots2 = (plot_fluo2s, plot_corr2, plot_timecorr2) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.iZero = np.empty(nshots) + self.fluo1 = np.empty(nshots) + self.fluo2 = np.empty(nshots) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_int.get() + self.iZero[i] = tempb + tempc = ch_fluo1.get() + self.fluo1[i] = tempc + tempd = ch_fluo2.get() + self.fluo2[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + #self.iZeroP = pumped(self.evts, self.iZero) + #self.fluo1P = pumped(self.evts, self.fluo1) + #self.fluo2P = pumped(self.evts, self.fluo2) + + self.iZeroU = unpumped(self.evts, self.iZero) + self.fluo1U = unpumped(self.evts, self.fluo1) + self.fluo2U = unpumped(self.evts, self.fluo2) + + #self.iZerosP.append(np.mean(self.iZeroP)) + self.iZerosU.append(np.mean(self.iZeroU)) + + #self.iZerocorrsP.append(self.iZeroP) + #self.fluocorr1sP.append(self.fluo1P) + #self.fluocorr2sP.append(self.fluo2P) + self.iZerocorrsU.append(self.iZeroU) + self.fluocorr1sU.append(self.fluo1U) + self.fluocorr2sU.append(self.fluo2U) + + self.fluo1s.append(np.mean(self.fluo1U)) + self.fluo1stds.append(np.std(self.fluo1U)) + self.fluo2s.append(np.mean(self.fluo2U)) + self.fluo2stds.append(np.std(self.fluo2U)) + + #self.corrTime1sP.append(pearsonr(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr1sP))[0]) + #self.corrTime2sP.append(pearsonr(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr2sP))[0]) + self.corrTime1sU.append(pearsonr(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr1sU))[0]) + self.corrTime2sU.append(pearsonr(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr2sU))[0]) + + self.draw_plot() + + + def draw_plot(self): + + self.plot_fluo1s.clear() + self.plot_corr1.clear() + self.plot_timecorr1.clear() + self.plot_fluo2s.clear() + self.plot_corr2.clear() + self.plot_timecorr2.clear() + + self.plot_fluo1s.set_xlabel('time ago, a.u.') + self.plot_fluo1s.set_ylabel('Diode 1 OFF, a.u.') + self.plot_corr1.set_xlabel('Izero, a.u.') + self.plot_corr1.set_ylabel('Diode 1, a.u.') + self.plot_timecorr1.set_xlabel('time ago, a.u.') + self.plot_timecorr1.set_ylabel('Correlation 1') + self.plot_fluo2s.set_xlabel('time ago, a.u.') + self.plot_fluo2s.set_ylabel('Diode 2 OFF, a.u.') + self.plot_corr2.set_xlabel('Izero, a.u.') + self.plot_corr2.set_ylabel('Diode 2, a.u.') + self.plot_timecorr2.set_xlabel('time ago, a.u.') + self.plot_timecorr2.set_ylabel('Correlation 2') + + self.plot_fluo1s.fill_between(np.arange(0, len(self.fluo1s)), np.asarray(self.fluo1stds)+np.asarray(self.fluo1s), -np.asarray(self.fluo1stds)+np.asarray(self.fluo1s), color='lightgreen') + self.plot_fluo1s.set_title('Intensity: {:.4f} a.u.'.format(np.nanmean(self.fluo1U))) + self.plot_fluo1s.plot(np.arange(0, len(self.fluo1s)), self.fluo1s, '-', color='green') + + + self.plot_fluo2s.fill_between(np.arange(0, len(self.fluo2s)), np.asarray(self.fluo2stds)+np.asarray(self.fluo2s), -np.asarray(self.fluo2stds)+np.asarray(self.fluo2s), color='lavender') + self.plot_fluo2s.set_title('Intensity: {:.4f} a.u.'.format(np.nanmean(self.fluo2U))) + self.plot_fluo2s.plot(np.arange(0, len(self.fluo2s)), self.fluo2s, '-', color='purple') + + if (len(self.corrTime1sP) > histlength): + #self.plot_timecorr1.plot(np.arange(0, len(self.corrTime1sP)), np.asarray(self.corrTime1sP), color='limegreen') + self.plot_timecorr1.plot(np.arange(0, len(self.corrTime1sU)), np.asarray(self.corrTime1sU), color='green') + #self.plot_timecorr2.plot(np.arange(0, len(self.corrTime2sP)), np.asarray(self.corrTime2sP), color='violet') + self.plot_timecorr2.plot(np.arange(0, len(self.corrTime2sU)), np.asarray(self.corrTime2sU), color='purple') + + self.plot_corr1.plot(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr1sU), '.', color='green', label='OFF') + #self.plot_corr1.plot(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr1sP), '.', color='limegreen', label='ON') + #self.plot_corr1.set_title('Corr 1 on: {:.4f} - Corr 1 off: {:.4f}'.format(pearsonr(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr1sP))[0], pearsonr(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr1sU))[0])) + self.plot_corr1.set_title('Corr 1: {:.4f}'.format(pearsonr(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr1sU))[0])) + self.plot_corr1.legend(loc='lower right') + + self.plot_corr2.plot(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr2sU), '.', color='purple', label='OFF') + #self.plot_corr2.plot(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr2sP), '.', color='violet', label='ON') + #self.plot_corr2.set_title('Corr 2 on: {:.4f} - Corr 1 off: {:.4f}'.format(pearsonr(np.ravel(self.iZerocorrsP), np.ravel(self.fluocorr2sP))[0], pearsonr(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr2sU))[0])) + self.plot_corr2.set_title('Corr 2: {:.4f}'.format(pearsonr(np.ravel(self.iZerocorrsU), np.ravel(self.fluocorr2sU))[0])) + self.plot_corr2.legend(loc='lower right') + + self.plot_fluo1s.draw() + self.plot_corr1.draw() + self.plot_timecorr1.draw() + self.plot_fluo2s.draw() + self.plot_corr2.draw() + self.plot_timecorr2.draw() + + + def on_click_clearQ(self, _event): + + self.plot_fluo1s.clear() + self.plot_corr1.clear() + self.plot_timecorr1.clear() + self.plot_fluo2s.clear() + self.plot_corr2.clear() + self.plot_timecorr2.clear() diff --git a/panel_ota.py b/panel_ota.py new file mode 100644 index 0000000..8b62545 --- /dev/null +++ b/panel_ota.py @@ -0,0 +1,185 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime +from scipy.stats.stats import pearsonr + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + + +# config +nshots = 50 +qlength = 100 +histlength = 1 + +# channels +chname_pbpsint = "SAROP11-PBPS122:INTENSITY" +#chname_fluo1 = "SARES11-GES1:PR1_CH1_VAL_GET" +chname_fluo1 = "SAROP11-PBPS110:INTENSITY" +chname_fluo2 = "SARES11-GES1:PR1_CH2_VAL_GET" +chname_events = "SAR-CVME-TIFALL4:EvtSet" + +# create channels +ch_int = BS(chname_pbpsint) +ch_fluo1 = BS(chname_fluo1) +ch_fluo2 = BS(chname_fluo2) +ch_events = BS(chname_events) + +iso_format = "%Y-%m-%d %H:%M:%S" + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.iZero = np.empty(nshots) + self.fluo1 = np.empty(nshots) + self.fluo2 = np.empty(nshots) + + self.iZeros = deque(maxlen=qlength) + self.fluo1s = deque(maxlen=qlength) + self.fluo2s = deque(maxlen=qlength) + + self.corrTime1s = deque(maxlen=qlength) + self.corrTime2s = deque(maxlen=qlength) + + self.fluo1stds = deque(maxlen=qlength) + self.fluo2stds = deque(maxlen=qlength) + + self.iZerocorrs = deque(maxlen=histlength) + self.fluocorr1s = deque(maxlen=histlength) + self.fluocorr2s = deque(maxlen=histlength) + + self.plot_fluo1s = plot_fluo1s = PlotPanel(self, figsize=(4,3)) + self.plot_corr1 = plot_corr1 = PlotPanel(self, figsize=(3,3)) + self.plot_timecorr1 = plot_timecorr1 = PlotPanel(self, figsize=(4,3)) + self.plot_fluo2s = plot_fluo2s = PlotPanel(self, figsize=(4,3)) + self.plot_corr2 = plot_corr2 = PlotPanel(self, figsize=(3,3)) + self.plot_timecorr2 = plot_timecorr2 = PlotPanel(self, figsize=(4,3)) + + plots1 = (plot_fluo1s, plot_corr1, plot_timecorr1) + plots2 = (plot_fluo2s, plot_corr2, plot_timecorr2) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.iZero = np.empty(nshots) + self.fluo1 = np.empty(nshots) + self.fluo2 = np.empty(nshots) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_int.get() + self.iZero[i] = tempb + tempc = ch_fluo1.get() + self.fluo1[i] = tempc + tempd = ch_fluo2.get() + self.fluo2[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + self.iZeros.append(np.mean(self.iZero)) + + self.iZerocorrs.append(self.iZero) + self.fluocorr1s.append(self.fluo1) + self.fluocorr2s.append(self.fluo2) + + self.fluo1s.append(np.mean(self.fluo1)) + self.fluo1stds.append(np.std(self.fluo1)) + self.fluo2s.append(np.mean(self.fluo2)) + self.fluo2stds.append(np.std(self.fluo2)) + + self.corrTime1s.append(pearsonr(np.ravel(self.iZerocorrs), np.ravel(self.fluocorr1s))[0]) + self.corrTime2s.append(pearsonr(np.ravel(self.iZerocorrs), np.ravel(self.fluocorr2s))[0]) + + self.draw_plot() + + + def draw_plot(self): + + self.plot_fluo1s.clear() + self.plot_corr1.clear() + self.plot_timecorr1.clear() + self.plot_fluo2s.clear() + self.plot_corr2.clear() + self.plot_timecorr2.clear() + + self.plot_fluo1s.set_xlabel('time ago, a.u.') + self.plot_fluo1s.set_ylabel('Diode 1, a.u.') + self.plot_corr1.set_xlabel('Izero, a.u.') + self.plot_corr1.set_ylabel('Diode 1, a.u.') + self.plot_timecorr1.set_xlabel('time ago, a.u.') + self.plot_timecorr1.set_ylabel('Correlation 1') + self.plot_fluo2s.set_xlabel('time ago, a.u.') + self.plot_fluo2s.set_ylabel('Diode 2, a.u.') + self.plot_corr2.set_xlabel('Izero, a.u.') + self.plot_corr2.set_ylabel('Diode 2, a.u.') + self.plot_timecorr2.set_xlabel('time ago, a.u.') + self.plot_timecorr2.set_ylabel('Correlation 2') + + self.plot_fluo1s.fill_between(np.arange(0, len(self.fluo1s)), np.asarray(self.fluo1stds)+np.asarray(self.fluo1s), -np.asarray(self.fluo1stds)+np.asarray(self.fluo1s), color='lightgreen') + self.plot_fluo1s.set_title('Intensity: {:.4f} a.u.'.format(np.nanmean(self.fluo1s))) + self.plot_fluo1s.plot(np.arange(0, len(self.fluo1s)), self.fluo1s, '-', color='green') + + + self.plot_fluo2s.fill_between(np.arange(0, len(self.fluo2s)), np.asarray(self.fluo2stds)+np.asarray(self.fluo2s), -np.asarray(self.fluo2stds)+np.asarray(self.fluo2s), color='lavender') + self.plot_fluo2s.set_title('Intensity: {:.4f} a.u.'.format(np.nanmean(self.fluo2s))) + self.plot_fluo2s.plot(np.arange(0, len(self.fluo2s)), self.fluo2s, '-', color='purple') + + if (len(self.corrTime1s) > histlength): + self.plot_timecorr1.plot(np.arange(0, len(self.corrTime1s)), np.asarray(self.corrTime1s), color='green') + self.plot_timecorr2.plot(np.arange(0, len(self.corrTime2s)), np.asarray(self.corrTime2s), color='purple') + + self.plot_corr1.plot(np.ravel(self.iZerocorrs), np.ravel(self.fluocorr1s), '.', color='green') + self.plot_corr1.set_title('Correlation 1: {:.4f}'.format(pearsonr(np.ravel(self.iZerocorrs), np.ravel(self.fluocorr1s))[0])) + self.plot_corr2.plot(np.ravel(self.iZerocorrs), np.ravel(self.fluocorr2s), '.', color='purple') + self.plot_corr2.set_title('Correlation 2: {:.4f}'.format(pearsonr(np.ravel(self.iZerocorrs), np.ravel(self.fluocorr2s))[0])) + + self.plot_fluo1s.draw() + self.plot_corr1.draw() + self.plot_timecorr1.draw() + self.plot_fluo2s.draw() + self.plot_corr2.draw() + self.plot_timecorr2.draw() + + + def on_click_clearQ(self, _event): + + self.plot_fluo1s.clear() + self.plot_corr1.clear() + self.plot_timecorr1.clear() + self.plot_fluo2s.clear() + self.plot_corr2.clear() + self.plot_timecorr2.clear() diff --git a/panel_pbps053.py b/panel_pbps053.py new file mode 100644 index 0000000..c15dfce --- /dev/null +++ b/panel_pbps053.py @@ -0,0 +1,191 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + + +# config +nshots = 10 +qlength = 100 +histlength = 50 + +# channels +#chname_pbpsint = "SARFE10-PBPS053:INTENSITY" +#chname_pbpsx = "SARFE10-PBPS053:XPOS" +#chname_pbpsy = "SARFE10-PBPS053:YPOS" + +chname_pbpsint = "SAROP31-PBPS113:INTENSITY" +chname_pbpsx = "SAROP31-PBPS113:XPOS" +chname_pbpsy = "SAROP31-PBPS113:YPOS" + +chname_events = "SAR-CVME-TIFALL4:EvtSet" + +# create channels +ch_int = BS(chname_pbpsint) +ch_x = BS(chname_pbpsx) +ch_y = BS(chname_pbpsy) +ch_events = BS(chname_events) + +iso_format = "%Y-%m-%d %H:%M:%S" + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.int = np.empty(nshots) + self.x = np.empty(nshots) + self.y = np.empty(nshots) + + self.ints = deque(maxlen=qlength) + self.intstds = deque(maxlen=qlength) + self.inthist = deque(maxlen=histlength) + self.xs = deque(maxlen=qlength) + self.xstds = deque(maxlen=qlength) + self.xhist = deque(maxlen=histlength) + self.ys = deque(maxlen=qlength) + self.ystds = deque(maxlen=qlength) + self.yhist = deque(maxlen=histlength) + + self.plot_ints = plot_ints = PlotPanel(self, figsize=(6,3)) + self.plot_histI = plot_histI = PlotPanel(self, figsize=(2,3)) + self.plot_posXs = plot_posXs = PlotPanel(self, figsize=(6,3)) + self.plot_histX = plot_histX = PlotPanel(self, figsize=(2,3)) + self.plot_posYs = plot_posYs = PlotPanel(self, figsize=(6,3)) + self.plot_histY = plot_histY = PlotPanel(self, figsize=(2,3)) + + plots1 = (plot_ints, plot_histI) + plots2 = (plot_posXs, plot_histX) + plots3 = (plot_posYs, plot_histY) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + hb_plot3 = make_filled_hbox(plots3) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_plot3, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.int = np.empty(nshots) + self.x = np.empty(nshots) + self.y = np.empty(nshots) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_int.get() + self.int[i] = tempb + tempc = ch_x.get() + self.x[i] = tempc + tempd = ch_y.get() + self.y[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + self.ints.append(np.mean(self.int)) + self.intstds.append(np.std(self.int)) + self.xs.append(np.mean(self.x)) + self.xstds.append(np.std(self.x)) + self.ys.append(np.mean(self.y)) + self.ystds.append(np.std(self.y)) + + self.inthist.append(self.int) + self.xhist.append(self.x) + self.yhist.append(self.y) + + self.draw_plot() + + + def draw_plot(self): + self.plot_ints.clear() + self.plot_histI.clear() + self.plot_posXs.clear() + self.plot_histX.clear() + self.plot_posYs.clear() + self.plot_histY.clear() + + self.plot_ints.set_xlabel('time ago, a.u.') + self.plot_ints.set_ylabel('intensity, a.u.') + self.plot_histI.set_xlabel('intensity, a.u.') + self.plot_histI.set_xlim(-0.1, 3) + self.plot_posXs.set_xlabel('time ago, a.u.') + self.plot_posXs.set_ylabel('position X, mm') + self.plot_histX.set_xlabel('position X, mm') + self.plot_histX.set_xlim(-0.5, 0.5) + self.plot_posYs.set_xlabel('time ago, a.u.') + self.plot_posYs.set_ylabel('position Y, mm') + self.plot_histY.set_xlabel('position Y, mm') + self.plot_histY.set_xlim(-0.5, 0.5) + + self.plot_ints.fill_between(np.arange(0, len(self.ints)), np.asarray(self.intstds)+np.asarray(self.ints), -np.asarray(self.intstds)+np.asarray(self.ints), color='gold') + self.plot_ints.plot(np.arange(0, len(self.ints)), self.ints, '-', color='orangered') + + self.plot_posXs.fill_between(np.arange(0, len(self.xs)), np.asarray(self.xstds)+np.asarray(self.xs), -np.asarray(self.xstds)+np.asarray(self.xs), color='lightskyblue') + self.plot_posXs.plot(np.arange(0, len(self.xs)), self.xs, '-', color='dodgerblue') + self.plot_posXs.axhline(y=0, color='k', linestyle="--") + + self.plot_posYs.fill_between(np.arange(0, len(self.ys)), np.asarray(self.ystds)+np.asarray(self.ys), -np.asarray(self.ystds)+np.asarray(self.ys), color='lightgreen') + self.plot_posYs.plot(np.arange(0, len(self.ys)), self.ys, '-', color='green') + self.plot_posYs.axhline(y=0, color='k', linestyle="--") + + #if (len(self.int) > 0): + #self.plot_histI.hist(self.int, facecolor='orangered')#, edgecolor='black') + self.plot_histI.hist(np.ravel(self.inthist), facecolor='orangered', edgecolor='black') + self.plot_histI.axvline(x=np.mean(self.inthist), color='k', linestyle="--") + self.plot_histI.set_title('Intensity: {:.4f} a.u.'.format(np.nanmean(self.inthist))) + self.plot_histX.hist(np.ravel(self.xhist), facecolor='dodgerblue', edgecolor='black') + self.plot_histX.set_title('Position X: {:.4f} mm'.format(np.nanmean(self.xhist))) + self.plot_histX.axvline(x=np.mean(self.xhist), color='k', linestyle="--") + self.plot_histY.hist(np.ravel(self.yhist), facecolor='green', edgecolor='black') + self.plot_histY.set_title('Position Y: {:.4f} mm'.format(np.nanmean(self.yhist))) + self.plot_histY.axvline(x=np.mean(self.yhist), color='k', linestyle="--") + + self.plot_ints.draw() + self.plot_posXs.draw() + self.plot_posYs.draw() + + self.plot_histI.draw() + self.plot_histX.draw() + self.plot_histY.draw() + + + def on_click_clearQ(self, _event): + + self.ints.clear() + self.intstds.clear() + self.xs.clear() + self.xstds.clear() + self.ys.clear() + self.ystds.clear() + self.inthist.clear() + self.xhist.clear() + self.yhist.clear() diff --git a/panel_pbps110.py b/panel_pbps110.py new file mode 100644 index 0000000..47f7141 --- /dev/null +++ b/panel_pbps110.py @@ -0,0 +1,209 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + + +# config +nshots = 100 +qlength = 100 +histlength = 100 +quantile = 0.8 + +# channels +chname_pbpsint = "SAROP11-PBPS110:INTENSITY" +chname_pbpsx = "SAROP11-PBPS110:XPOS" +chname_pbpsy = "SAROP11-PBPS110:YPOS" +chname_events = "SAR-CVME-TIFALL4:EvtSet" + +# create channels +ch_int = BS(chname_pbpsint) +ch_x = BS(chname_pbpsx) +ch_y = BS(chname_pbpsy) +ch_events = BS(chname_events) + +iso_format = "%Y-%m-%d %H:%M:%S" + +def filter_outliers(quantile, a): + low = np.nanquantile(a, 0.5 - quantile/2) + high = np.nanquantile(a, 0.5 + quantile/2) + + cond_low = a > low + cond_high = a < high + cond = cond_low & cond_high + + return a[cond] + + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.int = np.empty(nshots) + self.x = np.empty(nshots) + self.y = np.empty(nshots) + + self.ints = deque(maxlen=qlength) + self.intstds = deque(maxlen=qlength) + self.inthist = deque(maxlen=histlength) + self.xs = deque(maxlen=qlength) + self.xstds = deque(maxlen=qlength) + self.xhist = deque(maxlen=histlength) + self.ys = deque(maxlen=qlength) + self.ystds = deque(maxlen=qlength) + self.yhist = deque(maxlen=histlength) + + self.plot_ints = plot_ints = PlotPanel(self, figsize=(6,3)) + self.plot_histI = plot_histI = PlotPanel(self, figsize=(2,3)) + self.plot_posXs = plot_posXs = PlotPanel(self, figsize=(6,3)) + self.plot_histX = plot_histX = PlotPanel(self, figsize=(2,3)) + self.plot_posYs = plot_posYs = PlotPanel(self, figsize=(6,3)) + self.plot_histY = plot_histY = PlotPanel(self, figsize=(2,3)) + + plots1 = (plot_ints, plot_histI) + plots2 = (plot_posXs, plot_histX) + plots3 = (plot_posYs, plot_histY) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + hb_plot3 = make_filled_hbox(plots3) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_plot3, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.int = np.empty(nshots, dtype=object) + self.x = np.empty(nshots, dtype=object) + self.y = np.empty(nshots, dtype=object) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_int.get() + self.int[i] = tempb + tempc = ch_x.get() + self.x[i] = tempc + tempd = ch_y.get() + self.y[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + self.x = filter_outliers(quantile, self.x) + self.y = filter_outliers(quantile, self.y) + + self.ints.append(np.mean(self.int)) + self.intstds.append(np.std(self.int)) + self.xs.append(np.mean(self.x)) + self.xstds.append(np.std(self.x)) + self.ys.append(np.mean(self.y)) + self.ystds.append(np.std(self.y)) + + self.inthist.extend(self.int) + self.xhist.extend(self.x) + self.yhist.extend(self.y) + + self.draw_plot() + + + def draw_plot(self): + self.plot_ints.clear() + self.plot_histI.clear() + self.plot_posXs.clear() + self.plot_histX.clear() + self.plot_posYs.clear() + self.plot_histY.clear() + + self.plot_ints.set_xlabel('time ago, a.u.') + self.plot_ints.set_ylabel('intensity, a.u.') + self.plot_histI.set_xlabel('intensity, a.u.') + self.plot_histI.set_xlim(-0.1, 3) + self.plot_posXs.set_xlabel('time ago, a.u.') + self.plot_posXs.set_ylabel('position X, mm') + self.plot_histX.set_xlabel('position X, mm') + self.plot_histX.set_xlim(-0.2, 0.2) + self.plot_posYs.set_xlabel('time ago, a.u.') + self.plot_posYs.set_ylabel('position Y, mm') + self.plot_histY.set_xlabel('position Y, mm') + self.plot_histY.set_xlim(-0.2, 0.2) + + self.plot_ints.fill_between(np.arange(0, len(self.ints)), np.asarray(self.intstds)+np.asarray(self.ints), -np.asarray(self.intstds)+np.asarray(self.ints), color='gold') + self.plot_ints.plot(np.arange(0, len(self.ints)), self.ints, '-', color='orangered') + self.plot_ints.axhline(y=1, color='k', linestyle="--") + + self.plot_posXs.fill_between(np.arange(0, len(self.xs)), np.asarray(self.xstds)+np.asarray(self.xs), -np.asarray(self.xstds)+np.asarray(self.xs), color='lightskyblue') + self.plot_posXs.plot(np.arange(0, len(self.xs)), self.xs, '-', color='dodgerblue') + self.plot_posXs.axhline(y=0, color='k', linestyle="--") + + self.plot_posYs.fill_between(np.arange(0, len(self.ys)), np.asarray(self.ystds)+np.asarray(self.ys), -np.asarray(self.ystds)+np.asarray(self.ys), color='lightgreen') + self.plot_posYs.plot(np.arange(0, len(self.ys)), self.ys, '-', color='green') + self.plot_posYs.axhline(y=0, color='k', linestyle="--") + + #if (len(self.int) > 0): + #self.plot_histI.hist(self.int, facecolor='orangered')#, edgecolor='black') + + #self.plot_histI.hist(np.ravel(self.inthist), facecolor='orangered', edgecolor='black') + self.inthist2plot = np.array(self.inthist, dtype=object) + self.xhist2plot = np.array(self.xhist, dtype=object) + self.yhist2plot = np.array(self.yhist, dtype=object) + + self.plot_histI.hist(np.ravel(self.inthist2plot), facecolor='orangered', edgecolor='black') + self.plot_histI.axvline(x=np.mean(self.inthist), color='k', linestyle="--") + self.plot_histI.set_title('Intensity: {:.4f} a.u.'.format(np.mean(np.ravel(self.inthist2plot)))) + #self.plot_histX.hist(np.ravel(self.xhist), facecolor='dodgerblue', edgecolor='black') + self.plot_histX.hist(np.ravel(self.xhist2plot), facecolor='dodgerblue', edgecolor='black') + self.plot_histX.set_title('Position X: {:.2f} +/- {:.2f} um'.format(np.mean(np.ravel(self.xhist2plot))*1000, np.std(self.xhist)*1000)) + self.plot_histX.axvline(x=np.mean(self.xhist), color='k', linestyle="--") + #self.plot_histY.hist(np.ravel(self.yhist), facecolor='green', edgecolor='black') + self.plot_histY.hist(np.ravel(self.yhist2plot), facecolor='green', edgecolor='black') + self.plot_histY.set_title('Position Y: {:.2f} +/- {:.2f} um'.format(np.mean(np.ravel(self.yhist2plot))*1000, np.std(self.yhist)*1000)) + self.plot_histY.axvline(x=np.mean(self.yhist), color='k', linestyle="--") + + self.plot_ints.draw() + self.plot_posXs.draw() + self.plot_posYs.draw() + + self.plot_histI.draw() + self.plot_histX.draw() + self.plot_histY.draw() + + print ('{} -- X = {:.2f} -- Y = {:.2f} -- Int = {:.4f}'.format(self.time, np.mean(np.ravel(self.xhist2plot))*1000, np.mean(np.ravel(self.yhist2plot))*1000, np.mean(np.ravel(self.inthist2plot)))) + + + def on_click_clearQ(self, _event): + + self.ints.clear() + self.intstds.clear() + self.xs.clear() + self.xstds.clear() + self.ys.clear() + self.ystds.clear() diff --git a/panel_pbps122.py b/panel_pbps122.py new file mode 100644 index 0000000..6345d59 --- /dev/null +++ b/panel_pbps122.py @@ -0,0 +1,209 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + + +# config +nshots = 100 +qlength = 100 +histlength = 100 +quantile = 0.8 + +# channels +chname_pbpsint = "SAROP11-PBPS122:INTENSITY" +chname_pbpsx = "SAROP11-PBPS122:XPOS" +chname_pbpsy = "SAROP11-PBPS122:YPOS" +chname_events = "SAR-CVME-TIFALL4:EvtSet" + +# create channels +ch_int = BS(chname_pbpsint) +ch_x = BS(chname_pbpsx) +ch_y = BS(chname_pbpsy) +ch_events = BS(chname_events) + +iso_format = "%Y-%m-%d %H:%M:%S" + +def filter_outliers(quantile, a): + low = np.nanquantile(a, 0.5 - quantile/2) + high = np.nanquantile(a, 0.5 + quantile/2) + + cond_low = a > low + cond_high = a < high + cond = cond_low & cond_high + + return a[cond] + + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.int = np.empty(nshots) + self.x = np.empty(nshots) + self.y = np.empty(nshots) + + self.ints = deque(maxlen=qlength) + self.intstds = deque(maxlen=qlength) + self.inthist = deque(maxlen=histlength) + self.xs = deque(maxlen=qlength) + self.xstds = deque(maxlen=qlength) + self.xhist = deque(maxlen=histlength) + self.ys = deque(maxlen=qlength) + self.ystds = deque(maxlen=qlength) + self.yhist = deque(maxlen=histlength) + + self.plot_ints = plot_ints = PlotPanel(self, figsize=(6,3)) + self.plot_histI = plot_histI = PlotPanel(self, figsize=(2,3)) + self.plot_posXs = plot_posXs = PlotPanel(self, figsize=(6,3)) + self.plot_histX = plot_histX = PlotPanel(self, figsize=(2,3)) + self.plot_posYs = plot_posYs = PlotPanel(self, figsize=(6,3)) + self.plot_histY = plot_histY = PlotPanel(self, figsize=(2,3)) + + plots1 = (plot_ints, plot_histI) + plots2 = (plot_posXs, plot_histX) + plots3 = (plot_posYs, plot_histY) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + hb_plot3 = make_filled_hbox(plots3) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_plot3, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.int = np.empty(nshots, dtype=object) + self.x = np.empty(nshots, dtype=object) + self.y = np.empty(nshots, dtype=object) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_int.get() + self.int[i] = tempb + tempc = ch_x.get() + self.x[i] = tempc + tempd = ch_y.get() + self.y[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + self.x = filter_outliers(quantile, self.x) + self.y = filter_outliers(quantile, self.y) + + self.ints.append(np.mean(self.int)) + self.intstds.append(np.std(self.int)) + self.xs.append(np.mean(self.x)) + self.xstds.append(np.std(self.x)) + self.ys.append(np.mean(self.y)) + self.ystds.append(np.std(self.y)) + + self.inthist.extend(self.int) + self.xhist.extend(self.x) + self.yhist.extend(self.y) + + self.draw_plot() + + + def draw_plot(self): + self.plot_ints.clear() + self.plot_histI.clear() + self.plot_posXs.clear() + self.plot_histX.clear() + self.plot_posYs.clear() + self.plot_histY.clear() + + self.plot_ints.set_xlabel('time ago, a.u.') + self.plot_ints.set_ylabel('intensity, a.u.') + self.plot_histI.set_xlabel('intensity, a.u.') + self.plot_histI.set_xlim(-0.1, 3) + self.plot_posXs.set_xlabel('time ago, a.u.') + self.plot_posXs.set_ylabel('position X, mm') + self.plot_histX.set_xlabel('position X, mm') + self.plot_histX.set_xlim(-0.2, 0.2) + self.plot_posYs.set_xlabel('time ago, a.u.') + self.plot_posYs.set_ylabel('position Y, mm') + self.plot_histY.set_xlabel('position Y, mm') + self.plot_histY.set_xlim(-0.2, 0.2) + + self.plot_ints.fill_between(np.arange(0, len(self.ints)), np.asarray(self.intstds)+np.asarray(self.ints), -np.asarray(self.intstds)+np.asarray(self.ints), color='gold') + self.plot_ints.plot(np.arange(0, len(self.ints)), self.ints, '-', color='orangered') + self.plot_ints.axhline(y=1, color='k', linestyle="--") + + self.plot_posXs.fill_between(np.arange(0, len(self.xs)), np.asarray(self.xstds)+np.asarray(self.xs), -np.asarray(self.xstds)+np.asarray(self.xs), color='lightskyblue') + self.plot_posXs.plot(np.arange(0, len(self.xs)), self.xs, '-', color='dodgerblue') + self.plot_posXs.axhline(y=0, color='k', linestyle="--") + + self.plot_posYs.fill_between(np.arange(0, len(self.ys)), np.asarray(self.ystds)+np.asarray(self.ys), -np.asarray(self.ystds)+np.asarray(self.ys), color='lightgreen') + self.plot_posYs.plot(np.arange(0, len(self.ys)), self.ys, '-', color='green') + self.plot_posYs.axhline(y=0, color='k', linestyle="--") + + #if (len(self.int) > 0): + #self.plot_histI.hist(self.int, facecolor='orangered')#, edgecolor='black') + + #self.plot_histI.hist(np.ravel(self.inthist), facecolor='orangered', edgecolor='black') + self.inthist2plot = np.array(self.inthist, dtype=object) + self.xhist2plot = np.array(self.xhist, dtype=object) + self.yhist2plot = np.array(self.yhist, dtype=object) + + self.plot_histI.hist(np.ravel(self.inthist2plot), facecolor='orangered', edgecolor='black') + self.plot_histI.axvline(x=np.mean(self.inthist), color='k', linestyle="--") + self.plot_histI.set_title('Intensity: {:.4f} a.u.'.format(np.mean(np.ravel(self.inthist2plot)))) + #self.plot_histX.hist(np.ravel(self.xhist), facecolor='dodgerblue', edgecolor='black') + self.plot_histX.hist(np.ravel(self.xhist2plot), facecolor='dodgerblue', edgecolor='black') + self.plot_histX.set_title('Position X: {:.2f} +/- {:.2f} um'.format(np.mean(np.ravel(self.xhist2plot))*1000, np.std(self.xhist)*1000)) + self.plot_histX.axvline(x=np.mean(self.xhist), color='k', linestyle="--") + #self.plot_histY.hist(np.ravel(self.yhist), facecolor='green', edgecolor='black') + self.plot_histY.hist(np.ravel(self.yhist2plot), facecolor='green', edgecolor='black') + self.plot_histY.set_title('Position Y: {:.2f} +/- {:.2f} um'.format(np.mean(np.ravel(self.yhist2plot))*1000, np.std(self.yhist)*1000)) + self.plot_histY.axvline(x=np.mean(self.yhist), color='k', linestyle="--") + + self.plot_ints.draw() + self.plot_posXs.draw() + self.plot_posYs.draw() + + self.plot_histI.draw() + self.plot_histX.draw() + self.plot_histY.draw() + + print ('{} -- X = {:.2f} -- Y = {:.2f} -- Int = {:.4f}'.format(self.time, np.mean(np.ravel(self.xhist2plot))*1000, np.mean(np.ravel(self.yhist2plot))*1000, np.mean(np.ravel(self.inthist2plot)))) + + + def on_click_clearQ(self, _event): + + self.ints.clear() + self.intstds.clear() + self.xs.clear() + self.xstds.clear() + self.ys.clear() + self.ystds.clear() diff --git a/panel_pbps149.py b/panel_pbps149.py new file mode 100644 index 0000000..1636b46 --- /dev/null +++ b/panel_pbps149.py @@ -0,0 +1,209 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + + +# config +nshots = 100 +qlength = 100 +histlength = 100 +quantile = 0.8 + +# channels +chname_pbpsint = "SAROP31-PBPS149:INTENSITY" +chname_pbpsx = "SAROP31-PBPS149:XPOS" +chname_pbpsy = "SAROP31-PBPS149:YPOS" +chname_events = "SAR-CVME-TIFALL6:EvtSet" + +# create channels +ch_int = BS(chname_pbpsint) +ch_x = BS(chname_pbpsx) +ch_y = BS(chname_pbpsy) +ch_events = BS(chname_events) + +iso_format = "%Y-%m-%d %H:%M:%S" + +def filter_outliers(quantile, a): + low = np.nanquantile(a, 0.5 - quantile/2) + high = np.nanquantile(a, 0.5 + quantile/2) + + cond_low = a > low + cond_high = a < high + cond = cond_low & cond_high + + return a[cond] + + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.int = np.empty(nshots) + self.x = np.empty(nshots) + self.y = np.empty(nshots) + + self.ints = deque(maxlen=qlength) + self.intstds = deque(maxlen=qlength) + self.inthist = deque(maxlen=histlength) + self.xs = deque(maxlen=qlength) + self.xstds = deque(maxlen=qlength) + self.xhist = deque(maxlen=histlength) + self.ys = deque(maxlen=qlength) + self.ystds = deque(maxlen=qlength) + self.yhist = deque(maxlen=histlength) + + self.plot_ints = plot_ints = PlotPanel(self, figsize=(6,3)) + self.plot_histI = plot_histI = PlotPanel(self, figsize=(2,3)) + self.plot_posXs = plot_posXs = PlotPanel(self, figsize=(6,3)) + self.plot_histX = plot_histX = PlotPanel(self, figsize=(2,3)) + self.plot_posYs = plot_posYs = PlotPanel(self, figsize=(6,3)) + self.plot_histY = plot_histY = PlotPanel(self, figsize=(2,3)) + + plots1 = (plot_ints, plot_histI) + plots2 = (plot_posXs, plot_histX) + plots3 = (plot_posYs, plot_histY) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + hb_plot3 = make_filled_hbox(plots3) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_plot3, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.int = np.empty(nshots, dtype=object) + self.x = np.empty(nshots, dtype=object) + self.y = np.empty(nshots, dtype=object) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_int.get() + self.int[i] = tempb + tempc = ch_x.get() + self.x[i] = tempc + tempd = ch_y.get() + self.y[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + self.x = filter_outliers(quantile, self.x) + self.y = filter_outliers(quantile, self.y) + + self.ints.append(np.mean(self.int)) + self.intstds.append(np.std(self.int)) + self.xs.append(np.mean(self.x)) + self.xstds.append(np.std(self.x)) + self.ys.append(np.mean(self.y)) + self.ystds.append(np.std(self.y)) + + self.inthist.extend(self.int) + self.xhist.extend(self.x) + self.yhist.extend(self.y) + + self.draw_plot() + + + def draw_plot(self): + self.plot_ints.clear() + self.plot_histI.clear() + self.plot_posXs.clear() + self.plot_histX.clear() + self.plot_posYs.clear() + self.plot_histY.clear() + + self.plot_ints.set_xlabel('time ago, a.u.') + self.plot_ints.set_ylabel('intensity, a.u.') + self.plot_histI.set_xlabel('intensity, a.u.') + self.plot_histI.set_xlim(-0.1, 3) + self.plot_posXs.set_xlabel('time ago, a.u.') + self.plot_posXs.set_ylabel('position X, mm') + self.plot_histX.set_xlabel('position X, mm') + self.plot_histX.set_xlim(-0.2, 0.2) + self.plot_posYs.set_xlabel('time ago, a.u.') + self.plot_posYs.set_ylabel('position Y, mm') + self.plot_histY.set_xlabel('position Y, mm') + self.plot_histY.set_xlim(-0.2, 0.2) + + self.plot_ints.fill_between(np.arange(0, len(self.ints)), np.asarray(self.intstds)+np.asarray(self.ints), -np.asarray(self.intstds)+np.asarray(self.ints), color='gold') + self.plot_ints.plot(np.arange(0, len(self.ints)), self.ints, '-', color='orangered') + self.plot_ints.axhline(y=1, color='k', linestyle="--") + + self.plot_posXs.fill_between(np.arange(0, len(self.xs)), np.asarray(self.xstds)+np.asarray(self.xs), -np.asarray(self.xstds)+np.asarray(self.xs), color='lightskyblue') + self.plot_posXs.plot(np.arange(0, len(self.xs)), self.xs, '-', color='dodgerblue') + self.plot_posXs.axhline(y=0, color='k', linestyle="--") + + self.plot_posYs.fill_between(np.arange(0, len(self.ys)), np.asarray(self.ystds)+np.asarray(self.ys), -np.asarray(self.ystds)+np.asarray(self.ys), color='lightgreen') + self.plot_posYs.plot(np.arange(0, len(self.ys)), self.ys, '-', color='green') + self.plot_posYs.axhline(y=0, color='k', linestyle="--") + + #if (len(self.int) > 0): + #self.plot_histI.hist(self.int, facecolor='orangered')#, edgecolor='black') + + #self.plot_histI.hist(np.ravel(self.inthist), facecolor='orangered', edgecolor='black') + self.inthist2plot = np.array(self.inthist, dtype=object) + self.xhist2plot = np.array(self.xhist, dtype=object) + self.yhist2plot = np.array(self.yhist, dtype=object) + + self.plot_histI.hist(np.ravel(self.inthist2plot), facecolor='orangered', edgecolor='black') + self.plot_histI.axvline(x=np.mean(self.inthist), color='k', linestyle="--") + self.plot_histI.set_title('Intensity: {:.4f} a.u.'.format(np.mean(np.ravel(self.inthist2plot)))) + #self.plot_histX.hist(np.ravel(self.xhist), facecolor='dodgerblue', edgecolor='black') + self.plot_histX.hist(np.ravel(self.xhist2plot), facecolor='dodgerblue', edgecolor='black') + self.plot_histX.set_title('Position X: {:.2f} +/- {:.2f} um'.format(np.mean(np.ravel(self.xhist2plot))*1000, np.std(self.xhist)*1000)) + self.plot_histX.axvline(x=np.mean(self.xhist), color='k', linestyle="--") + #self.plot_histY.hist(np.ravel(self.yhist), facecolor='green', edgecolor='black') + self.plot_histY.hist(np.ravel(self.yhist2plot), facecolor='green', edgecolor='black') + self.plot_histY.set_title('Position Y: {:.2f} +/- {:.2f} um'.format(np.mean(np.ravel(self.yhist2plot))*1000, np.std(self.yhist)*1000)) + self.plot_histY.axvline(x=np.mean(self.yhist), color='k', linestyle="--") + + self.plot_ints.draw() + self.plot_posXs.draw() + self.plot_posYs.draw() + + self.plot_histI.draw() + self.plot_histX.draw() + self.plot_histY.draw() + + print ('{} -- X = {:.2f} -- Y = {:.2f} -- Int = {:.4f}'.format(self.time, np.mean(np.ravel(self.xhist2plot))*1000, np.mean(np.ravel(self.yhist2plot))*1000, np.mean(np.ravel(self.inthist2plot)))) + + + def on_click_clearQ(self, _event): + + self.ints.clear() + self.intstds.clear() + self.xs.clear() + self.xstds.clear() + self.ys.clear() + self.ystds.clear() diff --git a/panel_ppPrime_xas.py b/panel_ppPrime_xas.py new file mode 100644 index 0000000..39f9216 --- /dev/null +++ b/panel_ppPrime_xas.py @@ -0,0 +1,176 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + +def unpumped(events, *arrays): + laser = events[:, 18] + darkShot = events[:, 21] + background_shots = np.logical_and.reduce((laser, darkShot)) + return [a[background_shots] for a in arrays] + +def pumped(events, *arrays): + fel = events[:, 13] + laser = events[:, 18] + darkShot = events[:, 21] + pumped_shots = np.logical_and.reduce((laser, np.logical_not(darkShot))) + return [a[pumped_shots] for a in arrays] + + +# config +nshots = 1000 +qlength = 100 + +# channels + +chname_diode = "SARES11-GES1:PR1_CH1_VAL_GET" #Prime Keysight +#chname_diode = "SARES12-GES1:PR1_CH1_VAL_GET" #Flex Keysight +#chname_diode = "SLAAR11-LSCP1-FNS:CH0:VAL_GET" #Laser IoXos + +chname_energy = "SARES11-CVME-EVR0:DUMMY_PV3_NBS" +chname_i0 = "SAROP11-PBPS110:INTENSITY" +chname_events = "SAR-CVME-TIFALL4:EvtSet" + +ENERGYpv = epics.PV('SAROP11-ARAMIS:ENERGY') + +# create channels +ch_diode = BS(chname_diode) +ch_i0 = BS(chname_i0) +ch_events = BS(chname_events) +ch_energy = BS(chname_energy) + +iso_format = "%Y-%m-%d %H:%M:%S" + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.diode = np.empty(nshots) + self.i0 = np.empty(nshots) + self.energy = np.empty(nshots) + self.diode_p_norm = np.empty(nshots) + self.diode_u_norm = np.empty(nshots) + + self.nrgs_p = deque(maxlen=qlength) + self.diodes_p = deque(maxlen=qlength) + self.diodes_pstd = deque(maxlen=qlength) + self.diodes_u = deque(maxlen=qlength) + self.diodes_ustd = deque(maxlen=qlength) + self.pp = deque(maxlen=qlength) + self.ppstd = deque(maxlen=qlength) + + self.plot_diodes = plot_diodes = PlotPanel(self, figsize=(6,3)) + self.plot_pp = plot_pp = PlotPanel(self, figsize=(6,3)) + + plots1 = (plot_diodes,) + plots2 = (plot_pp,) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.diode = np.empty(nshots) + self.i0 = np.empty(nshots) + self.energy = np.empty(nshots) + + self.current_energy = ENERGYpv.get() + #self.energy_axis_pv.append(self.current_energy) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_diode.get() + self.diode[i] = tempb + tempc = ch_i0.get() + self.i0[i] = tempc + tempd = ch_energy.get() + self.energy[i] = tempd + next(bsstream) + wx.GetApp().Yield() + + self.nrg_p = pumped(self.evts, self.energy) + self.diode_p = pumped(self.evts, self.diode) + self.diode_u = unpumped(self.evts, self.diode) + self.i0_p = pumped(self.evts, self.i0) + self.i0_u = unpumped(self.evts, self.i0) + + self.diode_p_norm = np.asarray(self.diode_p)/np.asarray(self.i0_p) + self.diode_u_norm = np.asarray(self.diode_u)/np.asarray(self.i0_u) + pump = np.nanmean(self.diode_p_norm) + unpump = np.nanmean(self.diode_u_norm) + pump_e = np.nanstd(self.diode_p_norm) + unpump_e = np.nanstd(self.diode_u_norm) + pp_e = np.sqrt((pump_e/pump)**2+(unpump_e/unpump)**2) + + self.nrgs_p.append(np.nanmean(self.nrg_p)) + self.diodes_p.append(pump) + self.diodes_pstd.append(pump_e) + self.diodes_u.append(unpump) + self.diodes_ustd.append(unpump_e) + #self.pp.append(-np.log10(pump/unpump)) + self.pp.append(pump - unpump) + + #self.ppstd.append(pp_e/((pump/unpump)*np.log(10))) + self.ppstd.append(np.sqrt(pump**2+unpump**2)) + + self.draw_plot() + + def draw_plot(self): + self.plot_diodes.clear() + self.plot_pp.clear() + + self.plot_diodes.set_xlabel('Energy (eV)') + self.plot_diodes.set_ylabel('intensity, a.u.') + + self.plot_pp.set_xlabel('Energy (eV)') + self.plot_pp.set_ylabel('Absorbance') + + self.plot_diodes.plot(self.nrgs_p, self.diodes_p, '-', color='royalblue', label='on') + self.plot_diodes.plot(self.nrgs_p, self.diodes_u, '-', color='orange', label='off') + self.plot_diodes.legend(loc='lower left') + self.plot_pp.plot(self.nrgs_p, self.pp, '-', color='green') + #self.plot_pp.fill_between(np.arange(0, len(self.pp)), np.asarray(self.ppstd)+np.asarray(self.pp), -np.asarray(self.ppstd)+np.asarray(self.pp), color='lightgreen') + #self.plot_pp.set_ylim(-1) + self.plot_pp.grid() + + self.plot_diodes.draw() + self.plot_pp.draw() + + def on_click_clearQ(self, _event): + + self.diodes_p.clear() + self.diodes_u.clear() + self.pp.clear() + self.ppstd.clear() diff --git a/panel_ppYAG.py b/panel_ppYAG.py new file mode 100644 index 0000000..cd38e65 --- /dev/null +++ b/panel_ppYAG.py @@ -0,0 +1,157 @@ +from collections import deque +import random +import wx +import numpy as np +import epics + +from datetime import datetime + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + +def unpumped(events, *arrays): + laser = events[:, 18] + darkShot = events[:, 21] + background_shots = np.logical_and.reduce((laser, darkShot)) + return [a[background_shots] for a in arrays] + +def pumped(events, *arrays): + fel = events[:, 13] + laser = events[:, 18] + darkShot = events[:, 21] + pumped_shots = np.logical_and.reduce((laser, np.logical_not(darkShot))) + return [a[pumped_shots] for a in arrays] + + +# config +nshots = 50 +qlength = 100 + +# channels +#chname_diode = "SLAAR11-LSCP1-FNS:CH0:VAL_GET" +chname_diode = "SAROP11-GES1:PR1_CH1_VAL_GET" +#chname_diode = "SARES11-GES1:PR1_CH1_VAL_GET" +chname_i0 = "SAROP11-PBPS110:INTENSITY" +chname_events = "SAR-CVME-TIFALL5:EvtSet" + +# create channels +ch_diode = BS(chname_diode) +ch_i0 = BS(chname_i0) +ch_events = BS(chname_events) + +iso_format = "%Y-%m-%d %H:%M:%S" + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.diode = np.empty(nshots) + self.i0 = np.empty(nshots) + self.diode_p_norm = np.empty(nshots) + self.diode_u_norm = np.empty(nshots) + + self.diodes_p = deque(maxlen=qlength) + self.diodes_pstd = deque(maxlen=qlength) + self.diodes_u = deque(maxlen=qlength) + self.diodes_ustd = deque(maxlen=qlength) + self.pp = deque(maxlen=qlength) + self.ppstd = deque(maxlen=qlength) + + self.plot_diodes = plot_diodes = PlotPanel(self, figsize=(6,3)) + self.plot_pp = plot_pp = PlotPanel(self, figsize=(6,3)) + + plots1 = (plot_diodes,) + plots2 = (plot_pp,) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + hb_btns = make_filled_hbox(btns) + + widgets = (hb_plot1, hb_plot2, hb_btns) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.diode = np.empty(nshots) + self.i0 = np.empty(nshots) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_diode.get() + self.diode[i] = tempb + tempc = ch_i0.get() + self.i0[i] = tempc + next(bsstream) + wx.GetApp().Yield() + + self.diode_p = pumped(self.evts, self.diode) + self.diode_u = unpumped(self.evts, self.diode) + self.i0_p = pumped(self.evts, self.i0) + self.i0_u = unpumped(self.evts, self.i0) + + self.diode_p_norm = np.asarray(self.diode_p)#/np.asarray(self.i0_p) + self.diode_u_norm = np.asarray(self.diode_u)#/np.asarray(self.i0_u) + pump = np.nanmean(self.diode_p_norm) + unpump = np.nanmean(self.diode_u_norm) + pump_e = np.nanstd(self.diode_p_norm) + unpump_e = np.nanstd(self.diode_u_norm) + pp_e = np.sqrt((pump_e/pump)**2+(unpump_e/unpump)**2) + + self.diodes_p.append(pump) + self.diodes_pstd.append(pump_e) + self.diodes_u.append(unpump) + self.diodes_ustd.append(unpump_e) + self.pp.append(-np.log10(pump/unpump)) + self.ppstd.append(pp_e/((pump/unpump)*np.log(10))) + + self.draw_plot() + + def draw_plot(self): + self.plot_diodes.clear() + self.plot_pp.clear() + + self.plot_diodes.set_xlabel('time ago, a.u.') + self.plot_diodes.set_ylabel('intensity, a.u.') + + self.plot_pp.set_xlabel('time ago, a.u.') + self.plot_pp.set_ylabel('Absorbance') + + self.plot_diodes.plot(np.arange(0, len(self.diodes_p)), self.diodes_p, '-', color='royalblue', label='on') + self.plot_diodes.plot(np.arange(0, len(self.diodes_u)), self.diodes_u, '-', color='orange', label='off') + self.plot_diodes.legend(loc='lower left') + self.plot_pp.plot(np.arange(0, len(self.pp)), self.pp, '-', color='green') + #self.plot_pp.fill_between(np.arange(0, len(self.pp)), np.asarray(self.ppstd)+np.asarray(self.pp), -np.asarray(self.ppstd)+np.asarray(self.pp), color='lightgreen') + #self.plot_pp.set_ylim(-1) + self.plot_pp.grid() + + self.plot_diodes.draw() + self.plot_pp.draw() + + def on_click_clearQ(self, _event): + + self.diodes_p.clear() + self.diodes_u.clear() + self.pp.clear() + self.ppstd.clear() diff --git a/panel_psss.py b/panel_psss.py new file mode 100644 index 0000000..b7407b2 --- /dev/null +++ b/panel_psss.py @@ -0,0 +1,377 @@ +from collections import deque +import random, os +import wx +import numpy as np +import epics + +from datetime import datetime +from scipy.stats.stats import pearsonr + +#from epics.wx import MotorPanel + +from slic.gui.widgets import LabeledMathEntry +from slic.gui.widgets import make_filled_hbox, make_filled_vbox, EXPANDING +from slic.gui.widgets.plotting import PlotPanel + +from bstrd import BS, bsstream + + +# config +nshots = 50 +qlength = 100 +qlength2 =500 +histlength = 1 +qchecklen = 10 + +offset = 0 #in eV +Int_threshold = 100 +DeltaE2move = 3 + +# channels +ENERGYpv = epics.PV('SARFE10-PSSS059:ENERGY') +CRYSTALpv = epics.PV('SARFE10-PSSS059:CRYSTAL_SP') +GRATINGpv = epics.PV('SARFE10-PSSS055:GRATING_SP') +SPECXpv = epics.PV('SARFE10-PSSS059:SPECTRUM_X') +SPECYpv = epics.PV('SARFE10-PSSS059:SPECTRUM_Y') +DCMpv = epics.PV('SAROP11-ARAMIS:ENERGY') +FELINTpv = epics.PV('SARFE10-PBPG050:PHOTON-ENERGY-PER-PULSE-AVG') + +camArmRotpv = epics.PV('SARFE10-PSSS059:MOTOR_ROT_X4') +cristBendRotpv = epics.PV('SARFE10-PSSS059:MOTOR_ROT_X3') +cristBendRotpv_move = epics.PV('SARFE10-PSSS059:MOTOR_ROT_X3.MOVN') +camPosXpv = epics.PV('SARFE10-PSSS059:MOTOR_X5') + +chname_pbpsint = "SAROP11-PBPS110:INTENSITY" +#chname_pbpsint = "SAROP21-PBPS103:INTENSITY" +#chname_pbpsint = "SAROP31-PBPS113:INTENSITY" + +chname_psss_y = "SARFE10-PSSS059:SPECTRUM_Y" +chname_psss_x = "SARFE10-PSSS059:SPECTRUM_X" +chname_psss_com = "SARFE10-PSSS059:SPECT-COM" +#chname_psss_fwhm = "SARFE10-PSSS059:FIT-FWHM" +chname_psss_fwhm = "SARFE10-PSSS059:AVG-FIT-FWHM" + +chname_events = "SAR-CVME-TIFALL4:EvtSet" + +# create channels +ch_int = BS(chname_pbpsint) +ch_psssX = BS(chname_psss_x) +ch_psssY = BS(chname_psss_y) +ch_psssC = BS(chname_psss_com) +ch_psssW = BS(chname_psss_fwhm) +ch_events = BS(chname_events) + +#iso_format = "%Y-%m-%d %H:%M:%S" +iso_format = "%H:%M:%S" + + +class MainPanel(wx.Panel): + + def __init__(self, parent): + super().__init__(parent) + + self.evts = np.empty((nshots,256)) + self.iZero = np.empty(nshots) + self.psssX = np.empty((nshots,2560)) + self.psssY = np.empty((nshots,2560)) + self.psssC = np.empty(nshots) + self.psssW = np.empty(nshots) + + self.energyAxis = np.empty(2560) + self.offset = 0 + + self.psssYs = deque(maxlen=qlength) + self.psssCs = deque(maxlen=qlength2) + self.psssCstds = deque(maxlen=qlength2) + self.psssWs = deque(maxlen=qlength) + self.checks = deque(maxlen=qchecklen) + + self.iZeros = deque(maxlen=histlength) + self.psssIs = deque(maxlen=histlength) + + self.plot_spectra = plot_spectra = PlotPanel(self, figsize=(6,3)) + self.plot_center = plot_center = PlotPanel(self, figsize=(3,3)) + self.plot_int = plot_int = PlotPanel(self, figsize=(3,3)) + self.plot_width = plot_width = PlotPanel(self, figsize=(3,3)) + + plots1 = (plot_spectra, ) + plots2 = (plot_center, ) + plots3 = (plot_int, plot_width) + + hb_plot1 = make_filled_hbox(plots1) + hb_plot2 = make_filled_hbox(plots2) + hb_plot3 = make_filled_hbox(plots3) + + btn_clearQ = wx.Button(self, label="Clear plots") + btns = (btn_clearQ,) + #hb_btns = make_filled_hbox(btns) + + self.chkbx_follow = chkbx_follow = wx.CheckBox(self, label="follow") + chkbxs = (btn_clearQ, chkbx_follow) + hb_chkbx = make_filled_hbox(chkbxs) + + widgets = (hb_plot1, hb_plot2, hb_plot3, hb_chkbx) + box = make_filled_vbox(widgets, border=1) + self.SetSizerAndFit(box) + + btn_clearQ.Bind(wx.EVT_BUTTON, self.on_click_clearQ) + + self.timer = wx.Timer(self) + self.Bind(wx.EVT_TIMER, self.on_update, self.timer) + self.timer.Start(100) + + + def on_update(self, _event): + + self.time = datetime.now().strftime(iso_format) + + self.evts = np.empty((nshots,256)) + self.iZero = np.empty(nshots) + self.psssX = np.empty((nshots,2560)) #2560 for narrow bandwidth camera + self.psssY = np.empty((nshots,2560)) + self.psssC = np.empty(nshots) + self.psssW = np.empty(nshots) + + for i in range(nshots): + tempa = ch_events.get() + self.evts[i] = tempa + tempb = ch_int.get() + self.iZero[i] = tempb + tempc = ch_psssX.get() + self.psssX[i] = tempc + tempd = ch_psssY.get() + self.psssY[i] = tempd + tempe = ch_psssC.get() + self.psssC[i] = tempe + tempf = ch_psssW.get() + self.psssW[i] = tempf + next(bsstream) + wx.GetApp().Yield() + + self.current_energy = ENERGYpv.get() + self.current_crystal = CRYSTALpv.get() + self.current_grating = GRATINGpv.get() + self.current_dcm = DCMpv.get() + self.current_Int = FELINTpv.get() + + fnXtlLst=(None,"Si111R155","Si220R75","Si220R145","Si220R200","Si333R155") + base=os.path.dirname(__file__) + fn=os.path.join(base,'lut'+fnXtlLst[CRYSTALpv.get()]+'.txt') + lut= np.genfromtxt(fn, delimiter='\t',names=True) + #print (fn) + + camPosX='CamPosX' + if self.current_grating in(1,2):camPosX+='_100nm' + elif self.current_grating==3:camPosX+='_150nm' + elif self.current_grating==4:camPosX+='_200nm' + + camArmRot =np.interp(self.current_energy,lut['Energy'],lut['CamArmRot']) + cristBendRot=np.interp(self.current_energy,lut['Energy'],lut['CristBendRot']) + camPosX =np.interp(self.current_energy,lut['Energy'],lut[camPosX]) + evPerPix =np.interp(self.current_energy,lut['Energy'],lut['EvPerPix']) + + self.psssYs = np.mean(self.psssY, axis=0) + self.psssXs = np.mean(self.psssX, axis=0) + + #print (max(self.psssYs), self.current_Int, Int_threshold) + + if (self.current_Int > Int_threshold):# & (max(self.psssYs)>1000): + + self.iZeros.append(self.iZero) + self.psssIs.append(np.sum(self.psssY, axis=1)) + self.psssCs.append(np.mean(self.psssC)) + self.psssCstds.append(np.std(self.psssC)) + self.psssWs.append(np.mean(self.psssW)) + + #print (current_energy, current_crystal, current_grating) + + self.offset = np.mean(self.psssC) - self.current_dcm + + self.howfar = abs(np.mean(self.psssC) - self.current_energy) + self.check = abs(np.mean(self.psssC) - self.current_energy) > DeltaE2move + self.checks.append(self.check) + + print (self.time, np.mean(self.psssC), self.current_energy, self.howfar) + #print (np.sum(self.checks)) + moving = cristBendRotpv_move.get() + #print (moving) + + n=2560 + i=np.arange(n)-n/2 + spctr_x = (self.current_energy)+i*evPerPix + #spctr_x = (np.mean(self.psssC))+i*evPerPix + SPECXpv.put(spctr_x) + self.energyAxis=SPECXpv.get() + + if (self.chkbx_follow.IsChecked()): + if (np.sum(self.checks)==qchecklen) & (moving==0) & (self.current_Int > Int_threshold): + #if (abs((np.mean(self.psssC) - self.current_dcm))>DeltaE2move) & (self.current_Int > Int_threshold): + print ('-----------------------') + print ("Off by {} eV: move!".format(self.howfar)) + + energy2go = int(np.mean(self.psssC)) + #print (int(energy2go)) + + camArmRot =np.interp(energy2go,lut['Energy'],lut['CamArmRot']) + cristBendRot=np.interp(energy2go,lut['Energy'],lut['CristBendRot']) + #camPosX =np.interp(energy2go,lut['Energy'],lut[camPosX]) + #camPosX =np.interp(energy2go,lut['Energy'],lut['camPosX']) + evPerPix =np.interp(energy2go,lut['Energy'],lut['EvPerPix']) + + ENERGYpv.put(energy2go) + camArmRotpv.put(camArmRot) + cristBendRotpv.put(cristBendRot) + camPosXpv.put(camPosX) + print (energy2go, camArmRot, cristBendRot, camPosX, evPerPix) + print ('-----------------------') + + self.current_energy = ENERGYpv.get() + self.current_crystal = CRYSTALpv.get() + self.current_grating = GRATINGpv.get() + #print (self.current_energy, camArmRot, cristBendRot, camPosX, evPerPix) + + else: + print("{}: FEL intensity = {:.1f} uJ, No signal".format(self.time, self.current_Int)) + self.iZeros.append(np.nan) + self.psssIs.append(np.nan) + self.psssCs.append(np.nan) + self.psssCstds.append(np.nan) + self.psssWs.append(np.nan) + + self.draw_plot() + + + + def draw_plot(self): + + self.plot_spectra.clear() + self.plot_center.clear() + self.plot_int.clear() + self.plot_width.clear() + + self.plot_spectra.set_xlabel('Energy (eV)') + self.plot_spectra.set_ylabel('Intensity, a.u.') + self.plot_center.set_xlabel('time ago, a.u.') + self.plot_center.set_ylabel('Energy (eV)') + self.plot_int.set_xlabel('PSSS Int') + self.plot_int.set_ylabel('{}'.format(chname_pbpsint)) + self.plot_width.set_xlabel('time ago, a.u.') + self.plot_width.set_ylabel('Energy (eV)') + + if len(self.psssCs)>3: + self.plot_spectra.plot(self.energyAxis, self.psssY[random.randrange(0, len(self.psssY))], color='limegreen', linewidth=0.5) + self.plot_spectra.plot(self.energyAxis, self.psssY[random.randrange(0, len(self.psssY))], color='limegreen', linewidth=0.5) + self.plot_spectra.plot(self.energyAxis, self.psssY[random.randrange(0, len(self.psssY))], color='limegreen', linewidth=0.5) + #self.plot_spectra.plot(self.energyAxis, self.psssY[random.randrange(0, len(self.psssY))], color='limegreen', linewidth=0.5) + #self.plot_spectra.plot(self.energyAxis, self.psssY[random.randrange(0, len(self.psssY))], color='limegreen', linewidth=0.5) + + if np.isnan(np.array(self.psssCs)).all() != True: + self.plot_spectra.axvline(x=self.psssCs[-1], color = 'black', linestyle = '--') + self.plot_spectra.axvline(x=self.psssCs[-2], color = 'dimgrey', linestyle = '--') + self.plot_spectra.axvline(x=self.psssCs[-3], color = 'grey', linestyle = '--') + self.plot_spectra.axvline(x=self.psssCs[-4], color = 'silver', linestyle = '--') + self.plot_spectra.axvline(x=self.psssCs[-5], color = 'lightgrey', linestyle = '--') + + self.plot_spectra.set_title('Central energy: {:.2f} eV'.format(self.psssCs[-1])) + self.plot_center.set_title('Central energy') + self.plot_width.set_title('Width: {:.4f}%'.format(self.psssWs[-1]/self.psssCs[-1]*100)) + + try: #np.isnan(np.array(self.psssCs)).all() != True: + #self.plot_spectra.axvline(x=self.psssCs[-1], color = 'black', linestyle = '--') + #self.plot_spectra.axvline(x=self.psssCs[-2], color = 'dimgrey', linestyle = '--') + #self.plot_spectra.axvline(x=self.psssCs[-3], color = 'grey', linestyle = '--') + #self.plot_spectra.axvline(x=self.psssCs[-4], color = 'silver', linestyle = '--') + #self.plot_spectra.axvline(x=self.psssCs[-5], color = 'lightgrey', linestyle = '--') + self.plot_int.set_title('Correlation: {:.4f}'.format(pearsonr(np.roll(np.ravel(self.psssIs), 0), np.ravel(self.iZeros))[0])) + self.plot_center.set_ylim(self.current_energy-np.asarray(np.nanmean(self.psssWs)), self.current_energy+np.asarray(np.nanmean(self.psssWs))) + self.plot_spectra.axvline(x=(self.current_dcm+self.offset), color = 'red', linestyle = '--') + self.plot_center.fill_between(np.arange(0, len(self.psssCs)), np.asarray(self.psssCstds)+np.asarray(self.psssCs), -np.asarray(self.psssCstds)+np.asarray(self.psssCs), color='gold') + except: + self.plot_int.set_title('Correlation: NaN') + + self.plot_center.grid() + + self.plot_spectra.plot(self.energyAxis, self.psssYs, '-', color='green') + self.plot_center.plot(np.arange(0, len(self.psssCs)), self.psssCs, color='orangered' ) + self.plot_int.plot(np.ravel(self.psssIs), np.ravel(self.iZeros), '.', color='purple') + self.plot_width.plot(np.arange(0, len(self.psssWs)), self.psssWs, color='royalblue', linewidth=0.5) + + self.plot_spectra.draw() + self.plot_center.draw() + self.plot_int.draw() + self.plot_width.draw() + + + def on_click_clearQ(self, _event): + + self.plot_spectra.clear() + self.plot_center.clear() + self.plot_int.clear() + self.plot_width.clear() + + +def set_energy_motor(self,energy2motor,scan=False, rotWait=False): + + if CRYSTALpv==0: return + + #load lut + fnXtlLst=(None,"Si111R155","Si220R75","Si220R145","Si220R200","Si333R155") + #print(__file__) + base=os.path.dirname(__file__) + fn=os.path.join(base,'lut'+fnXtlLst[CRYSTALpv]+'.txt') + lut= np.genfromtxt(fn, delimiter='\t',names=True) + #lut + #lut.dtype + #lut[1]['Energy'] + #lut['Energy'] + #lut=np.genfromtxt(fn, delimiter='\t',skip_header=1) + if energy2motor: + energy = ENERGYpv.get()# self.getPv('PSSS059:ENERGY').getw() + #energy =6000 + gratingType=self.getPv('PSSS055:GRATING_SP').getw() + #gratingType=3 + camPosX='CamPosX' + if gratingType in(1,2):camPosX+='_100nm' + elif gratingType==3:camPosX+='_150nm' + elif gratingType==4:camPosX+='_200nm' + + camArmRot =np.interp(energy,lut['Energy'],lut['CamArmRot']) + cristBendRot=np.interp(energy,lut['Energy'],lut['CristBendRot']) + camPosX =np.interp(energy,lut['Energy'],lut[camPosX]) + evPerPix =np.interp(energy,lut['Energy'],lut['EvPerPix']) + else: + camArmRot=self.getPv('PSSS059:MOTOR_ROT_X4').getw() + idx=~np.isnan(lut['CamArmRot']) + lutCamArmRot=lut['CamArmRot'][idx] + energy =np.interp(camArmRot,lutCamArmRot[::-1],lut['Energy'][idx][::-1]) + evPerPix =np.interp(camArmRot,lutCamArmRot[::-1],lut['EvPerPix'][idx][::-1]) + + #camera: 2560 x 2160 + n=2560 + i=np.arange(n)-n/2 + spctr_x=energy+i*evPerPix + pv=self.getPv('PSSS059:SPECTRUM_X') + pv.putw(spctr_x) + + pv=self.getPv('PSSS059:SPECTRUM_Y') + mu=2560./2 + sigma=100. + x=np.arange(2560.) + spctr_y= 1000.*np.exp(-( (x-mu)**2 / ( 2.0 * sigma**2 ) ) ) + pv.putw(spctr_y) + + if energy2motor: + print('energy2motor: camArmRot: %g cristBendRot: %g camPosX:%g evPerPix:%g'%(camArmRot,cristBendRot,camPosX,evPerPix)) + pv=self.getPv('PSSS059:MOTOR_ROT_X4') + pv.putw(camArmRot) + pv=self.getPv('PSSS059:MOTOR_ROT_X3') + pv.putw(cristBendRot) + if rotWait == True: + self.waitMotionDone('PSSS059:MOTOR_ROT_X3') + if scan == False: # if True the camera X position will not be changed + pv=self.getPv('PSSS059:MOTOR_X5') + pv.putw(camPosX) + else: + print('motor2energy: energy: %g evPerPix:%g'%(energy,evPerPix)) + pv=self.getPv('PSSS059:ENERGY') + pv.putw(energy) diff --git a/pbps053.py b/pbps053.py new file mode 100755 index 0000000..68f75d7 --- /dev/null +++ b/pbps053.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_pbps053 import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="PBSP 053"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/pbps110.py b/pbps110.py new file mode 100755 index 0000000..907a074 --- /dev/null +++ b/pbps110.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_pbps110 import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="PBSP 110"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/pbps122.py b/pbps122.py new file mode 100755 index 0000000..64b1d72 --- /dev/null +++ b/pbps122.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_pbps122 import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="PBSP 122"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/pbps149.py b/pbps149.py new file mode 100755 index 0000000..e516475 --- /dev/null +++ b/pbps149.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_pbps149 import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="PBSP 122"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/prime_pp.py b/prime_pp.py new file mode 100644 index 0000000..2de02bc --- /dev/null +++ b/prime_pp.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_ppPrime import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="Prime pp"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/prime_pp_xas.py b/prime_pp_xas.py new file mode 100644 index 0000000..25afd0d --- /dev/null +++ b/prime_pp_xas.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_ppPrime_xas import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="Prime pp XAS"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + + diff --git a/psss.py b/psss.py new file mode 100755 index 0000000..283aec7 --- /dev/null +++ b/psss.py @@ -0,0 +1,61 @@ +#!/usr/bin/env python + +import os +import wx + +from slic.gui.persist import Persistence + +from bstrd import bsstream + +from panel_psss import MainPanel + + +def run(*args, **kwargs): + app = wx.App() + wx.Yield = app.Yield + frame = MainFrame(*args, **kwargs) + frame.Show() + app.MainLoop() + app.Yield() #TODO: without this, wxPython segfaults locking a mutex + + +def get_wx_icon(fname="icon.png"): + iname = os.path.dirname(__file__) + iname = os.path.join(iname, fname) + return wx.Icon(iname) + + + +class MainFrame(wx.Frame): + + def __init__(self, title="PSSS"): + super().__init__(None, title=title) + self.SetIcon(get_wx_icon()) + + main = MainPanel(self) + + # make sure the window is large enough + sizer = wx.BoxSizer(wx.VERTICAL) + sizer.Add(main, proportion=1, flag=wx.EXPAND) + self.SetSizerAndFit(sizer) + + self.persist = persist = Persistence(".coffee365", self) + persist.load() + + self.Bind(wx.EVT_CLOSE, self.on_close) + + + def on_close(self, event): + print("bye") + bsstream.stop() + self.persist.save() + event.Skip() # forward the close event + wx.GetApp().Yield() + + + +if __name__ == "__main__": + run() + + +