From a0b2666b01d892fda632196d427ce2e992f8a68d Mon Sep 17 00:00:00 2001 From: weisse02 <andreas.weissenbrunner@ptb.de> Date: Thu, 11 May 2023 15:13:49 +0200 Subject: [PATCH] Add Simulation_setup_and_evaluation folder --- Flow_class.py | 20 +- GUI_Elbow.py | 72 +- Simulation_setup_and_evluation/BaseCase/0/U | 4050 ++++++++++++++++ .../BaseCase/0/epsilon | 4050 ++++++++++++++++ Simulation_setup_and_evluation/BaseCase/0/k | 4050 ++++++++++++++++ .../BaseCase/0/normals0.csv | 4058 +++++++++++++++++ .../BaseCase/0/nuTilda | 4050 ++++++++++++++++ Simulation_setup_and_evluation/BaseCase/0/nut | 4051 ++++++++++++++++ .../BaseCase/0/omega | 4051 ++++++++++++++++ Simulation_setup_and_evluation/BaseCase/0/p | 42 + .../BaseCase/constant/cellToRegion.gz | Bin 0 -> 2726 bytes .../BaseCase/constant/g | 21 + .../BaseCase/constant/transportProperties | 41 + .../BaseCase/constant/transportProperties.org | 41 + .../BaseCase/constant/turbulenceProperties | 31 + .../constant/turbulenceProperties.LES | 93 + .../constant/turbulenceProperties.RAS | 31 + .../BaseCase/graphGNU_2.png | Bin 0 -> 27290 bytes .../BaseCase/graphGNU_3.png | Bin 0 -> 24616 bytes .../BaseCase/logERR | 100 + .../BaseCase/logGNU_2 | 73 + .../BaseCase/logGNU_3 | 31 + .../BaseCase/logMesh | 99 + .../BaseCase/logPTB | 1008 ++++ .../BaseCase/log_PTB | 1 + .../BaseCase/print_figure.py | 84 + .../BaseCase/print_figure_cele.py | 107 + .../BaseCase/start_simuOF2012.msub | 31 + .../BaseCase/system/.blockMeshDict.swp | Bin 0 -> 12288 bytes .../BaseCase/system/.functionsPTB.H.swp | Bin 0 -> 45056 bytes .../BaseCase/system/blockMeshDict | 103 + .../BaseCase/system/blockMeshDictZaloha | 72 + .../BaseCase/system/blockMeshDict_temp | 78 + .../BaseCase/system/blockMeshDict_turn | 101 + .../BaseCase/system/blockMeshDicte | 67 + .../BaseCase/system/centerPlane | 390 ++ .../BaseCase/system/codeStreamPTB | 120 + .../BaseCase/system/controlDict | 49 + .../BaseCase/system/controlDict.inter | 88 + .../BaseCase/system/decomposeParDict | 22 + .../BaseCase/system/functionsPTB.H | 669 +++ .../BaseCase/system/fvSchemes | 80 + .../BaseCase/system/fvSchemes.inter | 64 + .../BaseCase/system/fvSolution | 98 + .../BaseCase/system/fvSolution.inter | 96 + .../BaseCase/system/singleGraph | 33 + .../BaseCase/system/snappyHexMeshDict | 324 ++ .../GenerateDoubleElbows.py | 198 + .../ManipulateCases.py | 70 + .../MyPOD_allCases_allU_allPlanes.py | 415 ++ .../Observe_DoubleElbows.py | 65 + .../Reconstruct_DoubleElbows.py | 66 + .../SaveAllPlanes.py | 101 + .../Start_DoubleElbows.py | 110 + 54 files changed, 33696 insertions(+), 69 deletions(-) create mode 100644 Simulation_setup_and_evluation/BaseCase/0/U create mode 100644 Simulation_setup_and_evluation/BaseCase/0/epsilon create mode 100644 Simulation_setup_and_evluation/BaseCase/0/k create mode 100644 Simulation_setup_and_evluation/BaseCase/0/normals0.csv create mode 100644 Simulation_setup_and_evluation/BaseCase/0/nuTilda create mode 100644 Simulation_setup_and_evluation/BaseCase/0/nut create mode 100644 Simulation_setup_and_evluation/BaseCase/0/omega create mode 100644 Simulation_setup_and_evluation/BaseCase/0/p create mode 100644 Simulation_setup_and_evluation/BaseCase/constant/cellToRegion.gz create mode 100644 Simulation_setup_and_evluation/BaseCase/constant/g create mode 100644 Simulation_setup_and_evluation/BaseCase/constant/transportProperties create mode 100644 Simulation_setup_and_evluation/BaseCase/constant/transportProperties.org create mode 100644 Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties create mode 100644 Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties.LES create mode 100644 Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties.RAS create mode 100644 Simulation_setup_and_evluation/BaseCase/graphGNU_2.png create mode 100644 Simulation_setup_and_evluation/BaseCase/graphGNU_3.png create mode 100644 Simulation_setup_and_evluation/BaseCase/logERR create mode 100644 Simulation_setup_and_evluation/BaseCase/logGNU_2 create mode 100644 Simulation_setup_and_evluation/BaseCase/logGNU_3 create mode 100644 Simulation_setup_and_evluation/BaseCase/logMesh create mode 100644 Simulation_setup_and_evluation/BaseCase/logPTB create mode 100644 Simulation_setup_and_evluation/BaseCase/log_PTB create mode 100644 Simulation_setup_and_evluation/BaseCase/print_figure.py create mode 100644 Simulation_setup_and_evluation/BaseCase/print_figure_cele.py create mode 100644 Simulation_setup_and_evluation/BaseCase/start_simuOF2012.msub create mode 100644 Simulation_setup_and_evluation/BaseCase/system/.blockMeshDict.swp create mode 100644 Simulation_setup_and_evluation/BaseCase/system/.functionsPTB.H.swp create mode 100644 Simulation_setup_and_evluation/BaseCase/system/blockMeshDict create mode 100644 Simulation_setup_and_evluation/BaseCase/system/blockMeshDictZaloha create mode 100644 Simulation_setup_and_evluation/BaseCase/system/blockMeshDict_temp create mode 100644 Simulation_setup_and_evluation/BaseCase/system/blockMeshDict_turn create mode 100644 Simulation_setup_and_evluation/BaseCase/system/blockMeshDicte create mode 100644 Simulation_setup_and_evluation/BaseCase/system/centerPlane create mode 100644 Simulation_setup_and_evluation/BaseCase/system/codeStreamPTB create mode 100644 Simulation_setup_and_evluation/BaseCase/system/controlDict create mode 100644 Simulation_setup_and_evluation/BaseCase/system/controlDict.inter create mode 100644 Simulation_setup_and_evluation/BaseCase/system/decomposeParDict create mode 100644 Simulation_setup_and_evluation/BaseCase/system/functionsPTB.H create mode 100644 Simulation_setup_and_evluation/BaseCase/system/fvSchemes create mode 100644 Simulation_setup_and_evluation/BaseCase/system/fvSchemes.inter create mode 100644 Simulation_setup_and_evluation/BaseCase/system/fvSolution create mode 100644 Simulation_setup_and_evluation/BaseCase/system/fvSolution.inter create mode 100644 Simulation_setup_and_evluation/BaseCase/system/singleGraph create mode 100644 Simulation_setup_and_evluation/BaseCase/system/snappyHexMeshDict create mode 100644 Simulation_setup_and_evluation/GenerateDoubleElbows.py create mode 100644 Simulation_setup_and_evluation/ManipulateCases.py create mode 100644 Simulation_setup_and_evluation/MyPOD_allCases_allU_allPlanes.py create mode 100644 Simulation_setup_and_evluation/Observe_DoubleElbows.py create mode 100644 Simulation_setup_and_evluation/Reconstruct_DoubleElbows.py create mode 100644 Simulation_setup_and_evluation/SaveAllPlanes.py create mode 100644 Simulation_setup_and_evluation/Start_DoubleElbows.py diff --git a/Flow_class.py b/Flow_class.py index 2e7092a..2028488 100644 --- a/Flow_class.py +++ b/Flow_class.py @@ -64,7 +64,25 @@ def do_reconstruct_path(A,phi,Nmodes=0,umean = 0): # return umean + np.real(u_tilde) - +def do_POD(u,clip = 0): + Nt = u.shape[0] + #S = reshape(permute(S, [3 2 1]), Nt, [ ]); % Reshape data into a matrix S with Nt rows + umean = np.mean(u,0) + U = u - umean # Subtract the temporal mean from each row + # Create covariance matrix + C = (U.T @ U)/(Nt-1) + # Solve eigenvalue problem + lam , phi = np.linalg.eig(C) # lam are the eigenvalues lambda and phi the corrp. eigenvectors + # Sort eigenvalues and eigenvectors + ilam = np.argsort(-lam,axis=-1) + lamb = np.take_along_axis(lam,ilam,axis=-1) + phi = phi[:,ilam] # PHI(:, ilam); # These are the spatial modes + # Calculate time coefficients + A = U @ phi + if clip > 0: + A = A[:,0:clip] + phi = phi[:,0:clip] + return np.real(A), np.real(phi), umean, lamb def do_reconstruct_add(A,phi,Nmodes,u_tilde,umean = 0): #u_tilde = np.zeros((A.shape[0],phi.shape[0])) diff --git a/GUI_Elbow.py b/GUI_Elbow.py index c648eed..fff55e5 100644 --- a/GUI_Elbow.py +++ b/GUI_Elbow.py @@ -4,77 +4,13 @@ Created on Mon Mar 21 14:43:59 2022 @author: weisse02 -A Gui to realize a virtual flow meter +A Gui to realize a virtual flow meter downstream of a +Single 90 degree elbow "SingleElbow" +double elbow out-of-plane "DoubleElbow" +a double elbow in-plane "Double_S_Elbow" """ -# import wx -# import matplotlib -# from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas -# from matplotlib.figure import Figure -# import numpy as np - -# class MainFrame(wx.Frame): - -# def __init__(self, parent, title): -# super(MainFrame, self).__init__(parent, title = title,size = (1000,700)) -# self.InitUI() - -# def InitUI(self): -# pnl = wx.Panel(self) -# vbox = wx.BoxSizer(wx.VERTICAL) - -# self.sld = wx.Slider(pnl, value = 10, minValue = 1, maxValue = 100, -# style = wx.SL_HORIZONTAL|wx.SL_LABELS) -# self.sld2 = wx.Slider(pnl, value = 5, minValue = 5, maxValue = 50, -# style = wx.SL_HORIZONTAL|wx.SL_LABELS) -# vbox.Add(self.sld2, 1,flag = wx.EXPAND | wx.ALIGN_CENTER_HORIZONTAL | wx.TOP, border = 20) -# vbox.Add(self.sld, 1,flag = wx.EXPAND | wx.ALIGN_CENTER_HORIZONTAL | wx.TOP, border = 20) -# self.sld.Bind(wx.EVT_SLIDER, self.OnSliderScroll) -# self.sld2.Bind(wx.EVT_SLIDER, self.OnSliderScroll2) -# self.txt = wx.StaticText(pnl, label = 'Hello',style = wx.ALIGN_LEFT) -# self.txt2 = wx.StaticText(pnl, label = 'Two',style = wx.ALIGN_LEFT) - -# hbox = wx.BoxSizer(wx.HORIZONTAL) -# hbox.Add(self.txt , 1, wx.ALIGN_CENTRE_HORIZONTAL) -# hbox.AddSpacer(10) -# hbox.Add(self.txt2, 1, wx.ALIGN_CENTRE_HORIZONTAL) -# # add the horizontal box to the vertical box -# vbox.Add(hbox,1,wx.ALIGN_CENTRE_HORIZONTAL ) -# pnl.SetSizer(vbox) -# self.Centre() -# self.Show(True) - -# def OnSliderScroll(self, e): -# obj = e.GetEventObject() -# val = obj.GetValue() -# font = self.GetFont() -# font.SetPointSize(val) #self.sld.GetValue()) -# self.txt.SetFont(font) -# def OnSliderScroll2(self, e): -# obj = e.GetEventObject() -# val = obj.GetValue() -# font = self.GetFont() -# font.SetPointSize(val) # self.sld2.GetValue()) -# self.txt2.SetFont(font) -# # - -# ex = wx.App() -# MainFrame(None,'Slider demo') -# ex.MainLoop() - - -# #!/usr/bin/python -# import numpy as np -# import wxmplot.interactive as wi - -# y, x = np.mgrid[-5:5:101j, -4:6:101j] -# dat = np.sin(x*x/3.0 + y*y)/(1 + (x+y)*(x+y)) - -# wi.imshow(dat, x=x[0,:], y=y[:,0], colormap='viridis', wintitle='wxmplot imshow') - - - import wx import matplotlib from matplotlib.backends.backend_wxagg import FigureCanvasWxAgg as FigureCanvas diff --git a/Simulation_setup_and_evluation/BaseCase/0/U b/Simulation_setup_and_evluation/BaseCase/0/U new file mode 100644 index 0000000..99d9a17 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/0/U @@ -0,0 +1,4050 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volVectorField; + location "0"; + object U; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -1 0 0 0 0]; + +internalField uniform (0 0 0); + +boundaryField +{ + "(INLET|Inlet|inlet)" + { + type fixedValue; + value nonuniform List<vector> +4004 + ( +(-0.46862359704993156 0.0 0.0) +(-0.4683061747723996 0.0 0.0) +(-0.4676560930340027 0.0 0.0) +(-0.46666940051375355 0.0 0.0) +(-0.4653322304858244 0.0 0.0) +(-0.4636308697303824 0.0 0.0) +(-0.46154897385315785 0.0 0.0) +(-0.45906077659203204 0.0 0.0) +(-0.45614664553681367 0.0 0.0) +(-0.4527469273866744 0.0 0.0) +(-0.44882858340129 0.0 0.0) +(-0.44432199499432024 0.0 0.0) +(-0.4391385530895742 0.0 0.0) +(-0.46830614751264704 0.0 0.0) +(-0.467981677739141 0.0 0.0) +(-0.46733639363586266 0.0 0.0) +(-0.46633901504863334 0.0 0.0) +(-0.46500283031855655 0.0 0.0) +(-0.46330792653921676 0.0 0.0) +(-0.4612309762290345 0.0 0.0) +(-0.4587583180792896 0.0 0.0) +(-0.45584794081374364 0.0 0.0) +(-0.45246987397283034 0.0 0.0) +(-0.44857164844772124 0.0 0.0) +(-0.44409639163736525 0.0 0.0) +(-0.4389538215484156 0.0 0.0) +(-0.4676560932517171 0.0 0.0) +(-0.46733639374330016 0.0 0.0) +(-0.46668137007619787 0.0 0.0) +(-0.4656887144563303 0.0 0.0) +(-0.4643603047216974 0.0 0.0) +(-0.4626759195320531 0.0 0.0) +(-0.46061355047720004 0.0 0.0) +(-0.458149472281447 0.0 0.0) +(-0.455265175400381 0.0 0.0) +(-0.45191749578298385 0.0 0.0) +(-0.4480609526837978 0.0 0.0) +(-0.4436303656663454 0.0 0.0) +(-0.43854791480414623 0.0 0.0) +(-0.46666940086099795 0.0 0.0) +(-0.4663390152645257 0.0 0.0) +(-0.4656887645557574 0.0 0.0) +(-0.464713599572919 0.0 0.0) +(-0.4633923882384536 0.0 0.0) +(-0.46172591658694184 0.0 0.0) +(-0.45968696490369765 0.0 0.0) +(-0.4572524250604141 0.0 0.0) +(-0.4544008824872866 0.0 0.0) +(-0.4510964833631288 0.0 0.0) +(-0.44729108375929694 0.0 0.0) +(-0.4429350668786911 0.0 0.0) +(-0.4379375712338316 0.0 0.0) +(-0.465332230950253 0.0 0.0) +(-0.46500283065302334 0.0 0.0) +(-0.4643603049517447 0.0 0.0) +(-0.46339232175369455 0.0 0.0) +(-0.4620930317463059 0.0 0.0) +(-0.4604479261363885 0.0 0.0) +(-0.4584425854160826 0.0 0.0) +(-0.4560536024833328 0.0 0.0) +(-0.4532556119732384 0.0 0.0) +(-0.4500108751158406 0.0 0.0) +(-0.44628913366989925 0.0 0.0) +(-0.44203006499437586 0.0 0.0) +(-0.43715177019435275 0.0 0.0) +(-0.4636308703118761 0.0 0.0) +(-0.46330792699871726 0.0 0.0) +(-0.46267591988569745 0.0 0.0) +(-0.46172591682598574 0.0 0.0) +(-0.46044792625781605 0.0 0.0) +(-0.4588374151759367 0.0 0.0) +(-0.4568689440477127 0.0 0.0) +(-0.45453611824085566 0.0 0.0) +(-0.45180723926269223 0.0 0.0) +(-0.448643499927158 0.0 0.0) +(-0.44502202019138154 0.0 0.0) +(-0.4408771743296833 0.0 0.0) +(-0.4361400357586259 0.0 0.0) +(-0.46154897456501004 0.0 0.0) +(-0.46123097681348457 0.0 0.0) +(-0.4606135509640251 0.0 0.0) +(-0.459686965262468 0.0 0.0) +(-0.45844258566703816 0.0 0.0) +(-0.45686894417292934 0.0 0.0) +(-0.4549599755393119 0.0 0.0) +(-0.45268834607760167 0.0 0.0) +(-0.45004124090877257 0.0 0.0) +(-0.44697860535221995 0.0 0.0) +(-0.4434726736532543 0.0 0.0) +(-0.4394710502974246 0.0 0.0) +(-0.43490470099370004 0.0 0.0) +(-0.45906066096637926 0.0 0.0) +(-0.45875831878442136 0.0 0.0) +(-0.4581494728950977 0.0 0.0) +(-0.4572524255655654 0.0 0.0) +(-0.4560536028690412 0.0 0.0) +(-0.4545361185002131 0.0 0.0) +(-0.4526882260287708 0.0 0.0) +(-0.4505071972987993 0.0 0.0) +(-0.4479667368830795 0.0 0.0) +(-0.4450213100388643 0.0 0.0) +(-0.4416533680144988 0.0 0.0) +(-0.4378273803145387 0.0 0.0) +(-0.43346758798523094 0.0 0.0) +(-0.4561466465170916 0.0 0.0) +(-0.45584794169104675 0.0 0.0) +(-0.45526517615330503 0.0 0.0) +(-0.4544008831263363 0.0 0.0) +(-0.4532556124972651 0.0 0.0) +(-0.45180723966704517 0.0 0.0) +(-0.4500412411813809 0.0 0.0) +(-0.4479667370234137 0.0 0.0) +(-0.4455412089801543 0.0 0.0) +(-0.4427403543182358 0.0 0.0) +(-0.43954548651987824 0.0 0.0) +(-0.43592862191645154 0.0 0.0) +(-0.4318074142409108 0.0 0.0) +(-0.4527469285309918 0.0 0.0) +(-0.4524698749900304 0.0 0.0) +(-0.4519174967051551 0.0 0.0) +(-0.4510964841488198 0.0 0.0) +(-0.45001087579018456 0.0 0.0) +(-0.4486433398913148 0.0 0.0) +(-0.4469786057732929 0.0 0.0) +(-0.445021310327126 0.0 0.0) +(-0.4427403544686084 0.0 0.0) +(-0.44010857774537276 0.0 0.0) +(-0.43711415665381753 0.0 0.0) +(-0.4337321622473341 0.0 0.0) +(-0.4298749369683028 0.0 0.0) +(-0.44882858473528575 0.0 0.0) +(-0.4485716496518635 0.0 0.0) +(-0.4480609537628933 0.0 0.0) +(-0.44729108472952445 0.0 0.0) +(-0.44628913452813185 0.0 0.0) +(-0.44502211001239483 0.0 0.0) +(-0.4434726742466826 0.0 0.0) +(-0.4416531799897319 0.0 0.0) +(-0.43954548683395595 0.0 0.0) +(-0.4371141568139863 0.0 0.0) +(-0.43434412357174423 0.0 0.0) +(-0.4312344675275829 0.0 0.0) +(-0.4276985810760623 0.0 0.0) +(-0.4443219965258541 0.0 0.0) +(-0.4440963930431835 0.0 0.0) +(-0.4436303669423115 0.0 0.0) +(-0.4429350680472601 0.0 0.0) +(-0.4420300660203582 0.0 0.0) +(-0.4408771752372075 0.0 0.0) +(-0.43947105107549417 0.0 0.0) +(-0.43782738095212725 0.0 0.0) +(-0.43592862240511715 0.0 0.0) +(-0.4337321625927752 0.0 0.0) +(-0.4312344677034212 0.0 0.0) +(-0.42845025475682236 0.0 0.0) +(-0.42527883077674977 0.0 0.0) +(-0.4391385548512677 0.0 0.0) +(-0.4389538231757986 0.0 0.0) +(-0.4385479163350214 0.0 0.0) +(-0.4379375726273175 0.0 0.0) +(-0.437152010887935 0.0 0.0) +(-0.4361400368796348 0.0 0.0) +(-0.4349047019862484 0.0 0.0) +(-0.4334675888372007 0.0 0.0) +(-0.43180741494089664 0.0 0.0) +(-0.42987518407211733 0.0 0.0) +(-0.42769858144338624 0.0 0.0) +(-0.42527883096597174 0.0 0.0) +(-0.4225169546668399 0.0 0.0) +(-0.46862359686699745 0.0 0.0) +(-0.46830616758264015 0.0 0.0) +(-0.46765609245859247 0.0 0.0) +(-0.46666939968089444 0.0 0.0) +(-0.4653322294290398 0.0 0.0) +(-0.46363086845046503 0.0 0.0) +(-0.46154897232189535 0.0 0.0) +(-0.45906065838089094 0.0 0.0) +(-0.45614664349053363 0.0 0.0) +(-0.45274692502273634 0.0 0.0) +(-0.44882858066899267 0.0 0.0) +(-0.4443219918799317 0.0 0.0) +(-0.43913854952901565 0.0 0.0) +(-0.46830617462058605 0.0 0.0) +(-0.4679816772643153 0.0 0.0) +(-0.4673363929625288 0.0 0.0) +(-0.4663390141679033 0.0 0.0) +(-0.4650028291991034 0.0 0.0) +(-0.46330792517042474 0.0 0.0) +(-0.4612309746179517 0.0 0.0) +(-0.4587583162411525 0.0 0.0) +(-0.4558479386217335 0.0 0.0) +(-0.4524698715146629 0.0 0.0) +(-0.4485716456156989 0.0 0.0) +(-0.4440963884050915 0.0 0.0) +(-0.4389538178777402 0.0 0.0) +(-0.46765609287581217 0.0 0.0) +(-0.4673363931684181 0.0 0.0) +(-0.4666813692321918 0.0 0.0) +(-0.46568876344591736 0.0 0.0) +(-0.46436030346168167 0.0 0.0) +(-0.4626759180237409 0.0 0.0) +(-0.46061354869723764 0.0 0.0) +(-0.4581494702639199 0.0 0.0) +(-0.45526517311168624 0.0 0.0) +(-0.4519174931444811 0.0 0.0) +(-0.4480609497427039 0.0 0.0) +(-0.443630362325463 0.0 0.0) +(-0.4385479109284905 0.0 0.0) +(-0.46666940034634036 0.0 0.0) +(-0.46633901458163135 0.0 0.0) +(-0.46568871366687586 0.0 0.0) +(-0.46471354837856166 0.0 0.0) +(-0.46339232027507526 0.0 0.0) +(-0.4617259149561186 0.0 0.0) +(-0.45968696305799767 0.0 0.0) +(-0.4572524228883341 0.0 0.0) +(-0.45440088006578905 0.0 0.0) +(-0.4510964806551406 0.0 0.0) +(-0.4472910806553221 0.0 0.0) +(-0.4429350633600894 0.0 0.0) +(-0.43793756724370364 0.0 0.0) +(-0.46533223031905324 0.0 0.0) +(-0.46500282984006286 0.0 0.0) +(-0.46436030390253563 0.0 0.0) +(-0.4633923870956658 0.0 0.0) +(-0.4620930302739429 0.0 0.0) +(-0.4604479243791742 0.0 0.0) +(-0.4584425833813852 0.0 0.0) +(-0.4560536001782981 0.0 0.0) +(-0.4532556094032775 0.0 0.0) +(-0.4500108722442063 0.0 0.0) +(-0.446289130388259 0.0 0.0) +(-0.44203006139369905 0.0 0.0) +(-0.437152005571809 0.0 0.0) +(-0.4636308695648177 0.0 0.0) +(-0.4633079260509944 0.0 0.0) +(-0.46267591870145175 0.0 0.0) +(-0.46172591541421326 0.0 0.0) +(-0.4604479246118734 0.0 0.0) +(-0.4588374133428172 0.0 0.0) +(-0.4568689419226646 0.0 0.0) +(-0.45453611582594045 0.0 0.0) +(-0.45180723653345106 0.0 0.0) +(-0.4486434969133115 0.0 0.0) +(-0.44502210595331193 0.0 0.0) +(-0.4408769593680269 0.0 0.0) +(-0.43614003150914915 0.0 0.0) +(-0.4615489736860623 0.0 0.0) +(-0.46123097573797 0.0 0.0) +(-0.4606135496301713 0.0 0.0) +(-0.45968696374553186 0.0 0.0) +(-0.45844258386230713 0.0 0.0) +(-0.45686894216262486 0.0 0.0) +(-0.4549599733069527 0.0 0.0) +(-0.45268822336058323 0.0 0.0) +(-0.45004123806916935 0.0 0.0) +(-0.4469786022101966 0.0 0.0) +(-0.44347267010730396 0.0 0.0) +(-0.439471046348044 0.0 0.0) +(-0.4349046965532279 0.0 0.0) +(-0.4590607764272062 0.0 0.0) +(-0.4587583175924409 0.0 0.0) +(-0.4581494714398974 0.0 0.0) +(-0.45725242385638726 0.0 0.0) +(-0.4560536009174554 0.0 0.0) +(-0.4545361163229636 0.0 0.0) +(-0.45268834379332684 0.0 0.0) +(-0.45050719455515076 0.0 0.0) +(-0.447966733882397 0.0 0.0) +(-0.44502130674162577 0.0 0.0) +(-0.44165336428936963 0.0 0.0) +(-0.4378273762147732 0.0 0.0) +(-0.43346758336622093 0.0 0.0) +(-0.45614664536910193 0.0 0.0) +(-0.45584794030296455 0.0 0.0) +(-0.4552651745545617 0.0 0.0) +(-0.4544008812904399 0.0 0.0) +(-0.45325561040750273 0.0 0.0) +(-0.4518072373083378 0.0 0.0) +(-0.45004123859158585 0.0 0.0) +(-0.4479667341513285 0.0 0.0) +(-0.4455412058295508 0.0 0.0) +(-0.4427403508071559 0.0 0.0) +(-0.4395454826394667 0.0 0.0) +(-0.4359286176774738 0.0 0.0) +(-0.431807409457761 0.0 0.0) +(-0.4527469272156637 0.0 0.0) +(-0.4524698734639871 0.0 0.0) +(-0.4519174949116955 0.0 0.0) +(-0.45109648216080966 0.0 0.0) +(-0.45001087353649405 0.0 0.0) +(-0.44864349797004444 0.0 0.0) +(-0.44697860301712533 0.0 0.0) +(-0.44502130729403977 0.0 0.0) +(-0.44274035109532434 0.0 0.0) +(-0.44010857401710457 0.0 0.0) +(-0.43711415264352493 0.0 0.0) +(-0.43373215771057166 0.0 0.0) +(-0.429874932032584 0.0 0.0) +(-0.4488285832254122 0.0 0.0) +(-0.4485716479232724 0.0 0.0) +(-0.44806095181064215 0.0 0.0) +(-0.4472910825146298 0.0 0.0) +(-0.44628913203294385 0.0 0.0) +(-0.4450220182130554 0.0 0.0) +(-0.44347267124452794 0.0 0.0) +(-0.44165336516993303 0.0 0.0) +(-0.43954563091255383 0.0 0.0) +(-0.4371141529504658 0.0 0.0) +(-0.4343441193313944 0.0 0.0) +(-0.4312344628756109 0.0 0.0) +(-0.4276985760014988 0.0 0.0) +(-0.444321994814906 0.0 0.0) +(-0.44409639109914906 0.0 0.0) +(-0.4436304051130467 0.0 0.0) +(-0.4429350655994914 0.0 0.0) +(-0.4420300633598531 0.0 0.0) +(-0.4408771722878315 0.0 0.0) +(-0.4394710478391075 0.0 0.0) +(-0.43782737743662437 0.0 0.0) +(-0.4359286186139344 0.0 0.0) +(-0.4337321583725623 0.0 0.0) +(-0.4312344632125804 0.0 0.0) +(-0.4284502498214088 0.0 0.0) +(-0.42527882552452345 0.0 0.0) +(-0.4391385529050596 0.0 0.0) +(-0.438953820996396 0.0 0.0) +(-0.43854791386220254 0.0 0.0) +(-0.43793756991412797 0.0 0.0) +(-0.4371517685072399 0.0 0.0) +(-0.43614003365740867 0.0 0.0) +(-0.43490469845531055 0.0 0.0) +(-0.43346745048827046 0.0 0.0) +(-0.43180741079918783 0.0 0.0) +(-0.4298749330643561 0.0 0.0) +(-0.4276985767054242 0.0 0.0) +(-0.42527882588714133 0.0 0.0) +(-0.42251694910143595 0.0 0.0) +(-0.46862359680951693 0.0 0.0) +(-0.46830617447739736 0.0 0.0) +(-0.4676560926266011 0.0 0.0) +(-0.466669399975535 0.0 0.0) +(-0.46533222984106637 0.0 0.0) +(-0.4636308689799358 0.0 0.0) +(-0.46154897298124364 0.0 0.0) +(-0.45906077561480885 0.0 0.0) +(-0.4561466444181142 0.0 0.0) +(-0.4527469261133199 0.0 0.0) +(-0.4488285819477249 0.0 0.0) +(-0.44432199335509087 0.0 0.0) +(-0.4391385512327321 0.0 0.0) +(-0.4683061743731955 0.0 0.0) +(-0.4679816771151184 0.0 0.0) +(-0.46733639292308865 0.0 0.0) +(-0.46633901423705704 0.0 0.0) +(-0.46500282938322046 0.0 0.0) +(-0.46330792547651883 0.0 0.0) +(-0.4612309750481023 0.0 0.0) +(-0.4587583167933096 0.0 0.0) +(-0.4558479393385426 0.0 0.0) +(-0.45246987237197706 0.0 0.0) +(-0.44857164665505184 0.0 0.0) +(-0.4440963896417944 0.0 0.0) +(-0.4389538193316706 0.0 0.0) +(-0.4676560924088867 0.0 0.0) +(-0.4673363928156511 0.0 0.0) +(-0.4666813689669931 0.0 0.0) +(-0.4656887133181468 0.0 0.0) +(-0.46436030343433665 0.0 0.0) +(-0.4626759181163984 0.0 0.0) +(-0.4606135489179143 0.0 0.0) +(-0.4581494706131438 0.0 0.0) +(-0.4552651735988418 0.0 0.0) +(-0.45191749379288093 0.0 0.0) +(-0.44806095054744133 0.0 0.0) +(-0.44363061161479334 0.0 0.0) +(-0.43854791216339345 0.0 0.0) +(-0.46666939962829074 0.0 0.0) +(-0.4663390140211647 0.0 0.0) +(-0.46568876319785746 0.0 0.0) +(-0.4647134979470515 0.0 0.0) +(-0.46339232003115394 0.0 0.0) +(-0.46172583060394023 0.0 0.0) +(-0.45968696305285583 0.0 0.0) +(-0.457252423015163 0.0 0.0) +(-0.45440088032877246 0.0 0.0) +(-0.45109648106304595 0.0 0.0) +(-0.4472910812344572 0.0 0.0) +(-0.44293506412671557 0.0 0.0) +(-0.4379375682225198 0.0 0.0) +(-0.465332229376638 0.0 0.0) +(-0.4650028290487539 0.0 0.0) +(-0.46436030320428945 0.0 0.0) +(-0.46339231991599733 0.0 0.0) +(-0.46209309613002314 0.0 0.0) +(-0.4604479240215774 0.0 0.0) +(-0.4584425831441224 0.0 0.0) +(-0.45605360007198553 0.0 0.0) +(-0.4532556094353277 0.0 0.0) +(-0.4500108724222971 0.0 0.0) +(-0.44628913073213683 0.0 0.0) +(-0.4420300619060908 0.0 0.0) +(-0.4371520062860532 0.0 0.0) +(-0.46363086839844225 0.0 0.0) +(-0.4633079250170184 0.0 0.0) +(-0.46267591776275413 0.0 0.0) +(-0.46172591458763046 0.0 0.0) +(-0.4604479239001498 0.0 0.0) +(-0.45883741276682505 0.0 0.0) +(-0.4568689414555596 0.0 0.0) +(-0.45453611548266903 0.0 0.0) +(-0.45180723632371783 0.0 0.0) +(-0.44864349684978494 0.0 0.0) +(-0.44502201693763593 0.0 0.0) +(-0.4408771708146314 0.0 0.0) +(-0.43614003196992546 0.0 0.0) +(-0.46154897226939157 0.0 0.0) +(-0.4612309744636523 0.0 0.0) +(-0.4606135484310892 0.0 0.0) +(-0.4596869626940855 0.0 0.0) +(-0.4584425828931668 0.0 0.0) +(-0.45686894133034306 0.0 0.0) +(-0.4549599726055136 0.0 0.0) +(-0.4526882227744777 0.0 0.0) +(-0.45004123761368464 0.0 0.0) +(-0.4469786018975496 0.0 0.0) +(-0.4434726699438761 0.0 0.0) +(-0.4394710463536751 0.0 0.0) +(-0.434904696748178 0.0 0.0) +(-0.4590606583291006 0.0 0.0) +(-0.4587583160881778 0.0 0.0) +(-0.4581494699994931 0.0 0.0) +(-0.4572524225100118 0.0 0.0) +(-0.4560535996862771 0.0 0.0) +(-0.4545361152233115 0.0 0.0) +(-0.4526882226428339 0.0 0.0) +(-0.4505070701133338 0.0 0.0) +(-0.4479667331643762 0.0 0.0) +(-0.4450213061674245 0.0 0.0) +(-0.4416531753708013 0.0 0.0) +(-0.43782737594808013 0.0 0.0) +(-0.43346744876921317 0.0 0.0) +(-0.45614664343783623 0.0 0.0) +(-0.4558479384612395 0.0 0.0) +(-0.45526517284591783 0.0 0.0) +(-0.45440087968972276 0.0 0.0) +(-0.4532556089113011 0.0 0.0) +(-0.451807235919365 0.0 0.0) +(-0.45004123734107626 0.0 0.0) +(-0.44796673302404183 0.0 0.0) +(-0.44554120483958626 0.0 0.0) +(-0.44274034994484385 0.0 0.0) +(-0.43954562959458277 0.0 0.0) +(-0.43592861712844155 0.0 0.0) +(-0.4318074090763084 0.0 0.0) +(-0.45274692496900243 0.0 0.0) +(-0.452469871354777 0.0 0.0) +(-0.45191749287070987 0.0 0.0) +(-0.4510964802773549 0.0 0.0) +(-0.4500109428846375 0.0 0.0) +(-0.44864349629835854 0.0 0.0) +(-0.44697860147647656 0.0 0.0) +(-0.4450213058791628 0.0 0.0) +(-0.44274034979447124 0.0 0.0) +(-0.4401085728456295 0.0 0.0) +(-0.43711415164004735 0.0 0.0) +(-0.43373215683850425 0.0 0.0) +(-0.4298749313443095 0.0 0.0) +(-0.4488285806137293 0.0 0.0) +(-0.44857164545090955 0.0 0.0) +(-0.4480609494683459 0.0 0.0) +(-0.4472910802642298 0.0 0.0) +(-0.44628912987390446 0.0 0.0) +(-0.44502210533169795 0.0 0.0) +(-0.44347266935044777 0.0 0.0) +(-0.44165336339556654 0.0 0.0) +(-0.4395454816093074 0.0 0.0) +(-0.43711415147987903 0.0 0.0) +(-0.434344117999016 0.0 0.0) +(-0.4312344616956136 0.0 0.0) +(-0.42769857499550556 0.0 0.0) +(-0.44432199182355725 0.0 0.0) +(-0.4440963882359763 0.0 0.0) +(-0.4436303620440312 0.0 0.0) +(-0.44293506295814655 0.0 0.0) +(-0.4420300608801087 0.0 0.0) +(-0.44087695872645005 0.0 0.0) +(-0.4394710455756058 0.0 0.0) +(-0.4378273753104914 0.0 0.0) +(-0.4359286166397759 0.0 0.0) +(-0.4337321564930632 0.0 0.0) +(-0.43123465587604787 0.0 0.0) +(-0.4284502482706316 0.0 0.0) +(-0.4252788241773606 0.0 0.0) +(-0.4391385494710385 0.0 0.0) +(-0.43895381770428776 0.0 0.0) +(-0.43854791063251836 0.0 0.0) +(-0.437937566829034 0.0 0.0) +(-0.43715200504169244 0.0 0.0) +(-0.43614003084891667 0.0 0.0) +(-0.4349046957556298 0.0 0.0) +(-0.4334674479172518 0.0 0.0) +(-0.43180740837632253 0.0 0.0) +(-0.4298749308059082 0.0 0.0) +(-0.42769857462818206 0.0 0.0) +(-0.42527882398813877 0.0 0.0) +(-0.4225169473527067 0.0 0.0) +(-0.46862359699245104 0.0 0.0) +(-0.46830615430302985 0.0 0.0) +(-0.4676560932020114 0.0 0.0) +(-0.46666940080839425 0.0 0.0) +(-0.46533223089785114 0.0 0.0) +(-0.4636308702598532 0.0 0.0) +(-0.46154897451250626 0.0 0.0) +(-0.45906066091458897 0.0 0.0) +(-0.4561466464643942 0.0 0.0) +(-0.45274692847725784 0.0 0.0) +(-0.4488285846800224 0.0 0.0) +(-0.4443219964694796 0.0 0.0) +(-0.4391385547932906 0.0 0.0) +(-0.46830617462921104 0.0 0.0) +(-0.4679816775899439 0.0 0.0) +(-0.4673363935964225 0.0 0.0) +(-0.466339015117787 0.0 0.0) +(-0.4650028305026737 0.0 0.0) +(-0.46330792684531086 0.0 0.0) +(-0.4612309766591851 0.0 0.0) +(-0.45875831863144656 0.0 0.0) +(-0.45584794153055275 0.0 0.0) +(-0.4524698748301445 0.0 0.0) +(-0.4485716494870742 0.0 0.0) +(-0.44409639287406827 0.0 0.0) +(-0.4389538230023462 0.0 0.0) +(-0.46765609278479164 0.0 0.0) +(-0.4673363933905331 0.0 0.0) +(-0.46668136981099906 0.0 0.0) +(-0.4656887643076975 0.0 0.0) +(-0.46436030469435235 0.0 0.0) +(-0.46267591962471066 0.0 0.0) +(-0.4606135506978766 0.0 0.0) +(-0.45814947263067085 0.0 0.0) +(-0.45526517588753657 0.0 0.0) +(-0.4519174964313839 0.0 0.0) +(-0.44806095348853536 0.0 0.0) +(-0.4436303666608796 0.0 0.0) +(-0.43854791603904925 0.0 0.0) +(-0.4666694001429482 0.0 0.0) +(-0.46633901470405886 0.0 0.0) +(-0.46568871410760126 0.0 0.0) +(-0.46471354914108753 0.0 0.0) +(-0.4633923213946165 0.0 0.0) +(-0.46172591645749766 0.0 0.0) +(-0.45968696489855576 0.0 0.0) +(-0.45725242518724296 0.0 0.0) +(-0.4544008827502699 0.0 0.0) +(-0.45109648377103406 0.0 0.0) +(-0.44729108433843223 0.0 0.0) +(-0.4429350676453174 0.0 0.0) +(-0.4379375722126477 0.0 0.0) +(-0.4653322300078375 0.0 0.0) +(-0.46500282986171426 0.0 0.0) +(-0.46436030425349845 0.0 0.0) +(-0.46339232117393464 0.0 0.0) +(-0.46209309760239325 0.0 0.0) +(-0.4604479257787917 0.0 0.0) +(-0.4584425851788197 0.0 0.0) +(-0.4560536023770202 0.0 0.0) +(-0.45325561200528863 0.0 0.0) +(-0.4500109464306218 0.0 0.0) +(-0.44628913401377707 0.0 0.0) +(-0.44203006550676777 0.0 0.0) +(-0.4371520103578183 0.0 0.0) +(-0.4636308691455005 0.0 0.0) +(-0.4633079259647412 0.0 0.0) +(-0.4626759189469997 0.0 0.0) +(-0.4617258317766621 0.0 0.0) +(-0.4604479255460923 0.0 0.0) +(-0.45883741459994437 0.0 0.0) +(-0.45686894358060787 0.0 0.0) +(-0.45453611789758414 0.0 0.0) +(-0.4518072390529591 0.0 0.0) +(-0.448643339276364 0.0 0.0) +(-0.4450221093907809 0.0 0.0) +(-0.44087717459562853 0.0 0.0) +(-0.43614003621940234 0.0 0.0) +(-0.46154897314833915 0.0 0.0) +(-0.46123097553916664 0.0 0.0) +(-0.46061354976494306 0.0 0.0) +(-0.45968696421102156 0.0 0.0) +(-0.4584425846978979 0.0 0.0) +(-0.45686894334064737 0.0 0.0) +(-0.4549599748378727 0.0 0.0) +(-0.45268822531102143 0.0 0.0) +(-0.45004124045328775 0.0 0.0) +(-0.44697860503957276 0.0 0.0) +(-0.4434726734898264 0.0 0.0) +(-0.4394710503030559 0.0 0.0) +(-0.4349047011886502 0.0 0.0) +(-0.4590607757796347 0.0 0.0) +(-0.45875831728015815 0.0 0.0) +(-0.4581494714546933 0.0 0.0) +(-0.4572524242191898 0.0 0.0) +(-0.4560536016378629 0.0 0.0) +(-0.454536117400561 0.0 0.0) +(-0.45268822505874456 0.0 0.0) +(-0.450507072856974 0.0 0.0) +(-0.44796673616505855 0.0 0.0) +(-0.4450213094646629 0.0 0.0) +(-0.4416531790959313 0.0 0.0) +(-0.43782738004784544 0.0 0.0) +(-0.43346745338822307 0.0 0.0) +(-0.45614664458582593 0.0 0.0) +(-0.45584793984932165 0.0 0.0) +(-0.45526517444466086 0.0 0.0) +(-0.4544008815256191 0.0 0.0) +(-0.45325561100106343 0.0 0.0) +(-0.4518072382780723 0.0 0.0) +(-0.4500412399308713 0.0 0.0) +(-0.4479667358961272 0.0 0.0) +(-0.44554120799018976 0.0 0.0) +(-0.4427403534559236 0.0 0.0) +(-0.4395454858037967 0.0 0.0) +(-0.43592862136741917 0.0 0.0) +(-0.4318074138594581 0.0 0.0) +(-0.45274692628433044 0.0 0.0) +(-0.4524698728808203 0.0 0.0) +(-0.4519174946641693 0.0 0.0) +(-0.4510964822653649 0.0 0.0) +(-0.4500108740016436 0.0 0.0) +(-0.4486434988068985 0.0 0.0) +(-0.44697860423264424 0.0 0.0) +(-0.4450213089122489 0.0 0.0) +(-0.4427403531677551 0.0 0.0) +(-0.4401085765738977 0.0 0.0) +(-0.43711415565034034 0.0 0.0) +(-0.4337321613752666 0.0 0.0) +(-0.42987518284543835 0.0 0.0) +(-0.4488285821236027 0.0 0.0) +(-0.4485716471795007 0.0 0.0) +(-0.448060951420597 0.0 0.0) +(-0.4472910824791243 0.0 0.0) +(-0.4462891323690921 0.0 0.0) +(-0.44502201891596194 0.0 0.0) +(-0.44347267235260246 0.0 0.0) +(-0.4416531782153585 0.0 0.0) +(-0.4395454852019099 0.0 0.0) +(-0.4371141553433991 0.0 0.0) +(-0.43434412223936586 0.0 0.0) +(-0.43123466070386834 0.0 0.0) +(-0.4276985800700692 0.0 0.0) +(-0.4443219935345051 0.0 0.0) +(-0.44409639018001057 0.0 0.0) +(-0.443630572167949 0.0 0.0) +(-0.44293506540591515 0.0 0.0) +(-0.4420300635406135 0.0 0.0) +(-0.44087717285648315 0.0 0.0) +(-0.4394710488119922 0.0 0.0) +(-0.4378273788259945 0.0 0.0) +(-0.43592862043095865 0.0 0.0) +(-0.433732160713276 0.0 0.0) +(-0.431234466010616 0.0 0.0) +(-0.4284502532060451 0.0 0.0) +(-0.42527882942958695 0.0 0.0) +(-0.4391385514172466 0.0 0.0) +(-0.4389538198836902 0.0 0.0) +(-0.43854791310533714 0.0 0.0) +(-0.4379375695422234 0.0 0.0) +(-0.4371520079731715 0.0 0.0) +(-0.4361400340711427 0.0 0.0) +(-0.43490469928656755 0.0 0.0) +(-0.433467586266171 0.0 0.0) +(-0.43180741251803134 0.0 0.0) +(-0.42987493524825604 0.0 0.0) +(-0.4276985793661437 0.0 0.0) +(-0.425278829066969 0.0 0.0) +(-0.42251695291811053 0.0 0.0) +(-0.43300147964701996 0.0 0.0) +(-0.4328365479645906 0.0 0.0) +(-0.43246151344054495 0.0 0.0) +(-0.43189881161674903 0.0 0.0) +(-0.43116051668370753 0.0 0.0) +(-0.4302269317254605 0.0 0.0) +(-0.4290703956365933 0.0 0.0) +(-0.427727228548401 0.0 0.0) +(-0.42618274298312686 0.0 0.0) +(-0.42438393369248645 0.0 0.0) +(-0.42236095788127725 0.0 0.0) +(-0.42011832941728644 0.0 0.0) +(-0.4175641520421712 0.0 0.0) +(-0.4261359024942638 0.0 0.0) +(-0.42596810184074735 0.0 0.0) +(-0.42558302034086193 0.0 0.0) +(-0.42500956248724464 0.0 0.0) +(-0.4242569059617373 0.0 0.0) +(-0.42330382025939994 0.0 0.0) +(-0.4221224557069905 0.0 0.0) +(-0.4207579882404405 0.0 0.0) +(-0.4191879080130851 0.0 0.0) +(-0.4173605825302721 0.0 0.0) +(-0.4153062273905456 0.0 0.0) +(-0.4130318004981831 0.0 0.0) +(-0.41045003595511614 0.0 0.0) +(-0.4191164937640925 0.0 0.0) +(-0.41894443742642296 0.0 0.0) +(-0.4185516145012607 0.0 0.0) +(-0.41797153244098334 0.0 0.0) +(-0.41720911168724434 0.0 0.0) +(-0.41624059163506655 0.0 0.0) +(-0.41504502311572566 0.0 0.0) +(-0.4136657277416985 0.0 0.0) +(-0.41207899691704164 0.0 0.0) +(-0.41023121851312294 0.0 0.0) +(-0.40815580901012505 0.0 0.0) +(-0.4058583409993257 0.0 0.0) +(-0.40324786330150747 0.0 0.0) +(-0.4119802678860729 0.0 0.0) +(-0.41180557676084756 0.0 0.0) +(-0.4114064386951912 0.0 0.0) +(-0.4108170291410089 0.0 0.0) +(-0.4100548333245535 0.0 0.0) +(-0.4090701992109745 0.0 0.0) +(-0.4078687205936371 0.0 0.0) +(-0.40647711720028873 0.0 0.0) +(-0.40486955286983434 0.0 0.0) +(-0.4030050074867201 0.0 0.0) +(-0.40091612857444175 0.0 0.0) +(-0.39860924219372856 0.0 0.0) +(-0.3959864287742001 0.0 0.0) +(-0.4047431933118243 0.0 0.0) +(-0.40457146421126294 0.0 0.0) +(-0.40417394880583857 0.0 0.0) +(-0.40357434579493134 0.0 0.0) +(-0.40280413943234966 0.0 0.0) +(-0.40181799067691676 0.0 0.0) +(-0.4006088405243631 0.0 0.0) +(-0.3991998629754132 0.0 0.0) +(-0.3975875820650131 0.0 0.0) +(-0.39571420903494103 0.0 0.0) +(-0.39361313726591585 0.0 0.0) +(-0.3912893705296115 0.0 0.0) +(-0.38865092490664843 0.0 0.0) +(-0.39742652354306074 0.0 0.0) +(-0.39725151013248866 0.0 0.0) +(-0.39685259622797764 0.0 0.0) +(-0.3962597281055388 0.0 0.0) +(-0.3954782134282888 0.0 0.0) +(-0.39449070211188064 0.0 0.0) +(-0.39326903054774465 0.0 0.0) +(-0.3918632812970817 0.0 0.0) +(-0.3902396306995398 0.0 0.0) +(-0.38835334499913243 0.0 0.0) +(-0.3862409245487083 0.0 0.0) +(-0.3839082585013559 0.0 0.0) +(-0.3812619539255379 0.0 0.0) +(-0.3900435487960917 0.0 0.0) +(-0.38986954736892193 0.0 0.0) +(-0.3894654150243235 0.0 0.0) +(-0.38886171930765406 0.0 0.0) +(-0.3880847906785541 0.0 0.0) +(-0.3870891034552789 0.0 0.0) +(-0.3858662750426707 0.0 0.0) +(-0.38444587282262405 0.0 0.0) +(-0.3828217223579491 0.0 0.0) +(-0.3809308893404967 0.0 0.0) +(-0.37880875567353417 0.0 0.0) +(-0.37646485602831264 0.0 0.0) +(-0.3738036364916471 0.0 0.0) +(-0.38258003991195283 0.0 0.0) +(-0.3824025269989295 0.0 0.0) +(-0.38199779605839224 0.0 0.0) +(-0.38139947195320756 0.0 0.0) +(-0.3806183708596187 0.0 0.0) +(-0.37961378366070453 0.0 0.0) +(-0.37839102946745473 0.0 0.0) +(-0.37696332669078036 0.0 0.0) +(-0.37532593950698845 0.0 0.0) +(-0.3734293419906493 0.0 0.0) +(-0.37130103140339304 0.0 0.0) +(-0.36894498475702503 0.0 0.0) +(-0.366269978802171 0.0 0.0) +(-0.3750382733689006 0.0 0.0) +(-0.37486172013064145 0.0 0.0) +(-0.37445913640172385 0.0 0.0) +(-0.3738591156032232 0.0 0.0) +(-0.37306657824140577 0.0 0.0) +(-0.3720641882099676 0.0 0.0) +(-0.3708313772334353 0.0 0.0) +(-0.3694014303951279 0.0 0.0) +(-0.36775191609492314 0.0 0.0) +(-0.3658468539159754 0.0 0.0) +(-0.36370831565696005 0.0 0.0) +(-0.36133685725474873 0.0 0.0) +(-0.35864386099667545 0.0 0.0) +(-0.3674105942888211 0.0 0.0) +(-0.36723389085614244 0.0 0.0) +(-0.36683069560083204 0.0 0.0) +(-0.36622724894706765 0.0 0.0) +(-0.3654286922051377 0.0 0.0) +(-0.36442207962431106 0.0 0.0) +(-0.36318268438630574 0.0 0.0) +(-0.36174314576752575 0.0 0.0) +(-0.36008572707143127 0.0 0.0) +(-0.35817598712818666 0.0 0.0) +(-0.35601229185401007 0.0 0.0) +(-0.353620265267448 0.0 0.0) +(-0.35090789474326234 0.0 0.0) +(-0.35967967001586676 0.0 0.0) +(-0.35950146170308955 0.0 0.0) +(-0.35909474928328544 0.0 0.0) +(-0.3584911692266064 0.0 0.0) +(-0.3576901891505671 0.0 0.0) +(-0.3566709522448418 0.0 0.0) +(-0.3554313146690464 0.0 0.0) +(-0.35397328394654576 0.0 0.0) +(-0.35231690925565934 0.0 0.0) +(-0.35037612435015103 0.0 0.0) +(-0.34819621264806 0.0 0.0) +(-0.3457962209107579 0.0 0.0) +(-0.34306150861112905 0.0 0.0) +(-0.351832104924487 0.0 0.0) +(-0.35165041738611563 0.0 0.0) +(-0.3512360332873686 0.0 0.0) +(-0.3506229450676994 0.0 0.0) +(-0.3498295998746739 0.0 0.0) +(-0.3487999560260588 0.0 0.0) +(-0.3475415520520507 0.0 0.0) +(-0.34608331692864 0.0 0.0) +(-0.34440305040803576 0.0 0.0) +(-0.34244557837112444 0.0 0.0) +(-0.3402562401092365 0.0 0.0) +(-0.3378249099606954 0.0 0.0) +(-0.3350606583924338 0.0 0.0) +(-0.34383889588496547 0.0 0.0) +(-0.3436589945070029 0.0 0.0) +(-0.34324110462916063 0.0 0.0) +(-0.3426169459877266 0.0 0.0) +(-0.3418064964901234 0.0 0.0) +(-0.34077874434106625 0.0 0.0) +(-0.33950424730288464 0.0 0.0) +(-0.3380322893559884 0.0 0.0) +(-0.3363306427201717 0.0 0.0) +(-0.33436386740418106 0.0 0.0) +(-0.33213416278474195 0.0 0.0) +(-0.32967437939486804 0.0 0.0) +(-0.32688552354122247 0.0 0.0) +(-0.33566250821395544 0.0 0.0) +(-0.335480499115371 0.0 0.0) +(-0.33506217973180913 0.0 0.0) +(-0.3344387501958703 0.0 0.0) +(-0.3336146378789546 0.0 0.0) +(-0.3325658466065934 0.0 0.0) +(-0.3312914380636696 0.0 0.0) +(-0.32978929902003323 0.0 0.0) +(-0.3280750804907705 0.0 0.0) +(-0.3260672865521348 0.0 0.0) +(-0.32382922865785435 0.0 0.0) +(-0.3213146326364405 0.0 0.0) +(-0.3184926063804632 0.0 0.0) +(-0.3272885155650205 0.0 0.0) +(-0.3271021743276492 0.0 0.0) +(-0.32667736890880894 0.0 0.0) +(-0.32602915147560596 0.0 0.0) +(-0.3251951487228982 0.0 0.0) +(-0.3241476821140873 0.0 0.0) +(-0.32284850164873724 0.0 0.0) +(-0.3213162255459424 0.0 0.0) +(-0.3195876881133382 0.0 0.0) +(-0.3175394820676971 0.0 0.0) +(-0.31527475915982023 0.0 0.0) +(-0.3127146755133855 0.0 0.0) +(-0.30983179672943884 0.0 0.0) +(-0.3186555521103581 0.0 0.0) +(-0.318461488576027 0.0 0.0) +(-0.31801885724576734 0.0 0.0) +(-0.31736458906768433 0.0 0.0) +(-0.31652425169117593 0.0 0.0) +(-0.3154644717904674 0.0 0.0) +(-0.31413379515581735 0.0 0.0) +(-0.31257912811516986 0.0 0.0) +(-0.3108200748759368 0.0 0.0) +(-0.30873423856191 0.0 0.0) +(-0.3064098456964105 0.0 0.0) +(-0.30381849716952836 0.0 0.0) +(-0.3008596185016488 0.0 0.0) +(-0.3096965126077864 0.0 0.0) +(-0.3095028430042109 0.0 0.0) +(-0.30905633324288695 0.0 0.0) +(-0.3083961101145637 0.0 0.0) +(-0.30753890043355514 0.0 0.0) +(-0.3064493140191473 0.0 0.0) +(-0.3050892211944318 0.0 0.0) +(-0.3035215509843936 0.0 0.0) +(-0.3017073156608827 0.0 0.0) +(-0.2995747027265094 0.0 0.0) +(-0.2972143948577977 0.0 0.0) +(-0.29453869797996657 0.0 0.0) +(-0.2915460217830472 0.0 0.0) +(-0.30036328541727386 0.0 0.0) +(-0.30016433482571125 0.0 0.0) +(-0.2997081544819786 0.0 0.0) +(-0.29903296200087914 0.0 0.0) +(-0.29816147341811367 0.0 0.0) +(-0.2970616769480252 0.0 0.0) +(-0.29565698188623196 0.0 0.0) +(-0.29402786791860996 0.0 0.0) +(-0.2921850438064975 0.0 0.0) +(-0.29002257964355643 0.0 0.0) +(-0.2875382439682785 0.0 0.0) +(-0.28487589284908904 0.0 0.0) +(-0.2817080251814224 0.0 0.0) +(-0.29059677977924275 0.0 0.0) +(-0.2903896695957237 0.0 0.0) +(-0.2899181408956358 0.0 0.0) +(-0.2892198156712237 0.0 0.0) +(-0.2882994255415073 0.0 0.0) +(-0.28713984918703794 0.0 0.0) +(-0.2857415484839508 0.0 0.0) +(-0.2841006469054129 0.0 0.0) +(-0.2821586022365951 0.0 0.0) +(-0.27990293148796946 0.0 0.0) +(-0.2774304207824582 0.0 0.0) +(-0.2745856837075295 0.0 0.0) +(-0.2713386643953127 0.0 0.0) +(-0.2801916328949154 0.0 0.0) +(-0.2799845278164625 0.0 0.0) +(-0.2795109087627516 0.0 0.0) +(-0.27881000358454244 0.0 0.0) +(-0.2779079938351679 0.0 0.0) +(-0.27670693488815945 0.0 0.0) +(-0.2752267527944151 0.0 0.0) +(-0.27348598032659027 0.0 0.0) +(-0.27149564642665264 0.0 0.0) +(-0.26918911161816167 0.0 0.0) +(-0.26656865942049845 0.0 0.0) +(-0.2636654008723442 0.0 0.0) +(-0.26024626354788993 0.0 0.0) +(-0.2691243637566613 0.0 0.0) +(-0.2689042269464996 0.0 0.0) +(-0.26840110984424387 0.0 0.0) +(-0.2676574261150787 0.0 0.0) +(-0.2666987967725476 0.0 0.0) +(-0.2654611017799772 0.0 0.0) +(-0.2639442052483304 0.0 0.0) +(-0.2621411965026878 0.0 0.0) +(-0.2600303062891555 0.0 0.0) +(-0.25761810222342624 0.0 0.0) +(-0.2549178136603762 0.0 0.0) +(-0.25189421543240237 0.0 0.0) +(-0.24827771682377364 0.0 0.0) +(-0.25709524680263596 0.0 0.0) +(-0.2568765744998835 0.0 0.0) +(-0.25637662946170875 0.0 0.0) +(-0.25560830440188526 0.0 0.0) +(-0.25458856635196064 0.0 0.0) +(-0.25330776790908593 0.0 0.0) +(-0.2517111701764471 0.0 0.0) +(-0.2497555675412924 0.0 0.0) +(-0.24756937229737372 0.0 0.0) +(-0.24511137823030127 0.0 0.0) +(-0.24226432525010458 0.0 0.0) +(-0.239012914741477 0.0 0.0) +(-0.23525662914275022 0.0 0.0) +(-0.2440177499123408 0.0 0.0) +(-0.243796925640273 0.0 0.0) +(-0.24324738840374904 0.0 0.0) +(-0.24238847243336498 0.0 0.0) +(-0.2412817727108938 0.0 0.0) +(-0.2398978363237475 0.0 0.0) +(-0.23819369927606668 0.0 0.0) +(-0.23617209237807588 0.0 0.0) +(-0.23390743814960535 0.0 0.0) +(-0.23123735808566798 0.0 0.0) +(-0.22831193692010002 0.0 0.0) +(-0.2248375402108422 0.0 0.0) +(-0.22096941554870037 0.0 0.0) +(-0.22926508092806996 0.0 0.0) +(-0.2290261727884727 0.0 0.0) +(-0.22847817848838814 0.0 0.0) +(-0.22766143453382648 0.0 0.0) +(-0.22646531765373232 0.0 0.0) +(-0.2249684597986674 0.0 0.0) +(-0.22315806342493777 0.0 0.0) +(-0.22110492979894875 0.0 0.0) +(-0.21870533325918873 0.0 0.0) +(-0.21599534001778273 0.0 0.0) +(-0.2127929062101469 0.0 0.0) +(-0.20906438783524878 0.0 0.0) +(-0.20496498460119397 0.0 0.0) +(-0.21276118166912894 0.0 0.0) +(-0.21247758221612612 0.0 0.0) +(-0.2118269785175773 0.0 0.0) +(-0.21086964470980668 0.0 0.0) +(-0.20963548709221294 0.0 0.0) +(-0.2080850833336111 0.0 0.0) +(-0.20621262296735227 0.0 0.0) +(-0.2040037870404764 0.0 0.0) +(-0.20153531723698748 0.0 0.0) +(-0.19875726679905403 0.0 0.0) +(-0.19528148049502758 0.0 0.0) +(-0.1913616036323721 0.0 0.0) +(-0.18708914884803826 0.0 0.0) +(-0.19365246214086979 0.0 0.0) +(-0.19335926525318747 0.0 0.0) +(-0.19268617135082736 0.0 0.0) +(-0.1916947168260386 0.0 0.0) +(-0.19042106557737348 0.0 0.0) +(-0.18882013804640385 0.0 0.0) +(-0.18685482631720843 0.0 0.0) +(-0.18454060744919887 0.0 0.0) +(-0.18195941121559284 0.0 0.0) +(-0.17903718975500402 0.0 0.0) +(-0.17580637976567146 0.0 0.0) +(-0.1718475140077247 0.0 0.0) +(-0.16755041319267253 0.0 0.0) +(-0.17201725553383196 0.0 0.0) +(-0.1717275648011827 0.0 0.0) +(-0.17106562124476593 0.0 0.0) +(-0.1700829185219833 0.0 0.0) +(-0.16882653220657154 0.0 0.0) +(-0.16724695565406278 0.0 0.0) +(-0.16533585633739611 0.0 0.0) +(-0.16315485333201585 0.0 0.0) +(-0.16033929953987647 0.0 0.0) +(-0.15719114171673587 0.0 0.0) +(-0.15376611167955817 0.0 0.0) +(-0.15014212136029056 0.0 0.0) +(-0.1460284504327292 0.0 0.0) +(-0.14752365866254058 0.0 0.0) +(-0.14724314228458554 0.0 0.0) +(-0.14660199997635276 0.0 0.0) +(-0.14565923751353838 0.0 0.0) +(-0.14444390424981127 0.0 0.0) +(-0.14292012046891253 0.0 0.0) +(-0.14108130495621946 0.0 0.0) +(-0.13900127685953426 0.0 0.0) +(-0.13666975342613305 0.0 0.0) +(-0.13406580008808322 0.0 0.0) +(-0.13113692908704952 0.0 0.0) +(-0.12752962655175712 0.0 0.0) +(-0.12361142690951071 0.0 0.0) +(-0.1210182167380832 0.0 0.0) +(-0.12077250368651656 0.0 0.0) +(-0.12021681153377864 0.0 0.0) +(-0.11939049345029176 0.0 0.0) +(-0.1183357459711927 0.0 0.0) +(-0.1170122758926451 0.0 0.0) +(-0.11540836676513318 0.0 0.0) +(-0.11359818472541992 0.0 0.0) +(-0.11156268615347054 0.0 0.0) +(-0.10919776230480588 0.0 0.0) +(-0.10661590738022741 0.0 0.0) +(-0.10391588233409084 0.0 0.0) +(-0.10093694074032618 0.0 0.0) +(-0.094230441955442 0.0 0.0) +(-0.09406137278008027 0.0 0.0) +(-0.09367901346339899 0.0 0.0) +(-0.09309771111554843 0.0 0.0) +(-0.0923727424875974 0.0 0.0) +(-0.09144387277064146 0.0 0.0) +(-0.09020364834652549 0.0 0.0) +(-0.08877464982127209 0.0 0.0) +(-0.08720175981180504 0.0 0.0) +(-0.0854007136194527 0.0 0.0) +(-0.08347919253123606 0.0 0.0) +(-0.08146079153185914 0.0 0.0) +(-0.0792623044072357 0.0 0.0) +(-0.06784153475025871 0.0 0.0) +(-0.06774623203380802 0.0 0.0) +(-0.0675365306233309 0.0 0.0) +(-0.06721805341167175 0.0 0.0) +(-0.06681461832454645 0.0 0.0) +(-0.06631091183346748 0.0 0.0) +(-0.06570251714911406 0.0 0.0) +(-0.06499737969838452 0.0 0.0) +(-0.06423325671978086 0.0 0.0) +(-0.06336705888770959 0.0 0.0) +(-0.06244180639048524 0.0 0.0) +(-0.06142366485411926 0.0 0.0) +(-0.060353961909786716 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.4175644362857244 0.0 0.0) +(-0.42011832910100555 0.0 0.0) +(-0.42236095736646107 0.0 0.0) +(-0.42438393299677807 0.0 0.0) +(-0.42618274211411644 0.0 0.0) +(-0.4277272275176695 0.0 0.0) +(-0.42907039444573575 0.0 0.0) +(-0.4302269303607828 0.0 0.0) +(-0.43116051519336224 0.0 0.0) +(-0.43189880995358704 0.0 0.0) +(-0.43246178871531876 0.0 0.0) +(-0.43283654604633004 0.0 0.0) +(-0.43300147758122653 0.0 0.0) +(-0.4104500358275024 0.0 0.0) +(-0.41303180012406815 0.0 0.0) +(-0.4153062267827629 0.0 0.0) +(-0.4173605817100965 0.0 0.0) +(-0.4191879069895474 0.0 0.0) +(-0.4207579870253264 0.0 0.0) +(-0.4221224543115645 0.0 0.0) +(-0.423303818685957 0.0 0.0) +(-0.42425722901755347 0.0 0.0) +(-0.42500956054725797 0.0 0.0) +(-0.42558269313113845 0.0 0.0) +(-0.4259680996070476 0.0 0.0) +(-0.4261362261737898 0.0 0.0) +(-0.4032478631506421 0.0 0.0) +(-0.4058583405581695 0.0 0.0) +(-0.40815618372191564 0.0 0.0) +(-0.4102312175745362 0.0 0.0) +(-0.41207899572317586 0.0 0.0) +(-0.4136657263200865 0.0 0.0) +(-0.41504464462524426 0.0 0.0) +(-0.4162409620544216 0.0 0.0) +(-0.417209109641573 0.0 0.0) +(-0.4179715302474889 0.0 0.0) +(-0.418551988836081 0.0 0.0) +(-0.4189444348120461 0.0 0.0) +(-0.41911649097411746 0.0 0.0) +(-0.3959864285958225 0.0 0.0) +(-0.3986096007571421 0.0 0.0) +(-0.40091612776579616 0.0 0.0) +(-0.40300500639093095 0.0 0.0) +(-0.40486955150858545 0.0 0.0) +(-0.4064771155948056 0.0 0.0) +(-0.40786871869657076 0.0 0.0) +(-0.40907004228096916 0.0 0.0) +(-0.4100548309513021 0.0 0.0) +(-0.4108169300252142 0.0 0.0) +(-0.41140643590193876 0.0 0.0) +(-0.41180557373183596 0.0 0.0) +(-0.41198026466751037 0.0 0.0) +(-0.38865092470343643 0.0 0.0) +(-0.39128936993895996 0.0 0.0) +(-0.3936131363142521 0.0 0.0) +(-0.3957142077490282 0.0 0.0) +(-0.39758758047066817 0.0 0.0) +(-0.39919986109866673 0.0 0.0) +(-0.40060883839142253 0.0 0.0) +(-0.4018179882235928 0.0 0.0) +(-0.40280413676716265 0.0 0.0) +(-0.40357434283542726 0.0 0.0) +(-0.4041739455628293 0.0 0.0) +(-0.40457146082344847 0.0 0.0) +(-0.4047432051569363 0.0 0.0) +(-0.3812619536907185 0.0 0.0) +(-0.3839082578274737 0.0 0.0) +(-0.38624092346781114 0.0 0.0) +(-0.3883533435416018 0.0 0.0) +(-0.39023962889231817 0.0 0.0) +(-0.39186327914255026 0.0 0.0) +(-0.3932690280511425 0.0 0.0) +(-0.3944906993317483 0.0 0.0) +(-0.3954782103184325 0.0 0.0) +(-0.3962597247340591 0.0 0.0) +(-0.39685259259046535 0.0 0.0) +(-0.39725150619145877 0.0 0.0) +(-0.39742651931322565 0.0 0.0) +(-0.3738036362181422 0.0 0.0) +(-0.37646431769150857 0.0 0.0) +(-0.37880875442683704 0.0 0.0) +(-0.38093088766480493 0.0 0.0) +(-0.38282172022852334 0.0 0.0) +(-0.3844458703276824 0.0 0.0) +(-0.38586627220818226 0.0 0.0) +(-0.38708910021373977 0.0 0.0) +(-0.3880847871419115 0.0 0.0) +(-0.388861715418721 0.0 0.0) +(-0.38946530711220123 0.0 0.0) +(-0.3898695428889653 0.0 0.0) +(-0.39004354398959606 0.0 0.0) +(-0.3662699784836003 0.0 0.0) +(-0.3689455947295086 0.0 0.0) +(-0.3713010299704509 0.0 0.0) +(-0.37342983374796457 0.0 0.0) +(-0.37532593707662376 0.0 0.0) +(-0.37696332385216014 0.0 0.0) +(-0.3783910261545327 0.0 0.0) +(-0.3796137799831906 0.0 0.0) +(-0.3806183667749943 0.0 0.0) +(-0.3813994675479254 0.0 0.0) +(-0.3819977912439452 0.0 0.0) +(-0.382402667532495 0.0 0.0) +(-0.3825800343218426 0.0 0.0) +(-0.358643860637504 0.0 0.0) +(-0.36133685623175205 0.0 0.0) +(-0.3637083139647971 0.0 0.0) +(-0.36584685163781705 0.0 0.0) +(-0.3677519133035024 0.0 0.0) +(-0.3694014271448598 0.0 0.0) +(-0.37083137340794714 0.0 0.0) +(-0.37206448284993804 0.0 0.0) +(-0.37306657351798084 0.0 0.0) +(-0.3738593700195427 0.0 0.0) +(-0.374458875435518 0.0 0.0) +(-0.37486180000964564 0.0 0.0) +(-0.37503826701403525 0.0 0.0) +(-0.35090789432464486 0.0 0.0) +(-0.3536202640731604 0.0 0.0) +(-0.3560122899613257 0.0 0.0) +(-0.3581759844790009 0.0 0.0) +(-0.36008572383792414 0.0 0.0) +(-0.36174266237640335 0.0 0.0) +(-0.3631831000151713 0.0 0.0) +(-0.36442207480155914 0.0 0.0) +(-0.36542898510861016 0.0 0.0) +(-0.36622714294343933 0.0 0.0) +(-0.3668310809392578 0.0 0.0) +(-0.3672339822729835 0.0 0.0) +(-0.36741022302862425 0.0 0.0) +(-0.3430626344581492 0.0 0.0) +(-0.34579621951601963 0.0 0.0) +(-0.34819621042008797 0.0 0.0) +(-0.35037539488239233 0.0 0.0) +(-0.3523169055032074 0.0 0.0) +(-0.3539732795737305 0.0 0.0) +(-0.35543130966466435 0.0 0.0) +(-0.3566707205278624 0.0 0.0) +(-0.35769064388095867 0.0 0.0) +(-0.35849071410863304 0.0 0.0) +(-0.35909485460291307 0.0 0.0) +(-0.3595013492885343 0.0 0.0) +(-0.3596802306780343 0.0 0.0) +(-0.33506065782646044 0.0 0.0) +(-0.33782490833010415 0.0 0.0) +(-0.3402562374956572 0.0 0.0) +(-0.34244557487910465 0.0 0.0) +(-0.3444030461672386 0.0 0.0) +(-0.3460833118341955 0.0 0.0) +(-0.34754154631578804 0.0 0.0) +(-0.3488000816661601 0.0 0.0) +(-0.34982985632603514 0.0 0.0) +(-0.35062345721625565 0.0 0.0) +(-0.35123589334567906 0.0 0.0) +(-0.35165080557260203 0.0 0.0) +(-0.3518318292241625 0.0 0.0) +(-0.32688552288222106 0.0 0.0) +(-0.32967437749136885 0.0 0.0) +(-0.3321341598120534 0.0 0.0) +(-0.3343638633094885 0.0 0.0) +(-0.33633063772385335 0.0 0.0) +(-0.3380322835318764 0.0 0.0) +(-0.3395034761919491 0.0 0.0) +(-0.34077903937723386 0.0 0.0) +(-0.34180618476196023 0.0 0.0) +(-0.34261662996207437 0.0 0.0) +(-0.3432418598162901 0.0 0.0) +(-0.3436586831345089 0.0 0.0) +(-0.3438387336894999 0.0 0.0) +(-0.3184926055862188 0.0 0.0) +(-0.32131463042845987 0.0 0.0) +(-0.32382922524067914 0.0 0.0) +(-0.3260672817759429 0.0 0.0) +(-0.32807507478328907 0.0 0.0) +(-0.32978929209085 0.0 0.0) +(-0.3312912545442261 0.0 0.0) +(-0.33256601397093744 0.0 0.0) +(-0.33361515873128705 0.0 0.0) +(-0.33443839119939694 0.0 0.0) +(-0.33506252092583866 0.0 0.0) +(-0.33548118583519165 0.0 0.0) +(-0.335662670623991 0.0 0.0) +(-0.30983179582243686 0.0 0.0) +(-0.31271260177066534 0.0 0.0) +(-0.3152732711272793 0.0 0.0) +(-0.31753947650515596 0.0 0.0) +(-0.3195876813628946 0.0 0.0) +(-0.3213164242433577 0.0 0.0) +(-0.3228478610501573 0.0 0.0) +(-0.32414767208234213 0.0 0.0) +(-0.32519513744948936 0.0 0.0) +(-0.3260289299680077 0.0 0.0) +(-0.32667776486640515 0.0 0.0) +(-0.32710195397375025 0.0 0.0) +(-0.32728850029647705 0.0 0.0) +(-0.3008620618662955 0.0 0.0) +(-0.30381849415667794 0.0 0.0) +(-0.30640984077614086 0.0 0.0) +(-0.30873423206162665 0.0 0.0) +(-0.3108200667456084 0.0 0.0) +(-0.31257984589586624 0.0 0.0) +(-0.31413528943874386 0.0 0.0) +(-0.31546422408646846 0.0 0.0) +(-0.31652423857846546 0.0 0.0) +(-0.31736433149475307 0.0 0.0) +(-0.3180204474409095 0.0 0.0) +(-0.3184617191326409 0.0 0.0) +(-0.31865702540071195 0.0 0.0) +(-0.2915460205560502 0.0 0.0) +(-0.29453869429755214 0.0 0.0) +(-0.29721438927166755 0.0 0.0) +(-0.2995746950041139 0.0 0.0) +(-0.30170730601338064 0.0 0.0) +(-0.30352096225332476 0.0 0.0) +(-0.3050900748241921 0.0 0.0) +(-0.3064490097393449 0.0 0.0) +(-0.3075408133359787 0.0 0.0) +(-0.3083966604967544 0.0 0.0) +(-0.30905560653582964 0.0 0.0) +(-0.3095042679569641 0.0 0.0) +(-0.30969564213677264 0.0 0.0) +(-0.2817080236268262 0.0 0.0) +(-0.2848758887253647 0.0 0.0) +(-0.2875382371019829 0.0 0.0) +(-0.2900203130484537 0.0 0.0) +(-0.2921847006272386 0.0 0.0) +(-0.29402922641828955 0.0 0.0) +(-0.2956552492088372 0.0 0.0) +(-0.29706330387760604 0.0 0.0) +(-0.29816245991426377 0.0 0.0) +(-0.29903361507232357 0.0 0.0) +(-0.29970847290189123 0.0 0.0) +(-0.3001653398041615 0.0 0.0) +(-0.3003623555544328 0.0 0.0) +(-0.2713386625387563 0.0 0.0) +(-0.2745856783547272 0.0 0.0) +(-0.27742727993657973 0.0 0.0) +(-0.27990292053970983 0.0 0.0) +(-0.28215690735914295 0.0 0.0) +(-0.28409979392229956 0.0 0.0) +(-0.2857415309517112 0.0 0.0) +(-0.2871414431150303 0.0 0.0) +(-0.288298580555583 0.0 0.0) +(-0.28922100809774376 0.0 0.0) +(-0.28991811444810905 0.0 0.0) +(-0.29039043126581915 0.0 0.0) +(-0.29059633449563843 0.0 0.0) +(-0.26024626128863876 0.0 0.0) +(-0.2636653947065433 0.0 0.0) +(-0.26656504305192613 0.0 0.0) +(-0.2691890979469041 0.0 0.0) +(-0.27149462743235075 0.0 0.0) +(-0.2734869555720339 0.0 0.0) +(-0.2752247813918155 0.0 0.0) +(-0.27670740884572703 0.0 0.0) +(-0.2779065605969623 0.0 0.0) +(-0.27881140390945613 0.0 0.0) +(-0.2795108777008383 0.0 0.0) +(-0.2799849794206252 0.0 0.0) +(-0.28019304509651494 0.0 0.0) +(-0.24827771405171295 0.0 0.0) +(-0.25190079331354526 0.0 0.0) +(-0.25491780128562297 0.0 0.0) +(-0.25761808615244347 0.0 0.0) +(-0.2600308953525568 0.0 0.0) +(-0.2621392852977344 0.0 0.0) +(-0.2639441790722418 0.0 0.0) +(-0.26545926649038964 0.0 0.0) +(-0.2667004014748658 0.0 0.0) +(-0.26765611108030746 0.0 0.0) +(-0.2683992683892347 0.0 0.0) +(-0.26890539576607303 0.0 0.0) +(-0.2691267492340964 0.0 0.0) +(-0.23525662571515188 0.0 0.0) +(-0.2390129051369188 0.0 0.0) +(-0.24227228120831215 0.0 0.0) +(-0.24511135891668034 0.0 0.0) +(-0.24757009421726908 0.0 0.0) +(-0.24975399580636004 0.0 0.0) +(-0.25170875845621726 0.0 0.0) +(-0.2533062812775075 0.0 0.0) +(-0.2545855694062763 0.0 0.0) +(-0.25561051030850884 0.0 0.0) +(-0.2563794074385532 0.0 0.0) +(-0.2568793697148181 0.0 0.0) +(-0.25709519411516063 0.0 0.0) +(-0.22096013178733243 0.0 0.0) +(-0.22483752769460602 0.0 0.0) +(-0.22831191878087137 0.0 0.0) +(-0.23123122775836935 0.0 0.0) +(-0.23390464005863115 0.0 0.0) +(-0.23617217197492738 0.0 0.0) +(-0.23819561288177635 0.0 0.0) +(-0.2398977897156378 0.0 0.0) +(-0.2412798130673539 0.0 0.0) +(-0.24238647853626177 0.0 0.0) +(-0.24325124066579307 0.0 0.0) +(-0.24379942871249197 0.0 0.0) +(-0.24401854383028276 0.0 0.0) +(-0.20496497910840727 0.0 0.0) +(-0.20906437205541312 0.0 0.0) +(-0.21279287996378132 0.0 0.0) +(-0.21599530950195925 0.0 0.0) +(-0.2187052942021683 0.0 0.0) +(-0.2211048823384216 0.0 0.0) +(-0.22315562840665426 0.0 0.0) +(-0.22497327372760634 0.0 0.0) +(-0.22647492699984217 0.0 0.0) +(-0.22766766213379244 0.0 0.0) +(-0.22847810683633735 0.0 0.0) +(-0.22902945164066654 0.0 0.0) +(-0.22926836663833244 0.0 0.0) +(-0.18710518571158832 0.0 0.0) +(-0.19136158340428386 0.0 0.0) +(-0.19528144685267376 0.0 0.0) +(-0.1987572285657349 0.0 0.0) +(-0.20152936343490946 0.0 0.0) +(-0.20400677525926217 0.0 0.0) +(-0.2062156850301478 0.0 0.0) +(-0.20807732937370693 0.0 0.0) +(-0.20963383647811049 0.0 0.0) +(-0.21086478491773555 0.0 0.0) +(-0.21183008694680786 0.0 0.0) +(-0.21247585236858055 0.0 0.0) +(-0.2127626856265863 0.0 0.0) +(-0.16755040473634633 0.0 0.0) +(-0.17184748866231914 0.0 0.0) +(-0.17580633761428013 0.0 0.0) +(-0.179049110498967 0.0 0.0) +(-0.18196318555998325 0.0 0.0) +(-0.18453062576562773 0.0 0.0) +(-0.18684659337472936 0.0 0.0) +(-0.18882790911758696 0.0 0.0) +(-0.19041494133002412 0.0 0.0) +(-0.19169052543027337 0.0 0.0) +(-0.19269632658721256 0.0 0.0) +(-0.19335290343923126 0.0 0.0) +(-0.19365646935988975 0.0 0.0) +(-0.14602843975030574 0.0 0.0) +(-0.15014209187259953 0.0 0.0) +(-0.15376606264314155 0.0 0.0) +(-0.15719107330336224 0.0 0.0) +(-0.16032865237965652 0.0 0.0) +(-0.16317109717231515 0.0 0.0) +(-0.16534538088193088 0.0 0.0) +(-0.16724683286776437 0.0 0.0) +(-0.16883392670519815 0.0 0.0) +(-0.17007257216153815 0.0 0.0) +(-0.1710654549549706 0.0 0.0) +(-0.17173517301951724 0.0 0.0) +(-0.17202487962629417 0.0 0.0) +(-0.12361141411297241 0.0 0.0) +(-0.12752958820205332 0.0 0.0) +(-0.13113686531550592 0.0 0.0) +(-0.13406572578585477 0.0 0.0) +(-0.13666392547550021 0.0 0.0) +(-0.13900707906506488 0.0 0.0) +(-0.1410842099286092 0.0 0.0) +(-0.1429292985935708 0.0 0.0) +(-0.14445007076853938 0.0 0.0) +(-0.14565582726184098 0.0 0.0) +(-0.1466017900013043 0.0 0.0) +(-0.14723635987350914 0.0 0.0) +(-0.14751255155852222 0.0 0.0) +(-0.1009369274338484 0.0 0.0) +(-0.1039158424576671 0.0 0.0) +(-0.10661584107286481 0.0 0.0) +(-0.10919766980423531 0.0 0.0) +(-0.11154472921774715 0.0 0.0) +(-0.11358741761203442 0.0 0.0) +(-0.11542640779503516 0.0 0.0) +(-0.1169971896920104 0.0 0.0) +(-0.11833933359514073 0.0 0.0) +(-0.11939083232802115 0.0 0.0) +(-0.12020876815821371 0.0 0.0) +(-0.12076830737692786 0.0 0.0) +(-0.12102186501845345 0.0 0.0) +(-0.0792288427133266 0.0 0.0) +(-0.0814607468032171 0.0 0.0) +(-0.08347911815830687 0.0 0.0) +(-0.08540060987029972 0.0 0.0) +(-0.08721362948507026 0.0 0.0) +(-0.08877448855103276 0.0 0.0) +(-0.09018163229000342 0.0 0.0) +(-0.09144365631983042 0.0 0.0) +(-0.09238436341021723 0.0 0.0) +(-0.09309747169096386 0.0 0.0) +(-0.09367875210641058 0.0 0.0) +(-0.09407740875484681 0.0 0.0) +(-0.09424937464000856 0.0 0.0) +(-0.060353948956209484 0.0 0.0) +(-0.06142362603925511 0.0 0.0) +(-0.06244174185398759 0.0 0.0) +(-0.06336696886320567 0.0 0.0) +(-0.06424355451801671 0.0 0.0) +(-0.06501468755208697 0.0 0.0) +(-0.06569867129794622 0.0 0.0) +(-0.06631072403497451 0.0 0.0) +(-0.06680673016342298 0.0 0.0) +(-0.0672334058130337 0.0 0.0) +(-0.06754415584077761 0.0 0.0) +(-0.06773801982567292 0.0 0.0) +(-0.06784920729550599 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.433001477377876 0.0 0.0) +(-0.4328365454375197 0.0 0.0) +(-0.43246178770569144 0.0 0.0) +(-0.43189874285712765 0.0 0.0) +(-0.43116051333761274 0.0 0.0) +(-0.4302269280329177 0.0 0.0) +(-0.4290703917064927 0.0 0.0) +(-0.42772722431967164 0.0 0.0) +(-0.42618273841876686 0.0 0.0) +(-0.4243839287919247 0.0 0.0) +(-0.42236095260261425 0.0 0.0) +(-0.4201183238065789 0.0 0.0) +(-0.41756443029494683 0.0 0.0) +(-0.42613622594058076 0.0 0.0) +(-0.42596809890859666 0.0 0.0) +(-0.4255826919617306 0.0 0.0) +(-0.42500955887535874 0.0 0.0) +(-0.4242572268862079 0.0 0.0) +(-0.4233038160505708 0.0 0.0) +(-0.42212245116241304 0.0 0.0) +(-0.42075798332954434 0.0 0.0) +(-0.41918790272655954 0.0 0.0) +(-0.4173605768587047 0.0 0.0) +(-0.41530622128332206 0.0 0.0) +(-0.41303179400722273 0.0 0.0) +(-0.41045002908074707 0.0 0.0) +(-0.4191164907062489 0.0 0.0) +(-0.41894443400405934 0.0 0.0) +(-0.4185519874950056 0.0 0.0) +(-0.4179715283815062 0.0 0.0) +(-0.41720910717232407 0.0 0.0) +(-0.4162409590670748 0.0 0.0) +(-0.4150446410059841 0.0 0.0) +(-0.4136659137971564 0.0 0.0) +(-0.4120789908314372 0.0 0.0) +(-0.4102312121163214 0.0 0.0) +(-0.4081561774459734 0.0 0.0) +(-0.4058583334781745 0.0 0.0) +(-0.40324785533144464 0.0 0.0) +(-0.4119802643611989 0.0 0.0) +(-0.41180557280441976 0.0 0.0) +(-0.41140643436172053 0.0 0.0) +(-0.41081702445041723 0.0 0.0) +(-0.410054828117782 0.0 0.0) +(-0.40907003884363236 0.0 0.0) +(-0.407868714529151 0.0 0.0) +(-0.4064771108473399 0.0 0.0) +(-0.40486954600361713 0.0 0.0) +(-0.40300500010486096 0.0 0.0) +(-0.4009161206786937 0.0 0.0) +(-0.3986092337176574 0.0 0.0) +(-0.3959864194974129 0.0 0.0) +(-0.40474320481320886 0.0 0.0) +(-0.4045714597940088 0.0 0.0) +(-0.40417394378885396 0.0 0.0) +(-0.40357434036474615 0.0 0.0) +(-0.40280413361321693 0.0 0.0) +(-0.4018179842562084 0.0 0.0) +(-0.40060862474973535 0.0 0.0) +(-0.39919985560528937 0.0 0.0) +(-0.397587574091409 0.0 0.0) +(-0.39571420045383765 0.0 0.0) +(-0.39361312806989796 0.0 0.0) +(-0.39128936071447384 0.0 0.0) +(-0.38865091447281824 0.0 0.0) +(-0.3974265189158606 0.0 0.0) +(-0.39725150500134637 0.0 0.0) +(-0.3968525906137661 0.0 0.0) +(-0.39625972193892284 0.0 0.0) +(-0.39547820666498756 0.0 0.0) +(-0.39449069487015836 0.0 0.0) +(-0.39326902266318287 0.0 0.0) +(-0.3918632728887247 0.0 0.0) +(-0.3902396217245275 0.0 0.0) +(-0.38835333534823285 0.0 0.0) +(-0.3862409141931936 0.0 0.0) +(-0.3839087166915154 0.0 0.0) +(-0.38126194199583074 0.0 0.0) +(-0.3900435233014452 0.0 0.0) +(-0.38986954154308084 0.0 0.0) +(-0.3894654084650803 0.0 0.0) +(-0.388861712213066 0.0 0.0) +(-0.3880847830121975 0.0 0.0) +(-0.38708909504467437 0.0 0.0) +(-0.3858662661315737 0.0 0.0) +(-0.38444586313607926 0.0 0.0) +(-0.382821711844278 0.0 0.0) +(-0.3809308783166066 0.0 0.0) +(-0.378808743814409 0.0 0.0) +(-0.3764648433152611 0.0 0.0) +(-0.3738036227185534 0.0 0.0) +(-0.3825800338013775 0.0 0.0) +(-0.3824026659730748 0.0 0.0) +(-0.38199778865380574 0.0 0.0) +(-0.38139946393412044 0.0 0.0) +(-0.38061836202955024 0.0 0.0) +(-0.37961377415009717 0.0 0.0) +(-0.37839101909179124 0.0 0.0) +(-0.37696331571763136 0.0 0.0) +(-0.3753259275659859 0.0 0.0) +(-0.373429822786337 0.0 0.0) +(-0.371301017853985 0.0 0.0) +(-0.3689455811674521 0.0 0.0) +(-0.3662699628785419 0.0 0.0) +(-0.37503826642441834 0.0 0.0) +(-0.37486179824339383 0.0 0.0) +(-0.37445887250039084 0.0 0.0) +(-0.37385917647478667 0.0 0.0) +(-0.37306656805382327 0.0 0.0) +(-0.3720644762152306 0.0 0.0) +(-0.37083136529073263 0.0 0.0) +(-0.369401417876479 0.0 0.0) +(-0.36775190243633155 0.0 0.0) +(-0.36584683907782856 0.0 0.0) +(-0.36370829973723634 0.0 0.0) +(-0.3613368407520262 0.0 0.0) +(-0.35864384315642844 0.0 0.0) +(-0.3674101920476675 0.0 0.0) +(-0.3672339802572523 0.0 0.0) +(-0.3668310775741464 0.0 0.0) +(-0.3662271380955526 0.0 0.0) +(-0.36542897885457537 0.0 0.0) +(-0.36442240891975286 0.0 0.0) +(-0.3631830906896531 0.0 0.0) +(-0.3617426517276398 0.0 0.0) +(-0.36008571130486144 0.0 0.0) +(-0.35817596994039286 0.0 0.0) +(-0.356012274124278 0.0 0.0) +(-0.3536202460935328 0.0 0.0) +(-0.35090787406017576 0.0 0.0) +(-0.359680229903011 0.0 0.0) +(-0.3595013469666967 0.0 0.0) +(-0.3590948507432033 0.0 0.0) +(-0.35849070868881805 0.0 0.0) +(-0.3576906366484993 0.0 0.0) +(-0.35667071175138654 0.0 0.0) +(-0.3554312991244055 0.0 0.0) +(-0.3539732672007586 0.0 0.0) +(-0.35231689101315106 0.0 0.0) +(-0.35037537875261643 0.0 0.0) +(-0.34819619185401335 0.0 0.0) +(-0.34579619860945454 0.0 0.0) +(-0.34306261087902773 0.0 0.0) +(-0.35183182832072885 0.0 0.0) +(-0.3516508028660261 0.0 0.0) +(-0.3512358888467424 0.0 0.0) +(-0.3506234509452966 0.0 0.0) +(-0.34982984806943485 0.0 0.0) +(-0.3488000714231416 0.0 0.0) +(-0.3475415342692538 0.0 0.0) +(-0.3460832974634784 0.0 0.0) +(-0.34440302984420107 0.0 0.0) +(-0.3424455558542477 0.0 0.0) +(-0.3402562157929166 0.0 0.0) +(-0.3378248839794164 0.0 0.0) +(-0.3350606306660209 0.0 0.0) +(-0.3438387326648786 0.0 0.0) +(-0.3436586800647836 0.0 0.0) +(-0.3432416191681555 0.0 0.0) +(-0.34261695545917326 0.0 0.0) +(-0.3418061752753405 0.0 0.0) +(-0.3407790276742082 0.0 0.0) +(-0.3395034620046022 0.0 0.0) +(-0.3380322671461807 0.0 0.0) +(-0.3363306185457683 0.0 0.0) +(-0.33436384106582406 0.0 0.0) +(-0.3321341352022914 0.0 0.0) +(-0.3296743491567213 0.0 0.0) +(-0.32688549136637146 0.0 0.0) +(-0.33566266943629386 0.0 0.0) +(-0.33548118227689966 0.0 0.0) +(-0.3350622441000263 0.0 0.0) +(-0.3344383828162893 0.0 0.0) +(-0.3336151476890914 0.0 0.0) +(-0.33256600036487843 0.0 0.0) +(-0.3312912382559529 0.0 0.0) +(-0.32978927264043556 0.0 0.0) +(-0.32807505292792993 0.0 0.0) +(-0.3260672558950912 0.0 0.0) +(-0.32382919702525736 0.0 0.0) +(-0.32131459765255876 0.0 0.0) +(-0.31849256771517637 0.0 0.0) +(-0.32728849889717826 0.0 0.0) +(-0.32710194978144047 0.0 0.0) +(-0.3266777578979061 0.0 0.0) +(-0.3260289199269013 0.0 0.0) +(-0.32519512460667865 0.0 0.0) +(-0.3241476564949977 0.0 0.0) +(-0.3228478415674118 0.0 0.0) +(-0.321316401756393 0.0 0.0) +(-0.3195876555671927 0.0 0.0) +(-0.31753944642848 0.0 0.0) +(-0.3152732381795103 0.0 0.0) +(-0.3127125633537928 0.0 0.0) +(-0.3098317526867665 0.0 0.0) +(-0.3186570237210746 0.0 0.0) +(-0.31846194077139134 0.0 0.0) +(-0.3180204390757452 0.0 0.0) +(-0.3173643198318657 0.0 0.0) +(-0.3165242236623852 0.0 0.0) +(-0.31546420589429136 0.0 0.0) +(-0.31413424990163175 0.0 0.0) +(-0.3125798195510907 0.0 0.0) +(-0.31082143263182316 0.0 0.0) +(-0.3087341969802436 0.0 0.0) +(-0.30640980032133874 0.0 0.0) +(-0.30381844963320376 0.0 0.0) +(-0.3008620107383236 0.0 0.0) +(-0.30969564022532836 0.0 0.0) +(-0.3095042620912091 0.0 0.0) +(-0.3090551575954081 0.0 0.0) +(-0.3083966468992919 0.0 0.0) +(-0.3075400010610658 0.0 0.0) +(-0.306448987412304 0.0 0.0) +(-0.3050900481297022 0.0 0.0) +(-0.30352093089482945 0.0 0.0) +(-0.3017072692701813 0.0 0.0) +(-0.2995746533954181 0.0 0.0) +(-0.29721434342084413 0.0 0.0) +(-0.29453863997868834 0.0 0.0) +(-0.2915459624457105 0.0 0.0) +(-0.30036225132737737 0.0 0.0) +(-0.30016533285013935 0.0 0.0) +(-0.299708461341954 0.0 0.0) +(-0.299033598951158 0.0 0.0) +(-0.2981624390835623 0.0 0.0) +(-0.29706327858242676 0.0 0.0) +(-0.2956566463809802 0.0 0.0) +(-0.29402918919706694 0.0 0.0) +(-0.29218465888229034 0.0 0.0) +(-0.2900202629334142 0.0 0.0) +(-0.28753818082769705 0.0 0.0) +(-0.2848758279926553 0.0 0.0) +(-0.2817079501288725 0.0 0.0) +(-0.2905963317013277 0.0 0.0) +(-0.29039004578964106 0.0 0.0) +(-0.2899181005302053 0.0 0.0) +(-0.2892209886876173 0.0 0.0) +(-0.2882985549994953 0.0 0.0) +(-0.2871414120800074 0.0 0.0) +(-0.28574149456863335 0.0 0.0) +(-0.28409974854578895 0.0 0.0) +(-0.2821568545779319 0.0 0.0) +(-0.27990286170687345 0.0 0.0) +(-0.2774272103937094 0.0 0.0) +(-0.2745855996290918 0.0 0.0) +(-0.27133857489479307 0.0 0.0) +(-0.28019304184662197 0.0 0.0) +(-0.2799849695952645 0.0 0.0) +(-0.2795108613670104 0.0 0.0) +(-0.2788103550711873 0.0 0.0) +(-0.2779065314573693 0.0 0.0) +(-0.27670737050469757 0.0 0.0) +(-0.2752247364261445 0.0 0.0) +(-0.27348690165793516 0.0 0.0) +(-0.27149456451088516 0.0 0.0) +(-0.26918902456054633 0.0 0.0) +(-0.26656496298054283 0.0 0.0) +(-0.2636653041337323 0.0 0.0) +(-0.26024615476995305 0.0 0.0) +(-0.269126745144995 0.0 0.0) +(-0.2689053835140616 0.0 0.0) +(-0.2683992480208965 0.0 0.0) +(-0.2676560826725484 0.0 0.0) +(-0.26670036513544887 0.0 0.0) +(-0.26545922025574636 0.0 0.0) +(-0.263944124846656 0.0 0.0) +(-0.262139217147701 0.0 0.0) +(-0.2600308189002841 0.0 0.0) +(-0.25761799996635476 0.0 0.0) +(-0.25491770021316296 0.0 0.0) +(-0.25190067133280497 0.0 0.0) +(-0.24827758350592202 0.0 0.0) +(-0.25709518931402325 0.0 0.0) +(-0.2568793553297718 0.0 0.0) +(-0.2563793835235274 0.0 0.0) +(-0.2556104744604953 0.0 0.0) +(-0.25458552354780867 0.0 0.0) +(-0.25330622558077776 0.0 0.0) +(-0.2517086854454078 0.0 0.0) +(-0.2497539123067929 0.0 0.0) +(-0.24757000055271372 0.0 0.0) +(-0.24511125542639106 0.0 0.0) +(-0.24227215081738238 0.0 0.0) +(-0.2390127643285052 0.0 0.0) +(-0.2352564644571935 0.0 0.0) +(-0.24401853806653573 0.0 0.0) +(-0.24379941144307105 0.0 0.0) +(-0.243251207516757 0.0 0.0) +(-0.24238643230184354 0.0 0.0) +(-0.2412824180234821 0.0 0.0) +(-0.23989771787737377 0.0 0.0) +(-0.2381955227197604 0.0 0.0) +(-0.23617206885606717 0.0 0.0) +(-0.2339045243671757 0.0 0.0) +(-0.23123719723211655 0.0 0.0) +(-0.22831177086824642 0.0 0.0) +(-0.22483734434881295 0.0 0.0) +(-0.22095992577124102 0.0 0.0) +(-0.2292683590911532 0.0 0.0) +(-0.22902942902793627 0.0 0.0) +(-0.2284780692419318 0.0 0.0) +(-0.22766760194883695 0.0 0.0) +(-0.22647138196502367 0.0 0.0) +(-0.2249731802084657 0.0 0.0) +(-0.22315551871177536 0.0 0.0) +(-0.22110475062668958 0.0 0.0) +(-0.21870514642559666 0.0 0.0) +(-0.21599514620785298 0.0 0.0) +(-0.2127926660841855 0.0 0.0) +(-0.20906414106587456 0.0 0.0) +(-0.20496472110425776 0.0 0.0) +(-0.21276267471639063 0.0 0.0) +(-0.21247581967785412 0.0 0.0) +(-0.211832480605443 0.0 0.0) +(-0.21086470911177677 0.0 0.0) +(-0.2096337394965017 0.0 0.0) +(-0.20807721157645012 0.0 0.0) +(-0.20621554084334798 0.0 0.0) +(-0.204006610340681 0.0 0.0) +(-0.20152917839474338 0.0 0.0) +(-0.19875702408769072 0.0 0.0) +(-0.195281172865072 0.0 0.0) +(-0.19134795874287103 0.0 0.0) +(-0.18710485034670993 0.0 0.0) +(-0.1936564553860374 0.0 0.0) +(-0.19335286156930023 0.0 0.0) +(-0.19269625697638926 0.0 0.0) +(-0.1916904283363597 0.0 0.0) +(-0.19041481711239266 0.0 0.0) +(-0.1888277582352218 0.0 0.0) +(-0.18684640599014196 0.0 0.0) +(-0.18453041143258908 0.0 0.0) +(-0.18196294506918204 0.0 0.0) +(-0.1790488447373796 0.0 0.0) +(-0.17580599450430198 0.0 0.0) +(-0.1718471180762142 0.0 0.0) +(-0.16755000803638384 0.0 0.0) +(-0.1720248621305034 0.0 0.0) +(-0.17173275932081988 0.0 0.0) +(-0.17106536779740122 0.0 0.0) +(-0.17007245059113685 0.0 0.0) +(-0.1688337711709903 0.0 0.0) +(-0.1672466439433512 0.0 0.0) +(-0.16534515926289234 0.0 0.0) +(-0.16315752430186353 0.0 0.0) +(-0.16032832160090535 0.0 0.0) +(-0.15719070775545538 0.0 0.0) +(-0.15376566366896413 0.0 0.0) +(-0.15014166093675443 0.0 0.0) +(-0.14602793886500554 0.0 0.0) +(-0.14751252947158497 0.0 0.0) +(-0.14723629369615313 0.0 0.0) +(-0.14660167997559292 0.0 0.0) +(-0.14565567379395383 0.0 0.0) +(-0.14444987442225884 0.0 0.0) +(-0.14292906009120826 0.0 0.0) +(-0.14108393014770365 0.0 0.0) +(-0.13900675903339144 0.0 0.0) +(-0.1366635663683533 0.0 0.0) +(-0.13406532892215287 0.0 0.0) +(-0.1311363466619558 0.0 0.0) +(-0.12752902798286764 0.0 0.0) +(-0.1236108143816413 0.0 0.0) +(-0.12102183857895386 0.0 0.0) +(-0.12076822815436761 0.0 0.0) +(-0.1202086364442653 0.0 0.0) +(-0.11939064860616862 0.0 0.0) +(-0.11833909853860572 0.0 0.0) +(-0.11699690416460973 0.0 0.0) +(-0.11542607284435114 0.0 0.0) +(-0.11358703446709578 0.0 0.0) +(-0.11154428231731728 0.0 0.0) +(-0.10919717590512418 0.0 0.0) +(-0.10661530198498614 0.0 0.0) +(-0.10391526015277919 0.0 0.0) +(-0.10093630404376651 0.0 0.0) +(-0.09424934716084092 0.0 0.0) +(-0.09407732642021772 0.0 0.0) +(-0.09367861521799925 0.0 0.0) +(-0.09309728074889329 0.0 0.0) +(-0.09238411911609676 0.0 0.0) +(-0.09144332355350351 0.0 0.0) +(-0.0901812419169356 0.0 0.0) +(-0.08877404200210154 0.0 0.0) +(-0.08721312839460654 0.0 0.0) +(-0.08540005607214302 0.0 0.0) +(-0.08347851367809186 0.0 0.0) +(-0.08146009385049688 0.0 0.0) +(-0.07922814367708736 0.0 0.0) +(-0.06784918056745626 0.0 0.0) +(-0.06773793973948616 0.0 0.0) +(-0.06754402269014428 0.0 0.0) +(-0.06723322008410258 0.0 0.0) +(-0.06680649253647145 0.0 0.0) +(-0.06631043537840904 0.0 0.0) +(-0.06569833266756574 0.0 0.0) +(-0.06501430018620943 0.0 0.0) +(-0.06424311983119199 0.0 0.0) +(-0.06336648844459186 0.0 0.0) +(-0.062441217460154755 0.0 0.0) +(-0.06142305958585856 0.0 0.0) +(-0.06035334251213187 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.4175641457290846 0.0 0.0) +(-0.42011832320046993 0.0 0.0) +(-0.4223609516160394 0.0 0.0) +(-0.4243839274586947 0.0 0.0) +(-0.42618273675342744 0.0 0.0) +(-0.4277272223444164 0.0 0.0) +(-0.42907038942437803 0.0 0.0) +(-0.43022692541770025 0.0 0.0) +(-0.431160510481571 0.0 0.0) +(-0.43189880530908886 0.0 0.0) +(-0.4324615072899004 0.0 0.0) +(-0.4328365417614367 0.0 0.0) +(-0.43300147341906625 0.0 0.0) +(-0.4104500288361932 0.0 0.0) +(-0.41303179329028233 0.0 0.0) +(-0.41530622011858986 0.0 0.0) +(-0.4173605752869509 0.0 0.0) +(-0.41918790076509016 0.0 0.0) +(-0.42075798100094497 0.0 0.0) +(-0.42212244848827113 0.0 0.0) +(-0.4233038130352833 0.0 0.0) +(-0.4242568987507497 0.0 0.0) +(-0.42500955515764094 0.0 0.0) +(-0.4255830131223725 0.0 0.0) +(-0.42596809462801777 0.0 0.0) +(-0.4261362213366964 0.0 0.0) +(-0.40324785504233196 0.0 0.0) +(-0.4058579557852242 0.0 0.0) +(-0.40815580067529045 0.0 0.0) +(-0.4102312103176492 0.0 0.0) +(-0.4120789885435575 0.0 0.0) +(-0.4136657193389775 0.0 0.0) +(-0.415044637886271 0.0 0.0) +(-0.4162405833710377 0.0 0.0) +(-0.4172091032520756 0.0 0.0) +(-0.41797152417797545 0.0 0.0) +(-0.4185519828800264 0.0 0.0) +(-0.41894442899396483 0.0 0.0) +(-0.41911648535964474 0.0 0.0) +(-0.39598641915557703 0.0 0.0) +(-0.3986092327513715 0.0 0.0) +(-0.40091611912903513 0.0 0.0) +(-0.40300542508389126 0.0 0.0) +(-0.4048695433949708 0.0 0.0) +(-0.40647710777065255 0.0 0.0) +(-0.40786871089368415 0.0 0.0) +(-0.40907018963216385 0.0 0.0) +(-0.4100548235697721 0.0 0.0) +(-0.41081701957015854 0.0 0.0) +(-0.41140642900883506 0.0 0.0) +(-0.41180556699973475 0.0 0.0) +(-0.4119802581932655 0.0 0.0) +(-0.38865091408339036 0.0 0.0) +(-0.3912893595825715 0.0 0.0) +(-0.3936131262461652 0.0 0.0) +(-0.3957141979895622 0.0 0.0) +(-0.39758757103606546 0.0 0.0) +(-0.39919985200876257 0.0 0.0) +(-0.4006088296638048 0.0 0.0) +(-0.40181797955475007 0.0 0.0) +(-0.4028041285057522 0.0 0.0) +(-0.40357433469326315 0.0 0.0) +(-0.4041739375740722 0.0 0.0) +(-0.40457145330172717 0.0 0.0) +(-0.4047431823592196 0.0 0.0) +(-0.3812619415458314 0.0 0.0) +(-0.3839082461172874 0.0 0.0) +(-0.3862409121218031 0.0 0.0) +(-0.38835333255507454 0.0 0.0) +(-0.39023961826123515 0.0 0.0) +(-0.3918632687598611 0.0 0.0) +(-0.39326901787878765 0.0 0.0) +(-0.3944906895424163 0.0 0.0) +(-0.39547820070537515 0.0 0.0) +(-0.39625971547794503 0.0 0.0) +(-0.396852583642973 0.0 0.0) +(-0.397251497448904 0.0 0.0) +(-0.39742651080996283 0.0 0.0) +(-0.37380362219441826 0.0 0.0) +(-0.37646484182342155 0.0 0.0) +(-0.3788080996547142 0.0 0.0) +(-0.38093087510537343 0.0 0.0) +(-0.3828217077635252 0.0 0.0) +(-0.3844458583548662 0.0 0.0) +(-0.3858662606996659 0.0 0.0) +(-0.38708908883270954 0.0 0.0) +(-0.3880847762347075 0.0 0.0) +(-0.38886170476045995 0.0 0.0) +(-0.38946540030523674 0.0 0.0) +(-0.38986953295785887 0.0 0.0) +(-0.3900435343292932 0.0 0.0) +(-0.3662699622680445 0.0 0.0) +(-0.3689449685967723 0.0 0.0) +(-0.37130101510794783 0.0 0.0) +(-0.3734293252618514 0.0 0.0) +(-0.3753259229085267 0.0 0.0) +(-0.3769633102778058 0.0 0.0) +(-0.3783910127430318 0.0 0.0) +(-0.37961376710264566 0.0 0.0) +(-0.38061835420192924 0.0 0.0) +(-0.38139945549200216 0.0 0.0) +(-0.38199777942757895 0.0 0.0) +(-0.3824025857419576 0.0 0.0) +(-0.3825800230886982 0.0 0.0) +(-0.3586438424681255 0.0 0.0) +(-0.36133683879159345 0.0 0.0) +(-0.36370829649443837 0.0 0.0) +(-0.365846834712051 0.0 0.0) +(-0.3677518970869569 0.0 0.0) +(-0.3694014116477863 0.0 0.0) +(-0.37083135795970895 0.0 0.0) +(-0.37206416932147746 0.0 0.0) +(-0.37306655900202845 0.0 0.0) +(-0.3738593559558888 0.0 0.0) +(-0.3744588620048472 0.0 0.0) +(-0.37486178688605953 0.0 0.0) +(-0.3750382542461912 0.0 0.0) +(-0.3509078732579518 0.0 0.0) +(-0.35362121052383416 0.0 0.0) +(-0.3560122704972091 0.0 0.0) +(-0.35817596486359304 0.0 0.0) +(-0.3600857051082881 0.0 0.0) +(-0.3617431241823404 0.0 0.0) +(-0.3631826621921381 0.0 0.0) +(-0.3644220579730485 0.0 0.0) +(-0.3654289684566394 0.0 0.0) +(-0.36622712668517055 0.0 0.0) +(-0.36683106550160804 0.0 0.0) +(-0.3672339672554365 0.0 0.0) +(-0.367410178109169 0.0 0.0) +(-0.3430626099412073 0.0 0.0) +(-0.3457961959366295 0.0 0.0) +(-0.34819618758441034 0.0 0.0) +(-0.3503760996150782 0.0 0.0) +(-0.35231688382209125 0.0 0.0) +(-0.3539732588208569 0.0 0.0) +(-0.355431289534194 0.0 0.0) +(-0.35667070102447124 0.0 0.0) +(-0.3576906245865703 0.0 0.0) +(-0.3584906958947065 0.0 0.0) +(-0.3590948368575519 0.0 0.0) +(-0.3595014365300773 0.0 0.0) +(-0.3596790756872652 0.0 0.0) +(-0.3350606295814099 0.0 0.0) +(-0.3378248808546112 0.0 0.0) +(-0.3402562107843518 0.0 0.0) +(-0.3424455491622722 0.0 0.0) +(-0.34440302171729575 0.0 0.0) +(-0.3460832877006733 0.0 0.0) +(-0.3475415232764935 0.0 0.0) +(-0.3488000588688587 0.0 0.0) +(-0.3498298342628537 0.0 0.0) +(-0.3506234361045237 0.0 0.0) +(-0.3512358726223978 0.0 0.0) +(-0.3516507853221622 0.0 0.0) +(-0.35183180951941273 0.0 0.0) +(-0.3268854901034866 0.0 0.0) +(-0.3296743455089253 0.0 0.0) +(-0.3321356284680994 0.0 0.0) +(-0.33436383321890645 0.0 0.0) +(-0.33633060897100864 0.0 0.0) +(-0.3380322559850706 0.0 0.0) +(-0.33950344902572693 0.0 0.0) +(-0.34077901329602 0.0 0.0) +(-0.34180615937564507 0.0 0.0) +(-0.3426166050429792 0.0 0.0) +(-0.34324183570205946 0.0 0.0) +(-0.34365866012810686 0.0 0.0) +(-0.3438387113021602 0.0 0.0) +(-0.31849256619311433 0.0 0.0) +(-0.3213145934212669 0.0 0.0) +(-0.32382919047671116 0.0 0.0) +(-0.32606724674217547 0.0 0.0) +(-0.3280750419903255 0.0 0.0) +(-0.32978925936160763 0.0 0.0) +(-0.3312912233227262 0.0 0.0) +(-0.33256598361394885 0.0 0.0) +(-0.33361512914583397 0.0 0.0) +(-0.3344383628965577 0.0 0.0) +(-0.3350624931477731 0.0 0.0) +(-0.33548115912856463 0.0 0.0) +(-0.33566264463509565 0.0 0.0) +(-0.30983175094861853 0.0 0.0) +(-0.3127146295308511 0.0 0.0) +(-0.31527471454847866 0.0 0.0) +(-0.3175394357686352 0.0 0.0) +(-0.3195876426308943 0.0 0.0) +(-0.32131638637427035 0.0 0.0) +(-0.3228478236719955 0.0 0.0) +(-0.32414763727053275 0.0 0.0) +(-0.3251951030027375 0.0 0.0) +(-0.3260288960290713 0.0 0.0) +(-0.32667773263263694 0.0 0.0) +(-0.3271019224686105 0.0 0.0) +(-0.3272884696371106 0.0 0.0) +(-0.30085956423138227 0.0 0.0) +(-0.3038184438594875 0.0 0.0) +(-0.306409790892316 0.0 0.0) +(-0.3087341845233436 0.0 0.0) +(-0.3108200201516653 0.0 0.0) +(-0.31257980149927667 0.0 0.0) +(-0.3141342291293695 0.0 0.0) +(-0.31546418342231447 0.0 0.0) +(-0.3165241985336737 0.0 0.0) +(-0.31736429203505706 0.0 0.0) +(-0.31802003191928646 0.0 0.0) +(-0.31846168127263774 0.0 0.0) +(-0.31865450248921356 0.0 0.0) +(-0.2915431815068929 0.0 0.0) +(-0.29453863292184307 0.0 0.0) +(-0.29721433271579606 0.0 0.0) +(-0.2995746385965102 0.0 0.0) +(-0.30170725078206684 0.0 0.0) +(-0.3035209093755691 0.0 0.0) +(-0.3050900235354419 0.0 0.0) +(-0.3064489597953454 0.0 0.0) +(-0.30753997130205163 0.0 0.0) +(-0.3083966144522896 0.0 0.0) +(-0.30905512215473996 0.0 0.0) +(-0.309504223785863 0.0 0.0) +(-0.3096956001675688 0.0 0.0) +(-0.28170794714970515 0.0 0.0) +(-0.2848758200901041 0.0 0.0) +(-0.28753816766938145 0.0 0.0) +(-0.2900225023646407 0.0 0.0) +(-0.29218463784884735 0.0 0.0) +(-0.2940291636216237 0.0 0.0) +(-0.2956551882213715 0.0 0.0) +(-0.2970632472573965 0.0 0.0) +(-0.2981624039064348 0.0 0.0) +(-0.2990335604411815 0.0 0.0) +(-0.29970841928273245 0.0 0.0) +(-0.30016528739495324 0.0 0.0) +(-0.3003622038430539 0.0 0.0) +(-0.27133857133695893 0.0 0.0) +(-0.27458558937117733 0.0 0.0) +(-0.27743032646117854 0.0 0.0) +(-0.2799028407260433 0.0 0.0) +(-0.2821568279522129 0.0 0.0) +(-0.28409971733136147 0.0 0.0) +(-0.2857414609705042 0.0 0.0) +(-0.287141373607604 0.0 0.0) +(-0.28829851180045213 0.0 0.0) +(-0.2892209422777592 0.0 0.0) +(-0.2899180498471517 0.0 0.0) +(-0.2903899910181616 0.0 0.0) +(-0.2905962730417711 0.0 0.0) +(-0.26024615044041877 0.0 0.0) +(-0.2636652923178184 0.0 0.0) +(-0.26656855078699165 0.0 0.0) +(-0.2691889983614643 0.0 0.0) +(-0.27149453273718044 0.0 0.0) +(-0.27348686453415016 0.0 0.0) +(-0.2752246948636621 0.0 0.0) +(-0.27670732293286376 0.0 0.0) +(-0.2779064821590055 0.0 0.0) +(-0.2788113266184991 0.0 0.0) +(-0.27951080184111776 0.0 0.0) +(-0.27998490527137404 0.0 0.0) +(-0.28019297357553385 0.0 0.0) +(-0.2482775781936534 0.0 0.0) +(-0.25190065540293766 0.0 0.0) +(-0.2549176764986511 0.0 0.0) +(-0.25761796916852 0.0 0.0) +(-0.2600307802589757 0.0 0.0) +(-0.2621391701810779 0.0 0.0) +(-0.2639440746837704 0.0 0.0) +(-0.2654591628450968 0.0 0.0) +(-0.2666986668030702 0.0 0.0) +(-0.26765729418460116 0.0 0.0) +(-0.2683991737415477 0.0 0.0) +(-0.26890530325178735 0.0 0.0) +(-0.2691266591933223 0.0 0.0) +(-0.23525645788868152 0.0 0.0) +(-0.2390127459226871 0.0 0.0) +(-0.24227212019765668 0.0 0.0) +(-0.24511121841448713 0.0 0.0) +(-0.24756995317449615 0.0 0.0) +(-0.24975385471872324 0.0 0.0) +(-0.25170861785649845 0.0 0.0) +(-0.25330615637330134 0.0 0.0) +(-0.25458544585611403 0.0 0.0) +(-0.25561038856543145 0.0 0.0) +(-0.2563792962594473 0.0 0.0) +(-0.2568792610410763 0.0 0.0) +(-0.25709508834570416 0.0 0.0) +(-0.22096919675114168 0.0 0.0) +(-0.22483732036316495 0.0 0.0) +(-0.2283117361069077 0.0 0.0) +(-0.23123714872247395 0.0 0.0) +(-0.23390446580604413 0.0 0.0) +(-0.23617664236581046 0.0 0.0) +(-0.23819543920127592 0.0 0.0) +(-0.2398976285593209 0.0 0.0) +(-0.2412796536587528 0.0 0.0) +(-0.24238632145953676 0.0 0.0) +(-0.24325108649677762 0.0 0.0) +(-0.2437992981948543 0.0 0.0) +(-0.24401841679950237 0.0 0.0) +(-0.2049647105780865 0.0 0.0) +(-0.20906411082598628 0.0 0.0) +(-0.2127926157866341 0.0 0.0) +(-0.21599508772846004 0.0 0.0) +(-0.21870507157817928 0.0 0.0) +(-0.22110465967511417 0.0 0.0) +(-0.22315541704355857 0.0 0.0) +(-0.22497306387348887 0.0 0.0) +(-0.22647125138341107 0.0 0.0) +(-0.22766745759313106 0.0 0.0) +(-0.22847793193060062 0.0 0.0) +(-0.22902928067449305 0.0 0.0) +(-0.22926820023809086 0.0 0.0) +(-0.18708879264710418 0.0 0.0) +(-0.19136124872238758 0.0 0.0) +(-0.19528110839412102 0.0 0.0) +(-0.19875695081877992 0.0 0.0) +(-0.2015290846242345 0.0 0.0) +(-0.20400649640103016 0.0 0.0) +(-0.20621540714202552 0.0 0.0) +(-0.2080924198898229 0.0 0.0) +(-0.2096335749465823 0.0 0.0) +(-0.21086452721260268 0.0 0.0) +(-0.21182983401128125 0.0 0.0) +(-0.2124756051290505 0.0 0.0) +(-0.21276244498838912 0.0 0.0) +(-0.1675499918310046 0.0 0.0) +(-0.17184706950524437 0.0 0.0) +(-0.17580591372698176 0.0 0.0) +(-0.1790367790010773 0.0 0.0) +(-0.18196282314157683 0.0 0.0) +(-0.1845302632873324 0.0 0.0) +(-0.18684623215934193 0.0 0.0) +(-0.18882757038035808 0.0 0.0) +(-0.19041460626992357 0.0 0.0) +(-0.19169019527259304 0.0 0.0) +(-0.1926960025398351 0.0 0.0) +(-0.1933525866879472 0.0 0.0) +(-0.19365616106379802 0.0 0.0) +(-0.14602791839361118 0.0 0.0) +(-0.1501416044276791 0.0 0.0) +(-0.15376556969742086 0.0 0.0) +(-0.15719057665059402 0.0 0.0) +(-0.16032815382904594 0.0 0.0) +(-0.16314334819314422 0.0 0.0) +(-0.1653449535981898 0.0 0.0) +(-0.16724640864028073 0.0 0.0) +(-0.16883350708392347 0.0 0.0) +(-0.170072158680332 0.0 0.0) +(-0.1710650491258299 0.0 0.0) +(-0.17173477632655093 0.0 0.0) +(-0.1720244935200888 0.0 0.0) +(-0.12361078985879984 0.0 0.0) +(-0.1275289544909432 0.0 0.0) +(-0.1311362244525522 0.0 0.0) +(-0.1340651865321276 0.0 0.0) +(-0.13666338416302912 0.0 0.0) +(-0.13900653766790838 0.0 0.0) +(-0.1410836704224081 0.0 0.0) +(-0.14292876294803158 0.0 0.0) +(-0.144449540940265 0.0 0.0) +(-0.14565530518677047 0.0 0.0) +(-0.14660127758722383 0.0 0.0) +(-0.14723585899363345 0.0 0.0) +(-0.1475130588505414 0.0 0.0) +(-0.1009362785437338 0.0 0.0) +(-0.10391518373508249 0.0 0.0) +(-0.10661517491603784 0.0 0.0) +(-0.10919699864048221 0.0 0.0) +(-0.1115440554936945 0.0 0.0) +(-0.11358676936574197 0.0 0.0) +(-0.11542576181517467 0.0 0.0) +(-0.11699654833671931 0.0 0.0) +(-0.11833869920635931 0.0 0.0) +(-0.11938193197783918 0.0 0.0) +(-0.12020815462043744 0.0 0.0) +(-0.12076770764774065 0.0 0.0) +(-0.12102128128906336 0.0 0.0) +(-0.07926156184002345 0.0 0.0) +(-0.0814600081341971 0.0 0.0) +(-0.0834783711526141 0.0 0.0) +(-0.08539985725111095 0.0 0.0) +(-0.08721287399690002 0.0 0.0) +(-0.08877373294984729 0.0 0.0) +(-0.09019846249382486 0.0 0.0) +(-0.09144290875521965 0.0 0.0) +(-0.09238370399369789 0.0 0.0) +(-0.09309682192454082 0.0 0.0) +(-0.09367811436323892 0.0 0.0) +(-0.09407678536353699 0.0 0.0) +(-0.09425000555357428 0.0 0.0) +(-0.06035331768834689 0.0 0.0) +(-0.061422985202559836 0.0 0.0) +(-0.06244109378484261 0.0 0.0) +(-0.06336631592496278 0.0 0.0) +(-0.06424289909229379 0.0 0.0) +(-0.06499658424740927 0.0 0.0) +(-0.06569801807171152 0.0 0.0) +(-0.06631007548839898 0.0 0.0) +(-0.06680608866364568 0.0 0.0) +(-0.06723277370160088 0.0 0.0) +(-0.06754353542535582 0.0 0.0) +(-0.06773741337093253 0.0 0.0) +(-0.06784861701559766 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.4330014733551707 0.0 0.0) +(-0.4328365415701398 0.0 0.0) +(-0.43246150697266217 0.0 0.0) +(-0.4318987392120187 0.0 0.0) +(-0.4311605098984681 0.0 0.0) +(-0.4302269246862519 0.0 0.0) +(-0.42907038856366875 0.0 0.0) +(-0.4277272213395599 0.0 0.0) +(-0.4261827355922959 0.0 0.0) +(-0.42438392613746984 0.0 0.0) +(-0.42236095011917085 0.0 0.0) +(-0.42011832153688555 0.0 0.0) +(-0.41756414384670065 0.0 0.0) +(-0.42613622126341877 0.0 0.0) +(-0.42596809440855454 0.0 0.0) +(-0.42558301275492677 0.0 0.0) +(-0.42500955463230644 0.0 0.0) +(-0.4242568980810525 0.0 0.0) +(-0.4233038122072073 0.0 0.0) +(-0.42212244749876293 0.0 0.0) +(-0.42075797983967755 0.0 0.0) +(-0.41918789942559853 0.0 0.0) +(-0.4173605737625744 0.0 0.0) +(-0.41530597068417796 0.0 0.0) +(-0.4130317913682823 0.0 0.0) +(-0.41045002671626646 0.0 0.0) +(-0.4191164852754766 0.0 0.0) +(-0.4189444287400839 0.0 0.0) +(-0.4185519824586414 0.0 0.0) +(-0.41797160763882224 0.0 0.0) +(-0.41720921369571595 0.0 0.0) +(-0.4162405824323733 0.0 0.0) +(-0.4150446367490479 0.0 0.0) +(-0.4136657180014349 0.0 0.0) +(-0.4120789870065036 0.0 0.0) +(-0.4102312086026003 0.0 0.0) +(-0.4081557987033042 0.0 0.0) +(-0.40585795356059323 0.0 0.0) +(-0.4032478525854286 0.0 0.0) +(-0.41198025809701805 0.0 0.0) +(-0.41180556670832735 0.0 0.0) +(-0.4114064285248764 0.0 0.0) +(-0.4108170188964937 0.0 0.0) +(-0.41005482267943977 0.0 0.0) +(-0.40907003372797135 0.0 0.0) +(-0.40786889729279907 0.0 0.0) +(-0.40647710627893113 0.0 0.0) +(-0.40486954166523126 0.0 0.0) +(-0.40300542310871434 0.0 0.0) +(-0.40091611690216644 0.0 0.0) +(-0.3986092302465051 0.0 0.0) +(-0.395986416296727 0.0 0.0) +(-0.40474319773403533 0.0 0.0) +(-0.40457145297826264 0.0 0.0) +(-0.40417393701666376 0.0 0.0) +(-0.40357433391693986 0.0 0.0) +(-0.40280412751473754 0.0 0.0) +(-0.40181815700664647 0.0 0.0) +(-0.40060882820580956 0.0 0.0) +(-0.3991998502826651 0.0 0.0) +(-0.39758756903161124 0.0 0.0) +(-0.3957141956973095 0.0 0.0) +(-0.3936131236556716 0.0 0.0) +(-0.3912893566841064 0.0 0.0) +(-0.3886509108687845 0.0 0.0) +(-0.3974265106851051 0.0 0.0) +(-0.3972514970749537 0.0 0.0) +(-0.39685258302186605 0.0 0.0) +(-0.39625971459967335 0.0 0.0) +(-0.3954781995574106 0.0 0.0) +(-0.39449068814052113 0.0 0.0) +(-0.3932690161858139 0.0 0.0) +(-0.39186326679481986 0.0 0.0) +(-0.3902396160090132 0.0 0.0) +(-0.3883533299806011 0.0 0.0) +(-0.386240909207586 0.0 0.0) +(-0.38390768503942674 0.0 0.0) +(-0.38126193787113105 0.0 0.0) +(-0.39004351394928827 0.0 0.0) +(-0.3898695325349628 0.0 0.0) +(-0.38946539958214865 0.0 0.0) +(-0.3888617037531974 0.0 0.0) +(-0.3880847749370924 0.0 0.0) +(-0.38708908720851554 0.0 0.0) +(-0.3858662587903089 0.0 0.0) +(-0.3844458560951619 0.0 0.0) +(-0.3828217051290757 0.0 0.0) +(-0.3809308721680362 0.0 0.0) +(-0.3788080963201441 0.0 0.0) +(-0.376464838073407 0.0 0.0) +(-0.3738036179526548 0.0 0.0) +(-0.38258002292516063 0.0 0.0) +(-0.38240265549231556 0.0 0.0) +(-0.38199777861372025 0.0 0.0) +(-0.3813994543564931 0.0 0.0) +(-0.3806183527108431 0.0 0.0) +(-0.3796137652698048 0.0 0.0) +(-0.3783910105238177 0.0 0.0) +(-0.3769633077218208 0.0 0.0) +(-0.3753259199201487 0.0 0.0) +(-0.3734298155523747 0.0 0.0) +(-0.37130101130078114 0.0 0.0) +(-0.3689455751987518 0.0 0.0) +(-0.3662699573647129 0.0 0.0) +(-0.37503825406092517 0.0 0.0) +(-0.3748617863310781 0.0 0.0) +(-0.37445886108258836 0.0 0.0) +(-0.37385916529394386 0.0 0.0) +(-0.37306655728511223 0.0 0.0) +(-0.3720644660784538 0.0 0.0) +(-0.37083135540916445 0.0 0.0) +(-0.36940140873552885 0.0 0.0) +(-0.36775189367233674 0.0 0.0) +(-0.3658468307655236 0.0 0.0) +(-0.3637082920239359 0.0 0.0) +(-0.3613368339276428 0.0 0.0) +(-0.35864383697532276 0.0 0.0) +(-0.36741017789773145 0.0 0.0) +(-0.367233966622065 0.0 0.0) +(-0.36683106444424207 0.0 0.0) +(-0.3662271251618954 0.0 0.0) +(-0.3654289664915325 0.0 0.0) +(-0.3644220555893032 0.0 0.0) +(-0.36318307930334803 0.0 0.0) +(-0.3617426411952596 0.0 0.0) +(-0.360085701170221 0.0 0.0) +(-0.35817596029535514 0.0 0.0) +(-0.35601226552098236 0.0 0.0) +(-0.3536203950330161 0.0 0.0) +(-0.350907866890567 0.0 0.0) +(-0.3596790754437424 0.0 0.0) +(-0.3595013312214757 0.0 0.0) +(-0.35909483564477607 0.0 0.0) +(-0.3584909383100558 0.0 0.0) +(-0.35769062231402843 0.0 0.0) +(-0.35667069826677733 0.0 0.0) +(-0.35543128622229436 0.0 0.0) +(-0.3539732549330927 0.0 0.0) +(-0.35231687926910893 0.0 0.0) +(-0.35037536802982905 0.0 0.0) +(-0.3481961817506854 0.0 0.0) +(-0.34579618936748857 0.0 0.0) +(-0.3430626025323117 0.0 0.0) +(-0.351831809235541 0.0 0.0) +(-0.3516507844717175 0.0 0.0) +(-0.35123587120876776 0.0 0.0) +(-0.350623434134099 0.0 0.0) +(-0.3498298316685122 0.0 0.0) +(-0.34880005565035616 0.0 0.0) +(-0.34754151949130074 0.0 0.0) +(-0.34608328318518916 0.0 0.0) +(-0.3444022813641537 0.0 0.0) +(-0.34244554318439074 0.0 0.0) +(-0.3402562039650415 0.0 0.0) +(-0.33782487320327803 0.0 0.0) +(-0.33506062104721307 0.0 0.0) +(-0.3438387109802095 0.0 0.0) +(-0.34365865916355537 0.0 0.0) +(-0.3432415986383313 0.0 0.0) +(-0.34261660272073635 0.0 0.0) +(-0.3418061563948139 0.0 0.0) +(-0.34077900961876256 0.0 0.0) +(-0.33950344456786025 0.0 0.0) +(-0.3380322508364512 0.0 0.0) +(-0.3363306029449813 0.0 0.0) +(-0.3343638262296304 0.0 0.0) +(-0.3321356207353485 0.0 0.0) +(-0.329674336605775 0.0 0.0) +(-0.32688548020075703 0.0 0.0) +(-0.33566264426190423 0.0 0.0) +(-0.3354811580104985 0.0 0.0) +(-0.33506249125858645 0.0 0.0) +(-0.33443836026246576 0.0 0.0) +(-0.33361512567621854 0.0 0.0) +(-0.33256597933873117 0.0 0.0) +(-0.33129121820471846 0.0 0.0) +(-0.3297892532500101 0.0 0.0) +(-0.3280750351230598 0.0 0.0) +(-0.3260672386100427 0.0 0.0) +(-0.32382918161102325 0.0 0.0) +(-0.32131458312261124 0.0 0.0) +(-0.31849255429349355 0.0 0.0) +(-0.3272884691974309 0.0 0.0) +(-0.32710192115132675 0.0 0.0) +(-0.32667773044303505 0.0 0.0) +(-0.3260293451438047 0.0 0.0) +(-0.32519509896734333 0.0 0.0) +(-0.3241476323727668 0.0 0.0) +(-0.3228486950908681 0.0 0.0) +(-0.3213163793085454 0.0 0.0) +(-0.31958763452551747 0.0 0.0) +(-0.3175394263181147 0.0 0.0) +(-0.31527322016267195 0.0 0.0) +(-0.3127146174597024 0.0 0.0) +(-0.30983173739477654 0.0 0.0) +(-0.31865450196144884 0.0 0.0) +(-0.31846167969135686 0.0 0.0) +(-0.3180204060774692 0.0 0.0) +(-0.31736428837041153 0.0 0.0) +(-0.31652419384682856 0.0 0.0) +(-0.31546417770607293 0.0 0.0) +(-0.3141352389941281 0.0 0.0) +(-0.3125797932213723 0.0 0.0) +(-0.3108214073062774 0.0 0.0) +(-0.3087341735002736 0.0 0.0) +(-0.30640977818084 0.0 0.0) +(-0.3038184298695778 0.0 0.0) +(-0.30085954816626875 0.0 0.0) +(-0.30969559956696585 0.0 0.0) +(-0.30950422194275934 0.0 0.0) +(-0.30905511909092237 0.0 0.0) +(-0.30839661017977305 0.0 0.0) +(-0.30753996575865594 0.0 0.0) +(-0.30644895277987066 0.0 0.0) +(-0.3050900151476523 0.0 0.0) +(-0.3035208995222827 0.0 0.0) +(-0.30170889422299485 0.0 0.0) +(-0.2995746255224646 0.0 0.0) +(-0.29721431830881345 0.0 0.0) +(-0.2945386158540814 0.0 0.0) +(-0.29154316324782265 0.0 0.0) +(-0.3003622031317312 0.0 0.0) +(-0.3001652852099001 0.0 0.0) +(-0.2997084156504353 0.0 0.0) +(-0.2990335553756817 0.0 0.0) +(-0.29816239736113126 0.0 0.0) +(-0.29706323930929135 0.0 0.0) +(-0.29565517825334137 0.0 0.0) +(-0.29402915192618473 0.0 0.0) +(-0.2921846247319879 0.0 0.0) +(-0.29002022933703625 0.0 0.0) +(-0.2875381499871984 0.0 0.0) +(-0.2848758010070208 0.0 0.0) +(-0.28170792405559786 0.0 0.0) +(-0.2905962721637589 0.0 0.0) +(-0.290389988387447 0.0 0.0) +(-0.2899180454739478 0.0 0.0) +(-0.2892209361788207 0.0 0.0) +(-0.2882985037703654 0.0 0.0) +(-0.28714136385595673 0.0 0.0) +(-0.2857414495384222 0.0 0.0) +(-0.28409970307341487 0.0 0.0) +(-0.2821568113676038 0.0 0.0) +(-0.27990282223992713 0.0 0.0) +(-0.27742717226035535 0.0 0.0) +(-0.2745855646344578 0.0 0.0) +(-0.271338543797978 0.0 0.0) +(-0.2801929725543714 0.0 0.0) +(-0.2799849021841054 0.0 0.0) +(-0.2795107967087962 0.0 0.0) +(-0.27881029340246716 0.0 0.0) +(-0.27790647300293 0.0 0.0) +(-0.2767073108855658 0.0 0.0) +(-0.2752246807348071 0.0 0.0) +(-0.27348684759357156 0.0 0.0) +(-0.2714945129663588 0.0 0.0) +(-0.26918897530242186 0.0 0.0) +(-0.266568525627477 0.0 0.0) +(-0.26366526385855005 0.0 0.0) +(-0.26024611697072725 0.0 0.0) +(-0.26912665790846807 0.0 0.0) +(-0.26890529940203134 0.0 0.0) +(-0.26839916734152536 0.0 0.0) +(-0.2676560057209445 0.0 0.0) +(-0.2666986553846263 0.0 0.0) +(-0.26545914831751216 0.0 0.0) +(-0.26394405764531964 0.0 0.0) +(-0.2621391487673655 0.0 0.0) +(-0.26003075623658145 0.0 0.0) +(-0.25761794208762345 0.0 0.0) +(-0.25491764474024237 0.0 0.0) +(-0.2519006170748486 0.0 0.0) +(-0.24827753717430345 0.0 0.0) +(-0.2570950868371181 0.0 0.0) +(-0.2568792565210897 0.0 0.0) +(-0.25637928874500504 0.0 0.0) +(-0.2556103773014744 0.0 0.0) +(-0.2545854314467299 0.0 0.0) +(-0.2533061388725957 0.0 0.0) +(-0.2517085949154613 0.0 0.0) +(-0.2497538284819686 0.0 0.0) +(-0.24756992374375641 0.0 0.0) +(-0.2451111858963646 0.0 0.0) +(-0.24227207922696672 0.0 0.0) +(-0.239012701678675 0.0 0.0) +(-0.23525640721912625 0.0 0.0) +(-0.24401841498845106 0.0 0.0) +(-0.24379929276855614 0.0 0.0) +(-0.24325107608087793 0.0 0.0) +(-0.24238630693202318 0.0 0.0) +(-0.24127963507384742 0.0 0.0) +(-0.2398976059867131 0.0 0.0) +(-0.23819541087108545 0.0 0.0) +(-0.23617660996451506 0.0 0.0) +(-0.23390442945413834 0.0 0.0) +(-0.2312371061338251 0.0 0.0) +(-0.22831168963065107 0.0 0.0) +(-0.22483726275330607 0.0 0.0) +(-0.22095985263945128 0.0 0.0) +(-0.22926819786665942 0.0 0.0) +(-0.22902927356925154 0.0 0.0) +(-0.2284779201179037 0.0 0.0) +(-0.22766743868215983 0.0 0.0) +(-0.22647122719021248 0.0 0.0) +(-0.22497303448844097 0.0 0.0) +(-0.22315538257586312 0.0 0.0) +(-0.2211046182894103 0.0 0.0) +(-0.21869836897529998 0.0 0.0) +(-0.21599503641912327 0.0 0.0) +(-0.21279254858261443 0.0 0.0) +(-0.20906403824578407 0.0 0.0) +(-0.20496462950950345 0.0 0.0) +(-0.21276244156025106 0.0 0.0) +(-0.21247559485715808 0.0 0.0) +(-0.21182981693381314 0.0 0.0) +(-0.21086450339328966 0.0 0.0) +(-0.20963354447357935 0.0 0.0) +(-0.20809238287617432 0.0 0.0) +(-0.20621536183647546 0.0 0.0) +(-0.2040064445812597 0.0 0.0) +(-0.2015290264819755 0.0 0.0) +(-0.19876609666579892 0.0 0.0) +(-0.19528102230330838 0.0 0.0) +(-0.19136115574086734 0.0 0.0) +(-0.18708868727082217 0.0 0.0) +(-0.1936561566730161 0.0 0.0) +(-0.19335257353181848 0.0 0.0) +(-0.19269598066712132 0.0 0.0) +(-0.19169016476430156 0.0 0.0) +(-0.19041456723897118 0.0 0.0) +(-0.1888275229709655 0.0 0.0) +(-0.18684617328043748 0.0 0.0) +(-0.18453019594083614 0.0 0.0) +(-0.18196274757593592 0.0 0.0) +(-0.1790366954947783 0.0 0.0) +(-0.1758058059169269 0.0 0.0) +(-0.17184695306181352 0.0 0.0) +(-0.167549867182217 0.0 0.0) +(-0.17202448802266343 0.0 0.0) +(-0.17173475985442999 0.0 0.0) +(-0.17106502173967716 0.0 0.0) +(-0.17007212048117798 0.0 0.0) +(-0.16883345821285878 0.0 0.0) +(-0.16724634927753415 0.0 0.0) +(-0.1653448839623283 0.0 0.0) +(-0.16314325556533418 0.0 0.0) +(-0.16032804989364646 0.0 0.0) +(-0.15719046179022664 0.0 0.0) +(-0.1537654443340441 0.0 0.0) +(-0.1501414690214879 0.0 0.0) +(-0.14602776100831966 0.0 0.0) +(-0.14751305191097375 0.0 0.0) +(-0.1472358381997656 0.0 0.0) +(-0.14660124301557606 0.0 0.0) +(-0.1456552569649747 0.0 0.0) +(-0.14444947924546236 0.0 0.0) +(-0.1429286880071887 0.0 0.0) +(-0.14108358251125527 0.0 0.0) +(-0.13900643710939234 0.0 0.0) +(-0.13667944622145553 0.0 0.0) +(-0.1340650618318914 0.0 0.0) +(-0.13113606148422396 0.0 0.0) +(-0.12752877846207986 0.0 0.0) +(-0.12361060141467828 0.0 0.0) +(-0.12102127298139354 0.0 0.0) +(-0.12076768275488106 0.0 0.0) +(-0.12020811323403671 0.0 0.0) +(-0.11938187424928359 0.0 0.0) +(-0.1183386253482429 0.0 0.0) +(-0.11699645861994297 0.0 0.0) +(-0.11542565656889162 0.0 0.0) +(-0.11358664897613696 0.0 0.0) +(-0.11154391507120427 0.0 0.0) +(-0.10919684345032553 0.0 0.0) +(-0.10661500552693846 0.0 0.0) +(-0.10391500076658255 0.0 0.0) +(-0.10093608266567776 0.0 0.0) +(-0.09424875924271227 0.0 0.0) +(-0.09407675949282182 0.0 0.0) +(-0.09367807135094727 0.0 0.0) +(-0.09309676192781915 0.0 0.0) +(-0.09237262368806622 0.0 0.0) +(-0.09144280419529263 0.0 0.0) +(-0.090180756672117 0.0 0.0) +(-0.08877359263780105 0.0 0.0) +(-0.08721271654714143 0.0 0.0) +(-0.08539968323984395 0.0 0.0) +(-0.0834781812163254 0.0 0.0) +(-0.0814598029671547 0.0 0.0) +(-0.07926134219254521 0.0 0.0) +(-0.06784860861726377 0.0 0.0) +(-0.06773738820670912 0.0 0.0) +(-0.06754349358753102 0.0 0.0) +(-0.06723271534292204 0.0 0.0) +(-0.06680601399787234 0.0 0.0) +(-0.06630998478838938 0.0 0.0) +(-0.06569791166921903 0.0 0.0) +(-0.06501391031423627 0.0 0.0) +(-0.06424276250748454 0.0 0.0) +(-0.06336616497056635 0.0 0.0) +(-0.06244092901283375 0.0 0.0) +(-0.06142280721482031 0.0 0.0) +(-0.06035312713498643 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.4175641439572222 0.0 0.0) +(-0.42011832185316644 0.0 0.0) +(-0.4223609506339872 0.0 0.0) +(-0.4243839268331784 0.0 0.0) +(-0.42618273646130644 0.0 0.0) +(-0.42772722237029104 0.0 0.0) +(-0.42907038975452605 0.0 0.0) +(-0.43022692605092944 0.0 0.0) +(-0.4311605113888131 0.0 0.0) +(-0.4318987408751723 0.0 0.0) +(-0.4324615087354813 0.0 0.0) +(-0.4328365434884003 0.0 0.0) +(-0.4330014754209642 0.0 0.0) +(-0.4104497061927602 0.0 0.0) +(-0.41303179174239735 0.0 0.0) +(-0.41530589145440805 0.0 0.0) +(-0.4173605745827499 0.0 0.0) +(-0.41918790044913634 0.0 0.0) +(-0.4207579810547916 0.0 0.0) +(-0.4221224488941885 0.0 0.0) +(-0.4233038137806503 0.0 0.0) +(-0.4242568998228275 0.0 0.0) +(-0.42500955657229283 0.0 0.0) +(-0.4255830148291124 0.0 0.0) +(-0.42596809664225416 0.0 0.0) +(-0.4261362236658262 0.0 0.0) +(-0.40324785273629415 0.0 0.0) +(-0.40585833084928 0.0 0.0) +(-0.40815579940928814 0.0 0.0) +(-0.41023120954118675 0.0 0.0) +(-0.41207898820036903 0.0 0.0) +(-0.4136659111568983 0.0 0.0) +(-0.4150446383769826 0.0 0.0) +(-0.41624058424171234 0.0 0.0) +(-0.41720910452187376 0.0 0.0) +(-0.4179715257851513 0.0 0.0) +(-0.4185519848668383 0.0 0.0) +(-0.4189444313544609 0.0 0.0) +(-0.41911648806545154 0.0 0.0) +(-0.39598641647510435 0.0 0.0) +(-0.39860923075073407 0.0 0.0) +(-0.40091654315099756 0.0 0.0) +(-0.4030049971255477 0.0 0.0) +(-0.4048695430264799 0.0 0.0) +(-0.4064771078844139 0.0 0.0) +(-0.40786871148128756 0.0 0.0) +(-0.40907003583383594 0.0 0.0) +(-0.41005482505269075 0.0 0.0) +(-0.4108170214431193 0.0 0.0) +(-0.411406431318129 0.0 0.0) +(-0.4118055697373388 0.0 0.0) +(-0.41198026131558035 0.0 0.0) +(-0.3886509110719962 0.0 0.0) +(-0.3912893572747577 0.0 0.0) +(-0.3936131246073351 0.0 0.0) +(-0.3957141969832223 0.0 0.0) +(-0.3975875706259564 0.0 0.0) +(-0.3991998521594111 0.0 0.0) +(-0.40060862133719644 0.0 0.0) +(-0.40181798076146474 0.0 0.0) +(-0.4028041301799241 0.0 0.0) +(-0.40357433687644373 0.0 0.0) +(-0.40417394025967274 0.0 0.0) +(-0.4045714563660771 0.0 0.0) +(-0.40474320137174385 0.0 0.0) +(-0.3812619381059503 0.0 0.0) +(-0.3839081549952903 0.0 0.0) +(-0.386240910288483 0.0 0.0) +(-0.38835333143813233 0.0 0.0) +(-0.3902396178162349 0.0 0.0) +(-0.39186383365124533 0.0 0.0) +(-0.3932690186824158 0.0 0.0) +(-0.39449069092065336 0.0 0.0) +(-0.39547820266726663 0.0 0.0) +(-0.3962597179711527 0.0 0.0) +(-0.39685258665937795 0.0 0.0) +(-0.3972515010159832 0.0 0.0) +(-0.39742651491493974 0.0 0.0) +(-0.37380361822616015 0.0 0.0) +(-0.37646483885188164 0.0 0.0) +(-0.3788080975668525 0.0 0.0) +(-0.3809308738437281 0.0 0.0) +(-0.3828217072585018 0.0 0.0) +(-0.38444585859010333 0.0 0.0) +(-0.38586626162479715 0.0 0.0) +(-0.3870890904500547 0.0 0.0) +(-0.38808477847373485 0.0 0.0) +(-0.38886170764212996 0.0 0.0) +(-0.38946540384013345 0.0 0.0) +(-0.38986953701491905 0.0 0.0) +(-0.3900435187557716 0.0 0.0) +(-0.3662699576832835 0.0 0.0) +(-0.3689455760896627 0.0 0.0) +(-0.37130101273372335 0.0 0.0) +(-0.3734298175299035 0.0 0.0) +(-0.3753259223505124 0.0 0.0) +(-0.37696331056044063 0.0 0.0) +(-0.37839101383673923 0.0 0.0) +(-0.37961451475603925 0.0 0.0) +(-0.38061835679546663 0.0 0.0) +(-0.3813994587617749 0.0 0.0) +(-0.38199778342816687 0.0 0.0) +(-0.38240266070571605 0.0 0.0) +(-0.38258002851527084 0.0 0.0) +(-0.35864383733449423 0.0 0.0) +(-0.36133683495063995 0.0 0.0) +(-0.36370829371609914 0.0 0.0) +(-0.36584683304368154 0.0 0.0) +(-0.36775189646375755 0.0 0.0) +(-0.36940141198579673 0.0 0.0) +(-0.3708313592346528 0.0 0.0) +(-0.37206447028019296 0.0 0.0) +(-0.3730665620085366 0.0 0.0) +(-0.3738591704391013 0.0 0.0) +(-0.37445886655939237 0.0 0.0) +(-0.3748617922575834 0.0 0.0) +(-0.3750382604157905 0.0 0.0) +(-0.3509078673091846 0.0 0.0) +(-0.3536202393496767 0.0 0.0) +(-0.3560122674136659 0.0 0.0) +(-0.35817596294454046 0.0 0.0) +(-0.3600857044037284 0.0 0.0) +(-0.36174264494527364 0.0 0.0) +(-0.3631830837159229 0.0 0.0) +(-0.3644224021166127 0.0 0.0) +(-0.3654289719174027 0.0 0.0) +(-0.3662271311160824 0.0 0.0) +(-0.36683107074395666 0.0 0.0) +(-0.3672339734066967 0.0 0.0) +(-0.36741018517114477 0.0 0.0) +(-0.34306260302168706 0.0 0.0) +(-0.34579619076222723 0.0 0.0) +(-0.3481961839786573 0.0 0.0) +(-0.3503753709805131 0.0 0.0) +(-0.3523168830215614 0.0 0.0) +(-0.35397325930590906 0.0 0.0) +(-0.3554312912266763 0.0 0.0) +(-0.35667070386431643 0.0 0.0) +(-0.3576894760467293 0.0 0.0) +(-0.3584907008679696 0.0 0.0) +(-0.35909484289061244 0.0 0.0) +(-0.3595013390569787 0.0 0.0) +(-0.359679083842201 0.0 0.0) +(-0.33506062161318617 0.0 0.0) +(-0.3378248748338696 0.0 0.0) +(-0.34025620657862055 0.0 0.0) +(-0.3424455466764097 0.0 0.0) +(-0.34440302082916124 0.0 0.0) +(-0.3460832882796347 0.0 0.0) +(-0.34754152522756315 0.0 0.0) +(-0.34880006220145543 0.0 0.0) +(-0.3498298388730881 0.0 0.0) +(-0.3506234418783383 0.0 0.0) +(-0.351235879674985 0.0 0.0) +(-0.35165079362648954 0.0 0.0) +(-0.3518318190464789 0.0 0.0) +(-0.32688548085975777 0.0 0.0) +(-0.3296743385092749 0.0 0.0) +(-0.332134124745491 0.0 0.0) +(-0.334363830324323 0.0 0.0) +(-0.3363306079412997 0.0 0.0) +(-0.3380322566605622 0.0 0.0) +(-0.3395049800169273 0.0 0.0) +(-0.3407790171216156 0.0 0.0) +(-0.3418061646916221 0.0 0.0) +(-0.3426169447551982 0.0 0.0) +(-0.3432400784085909 0.0 0.0) +(-0.34365866956694907 0.0 0.0) +(-0.3438387221277429 0.0 0.0) +(-0.31849255508773733 0.0 0.0) +(-0.3213145853305924 0.0 0.0) +(-0.32382918502819824 0.0 0.0) +(-0.32606724338623483 0.0 0.0) +(-0.328075040830541 0.0 0.0) +(-0.3297892601791933 0.0 0.0) +(-0.33129122599720157 0.0 0.0) +(-0.332565988079731 0.0 0.0) +(-0.3336151353524968 0.0 0.0) +(-0.3344383706570167 0.0 0.0) +(-0.33506223180298556 0.0 0.0) +(-0.33548117008980505 0.0 0.0) +(-0.3356626572037113 0.0 0.0) +(-0.3098317383017795 0.0 0.0) +(-0.3127146200538928 0.0 0.0) +(-0.31527322416200787 0.0 0.0) +(-0.3175394318806548 0.0 0.0) +(-0.3195876412759604 0.0 0.0) +(-0.321316387335273 0.0 0.0) +(-0.3228478268884585 0.0 0.0) +(-0.3241476424045135 0.0 0.0) +(-0.325195110240752 0.0 0.0) +(-0.32602890534442247 0.0 0.0) +(-0.3266777436270043 0.0 0.0) +(-0.32710193540375787 0.0 0.0) +(-0.32728848446597353 0.0 0.0) +(-0.30086199368585465 0.0 0.0) +(-0.30381843288242805 0.0 0.0) +(-0.30640978310111117 0.0 0.0) +(-0.3087341800005552 0.0 0.0) +(-0.310821415436658 0.0 0.0) +(-0.3125798026412036 0.0 0.0) +(-0.31413423287444475 0.0 0.0) +(-0.3154641894324415 0.0 0.0) +(-0.31652420695953937 0.0 0.0) +(-0.3173643028753942 0.0 0.0) +(-0.31801796341205035 0.0 0.0) +(-0.3184619234927095 0.0 0.0) +(-0.3186570063782171 0.0 0.0) +(-0.2915459430622385 0.0 0.0) +(-0.2945386195364989 0.0 0.0) +(-0.2972143238949423 0.0 0.0) +(-0.2995746332448599 0.0 0.0) +(-0.301707248884332 0.0 0.0) +(-0.30352091075150406 0.0 0.0) +(-0.3050900279814741 0.0 0.0) +(-0.3064489671910034 0.0 0.0) +(-0.3075399812875597 0.0 0.0) +(-0.30839662711132715 0.0 0.0) +(-0.3090580060921734 0.0 0.0) +(-0.3095042419313261 0.0 0.0) +(-0.3096956204699806 0.0 0.0) +(-0.28170792561019276 0.0 0.0) +(-0.28487580513074534 0.0 0.0) +(-0.28753815685349465 0.0 0.0) +(-0.2900167578536237 0.0 0.0) +(-0.29218463570769826 0.0 0.0) +(-0.2940257356578132 0.0 0.0) +(-0.2956566224196246 0.0 0.0) +(-0.2970599691038704 0.0 0.0) +(-0.2981624157173264 0.0 0.0) +(-0.29903357547102866 0.0 0.0) +(-0.29970843759785804 0.0 0.0) +(-0.3001653089294105 0.0 0.0) +(-0.3003622279100884 0.0 0.0) +(-0.2713385456545312 0.0 0.0) +(-0.27458556998726413 0.0 0.0) +(-0.2774271807566539 0.0 0.0) +(-0.2799028331881816 0.0 0.0) +(-0.28215682526148655 0.0 0.0) +(-0.2840997193617873 0.0 0.0) +(-0.2857414670706596 0.0 0.0) +(-0.2871373489220992 0.0 0.0) +(-0.28829852631257 0.0 0.0) +(-0.289220960396498 0.0 0.0) +(-0.28991807192147273 0.0 0.0) +(-0.29039001696840405 0.0 0.0) +(-0.2905963027735995 0.0 0.0) +(-0.26024611922997265 0.0 0.0) +(-0.2636652700243527 0.0 0.0) +(-0.2665649288463878 0.0 0.0) +(-0.2691889889736777 0.0 0.0) +(-0.27149452954657277 0.0 0.0) +(-0.2734868669655728 0.0 0.0) +(-0.2752247024230193 0.0 0.0) +(-0.27670733570958883 0.0 0.0) +(-0.2779064987278935 0.0 0.0) +(-0.27881032184743865 0.0 0.0) +(-0.27951082777070596 0.0 0.0) +(-0.2799849357497182 0.0 0.0) +(-0.28019300817971565 0.0 0.0) +(-0.24827753994636503 0.0 0.0) +(-0.25189403919372183 0.0 0.0) +(-0.25491765711499265 0.0 0.0) +(-0.25761795815860306 0.0 0.0) +(-0.26003077640046196 0.0 0.0) +(-0.2621391732755796 0.0 0.0) +(-0.26394408382140927 0.0 0.0) +(-0.26545917827564364 0.0 0.0) +(-0.266700324297164 0.0 0.0) +(-0.26765604121812775 0.0 0.0) +(-0.2683992061021113 0.0 0.0) +(-0.2689053412846382 0.0 0.0) +(-0.2691267027599286 0.0 0.0) +(-0.23525641064672223 0.0 0.0) +(-0.23901271128323542 0.0 0.0) +(-0.2422720952050078 0.0 0.0) +(-0.24511120520998034 0.0 0.0) +(-0.24756994846674593 0.0 0.0) +(-0.24975385853268273 0.0 0.0) +(-0.2517086301848343 0.0 0.0) +(-0.25330617498656555 0.0 0.0) +(-0.2545854719879554 0.0 0.0) +(-0.2556104221233937 0.0 0.0) +(-0.2563793342813093 0.0 0.0) +(-0.25687930572299195 0.0 0.0) +(-0.2570951395245959 0.0 0.0) +(-0.22095985702202026 0.0 0.0) +(-0.2248372752695365 0.0 0.0) +(-0.2283117077698822 0.0 0.0) +(-0.2312371314472177 0.0 0.0) +(-0.23390446001261744 0.0 0.0) +(-0.2361720024247631 0.0 0.0) +(-0.2381954544528543 0.0 0.0) +(-0.2398976525948272 0.0 0.0) +(-0.24128235149574917 0.0 0.0) +(-0.24238636477195927 0.0 0.0) +(-0.24325113923174643 0.0 0.0) +(-0.2437993518639485 0.0 0.0) +(-0.24401847826823825 0.0 0.0) +(-0.20496463500228548 0.0 0.0) +(-0.20906405402561612 0.0 0.0) +(-0.2127925748289773 0.0 0.0) +(-0.21599506693494522 0.0 0.0) +(-0.21870506420169225 0.0 0.0) +(-0.22110466574992993 0.0 0.0) +(-0.22315543562855342 0.0 0.0) +(-0.22497309519457726 0.0 0.0) +(-0.22647129533055083 0.0 0.0) +(-0.22766751401012206 0.0 0.0) +(-0.22847799176995945 0.0 0.0) +(-0.22902935098332544 0.0 0.0) +(-0.22926828075965477 0.0 0.0) +(-0.18708869441554266 0.0 0.0) +(-0.19134784722523457 0.0 0.0) +(-0.1952642957529006 0.0 0.0) +(-0.1987569248021788 0.0 0.0) +(-0.20152907541347811 0.0 0.0) +(-0.2040065040374561 0.0 0.0) +(-0.2062154316047518 0.0 0.0) +(-0.20809245937705456 0.0 0.0) +(-0.20963363033931667 0.0 0.0) +(-0.21086459831225315 0.0 0.0) +(-0.21183236856857005 0.0 0.0) +(-0.21247570681340633 0.0 0.0) +(-0.2127625614373419 0.0 0.0) +(-0.16756885461700566 0.0 0.0) +(-0.17184697840720026 0.0 0.0) +(-0.17580584806831534 0.0 0.0) +(-0.17904871567249614 0.0 0.0) +(-0.1819628112004134 0.0 0.0) +(-0.18455008200028689 0.0 0.0) +(-0.18684626398914764 0.0 0.0) +(-0.18882762099774367 0.0 0.0) +(-0.190414677261179 0.0 0.0) +(-0.1916902863820609 0.0 0.0) +(-0.19267553742363963 0.0 0.0) +(-0.19335271697090706 0.0 0.0) +(-0.19365631025680807 0.0 0.0) +(-0.146027771690723 0.0 0.0) +(-0.15016478219784116 0.0 0.0) +(-0.15376549337045398 0.0 0.0) +(-0.1571905302036171 0.0 0.0) +(-0.16032813744067453 0.0 0.0) +(-0.1631300838790181 0.0 0.0) +(-0.1653449912826511 0.0 0.0) +(-0.1672464720638152 0.0 0.0) +(-0.16883359601926778 0.0 0.0) +(-0.17007227280661674 0.0 0.0) +(-0.17106518802947682 0.0 0.0) +(-0.17173257822646393 0.0 0.0) +(-0.17202468037163443 0.0 0.0) +(-0.1236106142112319 0.0 0.0) +(-0.12752881681176179 0.0 0.0) +(-0.1311361252557544 0.0 0.0) +(-0.1340651361341107 0.0 0.0) +(-0.136663366405157 0.0 0.0) +(-0.139006552622733 0.0 0.0) +(-0.14108371804158587 0.0 0.0) +(-0.14292884306299197 0.0 0.0) +(-0.1444496532636375 0.0 0.0) +(-0.14565544931226226 0.0 0.0) +(-0.14660145299060076 0.0 0.0) +(-0.14723606503702655 0.0 0.0) +(-0.14751229997387563 0.0 0.0) +(-0.10093609597213281 0.0 0.0) +(-0.1039150406430154 0.0 0.0) +(-0.10661507183429653 0.0 0.0) +(-0.1091969359509188 0.0 0.0) +(-0.11154403343273019 0.0 0.0) +(-0.11358678731181122 0.0 0.0) +(-0.11542581887070767 0.0 0.0) +(-0.11699664429870388 0.0 0.0) +(-0.11833883372855032 0.0 0.0) +(-0.11939037981839576 0.0 0.0) +(-0.12020836466024916 0.0 0.0) +(-0.12076795436663655 0.0 0.0) +(-0.12102156378744128 0.0 0.0) +(-0.07922791035157087 0.0 0.0) +(-0.081459847695784 0.0 0.0) +(-0.083478255589224 0.0 0.0) +(-0.08539978698898673 0.0 0.0) +(-0.08721284929741917 0.0 0.0) +(-0.08877375390801745 0.0 0.0) +(-0.0901809458763835 0.0 0.0) +(-0.09144302064609092 0.0 0.0) +(-0.09238384385293548 0.0 0.0) +(-0.09309700135238781 0.0 0.0) +(-0.09367833270790157 0.0 0.0) +(-0.09403624605299063 0.0 0.0) +(-0.09424906152564025 0.0 0.0) +(-0.06035314008857251 0.0 0.0) +(-0.06142284602965347 0.0 0.0) +(-0.062440993549278304 0.0 0.0) +(-0.06333279042231406 0.0 0.0) +(-0.06424287769387138 0.0 0.0) +(-0.06501405024393525 0.0 0.0) +(-0.06569807583219411 0.0 0.0) +(-0.06631017258685579 0.0 0.0) +(-0.06680622474754642 0.0 0.0) +(-0.06719398494035096 0.0 0.0) +(-0.06754374785294108 0.0 0.0) +(-0.0677376628773388 0.0 0.0) +(-0.0678489026909465 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.4330014756243147 0.0 0.0) +(-0.4328365440972105 0.0 0.0) +(-0.43246150974510544 0.0 0.0) +(-0.4318988079716304 0.0 0.0) +(-0.4311605132445626 0.0 0.0) +(-0.4302269283787945 0.0 0.0) +(-0.4290703924937691 0.0 0.0) +(-0.42772722556828885 0.0 0.0) +(-0.4261827401566559 0.0 0.0) +(-0.4243839310380317 0.0 0.0) +(-0.42236095539783386 0.0 0.0) +(-0.4201183271475931 0.0 0.0) +(-0.41756414994798763 0.0 0.0) +(-0.4261362238990353 0.0 0.0) +(-0.4259680973407052 0.0 0.0) +(-0.4255830159985237 0.0 0.0) +(-0.42500955824419206 0.0 0.0) +(-0.42425690195416704 0.0 0.0) +(-0.42330381641603654 0.0 0.0) +(-0.42212245204333976 0.0 0.0) +(-0.4207579847505736 0.0 0.0) +(-0.41918790471212414 0.0 0.0) +(-0.4173605794341416 0.0 0.0) +(-0.4153058969538368 0.0 0.0) +(-0.41303179785924277 0.0 0.0) +(-0.41044971293950233 0.0 0.0) +(-0.4191164883333202 0.0 0.0) +(-0.4189444321624476 0.0 0.0) +(-0.4185519862079137 0.0 0.0) +(-0.4179715276511338 0.0 0.0) +(-0.41720910699112257 0.0 0.0) +(-0.41624058722905133 0.0 0.0) +(-0.41504464199624275 0.0 0.0) +(-0.4136657236798317 0.0 0.0) +(-0.41207899309210766 0.0 0.0) +(-0.41023121499940135 0.0 0.0) +(-0.408155805685217 0.0 0.0) +(-0.405858337929275 0.0 0.0) +(-0.4032478605554915 0.0 0.0) +(-0.4119802616218918 0.0 0.0) +(-0.41180557066475504 0.0 0.0) +(-0.41140643285834727 0.0 0.0) +(-0.41081692701791805 0.0 0.0) +(-0.4100548278862108 0.0 0.0) +(-0.40907003927117264 0.0 0.0) +(-0.4078687156487072 0.0 0.0) +(-0.4064771126318796 0.0 0.0) +(-0.4048695485314482 0.0 0.0) +(-0.4030050034116176 0.0 0.0) +(-0.40091655023811423 0.0 0.0) +(-0.39860959779021393 0.0 0.0) +(-0.3959864255735139 0.0 0.0) +(-0.4047432017154714 0.0 0.0) +(-0.4045714573955166 0.0 0.0) +(-0.40417394203364804 0.0 0.0) +(-0.4035743393471249 0.0 0.0) +(-0.4028041333338697 0.0 0.0) +(-0.4018179847288491 0.0 0.0) +(-0.40060883497888017 0.0 0.0) +(-0.3991998576527885 0.0 0.0) +(-0.39758757700521535 0.0 0.0) +(-0.39571420427841275 0.0 0.0) +(-0.3936131328516892 0.0 0.0) +(-0.39128936649924373 0.0 0.0) +(-0.3886509213026142 0.0 0.0) +(-0.3974265153123047 0.0 0.0) +(-0.3972515022060956 0.0 0.0) +(-0.3968525886360771 0.0 0.0) +(-0.39625972076628896 0.0 0.0) +(-0.3954782063207116 0.0 0.0) +(-0.3944906953822432 0.0 0.0) +(-0.3932690240703754 0.0 0.0) +(-0.3918638399050844 0.0 0.0) +(-0.3902396249840254 0.0 0.0) +(-0.38835333963150115 0.0 0.0) +(-0.38624091956310047 0.0 0.0) +(-0.38390769613208553 0.0 0.0) +(-0.38126194980083805 0.0 0.0) +(-0.3900435394439221 0.0 0.0) +(-0.38986953836080346 0.0 0.0) +(-0.3894653024872561 0.0 0.0) +(-0.388861710847785 0.0 0.0) +(-0.3880847826034488 0.0 0.0) +(-0.38708909561911997 0.0 0.0) +(-0.38586626770140553 0.0 0.0) +(-0.3844458657817063 0.0 0.0) +(-0.3828217156427471 0.0 0.0) +(-0.38093088319192625 0.0 0.0) +(-0.37880810817926064 0.0 0.0) +(-0.37646431322813567 0.0 0.0) +(-0.3738036317257488 0.0 0.0) +(-0.38258002903573596 0.0 0.0) +(-0.3824026622651362 0.0 0.0) +(-0.38199778601830636 0.0 0.0) +(-0.38139946237557987 0.0 0.0) +(-0.38061836154091067 0.0 0.0) +(-0.3796145205891453 0.0 0.0) +(-0.3783910208994805 0.0 0.0) +(-0.37696331869496924 0.0 0.0) +(-0.37532593186115015 0.0 0.0) +(-0.37342982849153084 0.0 0.0) +(-0.3713010248501891 0.0 0.0) +(-0.36894558965171903 0.0 0.0) +(-0.3662699732883417 0.0 0.0) +(-0.37503826100540744 0.0 0.0) +(-0.3748617940238351 0.0 0.0) +(-0.37445886949451945 0.0 0.0) +(-0.37385936398385433 0.0 0.0) +(-0.3730665674726942 0.0 0.0) +(-0.37206447691490036 0.0 0.0) +(-0.37083136735186717 0.0 0.0) +(-0.36940142125417746 0.0 0.0) +(-0.36775190733092833 0.0 0.0) +(-0.3658468456036698 0.0 0.0) +(-0.3637083079436596 0.0 0.0) +(-0.36133685043036556 0.0 0.0) +(-0.3586438548155695 0.0 0.0) +(-0.36741021615210107 0.0 0.0) +(-0.36723397542242797 0.0 0.0) +(-0.3668310741090679 0.0 0.0) +(-0.36622713596396905 0.0 0.0) +(-0.36542897817143744 0.0 0.0) +(-0.36442206799842397 0.0 0.0) +(-0.3631830930414409 0.0 0.0) +(-0.361742655594037 0.0 0.0) +(-0.3600857169367908 0.0 0.0) +(-0.3581759774831481 0.0 0.0) +(-0.3560122832507135 0.0 0.0) +(-0.353620257329304 0.0 0.0) +(-0.3509078875736536 0.0 0.0) +(-0.3596790846172225 0.0 0.0) +(-0.35950134137881623 0.0 0.0) +(-0.35909484675032216 0.0 0.0) +(-0.35849070628778446 0.0 0.0) +(-0.35768948327917305 0.0 0.0) +(-0.3566707126407922 0.0 0.0) +(-0.35543130176693505 0.0 0.0) +(-0.35397327167888065 0.0 0.0) +(-0.35231689751161754 0.0 0.0) +(-0.3503753871102887 0.0 0.0) +(-0.3481962025447316 0.0 0.0) +(-0.34579621166879204 0.0 0.0) +(-0.3430626266008083 0.0 0.0) +(-0.3518318199499124 0.0 0.0) +(-0.3516507963330654 0.0 0.0) +(-0.35123588417392154 0.0 0.0) +(-0.35062344814929725 0.0 0.0) +(-0.3498298471296881 0.0 0.0) +(-0.34880007244447364 0.0 0.0) +(-0.3475415372740972 0.0 0.0) +(-0.3460833026503515 0.0 0.0) +(-0.34440303715219867 0.0 0.0) +(-0.34244556570126644 0.0 0.0) +(-0.3402562282813612 0.0 0.0) +(-0.337824899184557 0.0 0.0) +(-0.33506064877362546 0.0 0.0) +(-0.3438387231523642 0.0 0.0) +(-0.3436586726366744 0.0 0.0) +(-0.3432403190562067 0.0 0.0) +(-0.3426166192581042 0.0 0.0) +(-0.3418061741782418 0.0 0.0) +(-0.34077902882464095 0.0 0.0) +(-0.33950499420430214 0.0 0.0) +(-0.3380322730462577 0.0 0.0) +(-0.3363306271193844 0.0 0.0) +(-0.33436385256798723 0.0 0.0) +(-0.33213414935525276 0.0 0.0) +(-0.329674366843922 0.0 0.0) +(-0.32688551237560726 0.0 0.0) +(-0.3356626583914084 0.0 0.0) +(-0.33548117364809704 0.0 0.0) +(-0.33506250862879383 0.0 0.0) +(-0.33443837904012447 0.0 0.0) +(-0.3336151463946923 0.0 0.0) +(-0.33256600168578976 0.0 0.0) +(-0.3312912422854745 0.0 0.0) +(-0.3297892796296076 0.0 0.0) +(-0.3280750626858998 0.0 0.0) +(-0.3260672692670861 0.0 0.0) +(-0.3238292132436198 0.0 0.0) +(-0.32131461810649314 0.0 0.0) +(-0.3184925929587794 0.0 0.0) +(-0.3272884858652724 0.0 0.0) +(-0.3271019395960677 0.0 0.0) +(-0.32667775059550347 0.0 0.0) +(-0.3260289153855287 0.0 0.0) +(-0.32519512308356247 0.0 0.0) +(-0.32414765799185763 0.0 0.0) +(-0.3228478463712035 0.0 0.0) +(-0.32131640982223736 0.0 0.0) +(-0.31958766707166203 0.0 0.0) +(-0.31753946195733035 0.0 0.0) +(-0.3152732571097764 0.0 0.0) +(-0.31271465847082686 0.0 0.0) +(-0.3098317814374495 0.0 0.0) +(-0.31865700805785413 0.0 0.0) +(-0.3184617018539624 0.0 0.0) +(-0.31801797177719715 0.0 0.0) +(-0.31736431453828157 0.0 0.0) +(-0.3165242218756195 0.0 0.0) +(-0.3154642076246182 0.0 0.0) +(-0.31413527241154265 0.0 0.0) +(-0.312579828985979 0.0 0.0) +(-0.3108200495504603 0.0 0.0) +(-0.30873421508193805 0.0 0.0) +(-0.30640982355591256 0.0 0.0) +(-0.3038184774059016 0.0 0.0) +(-0.30086204481382595 0.0 0.0) +(-0.3096956223814248 0.0 0.0) +(-0.30950424779708097 0.0 0.0) +(-0.3090584550335166 0.0 0.0) +(-0.30839664070878947 0.0 0.0) +(-0.30754079356246133 0.0 0.0) +(-0.306448989518044 0.0 0.0) +(-0.30509005467596373 0.0 0.0) +(-0.30352094210999897 0.0 0.0) +(-0.3017072856275309 0.0 0.0) +(-0.29957467485355554 0.0 0.0) +(-0.2972143697457653 0.0 0.0) +(-0.2945386738553621 0.0 0.0) +(-0.29154600117257784 0.0 0.0) +(-0.30036233213714225 0.0 0.0) +(-0.30016531588343265 0.0 0.0) +(-0.29970844915779493 0.0 0.0) +(-0.29903359159219384 0.0 0.0) +(-0.2981624365480277 0.0 0.0) +(-0.2970599943989995 0.0 0.0) +(-0.29565522524750015 0.0 0.0) +(-0.29402577287896586 0.0 0.0) +(-0.2921846774526459 0.0 0.0) +(-0.290016807968576 0.0 0.0) +(-0.2875382131277805 0.0 0.0) +(-0.28487586586345376 0.0 0.0) +(-0.28170799910814587 0.0 0.0) +(-0.2905963055679102 0.0 0.0) +(-0.29039040244457637 0.0 0.0) +(-0.289918085839376 0.0 0.0) +(-0.289220979806624 0.0 0.0) +(-0.2882985518686572 0.0 0.0) +(-0.287137379957061 0.0 0.0) +(-0.28574150345373694 0.0 0.0) +(-0.2840997647382966 0.0 0.0) +(-0.28215687804269685 0.0 0.0) +(-0.2799028920210175 0.0 0.0) +(-0.27742725029952336 0.0 0.0) +(-0.27458564871289887 0.0 0.0) +(-0.2713386332984931 0.0 0.0) +(-0.2801930114296089 0.0 0.0) +(-0.2799849455750784 0.0 0.0) +(-0.27951084410453364 0.0 0.0) +(-0.27881137068569267 0.0 0.0) +(-0.2779065278674862 0.0 0.0) +(-0.276707374050618 0.0 0.0) +(-0.2752247473886897 0.0 0.0) +(-0.2734869208796706 0.0 0.0) +(-0.2714945924680377 0.0 0.0) +(-0.2691890623600348 0.0 0.0) +(-0.2665650089177704 0.0 0.0) +(-0.263665360597163 0.0 0.0) +(-0.2602462257486572 0.0 0.0) +(-0.26912670684903006 0.0 0.0) +(-0.268905353536649 0.0 0.0) +(-0.2683992264704495 0.0 0.0) +(-0.26765606962588645 0.0 0.0) +(-0.26670036063658026 0.0 0.0) +(-0.26545922451028653 0.0 0.0) +(-0.26394413804699435 0.0 0.0) +(-0.2621392414256114 0.0 0.0) +(-0.26003085285273386 0.0 0.0) +(-0.25761804434469054 0.0 0.0) +(-0.25491775818745177 0.0 0.0) +(-0.2518941611742698 0.0 0.0) +(-0.2482776704921541 0.0 0.0) +(-0.2570951443257332 0.0 0.0) +(-0.2568793201080379 0.0 0.0) +(-0.25637935819633473 0.0 0.0) +(-0.25561045797140686 0.0 0.0) +(-0.2545855178464225 0.0 0.0) +(-0.25330623068329444 0.0 0.0) +(-0.25170870319564237 0.0 0.0) +(-0.24975394203224843 0.0 0.0) +(-0.24757004213130035 0.0 0.0) +(-0.2451113087002691 0.0 0.0) +(-0.24227222559593586 0.0 0.0) +(-0.23901285209164738 0.0 0.0) +(-0.23525657190467877 0.0 0.0) +(-0.24401848403198523 0.0 0.0) +(-0.24379936913336944 0.0 0.0) +(-0.24325117238078248 0.0 0.0) +(-0.24238641100637698 0.0 0.0) +(-0.24127974653965617 0.0 0.0) +(-0.23989772443309065 0.0 0.0) +(-0.2381955446148691 0.0 0.0) +(-0.23617210554362275 0.0 0.0) +(-0.2339045757040717 0.0 0.0) +(-0.23123116197354032 0.0 0.0) +(-0.22831185568250528 0.0 0.0) +(-0.22483745861532745 0.0 0.0) +(-0.22096006303810942 0.0 0.0) +(-0.22926828830683396 0.0 0.0) +(-0.2290293735960551 0.0 0.0) +(-0.2284780293643638 0.0 0.0) +(-0.22766757419507686 0.0 0.0) +(-0.2264624214629948 0.0 0.0) +(-0.22496100212508605 0.0 0.0) +(-0.2231555453234295 0.0 0.0) +(-0.22110479746165895 0.0 0.0) +(-0.21870521197826315 0.0 0.0) +(-0.2159952302290493 0.0 0.0) +(-0.21279278870856955 0.0 0.0) +(-0.20906428501515018 0.0 0.0) +(-0.20496489300643309 0.0 0.0) +(-0.21276257234753576 0.0 0.0) +(-0.21247573950413182 0.0 0.0) +(-0.21182997490996835 0.0 0.0) +(-0.21086467411820925 0.0 0.0) +(-0.20963372732092364 0.0 0.0) +(-0.20809257717453594 0.0 0.0) +(-0.20621557579155259 0.0 0.0) +(-0.20400666895603542 0.0 0.0) +(-0.2015292604536414 0.0 0.0) +(-0.19875712928021919 0.0 0.0) +(-0.1952645697400529 0.0 0.0) +(-0.19136147188650068 0.0 0.0) +(-0.18708902977992445 0.0 0.0) +(-0.19365632423065926 0.0 0.0) +(-0.1933527588408381 0.0 0.0) +(-0.19267560703432193 0.0 0.0) +(-0.19169038347597345 0.0 0.0) +(-0.1904148014788093 0.0 0.0) +(-0.1888277718801065 0.0 0.0) +(-0.1868464513737314 0.0 0.0) +(-0.18455029633370967 0.0 0.0) +(-0.1819630516912122 0.0 0.0) +(-0.17904898143407622 0.0 0.0) +(-0.1758061911782877 0.0 0.0) +(-0.1718473489933009 0.0 0.0) +(-0.16756925131754696 0.0 0.0) +(-0.17202469786742378 0.0 0.0) +(-0.17173499192512653 0.0 0.0) +(-0.17106527518704476 0.0 0.0) +(-0.17007239437701802 0.0 0.0) +(-0.1688337515534713 0.0 0.0) +(-0.1672466609882255 0.0 0.0) +(-0.16534521290168816 0.0 0.0) +(-0.1631436567247253 0.0 0.0) +(-0.16032846821942062 0.0 0.0) +(-0.1571908957515189 0.0 0.0) +(-0.15376589234462634 0.0 0.0) +(-0.1501652131343509 0.0 0.0) +(-0.14602827257601955 0.0 0.0) +(-0.14751232206081108 0.0 0.0) +(-0.1472361312143862 0.0 0.0) +(-0.14660156301631214 0.0 0.0) +(-0.14565560278014575 0.0 0.0) +(-0.1444498496099144 0.0 0.0) +(-0.1429290815653527 0.0 0.0) +(-0.1410839978224878 0.0 0.0) +(-0.13900687265440462 0.0 0.0) +(-0.13666372551230208 0.0 0.0) +(-0.13406553299780716 0.0 0.0) +(-0.13113664390929577 0.0 0.0) +(-0.12752937703094305 0.0 0.0) +(-0.12361121394255424 0.0 0.0) +(-0.12102159022694091 0.0 0.0) +(-0.12076803358919896 0.0 0.0) +(-0.12020849637419538 0.0 0.0) +(-0.11939056354024609 0.0 0.0) +(-0.11833906878508314 0.0 0.0) +(-0.11699692982609798 0.0 0.0) +(-0.1154261538213895 0.0 0.0) +(-0.11358717045674549 0.0 0.0) +(-0.11154448033315777 0.0 0.0) +(-0.10919742985002315 0.0 0.0) +(-0.10661561092217063 0.0 0.0) +(-0.10391562294789879 0.0 0.0) +(-0.10093671936221014 0.0 0.0) +(-0.0942490890048079 0.0 0.0) +(-0.09403632838745371 0.0 0.0) +(-0.09367846959630834 0.0 0.0) +(-0.09309719229445838 0.0 0.0) +(-0.09238408814705368 0.0 0.0) +(-0.09144335341241527 0.0 0.0) +(-0.09018133624944621 0.0 0.0) +(-0.08877420045694355 0.0 0.0) +(-0.08721335038787778 0.0 0.0) +(-0.08540034078713833 0.0 0.0) +(-0.08347886006943135 0.0 0.0) +(-0.08146050064849657 0.0 0.0) +(-0.07922860938780757 0.0 0.0) +(-0.06784892941899401 0.0 0.0) +(-0.06773774296352554 0.0 0.0) +(-0.06754388100356998 0.0 0.0) +(-0.06719417066891707 0.0 0.0) +(-0.06680646237449132 0.0 0.0) +(-0.06631046124341683 0.0 0.0) +(-0.06569841446257238 0.0 0.0) +(-0.06501443760980836 0.0 0.0) +(-0.06424331238068724 0.0 0.0) +(-0.06333327084011377 0.0 0.0) +(-0.06244151794310892 0.0 0.0) +(-0.061423412483043394 0.0 0.0) +(-0.06035374653264347 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.4175641501597871 0.0 0.0) +(-0.42011832775370195 0.0 0.0) +(-0.4223609563844086 0.0 0.0) +(-0.42438393237126154 0.0 0.0) +(-0.4261827418219952 0.0 0.0) +(-0.42772722754354436 0.0 0.0) +(-0.42907039477588393 0.0 0.0) +(-0.430226930994012 0.0 0.0) +(-0.43116051610060446 0.0 0.0) +(-0.43189874551967433 0.0 0.0) +(-0.4324615131233066 0.0 0.0) +(-0.43283654777329367 0.0 0.0) +(-0.4330014795831244 0.0 0.0) +(-0.41045003383518924 0.0 0.0) +(-0.4130317985761829 0.0 0.0) +(-0.41530597795612173 0.0 0.0) +(-0.41736058100589546 0.0 0.0) +(-0.41918790667359346 0.0 0.0) +(-0.42075798707917295 0.0 0.0) +(-0.42212245471748205 0.0 0.0) +(-0.42330381943132384 0.0 0.0) +(-0.42425690529204 0.0 0.0) +(-0.42500956196191003 0.0 0.0) +(-0.42558301997341624 0.0 0.0) +(-0.42596810162128407 0.0 0.0) +(-0.4261359024209863 0.0 0.0) +(-0.40324786084460396 0.0 0.0) +(-0.40585833877469013 0.0 0.0) +(-0.40815580703813875 0.0 0.0) +(-0.41023121679807395 0.0 0.0) +(-0.4120789953799876 0.0 0.0) +(-0.4136657264041559 0.0 0.0) +(-0.4150450219784996 0.0 0.0) +(-0.416240590696402 0.0 0.0) +(-0.4172092221308913 0.0 0.0) +(-0.41797161590183524 0.0 0.0) +(-0.4185516140798769 0.0 0.0) +(-0.41894443717254193 0.0 0.0) +(-0.4191164936799243 0.0 0.0) +(-0.39598642591534994 0.0 0.0) +(-0.398609239688862 0.0 0.0) +(-0.400916126347573 0.0 0.0) +(-0.40300500551154717 0.0 0.0) +(-0.4048695511400947 0.0 0.0) +(-0.4064771157085672 0.0 0.0) +(-0.4078689069927619 0.0 0.0) +(-0.4090700433067734 0.0 0.0) +(-0.4100548324342211 0.0 0.0) +(-0.4108170284673442 0.0 0.0) +(-0.4114064382112328 0.0 0.0) +(-0.41180557646944016 0.0 0.0) +(-0.41198026778982544 0.0 0.0) +(-0.38865092169204246 0.0 0.0) +(-0.39128936763114636 0.0 0.0) +(-0.3936131346754221 0.0 0.0) +(-0.3957142067426882 0.0 0.0) +(-0.3975875800605588 0.0 0.0) +(-0.39919986124931556 0.0 0.0) +(-0.4006088390663678 0.0 0.0) +(-0.40181816812882243 0.0 0.0) +(-0.40280413844133484 0.0 0.0) +(-0.403574345018608 0.0 0.0) +(-0.4041739482484301 0.0 0.0) +(-0.4045714638877984 0.0 0.0) +(-0.40474320868664093 0.0 0.0) +(-0.3812619502508375 0.0 0.0) +(-0.3839082552276254 0.0 0.0) +(-0.3862409216344911 0.0 0.0) +(-0.3883533424246589 0.0 0.0) +(-0.3902396284473177 0.0 0.0) +(-0.39186327933204046 0.0 0.0) +(-0.3932690288547709 0.0 0.0) +(-0.3944907007099855 0.0 0.0) +(-0.3954782122803242 0.0 0.0) +(-0.3962597272272671 0.0 0.0) +(-0.39685259560687064 0.0 0.0) +(-0.3972515097585383 0.0 0.0) +(-0.39742652341820295 0.0 0.0) +(-0.3738036322498836 0.0 0.0) +(-0.37646485227829796 0.0 0.0) +(-0.3788087523389578 0.0 0.0) +(-0.38093088640315936 0.0 0.0) +(-0.38282171972349954 0.0 0.0) +(-0.3844458705629197 0.0 0.0) +(-0.38586627313331356 0.0 0.0) +(-0.38708910183108486 0.0 0.0) +(-0.388084789380939 0.0 0.0) +(-0.3888617183003915 0.0 0.0) +(-0.3894654143012355 0.0 0.0) +(-0.3898695469460258 0.0 0.0) +(-0.39004352841608564 0.0 0.0) +(-0.3662699738988393 0.0 0.0) +(-0.36894559135902805 0.0 0.0) +(-0.37130102759622613 0.0 0.0) +(-0.37342983228119353 0.0 0.0) +(-0.3753259365186103 0.0 0.0) +(-0.3769633241347953 0.0 0.0) +(-0.37839102724824053 0.0 0.0) +(-0.37961378182786354 0.0 0.0) +(-0.3806183693685324 0.0 0.0) +(-0.3813994708176984 0.0 0.0) +(-0.3819977952445335 0.0 0.0) +(-0.38240259674927474 0.0 0.0) +(-0.3825800397484153 0.0 0.0) +(-0.3586438555038724 0.0 0.0) +(-0.36133685239079794 0.0 0.0) +(-0.3637083111864574 0.0 0.0) +(-0.36584684996944766 0.0 0.0) +(-0.36775191268030294 0.0 0.0) +(-0.3694014274828703 0.0 0.0) +(-0.3708313746828906 0.0 0.0) +(-0.3720644849669582 0.0 0.0) +(-0.37306657652448955 0.0 0.0) +(-0.3738589249413973 0.0 0.0) +(-0.3744591354794644 0.0 0.0) +(-0.37486171957566006 0.0 0.0) +(-0.37503827318363453 0.0 0.0) +(-0.35090788837587733 0.0 0.0) +(-0.3536194497779756 0.0 0.0) +(-0.3560122868777831 0.0 0.0) +(-0.3581759825599485 0.0 0.0) +(-0.36008572313336407 0.0 0.0) +(-0.36174266278042355 0.0 0.0) +(-0.36318310149753474 0.0 0.0) +(-0.3644220772405655 0.0 0.0) +(-0.3654286902400319 0.0 0.0) +(-0.3662272474237921 0.0 0.0) +(-0.3668306945434669 0.0 0.0) +(-0.36723398842424393 0.0 0.0) +(-0.3674105940773833 0.0 0.0) +(-0.3430615012022448 0.0 0.0) +(-0.34579621434161667 0.0 0.0) +(-0.3481962068143347 0.0 0.0) +(-0.35037539276487195 0.0 0.0) +(-0.35231690470267674 0.0 0.0) +(-0.3539732800587813 0.0 0.0) +(-0.3554313113571466 0.0 0.0) +(-0.3566709494871467 0.0 0.0) +(-0.3576901868780271 0.0 0.0) +(-0.35849141164217774 0.0 0.0) +(-0.3590947480705098 0.0 0.0) +(-0.35950135639448266 0.0 0.0) +(-0.3596796697723436 0.0 0.0) +(-0.33506064985823675 0.0 0.0) +(-0.3378249023093618 0.0 0.0) +(-0.34025623328992594 0.0 0.0) +(-0.34244557239324275 0.0 0.0) +(-0.34440231005486277 0.0 0.0) +(-0.34608331241315554 0.0 0.0) +(-0.3475415482668577 0.0 0.0) +(-0.34879995280755677 0.0 0.0) +(-0.34982959728033336 0.0 0.0) +(-0.35062294309727615 0.0 0.0) +(-0.3512360318737381 0.0 0.0) +(-0.3516504165356713 0.0 0.0) +(-0.35183210464061515 0.0 0.0) +(-0.32688551363849255 0.0 0.0) +(-0.32967437049171733 0.0 0.0) +(-0.33213415505200405 0.0 0.0) +(-0.33436386041490473 0.0 0.0) +(-0.33633063669414404 0.0 0.0) +(-0.33803228420736886 0.0 0.0) +(-0.33950424284501324 0.0 0.0) +(-0.34077874066381 0.0 0.0) +(-0.3418064935092907 0.0 0.0) +(-0.3426169436654827 0.0 0.0) +(-0.34324086756567496 0.0 0.0) +(-0.343658993542451 0.0 0.0) +(-0.34383889556301483 0.0 0.0) +(-0.3184925944808419 0.0 0.0) +(-0.32131462233778463 0.0 0.0) +(-0.32382921979216617 0.0 0.0) +(-0.32606727842000194 0.0 0.0) +(-0.3280750736235045 0.0 0.0) +(-0.32978929290843545 0.0 0.0) +(-0.33129143294566044 0.0 0.0) +(-0.3325658423313763 0.0 0.0) +(-0.33361463440934114 0.0 0.0) +(-0.33443874756177705 0.0 0.0) +(-0.3350621778426232 0.0 0.0) +(-0.3354804979973057 0.0 0.0) +(-0.33566250784076423 0.0 0.0) +(-0.30983178317559623 0.0 0.0) +(-0.31271466344223636 0.0 0.0) +(-0.31527326477395734 0.0 0.0) +(-0.31753947261717635 0.0 0.0) +(-0.319587680007961 0.0 0.0) +(-0.3213162184802185 0.0 0.0) +(-0.32284937306815786 0.0 0.0) +(-0.32414767721632126 0.0 0.0) +(-0.32519514468750366 0.0 0.0) +(-0.32602960059045305 0.0 0.0) +(-0.32667736671920794 0.0 0.0) +(-0.3271021730103653 0.0 0.0) +(-0.3272885151253408 0.0 0.0) +(-0.30085960243653426 0.0 0.0) +(-0.3038184831796181 0.0 0.0) +(-0.3064098329849345 0.0 0.0) +(-0.3087342275388394 0.0 0.0) +(-0.3108214620306049 0.0 0.0) +(-0.31257911983727 0.0 0.0) +(-0.31413480502022795 0.0 0.0) +(-0.3154644660742246 0.0 0.0) +(-0.31652424700433063 0.0 0.0) +(-0.31736458540303786 0.0 0.0) +(-0.31801923140357774 0.0 0.0) +(-0.3184614869947462 0.0 0.0) +(-0.3186555515825928 0.0 0.0) +(-0.29154600352394855 0.0 0.0) +(-0.29453868091220403 0.0 0.0) +(-0.2972143804508147 0.0 0.0) +(-0.2995746896524631 0.0 0.0) +(-0.3017089591018769 0.0 0.0) +(-0.30352154113110336 0.0 0.0) +(-0.30508921280664675 0.0 0.0) +(-0.30644930700367085 0.0 0.0) +(-0.3075388948901637 0.0 0.0) +(-0.30839610584204863 0.0 0.0) +(-0.3090563301790665 0.0 0.0) +(-0.309502841161109 0.0 0.0) +(-0.3096965120071829 0.0 0.0) +(-0.2817080020873141 0.0 0.0) +(-0.28487587376600504 0.0 0.0) +(-0.2875382262860945 0.0 0.0) +(-0.29002030661586464 0.0 0.0) +(-0.2921850306896356 0.0 0.0) +(-0.29402785622317934 0.0 0.0) +(-0.2956569719181921 0.0 0.0) +(-0.2970616689999274 0.0 0.0) +(-0.2981614668728136 0.0 0.0) +(-0.29903295693538096 0.0 0.0) +(-0.2997081508496822 0.0 0.0) +(-0.3001643326406596 0.0 0.0) +(-0.3003632847059506 0.0 0.0) +(-0.27133863685633114 0.0 0.0) +(-0.27458565897080905 0.0 0.0) +(-0.277427266581519 0.0 0.0) +(-0.27990291300185216 0.0 0.0) +(-0.2821585856519734 0.0 0.0) +(-0.2841006326474606 0.0 0.0) +(-0.2857415370518683 0.0 0.0) +(-0.28713983943539806 0.0 0.0) +(-0.2882994175114165 0.0 0.0) +(-0.28921980957228843 0.0 0.0) +(-0.28991813652243187 0.0 0.0) +(-0.2903896669650096 0.0 0.0) +(-0.2905967789012305 0.0 0.0) +(-0.26024623007819764 0.0 0.0) +(-0.26366537241307414 0.0 0.0) +(-0.26656863426098315 0.0 0.0) +(-0.2691890885591185 0.0 0.0) +(-0.2714956266558232 0.0 0.0) +(-0.2734859633860172 0.0 0.0) +(-0.275226738665549 0.0 0.0) +(-0.2767069228408633 0.0 0.0) +(-0.27790798467908673 0.0 0.0) +(-0.27880897036908736 0.0 0.0) +(-0.2795109036304298 0.0 0.0) +(-0.2799845247291946 0.0 0.0) +(-0.28019163187375296 0.0 0.0) +(-0.2482776758044222 0.0 0.0) +(-0.25189417710437184 0.0 0.0) +(-0.25491778190196657 0.0 0.0) +(-0.25761807514252927 0.0 0.0) +(-0.26003028226676483 0.0 0.0) +(-0.26214117508896334 0.0 0.0) +(-0.2639441882098789 0.0 0.0) +(-0.2654610872523837 0.0 0.0) +(-0.2666987853541037 0.0 0.0) +(-0.26765613765136465 0.0 0.0) +(-0.2684011034442172 0.0 0.0) +(-0.2689042230967444 0.0 0.0) +(-0.26912436247180815 0.0 0.0) +(-0.2352565784731938 0.0 0.0) +(-0.23901287049746386 0.0 0.0) +(-0.24226428427947952 0.0 0.0) +(-0.2451113457121764 0.0 0.0) +(-0.24756934286663773 0.0 0.0) +(-0.2497555413045272 0.0 0.0) +(-0.25171114723539517 0.0 0.0) +(-0.25330775040837267 0.0 0.0) +(-0.2545885519425654 0.0 0.0) +(-0.2556082931379346 0.0 0.0) +(-0.25637662194727284 0.0 0.0) +(-0.2568765699799006 0.0 0.0) +(-0.2570952452940499 0.0 0.0) +(-0.22096007143670346 0.0 0.0) +(-0.22483748260098047 0.0 0.0) +(-0.22831189044384087 0.0 0.0) +(-0.23123731549701787 0.0 0.0) +(-0.23390740179767838 0.0 0.0) +(-0.23617205997680923 0.0 0.0) +(-0.23819367094588448 0.0 0.0) +(-0.23989781375113917 0.0 0.0) +(-0.24128175412598019 0.0 0.0) +(-0.2423884579058454 0.0 0.0) +(-0.243247377987857 0.0 0.0) +(-0.2437969202139772 0.0 0.0) +(-0.24401774810128943 0.0 0.0) +(-0.20496490353260813 0.0 0.0) +(-0.20906431525504382 0.0 0.0) +(-0.21279283900612544 0.0 0.0) +(-0.21599528870844367 0.0 0.0) +(-0.21869863065604722 0.0 0.0) +(-0.22110488841324183 0.0 0.0) +(-0.2231580289572273 0.0 0.0) +(-0.22496843041364098 0.0 0.0) +(-0.2264652934605559 0.0 0.0) +(-0.22766141562287237 0.0 0.0) +(-0.22847816667569 0.0 0.0) +(-0.22902616568323553 0.0 0.0) +(-0.22926507855663916 0.0 0.0) +(-0.18708904347175137 0.0 0.0) +(-0.1913615106508507 0.0 0.0) +(-0.19528139440421147 0.0 0.0) +(-0.19876641264641748 0.0 0.0) +(-0.20153525909468512 0.0 0.0) +(-0.20400373522072282 0.0 0.0) +(-0.20621257766181725 0.0 0.0) +(-0.20808504631999583 0.0 0.0) +(-0.20963545661920371 0.0 0.0) +(-0.21086962089047834 0.0 0.0) +(-0.21182696144011645 0.0 0.0) +(-0.212477571944231 0.0 0.0) +(-0.21276117824099172 0.0 0.0) +(-0.16755028854388063 0.0 0.0) +(-0.1718473975642895 0.0 0.0) +(-0.1758062719556108 0.0 0.0) +(-0.17903710624870134 0.0 0.0) +(-0.1819593356499752 0.0 0.0) +(-0.18454054010263776 0.0 0.0) +(-0.18685476743825633 0.0 0.0) +(-0.18882009063704827 0.0 0.0) +(-0.19042102654639687 0.0 0.0) +(-0.1916946863177333 0.0 0.0) +(-0.19268614947813323 0.0 0.0) +(-0.1933592520970518 0.0 0.0) +(-0.19365245775008905 0.0 0.0) +(-0.1460282930474303 0.0 0.0) +(-0.15014198595409597 0.0 0.0) +(-0.15376598631617636 0.0 0.0) +(-0.1571910268563668 0.0 0.0) +(-0.16033919560439955 0.0 0.0) +(-0.16315476070413515 0.0 0.0) +(-0.16533578670158233 0.0 0.0) +(-0.1672468962913162 0.0 0.0) +(-0.16882648333553432 0.0 0.0) +(-0.17008288032279742 0.0 0.0) +(-0.1710655938586132 0.0 0.0) +(-0.17172754832907045 0.0 0.0) +(-0.17201725003640805 0.0 0.0) +(-0.12361123846538476 0.0 0.0) +(-0.12752945052289158 0.0 0.0) +(-0.1311367661187125 0.0 0.0) +(-0.13406567538784336 0.0 0.0) +(-0.1366858154908116 0.0 0.0) +(-0.1390011763010511 0.0 0.0) +(-0.14108121704508123 0.0 0.0) +(-0.1429200455281098 0.0 0.0) +(-0.14444384255503243 0.0 0.0) +(-0.14565918929173347 0.0 0.0) +(-0.14660196540470136 0.0 0.0) +(-0.1472431214907067 0.0 0.0) +(-0.1475236517229675 0.0 0.0) +(-0.10093674486226333 0.0 0.0) +(-0.10391569936558412 0.0 0.0) +(-0.10661573799112121 0.0 0.0) +(-0.1091976071146401 0.0 0.0) +(-0.11156254573085525 0.0 0.0) +(-0.1135980643357471 0.0 0.0) +(-0.1154119021855022 0.0 0.0) +(-0.11701218617579437 0.0 0.0) +(-0.11833946811730547 0.0 0.0) +(-0.11939043572171211 0.0 0.0) +(-0.12021677014736042 0.0 0.0) +(-0.12077247879365038 0.0 0.0) +(-0.12101820843041336 0.0 0.0) +(-0.07926208475974983 0.0 0.0) +(-0.08146058636481164 0.0 0.0) +(-0.08347900259493973 0.0 0.0) +(-0.08540053960818061 0.0 0.0) +(-0.08720160236212296 0.0 0.0) +(-0.0887745095092233 0.0 0.0) +(-0.09018594252080912 0.0 0.0) +(-0.09144376821070935 0.0 0.0) +(-0.09236560803336141 0.0 0.0) +(-0.09310165621694041 0.0 0.0) +(-0.09367897045110507 0.0 0.0) +(-0.09406134690938554 0.0 0.0) +(-0.09422919564577383 0.0 0.0) +(-0.06035377135641962 0.0 0.0) +(-0.06142348686637751 0.0 0.0) +(-0.06244164161846974 0.0 0.0) +(-0.06336690793331094 0.0 0.0) +(-0.06423312013503796 0.0 0.0) +(-0.06501470576590836 0.0 0.0) +(-0.06570241074659502 0.0 0.0) +(-0.06631082113345786 0.0 0.0) +(-0.06681454365873772 0.0 0.0) +(-0.06721799505303493 0.0 0.0) +(-0.06753648878551936 0.0 0.0) +(-0.06774620686957575 0.0 0.0) +(-0.06784152635192707 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +(-0.0 0.0 0.0) +); + } + + "(OUTLET|Outlet|outlet)" + { + type zeroGradient; + } + + "(WALL|Wall|wall)" + { + type fixedValue; + value uniform (0 0 0); + } + +} + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/0/epsilon b/Simulation_setup_and_evluation/BaseCase/0/epsilon new file mode 100644 index 0000000..3cb1598 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/0/epsilon @@ -0,0 +1,4050 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + location "0"; + object epsilon; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -3 0 0 0 0]; + +internalField uniform 0.01; + +boundaryField +{ + "(INLET|Inlet|inlet)" + { + type fixedValue; + value nonuniform List<scalar> +4004 + ( +0.000255543974522562 +0.0002614369729100492 +0.0002734091636081098 +0.0002918195418123016 +0.000317208672494798 +0.0003503417504993996 +0.00039211763676553346 +0.0004437195192584119 +0.0005066605763404174 +0.0005829418669679451 +0.0006751683065012489 +0.0007872173863862936 +0.000924559820611204 +0.00026143748747306473 +0.00026737208112190925 +0.00027942832775962795 +0.0002979368563746486 +0.00032345177457679706 +0.0003566830531815809 +0.00039854133058638013 +0.00045020041349873053 +0.0005131376321786167 +0.0005893319848941731 +0.0006814021895452396 +0.0007931026699877681 +0.0009296728371820824 +0.000273409159591301 +0.000279428325767016 +0.0002916080314375919 +0.00031028535106909 +0.00033596102018937764 +0.0003693378627274998 +0.000411363512176588 +0.0004630924556079928 +0.0005260402166643076 +0.0006021755439218192 +0.0006940136773800835 +0.0008051535057705124 +0.0009409260186927678 +0.00029181953565734185 +0.0002979368522596582 +0.0003102843867146603 +0.00032914191678586936 +0.000355000004984371 +0.00038855860838309266 +0.0004307156660828123 +0.0004824990016192005 +0.0005453715393606548 +0.0006213104981198031 +0.0007127468285045633 +0.0008231145741610421 +0.0009577702582116396 +0.0003172086639011191 +0.0003234517680053055 +0.0003359610157471387 +0.00035500133229280007 +0.0003810202318005128 +0.0004147074374670713 +0.00045693769518955515 +0.00050868758666486 +0.0005713330046432589 +0.0006468942417269947 +0.0007376591672544792 +0.0008468687780162049 +0.0009798772014442435 +0.00035034173936952974 +0.000356683044121932 +0.0003693378556949906 +0.00038855860361755064 +0.00041470743497397746 +0.0004484899962510089 +0.0004907329487443597 +0.0005423354143809704 +0.0006046973676027044 +0.0006796302590200969 +0.0007696115227496701 +0.0008774263151190842 +0.0010084343457395749 +0.0003921176225858833 +0.0003985413184771221 +0.0004113635024018727 +0.00043071565849663425 +0.0004569376900086092 +0.0004907329460208858 +0.0005329167122292889 +0.0005842911143814297 +0.0006461742250584437 +0.0007204735281980656 +0.000809208824958524 +0.0009154601851561251 +0.001044114980386907 +0.0004437219655215489 +0.00045020039824130586 +0.0004630924426526768 +0.00048249899097757776 +0.0005086875783568409 +0.0005423354086450897 +0.0005842938793675479 +0.0006351355650042319 +0.0006962975790289011 +0.0007696297232462337 +0.0008568484239046727 +0.0009608326214483018 +0.0010863384677786683 +0.00050666055465503 +0.0005131376128508079 +0.0005260402000056025 +0.0005453715248887873 +0.0005713329926899975 +0.0006046973583609527 +0.0006461742185930982 +0.0006962975756371839 +0.0007562497030140111 +0.0008282369558068142 +0.0009134232633821656 +0.001014439903191683 +0.0011361256776400049 +0.0005829418406125264 +0.0005893319610908132 +0.000602175522690166 +0.0006213104793830592 +0.000646894225740784 +0.0006796341418686734 +0.0007204735177883013 +0.0007696297158583758 +0.0008282369518689206 +0.000898259508291626 +0.0009809445843216396 +0.0010785364701718114 +0.001195539398615556 +0.0006751682749749173 +0.0006814021597816989 +0.0006940136509915338 +0.0007127468045186016 +0.0007376591459819011 +0.0007696092207272114 +0.000809208809902765 +0.0008568534201420933 +0.0009134232547811438 +0.0009809445797764338 +0.0010602857236514625 +0.0011534580032766886 +0.001264469806721631 +0.0007872173467025339 +0.0007931026334045022 +0.0008051534728016503 +0.0008231145434377902 +0.000846868750577089 +0.0008774262905908202 +0.000915460163864167 +0.000960832603728805 +0.0010144398891245906 +0.0010785364599837333 +0.0011534579979581528 +0.0012403326524541114 +0.0013436214141776051 +0.0009245597723806012 +0.0009296727914645858 +0.0009409259769499287 +0.0009577702194846778 +0.0009798703711324803 +0.0010084343140454818 +0.0010441149517634888 +0.0010863384426537431 +0.0011361256564634845 +0.001195531709845176 +0.001264469794924627 +0.0013436214079466987 +0.0014377103937022041 +0.0002555439773205513 +0.00026143710862604105 +0.0002734091742243713 +0.0002918195565748628 +0.00031720869204929615 +0.00035034177499719706 +0.0003921176672673237 +0.0004437220202220816 +0.0005066606216075521 +0.0005829419214131335 +0.0006751683710736557 +0.0007872174670835916 +0.0009245599180900724 +0.0002614369757757269 +0.00026737208970103126 +0.0002794283402477481 +0.0002979368731616961 +0.00032345179657144275 +0.000356683080169086 +0.00039854136396650085 +0.00045020045327177297 +0.0005131376804706503 +0.0005893320424174176 +0.0006814022595461137 +0.0007931027541004413 +0.0009296729403010703 +0.00027340916652670975 +0.0002794283364291821 +0.0002916080463364449 +0.0003102844080777624 +0.00033596104452042957 +0.0003693378927215277 +0.00041136354791554826 +0.0004630924982017629 +0.0005260402673024683 +0.0006021756046695132 +0.000694013749302544 +0.0008051535920934116 +0.0009409261243714536 +0.00029181954477972813 +0.0002979368652758822 +0.00031028536626514933 +0.00032914294014016216 +0.00035500136181210396 +0.0003885586408949379 +0.000430715705110027 +0.00048249904737668716 +0.0005453715941976914 +0.0006213105626984656 +0.0007127469052410231 +0.0008231146666698118 +0.0009577703691030036 +0.00031720867558069195 +0.00032345178397808437 +0.00033596103600748884 +0.00035500002779909924 +0.00038102026191206764 +0.0004147074735453626 +0.00045693773719563026 +0.0005086876363144747 +0.0005713330632651084 +0.0006468943098028597 +0.0007376592485948373 +0.0008468688743135638 +0.000979870521991498 +0.00035034175366833087 +0.00035668306280751575 +0.00036933787924469015 +0.0003885586317624293 +0.00041470746876769176 +0.0004484900358684384 +0.0004907329949643615 +0.0005423354677885961 +0.0006046974299813094 +0.0006796303321431502 +0.0007696093247574362 +0.0008774321250317479 +0.0010084344658843078 +0.0003921176400939714 +0.0003985413407607732 +0.0004113635291836489 +0.0004307156905721574 +0.00045693772726705727 +0.0004907329897452006 +0.0005329167627306903 +0.0005842939408217204 +0.0006461742924042117 +0.000720473605875158 +0.0008092089149221777 +0.0009154602932313645 +0.0010441151084426316 +0.00044371952274559065 +0.0004502004240330117 +0.0004630924733746775 +0.00048249902698347953 +0.0005086876203932932 +0.0005423354567965637 +0.0005842911669932566 +0.0006351356285852949 +0.0006962976515519437 +0.0007696298077511501 +0.0008568485228896635 +0.0009608327353866498 +0.0010863386039950981 +0.0005066605800504808 +0.0005131376434315578 +0.0005260402353783484 +0.000545371566464347 +0.0005713330403583236 +0.0006046974122707627 +0.0006461742800142627 +0.0006962976450521798 +0.0007562497848516886 +0.0008282370477534401 +0.0009134233696472746 +0.0010144400252180548 +0.0011361258223436027 +0.0005829418709065876 +0.0005893319968015464 +0.000602175563981967 +0.0006213105267920687 +0.0006468942791674787 +0.0006796303065043068 +0.0007204735859262678 +0.0007696297935933324 +0.000828237040207011 +0.0008982596085298825 +0.0009809446981242143 +0.001078536603974312 +0.0011955395521931493 +0.0006751683106577707 +0.0006814022025083713 +0.0006940136987325153 +0.0007127468592752212 +0.0007376592078288649 +0.0007696115734521831 +0.0008092088860698769 +0.0008568484994911289 +0.0009134193091873554 +0.0009809446894139618 +0.0010602858463536805 +0.0011534581439836525 +0.001264469969696728 +0.0007872173910351167 +0.0007931026839936379 +0.0008051524865327179 +0.0008231146077929216 +0.0008468688217302709 +0.0008774263703055795 +0.0009154602524282462 +0.0009608327014296602 +0.0010144399982604023 +0.001078536584450257 +0.0011534581337914233 +0.0012403328109602588 +0.0013436215871286147 +0.0009245598256627369 +0.0009296728526897739 +0.0009409260443770338 +0.000957770294888091 +0.000979877249320496 +0.0010084344051469324 +0.0010441150535897784 +0.0010863425226183313 +0.0011361257817617092 +0.0011955395200889966 +0.001264469947089404 +0.001343621575187939 +0.0014377105850236697 +0.00025554397819971893 +0.0002614369784785983 +0.00027340917112462907 +0.00029181955135231154 +0.00031720868442525066 +0.0003503417648630522 +0.00039211765413351763 +0.0004437195399332783 +0.0005066606010879185 +0.0005829418962952915 +0.0006751683408533657 +0.0007872174288605626 +0.0009245598714467322 +0.0002614369804455426 +0.00026737209239671304 +0.0002794283409792343 +0.0002979368718436003 +0.0003234517929539712 +0.00035668307413404466 +0.00039854135505418487 +0.00045020044132436957 +0.0005131376646786768 +0.0005893320223555258 +0.0006814022338557736 +0.000793102721918024 +0.0009296728994563172 +0.00027340917514143685 +0.00027942834297184523 +0.0002916080510178765 +0.0003102853729777683 +0.0003359610450484669 +0.000369337890878956 +0.0004113635434846949 +0.0004630924908289926 +0.0005260402565239838 +0.0006021755897410473 +0.0006940137296232348 +0.0008051471508676765 +0.0009409260906989806 +0.00029181955750727046 +0.0002979368759585902 +0.0003102844128526199 +0.00032914394824544945 +0.0003550013666817742 +0.00038856032252707214 +0.0004307157052187501 +0.0004824990447048841 +0.0005453715882421914 +0.0006213105529709579 +0.0007127468909236456 +0.0008231146465141806 +0.0009577703419003037 +0.0003172086930189279 +0.00032345179952546096 +0.00033596104949070533 +0.00035500136898077234 +0.0003810189150777672 +0.00041470748088737083 +0.0004569377420938907 +0.0005086876386044081 +0.0005713330625340299 +0.0006468943055809819 +0.000737659240071313 +0.0008468688606100363 +0.0009798705017229465 +0.00035034177599292026 +0.00035668308319369174 +0.00036933789791146417 +0.0003885586482410585 +0.0004147074833804636 +0.0004484900483167996 +0.0004907330051239383 +0.0005423354753802966 +0.0006046974347749 +0.000679630333684456 +0.0007696116061399063 +0.0008774264101227474 +0.0010084344528568572 +0.00039211766831316624 +0.00039854136716344004 +0.00041136355325940854 +0.00043071571280492806 +0.00045693774727483845 +0.0004907330078474103 +0.0005329167785989504 +0.0005842939543210074 +0.000646174303206767 +0.0007204736136044148 +0.0008092089190684736 +0.0009154602930772681 +0.0010441151028206 +0.0004437220213177963 +0.0004502004565817941 +0.0004630925037843083 +0.00048249905534650494 +0.000508687646912428 +0.0005423354811161792 +0.0005842939573530491 +0.0006351385123887145 +0.0006962976689056799 +0.0007696298224673527 +0.0008568535428773804 +0.0009608327427984326 +0.001086342573314008 +0.0005066606227733068 +0.0005131376840064846 +0.0005260402731826867 +0.0005453716027140578 +0.0005713330744872906 +0.0006046974440166489 +0.0006461743096721135 +0.0006962976722973991 +0.0007562498105662536 +0.0008282370703352946 +0.0009134193452800063 +0.0010144400410229061 +0.0011361258338836075 +0.0005829419226507114 +0.0005893320461588839 +0.0006021756109726974 +0.0006213105717076995 +0.0006468926351785869 +0.0006796303470633658 +0.0007204736240141822 +0.0007696298298552114 +0.0008282370742731855 +0.0008982596400261725 +0.0009809447266005225 +0.0010785366296941512 +0.0011955395736091895 +0.0006751683723796941 +0.0006814022636193139 +0.0006940137560117824 +0.0007127469149096024 +0.0007376592613438877 +0.0007696093406887763 +0.0008092089341242358 +0.0008568485466400057 +0.0009134233978581937 +0.00098094473114572 +0.0010602858849084666 +0.001153458179674718 +0.0012644700020052902 +0.0007872174685443178 +0.0007931027585012852 +0.0008051535993651462 +0.0008231146772374279 +0.0008468688880491465 +0.0008774321423720748 +0.000915460314369224 +0.0009608327605179328 +0.0010144400550899987 +0.0010785366398822292 +0.0011534523063505757 +0.0012403328607651471 +0.0013436216314894524 +0.0009245599196773361 +0.0009296729451738079 +0.0009409261324418154 +0.0009577703806272664 +0.0009798705370349474 +0.0010084344845509466 +0.001044115131444016 +0.0010863425984386891 +0.0011361258550601275 +0.0011955395903618363 +0.0012644700138022833 +0.001343621637720358 +0.0014377106451396026 +0.0002555439754017304 +0.00026143735929582486 +0.00027340916050836686 +0.00029181953658974965 +0.0003172086648707511 +0.00035034174036525315 +0.00039211762363172594 +0.00044372196661726394 +0.0005066605558207849 +0.0005829418418501042 +0.0006751682762809559 +0.0007872173481632606 +0.0009245597739678652 +0.00026143697561292116 +0.0002673720838175918 +0.00027942832849111394 +0.00029793685505655296 +0.00032345177095932426 +0.00035668304714653836 +0.00039854132167406177 +0.00045020040155132745 +0.0005131376163866427 +0.00058933196483228 +0.0006814021638548997 +0.0007931026378053466 +0.0009296727963373241 +0.0002734091682060294 +0.0002794283323096809 +0.00029160803611902444 +0.0003102843914895187 +0.0003359610207174152 +0.0003693378608849277 +0.0004113635077457338 +0.0004630924482352229 +0.0005260402058858215 +0.000602175528993351 +0.0006940136577007726 +0.0008051534800733856 +0.0009409259850202915 +0.0002918195483848853 +0.00029793686294236747 +0.0003102853577817098 +0.00032914292489758266 +0.0003550013394614695 +0.0003885586109636722 +0.0004307156661915363 +0.00048249899894739647 +0.0005453715334051545 +0.0006213104883922939 +0.0007127468141871819 +0.0008231145540054067 +0.0009577702310089416 +0.0003172086813393569 +0.00032345178355268453 +0.00033596102923035654 +0.0003550013438671856 +0.00038101888496606614 +0.00041470744480907954 +0.0004569377000878183 +0.0005086875889547954 +0.0005713330039121811 +0.000646892551116367 +0.0007376591587309524 +0.0008468687643126729 +0.00097987038617593 +0.0003503417616941212 +0.0003566830645081104 +0.00036933787436176644 +0.00038856029914786965 +0.0004147074495867513 +0.00044849000869937104 +0.0004907329589039354 +0.0005423354219726738 +0.0006046973723962933 +0.0006796341567888365 +0.0007696092366585527 +0.0008774263079312048 +0.0010084343327121219 +0.0003921176508050798 +0.00039854134487979213 +0.0004113635264776346 +0.0004307156807294059 +0.0004569377100163897 +0.0004907329641230985 +0.0005329167280975502 +0.0005842938958988779 +0.0006461742358610011 +0.0007204735359273265 +0.0008092088291048247 +0.0009154601850020283 +0.0010441149747648746 +0.00044371953644609964 +0.0004502004307900889 +0.0004630924730623087 +0.0004824990193406059 +0.0005086876048759759 +0.0005423354329647046 +0.0005842939017093637 +0.0006351384488078457 +0.0006962975963826407 +0.0007696297379624389 +0.0008568534438923665 +0.0009608326288600898 +0.0010863424370975844 +0.0005066605973778554 +0.0005131376534257361 +0.0005260402378099435 +0.0005453715611384998 +0.000571333026818966 +0.0006046973901068426 +0.0006461742482509492 +0.0006962976028824024 +0.0007562497287285779 +0.0008282369783886674 +0.0009134232829920647 +0.0010144399189965369 +0.0011361256891800104 +0.0005829418923566491 +0.0005893320104481528 +0.0006021755696808999 +0.0006213105242986931 +0.0006468942681404988 +0.0006796302862002472 +0.0007204735558762137 +0.0007696297521202552 +0.0008282369859350991 +0.0008982595397879173 +0.0009809446127979416 +0.0010785364958916526 +0.0011955317480139612 +0.0006751683366968439 +0.0006814022208926425 +0.0006940137082708039 +0.0007127468601529883 +0.0007376591994969286 +0.0007696115554373947 +0.0008092088579571223 +0.0008568534672911511 +0.0009134232994747412 +0.0009809446215082022 +0.0010602857622062508 +0.0011534521603247712 +0.0012644698390301854 +0.0007872174242117394 +0.0007931027079121545 +0.0008051481701091686 +0.0008231146128823014 +0.0008468688168959712 +0.0008774263549362538 +0.0009154602258051484 +0.0009608326628170756 +0.0010144399459541883 +0.0010785365154157075 +0.0011534580491599855 +0.0012403327022590025 +0.0013436214585384441 +0.0009245598663951997 +0.0009296728839486258 +0.0009409260650147148 +0.0009577703052238527 +0.0009798704538465414 +0.0010084343934495007 +0.0010441150296177301 +0.0010863385184744245 +0.0011361257297619048 +0.001195539452135752 +0.0012644698616375188 +0.0013436214704791204 +0.001437710453818139 +0.001100085220184913 +0.0011049503511397676 +0.0011160625095137482 +0.00113336067717494 +0.0011556949806318685 +0.0011845875787372358 +0.001220564126250314 +0.0012635497621528275 +0.0013137441294723438 +0.001373544655288405 +0.0014430728645202977 +0.001522678755171657 +0.0016167409175891453 +0.0013153019804414223 +0.0013208810079489127 +0.0013336024392829912 +0.0013526631847317768 +0.0013779209482911157 +0.0014105389252735197 +0.0014512698953590753 +0.001499687535098175 +0.0015562394279764584 +0.001624210723570088 +0.0017030204456008984 +0.001792922097568831 +0.0018990600410229708 +0.0015588381229626569 +0.0015650837161524675 +0.001579723393757218 +0.0016016193589157188 +0.0016297331999954917 +0.001666564967910276 +0.001713053273650543 +0.001767059146633191 +0.0018316954321137505 +0.0019085687161303252 +0.0019966170855863115 +0.0020989237835101334 +0.002219828707834206 +0.0018356221952321586 +0.0018425047304825707 +0.0018582594751317704 +0.0018830623334545867 +0.0019160536478598559 +0.0019574321567538524 +0.0020089422479527014 +0.0020717116097789825 +0.0021438849918432854 +0.0022313058751204005 +0.002331941106538453 +0.002447785020464529 +0.0025837447479969316 +0.002149730285121642 +0.0021576739915961122 +0.0021760608125777608 +0.0022043962499328626 +0.0022408004720719773 +0.0022881852908179447 +0.0023468492267110803 +0.002417104010733226 +0.0025008774413944 +0.002598199388909369 +0.002715325190580225 +0.0028436780992893073 +0.0030037364135679437 +0.0025091475616478075 +0.0025181343816277767 +0.0025386140318908765 +0.002569034573806416 +0.002610732920719713 +0.002666326863858715 +0.0027342215713487827 +0.002811011585830343 +0.002908313763388975 +0.003021429495723613 +0.0031500391137091297 +0.003304576565902991 +0.003478900597814698 +0.0029203447339348834 +0.0029309921513498626 +0.002955311531708778 +0.002991200857244771 +0.0030373497374741316 +0.003095218369259928 +0.00317546674724703 +0.003269452051476616 +0.0033745435563407923 +0.0035023610043599033 +0.003657514395306869 +0.003827254454763488 +0.004034230115060858 +0.003389698097831067 +0.003400828217084015 +0.003428001790168172 +0.003469423354220705 +0.0035252676656707996 +0.0035988206836983587 +0.0036874499931964636 +0.0037888973558929825 +0.003913453641758854 +0.004064687798453898 +0.004235548927204911 +0.0044382018915244455 +0.004671662777446466 +0.003934994001057787 +0.003948213908995291 +0.003980182808118196 +0.004029707455190091 +0.004093761834158959 +0.004174121393243171 +0.004275260774048081 +0.004398992129969391 +0.004537331465569369 +0.004710158452535779 +0.0049155649317188885 +0.005149296748949795 +0.0054052387212087044 +0.0045656100281841056 +0.004581153407378492 +0.004619243861123822 +0.004675551984984202 +0.0047478702213262025 +0.004842625042272794 +0.004967670828893736 +0.005109338706088373 +0.00526786088687028 +0.005456307721688201 +0.005704424158929443 +0.005985415235589233 +0.006290177964376983 +0.005305909358373219 +0.005322609770900138 +0.005360950631185272 +0.005421993934274193 +0.005507374919312974 +0.005623821533801136 +0.0057743081652176995 +0.005944390459964519 +0.006134648535986907 +0.006348769680490388 +0.00659698935902635 +0.006955829496183358 +0.007347465229884118 +0.006188344337698705 +0.006208365005909644 +0.006254024907789848 +0.006321573834038546 +0.006408324980004014 +0.006517216966840458 +0.006695278358212444 +0.00691367433276946 +0.007157665377880438 +0.007432528838550016 +0.007729422406367023 +0.008049630678734465 +0.008517785991404613 +0.007238309213990874 +0.007263952508386243 +0.007322475654065165 +0.007409018280028255 +0.0075201108984474475 +0.00765964193562652 +0.007827922566553106 +0.008021472597240375 +0.008289487076530981 +0.008654612023907578 +0.009076599766272309 +0.00952395913545395 +0.010009535434055479 +0.00840593018860105 +0.008439003864461392 +0.0085174867261915 +0.008640122592956144 +0.008797694512520531 +0.008995366707548809 +0.009233886671052403 +0.009503695024064352 +0.009805327756696893 +0.010145101274852773 +0.010572331660696469 +0.011107717674441886 +0.011709739616192413 +0.009941226540755573 +0.00997281218749122 +0.010044818545719593 +0.01015135673263479 +0.010294796488796774 +0.010500534518065792 +0.010785337351502342 +0.011107384074067528 +0.011468019702494687 +0.011970510539482308 +0.012588956572655118 +0.013245598352842475 +0.013958055722193316 +0.01166515848462064 +0.011718253290866116 +0.011839354995002943 +0.012018368462204821 +0.012248319353451739 +0.012537276096113584 +0.01288574160565192 +0.013279775232381021 +0.013720683541105014 +0.014216627425562197 +0.01486013866315664 +0.01572674442648424 +0.016667162064747918 +0.013990549294106288 +0.014036393248762775 +0.014141097716803861 +0.014295916978166784 +0.014526139817233885 +0.014846806476358772 +0.015305779951641197 +0.015824473760425447 +0.016405579405574876 +0.01705812718672321 +0.01776441101105053 +0.018537358728976803 +0.019788743497469195 +0.01682032068588058 +0.01688064953517029 +0.017017958572788622 +0.017221189665624168 +0.017482227757293318 +0.017809913505238792 +0.018205543271543865 +0.018708119085282728 +0.01946500823314396 +0.020514633481858224 +0.02165220253330899 +0.022858193327107465 +0.02427043643567004 +0.020246976302292802 +0.02034351847310531 +0.02056331647402154 +0.02088883322048157 +0.021307493613573304 +0.021832619715621 +0.02246603917482818 +0.02318278284927064 +0.024021992718190385 +0.025280368677573748 +0.027050752670965284 +0.028929926009214575 +0.030967270912785387 +0.025106560096412007 +0.025221593767003257 +0.0255627478120495 +0.02606761904741552 +0.02671734855525347 +0.02753175723035828 +0.028515845989287084 +0.029627185178813898 +0.030871594840715392 +0.03227290215561935 +0.03378572478329404 +0.035393093182702305 +0.03713577796708993 +0.03231028197504848 +0.03243736994402336 +0.03272782627722466 +0.0331571649899544 +0.03371059472327568 +0.034403511754500016 +0.03523944864679731 +0.03618555997443283 +0.0372440701746716 +0.03843384305355573 +0.03972313172046948 +0.04109197145523149 +0.042571657262013486 +0.038690785682034816 +0.03879824605063895 +0.039043930014304395 +0.03940738493009688 +0.03987368954061319 +0.04045937153914085 +0.04116686418893514 +0.0419669965202569 +0.04285910769972874 +0.04384066904415009 +0.0448829739631783 +0.04594653777984441 +0.04710291385879349 +0.0442773923448508 +0.04436557505134115 +0.044561405709357516 +0.04484236437183127 +0.045204375190708655 +0.045657072462256115 +0.046204976325102794 +0.04682303331035572 +0.04751539608695675 +0.04826440518951928 +0.04906323430928284 +0.04984513930581074 +0.050671277111515735 +0.04880296437008359 +0.048868201738673483 +0.049017839612879206 +0.049238982173861794 +0.04949623459448299 +0.04981707744686509 +0.05020512547328536 +0.05064361083882882 +0.05113350686146782 +0.05168677274943919 +0.05228293455577642 +0.05291723734832429 +0.05360477344694459 +0.052288331596353044 +0.05233657808649128 +0.05244726005217763 +0.05261012354019411 +0.05282008083276218 +0.053083838533482856 +0.05340137374324826 +0.05376147534418234 +0.05416390447768118 +0.054616803852416705 +0.05510516371610152 +0.05562567183659113 +0.05619031692141478 +0.05532147594005014 +0.05536040863265456 +0.05544978665505324 +0.05558143878325278 +0.055750562926900706 +0.055963145058784455 +0.056219705328606026 +0.05650995145296235 +0.056833681508647045 +0.05720018247585084 +0.05759340926837954 +0.058013121691597384 +0.0584686932381386 +0.05799512597474332 +0.05802583850879173 +0.05809601667372177 +0.05820020119684028 +0.05833340120340295 +0.05850086530626643 +0.058703476906217245 +0.05893140232026403 +0.05918810353115883 +0.05947512909875562 +0.05978739781134394 +0.06011780623963404 +0.06047718533355727 +0.06035163048722028 +0.0603751858623359 +0.060429023530150526 +0.06050818868841474 +0.06061024201993948 +0.06073819639756198 +0.06089260445560709 +0.061067267491061956 +0.061263048961880034 +0.06148170677469101 +0.061719413465879176 +0.06197239220080669 +0.06224717402988569 +0.062429034858621446 +0.062446266620119775 +0.06248523709637826 +0.06254318646473954 +0.06261715549847595 +0.06270996994442546 +0.0628224514726718 +0.06294939884066074 +0.06309095151543541 +0.06325049620498281 +0.06342467570028913 +0.06360682729810878 +0.06380779542316085 +0.06426023547411155 +0.06427164137587467 +0.0642974364552849 +0.06433665281426973 +0.06438556132129983 +0.06444775363548737 +0.06452237271756092 +0.06460834956807807 +0.06470298376596845 +0.06481134516489072 +0.06492695503323391 +0.0650483937596849 +0.06518066751332231 +0.06587401659356557 +0.06588062602133567 +0.0658951692198661 +0.06591725623065942 +0.06594523523448617 +0.06598016825417434 +0.06602236160260862 +0.0660712642490614 +0.06612425765599284 +0.06618433015149867 +0.06624849820228722 +0.06631910828765467 +0.06639329425642157 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.001616730473589266 +0.0015226787665383686 +0.0014430728822170556 +0.001373544678632756 +0.0013137441583744502 +0.0012635497952558836 +0.0012205641629495201 +0.0011845876212043134 +0.0011556950257189242 +0.001133360727488761 +0.0011160542789237183 +0.0011049504077149273 +0.0011000852811296183 +0.0018990600465863068 +0.0017929221128329808 +0.0017030204689442267 +0.0016242107536533449 +0.0015562394652219968 +0.0014996875789691046 +0.0014512699432949047 +0.0014105389787046766 +0.0013779097846976717 +0.0013526632493596283 +0.0013336132196039034 +0.0013208810822058006 +0.0013152912153005026 +0.0022198287149652936 +0.002098923802727846 +0.0019966008363786615 +0.0019085687568833063 +0.0018316954795975359 +0.0017670592048451151 +0.0017130678139091078 +0.0016665502064891111 +0.0016297332744214749 +0.0016016194417107594 +0.0015797092637156718 +0.0015650838112613316 +0.0015588382244871284 +0.0025837447574682134 +0.0024477660396552826 +0.002331941145774985 +0.002231305926904661 +0.002143885054813582 +0.0020717116823863245 +0.0020089423292491636 +0.0019574387498614053 +0.001916053747751474 +0.0018830666542018588 +0.0018582595881760674 +0.0018425048496257634 +0.0018356223232444812 +0.003003736425652875 +0.002843678135074768 +0.00271532524284745 +0.0025981994572025924 +0.002500877523256937 +0.002417104104267769 +0.0023468493301854413 +0.0022881854098575735 +0.0022408005980615363 +0.0022043963898282217 +0.002176060961038969 +0.0021576741483017897 +0.002149729737176121 +0.0034789006138909234 +0.003304576609849426 +0.0031500391872753023 +0.003021429582365582 +0.0029083138748845563 +0.002811011702067604 +0.0027342217084206197 +0.0026663270214099173 +0.002610733085881634 +0.002569034756461395 +0.0025386142186873224 +0.00251813458399699 +0.0025091477788469706 +0.004034230137357148 +0.003827296021783964 +0.0036575144853998806 +0.0035023611231819636 +0.0033745436898585017 +0.003269452214452289 +0.00317546693929033 +0.0030952185543708308 +0.0030373499459617074 +0.0029912010884661218 +0.0029553179471887106 +0.0029309924254853617 +0.002920345028051811 +0.00467166280644229 +0.004438149572407376 +0.004235549043739312 +0.004064648385287221 +0.003913453823752369 +0.0037888975665138582 +0.0036874502274940857 +0.003598820952661099 +0.003525267968461921 +0.0034694236589826507 +0.0034280021236887045 +0.003400819407348524 +0.0033896984483596277 +0.005405238760621405 +0.005149296849527707 +0.004915565099670662 +0.004710158657981689 +0.004537331696838997 +0.004398992411191278 +0.004275261105049937 +0.00417409780429938 +0.004093762212721804 +0.004029686717042695 +0.003980204160440695 +0.003948207927835772 +0.003934994476895759 +0.006290178010498661 +0.005985415374378486 +0.0057044243905455365 +0.00545630800017124 +0.005267861189792761 +0.0051093862850516425 +0.004967629928385646 +0.004842625531591987 +0.004747843805809916 +0.004675561633275992 +0.004619207606686586 +0.004581144766728843 +0.004565640787146868 +0.007347308575857046 +0.006955829700976924 +0.006596989685538567 +0.006348850056616645 +0.006134648953125966 +0.005944390968015727 +0.0057743087626795295 +0.005623849888972215 +0.005507327117947307 +0.0054220438753981364 +0.005360940655432103 +0.00532262030559079 +0.005305856817112153 +0.008517786102738182 +0.008049630943321102 +0.007729422748970815 +0.007432529317633148 +0.0071576659922382635 +0.006913675080801924 +0.0066952792375309786 +0.006517203814697389 +0.006408297539183286 +0.00632151740314557 +0.006254040326032877 +0.006208322230533196 +0.006188374717904047 +0.010009535545759063 +0.009523959471103486 +0.009076600325677439 +0.008654612805880531 +0.008289487869170149 +0.008021473374623464 +0.007828022816180051 +0.007659602265540185 +0.007520153500309705 +0.007409061636758869 +0.007322370574864429 +0.00726399689168458 +0.007238332333469566 +0.011709739833493679 +0.011107718136855573 +0.010572332431118062 +0.010145102058311707 +0.009805328760843618 +0.009503696245907363 +0.00923392048083295 +0.00899533522177525 +0.008797595043865595 +0.008640193211752883 +0.008517419609343274 +0.008438879077574735 +0.008405900676357348 +0.013958055940043956 +0.013246121225697837 +0.012589361934335894 +0.011970512061622503 +0.011468021093647135 +0.011107342461199973 +0.010785472816897932 +0.010500536779779784 +0.010294798577281402 +0.010151393067462338 +0.010044751429192237 +0.009972849538431396 +0.009941229128839817 +0.01666640809050764 +0.01572674542457901 +0.01486014032519722 +0.014216628949848494 +0.013720685493909306 +0.013279594251375712 +0.012885357075822676 +0.012537343574281299 +0.012248322941628973 +0.012018438944759525 +0.011838919925615699 +0.011718190211736996 +0.01166475539979511 +0.019788744119078744 +0.01853735995993489 +0.017764412675445086 +0.01705812951114317 +0.01640558238260413 +0.015824663580879927 +0.015305497161832628 +0.014846909260436829 +0.014525591914116918 +0.014295787916095823 +0.014141268126238202 +0.014036059103951325 +0.013990758370471932 +0.02427043729285898 +0.02285819519521245 +0.021652205642781707 +0.020515690030637475 +0.019465182091358578 +0.018707664965788046 +0.01820602598333454 +0.017809428759514426 +0.017481933829518865 +0.01722099309290298 +0.01701786272926452 +0.016880347039401392 +0.016820607623252003 +0.030967272044303586 +0.028929929403121127 +0.02705284084047876 +0.02528037656374939 +0.024022927256800473 +0.02318313710179307 +0.022466047117178783 +0.02183189788890355 +0.021307876274157075 +0.02088827738376304 +0.020563328802249935 +0.02034316342883271 +0.02024718386642633 +0.03713577909999603 +0.035393096580574435 +0.03378781256196485 +0.03227291004822197 +0.03087221588868778 +0.029626566831321356 +0.028517156662579105 +0.027531442122969547 +0.026718380935618073 +0.026066610374928734 +0.025562770186354902 +0.025221268470574282 +0.02510578142246221 +0.04257165839619858 +0.04108928012352665 +0.03972313737918201 +0.03843385095118934 +0.03724377478762835 +0.036186518352052346 +0.03523946307201201 +0.034404523152602826 +0.033709668306842744 +0.03315792417738013 +0.03272888937420015 +0.03243669516861629 +0.03230890480654115 +0.04710291490669806 +0.045946540921576455 +0.04488037150210671 +0.04384067675674143 +0.04285881941235141 +0.04196763959360577 +0.04116785094120031 +0.040460051344272406 +0.039875059980394444 +0.039406376215722634 +0.0390425648555169 +0.03879687242067568 +0.03869081157381651 +0.050673172462544096 +0.04984514198859382 +0.049063239262465044 +0.048266079165224886 +0.04751625153500341 +0.046823008975560396 +0.04620439128684583 +0.045657087708162125 +0.045205016206648366 +0.04484301659240063 +0.04456014560193292 +0.04436457548874442 +0.04427707530618379 +0.05360477434242138 +0.0529172400328206 +0.05228293902085914 +0.05168677897947841 +0.05113351483525785 +0.05064362052825914 +0.050205647405417414 +0.04981604560894761 +0.04949417488653879 +0.04923750059540313 +0.049017859178521694 +0.048867306400032104 +0.04880206715874608 +0.056188305600205456 +0.05562567452261536 +0.055105168183363876 +0.05461681008550955 +0.054164875112771745 +0.05376098818153 +0.053400874541971496 +0.05308515765221204 +0.05282036163844137 +0.052610950297466555 +0.05244673124015552 +0.05233687237151779 +0.052288075740187366 +0.05846869413466436 +0.0580131243786755 +0.05759341373720057 +0.057198687392657745 +0.05683320813560249 +0.056511203341887424 +0.05622073789284601 +0.05596211316268225 +0.055751376146445326 +0.055581995345514404 +0.0554484381731521 +0.05536125339792176 +0.05532094383403928 +0.06047718623057617 +0.060117808928101944 +0.05978740228211894 +0.059475135336177154 +0.0591890742598761 +0.058929921327968295 +0.05870246712970267 +0.058500878323867425 +0.05833261725084511 +0.05820129810092328 +0.058096034303491834 +0.05802503189802269 +0.05799431768102544 +0.06224717492730198 +0.06197239489025661 +0.061719417938152915 +0.061481713013959015 +0.06126353834351369 +0.061066780271282595 +0.06089236052077932 +0.060737425696860796 +0.06060972420824216 +0.060508475052293224 +0.06042904116206589 +0.060375755391424556 +0.06035256316717113 +0.06380779632085481 +0.06360682998828912 +0.06342468017357804 +0.06325050244534224 +0.06309216294291406 +0.06295015393416799 +0.0628211862622059 +0.06271102793385497 +0.06261690389979276 +0.06254316269937514 +0.06248580117520311 +0.062446560905692096 +0.06242877900612676 +0.06518268076316439 +0.06504839645081975 +0.06492695950794126 +0.06481135140704232 +0.06470226961748894 +0.0646083592710323 +0.0645236973313846 +0.0644477666575424 +0.06438477733982291 +0.06433666896655345 +0.06429745408719284 +0.06427055954204854 +0.06425895821975802 +0.06639329515477722 +0.06631911097954059 +0.06624850267801818 +0.06618433639487219 +0.0661235434837618 +0.06607006391592125 +0.06602262831982776 +0.06598018127836316 +0.06594578229372147 +0.06591619151192235 +0.0658946403962835 +0.06588119555385816 +0.06587348448770844 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.001100085287128832 +0.0011049504256705396 +0.0011160543091111152 +0.0011333627572846156 +0.0011556950818604676 +0.0011845876936445875 +0.0012205642473660416 +0.0012635498979630443 +0.0013137442812767512 +0.0013735448197257478 +0.0014430730459738172 +0.0015226789568130136 +0.0016167306937092294 +0.0013152912230567184 +0.0013208811054250347 +0.001333613258131464 +0.0013526633050565335 +0.001377909858348956 +0.0014105390681974383 +0.0014512700514748994 +0.0014996877124029988 +0.0015562396203479755 +0.0016242109315977667 +0.0017030206801631972 +0.001792922362404538 +0.0018990603407119547 +0.0015588382342346095 +0.00156508384065522 +0.0015797093143373343 +0.0016016195121436286 +0.0016297333642581325 +0.001666550325536572 +0.001713067952948219 +0.0017670515280663278 +0.0018316956741573217 +0.0019085689938763454 +0.001996601108532062 +0.002098924111147692 +0.0022198290845623896 +0.0018356223354274515 +0.0018425048861047686 +0.0018582596505094568 +0.0018830625379311963 +0.0019160538670160844 +0.001957438894274396 +0.0020089425078388553 +0.0020717118970885965 +0.002143885309469063 +0.0022313062239686272 +0.002331941489650359 +0.002447785469151383 +0.0025837452405648147 +0.0021497297530766826 +0.002157674195919222 +0.0021760610422495033 +0.0022043965066169888 +0.0022408007471558505 +0.0022881856023621015 +0.0023468596944862387 +0.0024171043780503807 +0.002500877850803578 +0.002598199844641057 +0.00271532569564344 +0.002843678693953374 +0.003003737034063336 +0.0025091477992513953 +0.002518134645108453 +0.0025386143201963623 +0.002569034907892104 +0.002610733279913104 +0.0026663272742499847 +0.002734222004237687 +0.0028110120394623343 +0.002908314317097597 +0.003021430069415088 +0.0031500398185084393 +0.003304546685574816 +0.0034789014145474033 +0.002920346293991876 +0.00293099250784212 +0.0029553119216621277 +0.0029912012790623255 +0.0030373501894112643 +0.0030952188495547814 +0.0031754673509949466 +0.0032694526842253387 +0.0033745442155613836 +0.0035023617860557663 +0.003657515252310804 +0.003827255436386273 +0.004034231237851994 +0.0033896984809954596 +0.003400819505105094 +0.0034280023031204613 +0.0034694239089893978 +0.003525268320239269 +0.003598821379276687 +0.003687450726987737 +0.0037888981700822818 +0.003913454535939471 +0.004064649263835319 +0.004235550029114125 +0.004438150735664479 +0.0046716642267913815 +0.0039349945210449405 +0.003948208060088722 +0.003980204400593555 +0.004029702493387888 +0.004093762650651281 +0.004174098335475584 +0.004275261807395082 +0.004398993213116364 +0.00453733259718572 +0.004710159790650228 +0.004915566511794732 +0.005149298371447102 +0.00540524067885933 +0.004565643353923764 +0.004581144957254205 +0.004619207923291967 +0.0046755620745234 +0.0047478443698304035 +0.004842591631767362 +0.004967630846075594 +0.005109387333182457 +0.005267862363919261 +0.005456309528473129 +0.0057044263285946145 +0.005985417463807403 +0.006290180243160788 +0.00530585688974181 +0.005322620523176856 +0.0053609410210193435 +0.005422044470126681 +0.0055073278782251335 +0.005623850962948216 +0.00577431002105714 +0.005944392405557202 +0.006134650563904318 +0.00634885183386984 +0.006596992406421194 +0.006955832770750151 +0.007347311856732925 +0.006188374817455977 +0.006208322528778521 +0.0062540408217086054 +0.006321518094108791 +0.0064082984226564235 +0.0065172048869477535 +0.006695281084158561 +0.006913677190897117 +0.0071576683569318685 +0.007432531927723792 +0.007729425593897412 +0.008049634894566561 +0.008517791445513685 +0.00723833247951995 +0.007263997329245815 +0.007322404059430916 +0.007409016980605367 +0.007520154796784361 +0.0076596038391101 +0.007828024660630924 +0.008021475561731625 +0.008289490911670732 +0.008654617053804766 +0.00907660495678051 +0.009523964467434216 +0.01000954088783206 +0.008405900892179036 +0.008438879724167663 +0.008517474064211843 +0.008640194860808017 +0.00879759715262518 +0.008995337781444063 +0.00923392348162094 +0.009503699675655453 +0.009805332605969993 +0.010145106303657203 +0.010572338792445358 +0.011107725001057759 +0.011709750194820281 +0.009941229366027014 +0.00997285024904606 +0.010044752610383009 +0.010151394714547448 +0.010294800956509646 +0.010500540294035217 +0.010785476936853704 +0.01110734717060741 +0.01146802640970575 +0.011970520291838892 +0.012589370909786804 +0.01324613091211632 +0.013958066300698197 +0.011664755859335435 +0.01171812957249039 +0.011838922214282557 +0.012018442136205502 +0.01224832702328243 +0.012537348530094626 +0.012885624584084413 +0.013279600893939376 +0.013720357424943026 +0.0142166371762701 +0.01486015399061143 +0.015726760174281183 +0.016666423867593476 +0.013990758829577194 +0.014036060479443668 +0.014141373400684798 +0.014295791104637712 +0.014525824569975945 +0.014846916802390985 +0.015305506005162662 +0.015824673691580957 +0.016405593720832265 +0.017058142035246967 +0.017764426336755852 +0.01853737811765355 +0.01978877355838678 +0.016820639785669944 +0.016880349132543073 +0.01701786620877406 +0.017220997945329792 +0.017481940036052697 +0.017809436296245054 +0.018205636740957924 +0.018707677408104428 +0.019465203239787537 +0.02051571339122084 +0.021652231127171975 +0.0228582227079822 +0.024270477818901372 +0.02024718516896405 +0.020343343114381705 +0.020563335289930144 +0.02088828643158344 +0.021307887847494735 +0.021831911943433525 +0.02246606359922368 +0.023183155947117305 +0.024022956359836548 +0.02528041894181667 +0.027052887075571883 +0.028929979318554778 +0.030967325460800162 +0.02510578321442097 +0.02522127554791108 +0.02556278195182638 +0.026067365866953865 +0.026718401925250854 +0.02753146761373604 +0.02851718655769238 +0.02962660101517526 +0.03087225423752699 +0.032272952415162565 +0.03378785878826143 +0.03539314649377061 +0.03713583251400811 +0.03230890716723489 +0.032436702241868814 +0.03272890113311828 +0.033157940577565055 +0.033709689286081465 +0.03440454863175928 +0.035239492954846276 +0.03618655252602548 +0.03724381312477633 +0.0384338933049248 +0.0397231835974771 +0.04108933003179142 +0.042571711808842935 +0.038690813933200785 +0.03879687948980314 +0.03904257660788543 +0.03940639260825991 +0.03987508095050031 +0.04046007681320715 +0.041167880813480176 +0.04196767375734748 +0.042858856815821224 +0.043840718083963816 +0.04488041415408023 +0.04594658698119685 +0.0471029642073844 +0.044277077607845695 +0.04436458238501658 +0.04456015644526238 +0.04484303171606903 +0.0452041641035151 +0.045657111207064546 +0.04620441885168241 +0.04682304050163597 +0.047516286904843226 +0.04826444911293872 +0.04906327965217486 +0.04984518128770763 +0.05067321452230795 +0.04880206921961396 +0.048867312574769485 +0.049017869444225065 +0.04923751491371743 +0.04949493474431628 +0.04981606565423629 +0.050205670917882354 +0.05064364741821859 +0.051133545004977424 +0.051686812317221595 +0.052282975406471664 +0.05291727932920984 +0.05360481640426316 +0.052288077596251044 +0.05233687793292771 +0.05244632402629628 +0.0526109631937236 +0.05282037813714114 +0.05308517769211033 +0.05340089804842429 +0.053761015067838945 +0.05416490527945785 +0.054616843421109625 +0.05510520456531582 +0.0556274836985545 +0.05618834766120391 +0.05532094568958317 +0.055361258957698216 +0.05544844741655439 +0.05558200823830985 +0.055751392640913944 +0.055962133197877 +0.056220761394361364 +0.05651123022324021 +0.056833238297625606 +0.057198720724107865 +0.057593450113155 +0.0580131636676036 +0.0584687361921406 +0.05799431953590034 +0.05802528779438067 +0.05809604354379369 +0.05820131098961687 +0.058332633740325504 +0.058500898353322346 +0.058702490625387904 +0.05893115880113963 +0.059189104417817384 +0.05947516866411092 +0.05978743865761096 +0.0601178482176206 +0.06047722829065559 +0.060352565021843906 +0.06037576094843502 +0.06042905040108759 +0.060508487939218675 +0.060609740695729705 +0.060737445724256905 +0.060892384014395735 +0.06106680714481551 +0.0612635684982719 +0.061481746339191 +0.061719454311126264 +0.06197243417821195 +0.062247216986228815 +0.062428780860318674 +0.06244656646153968 +0.062485810412251486 +0.06254317558371776 +0.06261692038421685 +0.06271104795778142 +0.06282120975216811 +0.0629501808039747 +0.063092193092126 +0.06325053576522285 +0.06342471654202528 +0.06360686927228239 +0.06380783837657561 +0.06425896007358316 +0.06427056509658377 +0.06429746332208601 +0.0643366818480648 +0.0643847938206198 +0.06444778667734 +0.06452372081849556 +0.06460838613800943 +0.06470229976600143 +0.06481138472675574 +0.06492699587698167 +0.06504843573624759 +0.06518272282124433 +0.06587348634135039 +0.06588120110799016 +0.06589464963053752 +0.06591620439258306 +0.0659457987736103 +0.06598020129725445 +0.0660226518044998 +0.0660700907804943 +0.06612357363013407 +0.06618436971283254 +0.06624853904574504 +0.06631915026417956 +0.06639333721284729 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.001616741149551753 +0.0015226789785957593 +0.0014430730798872299 +0.0013735448644620087 +0.0013137443366636745 +0.0012635499614005036 +0.001220564317695028 +0.0011845877750269085 +0.0011556951682636088 +0.0011333608679936881 +0.001116062693415209 +0.001104950534089066 +0.0011000854039209939 +0.001899060351373313 +0.0017929223916562037 +0.0017030207248974808 +0.0016242109892481967 +0.0015562396917239369 +0.001499687796475617 +0.0014512701433373142 +0.001410539170590927 +0.001377921197475715 +0.001352663428906925 +0.0013336026771048727 +0.0013208812477281682 +0.0013152913761756535 +0.002219829098228139 +0.0020989405642668772 +0.0019966174470226502 +0.0019085690719738248 +0.0018316957651534696 +0.0017670594907063639 +0.0017130680727965029 +0.0016665652972365063 +0.0016297335068853154 +0.0016016196708089527 +0.0015797094885392643 +0.0015650840229183057 +0.0015588384287923242 +0.002583745258715214 +0.0024477855203024128 +0.002331941564841797 +0.002231286140521077 +0.0021438854301429862 +0.0020717120362305705 +0.0020089426636323536 +0.0019574325591888643 +0.0019160540584446306 +0.0018830627506759424 +0.001858259867143349 +0.0018425051144263438 +0.0018356225807454986 +0.0030037370572224458 +0.002843678762531288 +0.0027153257958063954 +0.0025981999755156486 +0.002500878007681909 +0.0024171045572964843 +0.002346849753584343 +0.0022881858304851996 +0.0022408009885975287 +0.0022043967747072293 +0.00217606132675502 +0.00215767449622415 +0.0021497307917804744 +0.0034789014453553016 +0.003304577373515341 +0.0031500399594878736 +0.003021430235452572 +0.002908314530763577 +0.0028110122622150833 +0.002734222266917039 +0.0026663275761752364 +0.0026107335964232355 +0.0025690352579252843 +0.0025386146781661133 +0.002518135032921249 +0.0025091482154837533 +0.0040342312805798156 +0.0038272555515768453 +0.003657561802742084 +0.0035023620137619267 +0.0033745444714297895 +0.0032694529965458306 +0.003175467719019561 +0.0030952192042944136 +0.003037350588949087 +0.002991201722166284 +0.0029553124067727113 +0.0029309930331851797 +0.002920345619180741 +0.004671664282357945 +0.004438203277636406 +0.00423555025243633 +0.004064689139226836 +0.0039134548847049675 +0.0037888985737082443 +0.0036874511759869056 +0.0035988218947069165 +0.003525268900496824 +0.0034694244930238193 +0.0034280029422667745 +0.0034008245346147234 +0.0033896991527353542 +0.005405240754388375 +0.0051492985641908694 +0.004915566833651244 +0.004710160184359103 +0.004537333040382213 +0.004398993752039512 +0.004275262441714757 +0.004174122905460038 +0.004093763376114944 +0.004029687863408339 +0.0039802052593416555 +0.003948208910500277 +0.003934995432923099 +0.006290180331546767 +0.0059853053864823555 +0.005704426772454958 +0.005456310062147521 +0.005267862944428681 +0.005109340830663474 +0.0049676730129401495 +0.00484262723902238 +0.004747845307568843 +0.004675563113079314 +0.00461920905913271 +0.004581146186175855 +0.004565644508730441 +0.0073473119872243114 +0.006955833163209006 +0.006596993032137119 +0.006348772405914928 +0.006134651363294131 +0.005944393379167779 +0.0057743111660107545 +0.005623852275599191 +0.0055073291461779465 +0.0054220458740534576 +0.005360942336252165 +0.005322612129935368 +0.005305965054612457 +0.008517791658869312 +0.008049635401610649 +0.0077294262504504 +0.007432532845820719 +0.0071576695342642676 +0.0069136786243988654 +0.006695282769251885 +0.00651720620114381 +0.006408299899988872 +0.006321519729333693 +0.006254042609245177 +0.006208324461986944 +0.006188376889226642 +0.010009541101896514 +0.009523965110660676 +0.00907632395171163 +0.008654618552348838 +0.008289492430655125 +0.008021477051479483 +0.00782802634797232 +0.007659605772378045 +0.007520156969692414 +0.007409065055501904 +0.007322373930197152 +0.007264000171036561 +0.007238335524579873 +0.011709750611248794 +0.011107725887210141 +0.010572340268852337 +0.010145107805048662 +0.009805334530279318 +0.009503702017149758 +0.009233926232768759 +0.008995340932748359 +0.008797600693883932 +0.008640198779251736 +0.008517425073613014 +0.008438883930553694 +0.008405905398914133 +0.01395806671817983 +0.013245609946864639 +0.012588968725432617 +0.01197052320881114 +0.011468029075658435 +0.011107350392059635 +0.010785480721141905 +0.010500544628300176 +0.010294804958803867 +0.010151398634609517 +0.010044756892955543 +0.009972854878689038 +0.009941234325735205 +0.016667178811484013 +0.01572676208699347 +0.014860157175684527 +0.014216640097355387 +0.013720696685197837 +0.013279605445518237 +0.012885629929494118 +0.01253735465178756 +0.0122483338995321 +0.012018449742556359 +0.011839033610240395 +0.011718200570043278 +0.0116654456556829 +0.019790182411180825 +0.01853738047661695 +0.01776442952633844 +0.01705814648967784 +0.016405599425900523 +0.01582468062988607 +0.015305514152730243 +0.014846926131250788 +0.014525833093702215 +0.014295798713309264 +0.01414138171135709 +0.01403606946186966 +0.013990768450955326 +0.024270479461584702 +0.022858226287948837 +0.021652237086050817 +0.020514669504588513 +0.01946521389555053 +0.018707685957467773 +0.018206042974015485 +0.0178094456295774 +0.017481950517122292 +0.017221009536727526 +0.017017878868484885 +0.016880362814429947 +0.01682065443839759 +0.030967327629198634 +0.028929985822513066 +0.027050815379811338 +0.025280434054585056 +0.02402297104099379 +0.023183168910785052 +0.022466078819647763 +0.02183192936605788 +0.02130790741062662 +0.02088830806503657 +0.0205633589152871 +0.020343368645514132 +0.02024721251248156 +0.03713583468506188 +0.03539315300532768 +0.03378578749889223 +0.03227296754024825 +0.030872273602694036 +0.029626624553249208 +0.028517214190219412 +0.027531499241538478 +0.02671843743551192 +0.02606666604862351 +0.025562824829111205 +0.025221321881256913 +0.025105820858421557 +0.04257171398235088 +0.041089336549476364 +0.039723194441621035 +0.03843390843965671 +0.03724383250153919 +0.03618657607753437 +0.03523952059879285 +0.034404580269830155 +0.03371066975641937 +0.0331572411552101 +0.03272894401559476 +0.03243674857836937 +0.03230895678830239 +0.04710296621554669 +0.04594659300189528 +0.04488042417005091 +0.04384073286408664 +0.04285887573556864 +0.04196769731943294 +0.04116790846739647 +0.0404601084603202 +0.03987511647726663 +0.0394064318862532 +0.03904261949136953 +0.03879692582533739 +0.038690863551248636 +0.05067132178071408 +0.04984518642889302 +0.04906328914426781 +0.04826446235920751 +0.047516304808480424 +0.04682164226261792 +0.046204444385421324 +0.045657140423753434 +0.04520506835054707 +0.04484306797352299 +0.04456019603191892 +0.04436462760891411 +0.04427712603393179 +0.053604818120321404 +0.05291728447367842 +0.05228298396318888 +0.05168682425623782 +0.05113356028565127 +0.05064366598667971 +0.05020569270987855 +0.04981609058996796 +0.04949496273373219 +0.0492375492566915 +0.04901790693909626 +0.0488673530848512 +0.048802112596770544 +0.05619036159564245 +0.05562571896397178 +0.05510521312621064 +0.05461685536597695 +0.05416492056665503 +0.053761033643166395 +0.053400919845453074 +0.05308259042428103 +0.05282040613069324 +0.05261099413876463 +0.052446774270038896 +0.05233691443238716 +0.052288116678025166 +0.0584687379102082 +0.05801316881701776 +0.05759345867703335 +0.05720023399203927 +0.05683325358961693 +0.05651124880341307 +0.05622078319597948 +0.05596215814253354 +0.055751420638022305 +0.05558203918611442 +0.05544848120238422 +0.055361295458328574 +0.05532098477170771 +0.060477230009668856 +0.06011785336969693 +0.059787447225235914 +0.05947518061727509 +0.05918911971400515 +0.05893245127308039 +0.05870251242962072 +0.05850092329976609 +0.0583326617384011 +0.058201341937519316 +0.058096077328828495 +0.05802507395475719 +0.057994358615369 +0.06224721870600623 +0.06197243933217226 +0.06171946288162459 +0.06148175829589201 +0.06126358379832244 +0.061066825733202504 +0.06089240582391293 +0.060737470675808904 +0.060609768698705935 +0.06050851889170899 +0.06042908419023404 +0.06037579745104848 +0.06035252056911003 +0.0638078400968825 +0.06360687442764404 +0.0634247251144687 +0.0632505477240148 +0.06309220839431194 +0.06295019939543037 +0.06282123156452427 +0.06271107291185407 +0.06261694838923322 +0.06254378687749922 +0.062485844202370626 +0.062446602964468606 +0.062428819942843654 +0.06518071219047844 +0.065048440893438 +0.06492700445214215 +0.06481139668898371 +0.06470231507204492 +0.06460840473238794 +0.06452268472857745 +0.06444781163232195 +0.06438482182599271 +0.06433671280169947 +0.06429749711121512 +0.06427060159785215 +0.06425891565648098 +0.06639333893442481 +0.06631915542280525 +0.06624854762286722 +0.06618438167740259 +0.06612358893880375 +0.06607131941512552 +0.06602267362233094 +0.06598022625632294 +0.06594582678297214 +0.06591623535007317 +0.06589468342329334 +0.06588123761266773 +0.06587352542476209 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0011000854058060322 +0.0011049505397309756 +0.0011160627029004897 +0.001133362867556108 +0.0011556951859040818 +0.0011845877977886754 +0.0012205643442199027 +0.0012635499936725584 +0.00131374437528133 +0.0013735449087954378 +0.0014430731313419395 +0.001522679038382767 +0.0016167412187164444 +0.0013152913786127676 +0.001320881255023983 +0.0013336026892108172 +0.0013526634464076867 +0.001377921220617932 +0.0014105391987108277 +0.0014512701773290106 +0.0014996878384024492 +0.0015562397404667314 +0.0016242110451608709 +0.0017030303050132598 +0.0017929224700751472 +0.0018990604437917862 +0.0015588384318551212 +0.0015650840321542842 +0.0015797095044453114 +0.0016016165205186919 +0.0016297294887049542 +0.0016665653346428183 +0.0017130681164845743 +0.0017670595454758267 +0.0018316958262869232 +0.0019085691464404168 +0.001996617532536943 +0.002098940661176597 +0.0022198292143608173 +0.001835622584573562 +0.0018425051258885673 +0.0018582598867293886 +0.0018830627800429586 +0.0019160540959192716 +0.0019574391091988948 +0.002008934675725588 +0.002071712103693086 +0.0021438855101593704 +0.00223128623386301 +0.0023319416728923435 +0.002447785652899297 +0.0025837454105110567 +0.0021497300805536517 +0.002157674511186224 +0.0021760613522725284 +0.002204396811403927 +0.002240801035445087 +0.002288177220204392 +0.0023468498243153935 +0.002417104643322885 +0.0025008781106017376 +0.002598200097254329 +0.0027153259380813524 +0.0028436789381389165 +0.0030037372483936718 +0.0025091482218951135 +0.0025181350521233416 +0.0025386147100616967 +0.002569035305506971 +0.0026107336573906914 +0.0026663276556211906 +0.002734222359866982 +0.002811012368229319 +0.00290831466971322 +0.0030214303884904758 +0.0031500401578303285 +0.003304613963543003 +0.0034789016969329688 +0.0029203468662648752 +0.002930993059062848 +0.002955312449760996 +0.002991201782054328 +0.00303735066544441 +0.003095219297045417 +0.0031754678483830213 +0.0032694531441552236 +0.0033745446366131296 +0.0035023622220463247 +0.0036575620437159836 +0.0038272558411296467 +0.004034231626370998 +0.003389699162989995 +0.0034008201621204973 +0.003428002998646789 +0.0034694245715795025 +0.0035252690110302827 +0.0035988220287556023 +0.0036874513329349335 +0.003788898763358055 +0.003913455108484311 +0.004064649843620009 +0.004235550562055174 +0.004438151247617287 +0.004671664728651851 +0.0039349954467954 +0.003948208952056037 +0.003980205334801108 +0.0040297034047679665 +0.004093763513718628 +0.004174099147028272 +0.004275262662401612 +0.004398994004015814 +0.004537333323283999 +0.0047101605402597065 +0.004915567277360761 +0.005149299042399645 +0.005405241357126032 +0.004565644526248077 +0.004581146246041649 +0.004619209158614639 +0.004675563251725542 +0.004747845484792122 +0.004842627480878556 +0.004967631966559996 +0.005109388369857949 +0.005267863313355975 +0.0054563105423617655 +0.005704427381417682 +0.0059854001554141886 +0.006290181033081004 +0.005305965077433676 +0.005322621998706708 +0.005360942451124889 +0.0054220192732692424 +0.005507329385068079 +0.005623852613057769 +0.005774311561410943 +0.00594439383086381 +0.006134651869423666 +0.006348853015356072 +0.0065969938870771684 +0.006955834127775536 +0.007347313018122222 +0.006188376920507276 +0.006208324555699868 +0.006254042764993563 +0.0063215199464441785 +0.006408300177588721 +0.006517206538060166 +0.006695283349488593 +0.0069136792874208465 +0.00715777678809698 +0.007432533665948433 +0.007729427144366862 +0.00804963664314831 +0.008517793337645454 +0.007238335570470995 +0.007264000308524545 +0.0073224069160176194 +0.007409065374099009 +0.00752015737706324 +0.007659606266816145 +0.007828026927525081 +0.008021477738700065 +0.008289493386652125 +0.008654619887107109 +0.009076325406872657 +0.009523966680579045 +0.010009542780452055 +0.008405905466728378 +0.008438884133722423 +0.00851742544523808 +0.008640199297408365 +0.008797601356486282 +0.00899534173703279 +0.009233927175659146 +0.009503703094825509 +0.009805335738472885 +0.010145109138996765 +0.010572342267672081 +0.011107728044040371 +0.01170975386692515 +0.009941234400262821 +0.00997285510197432 +0.010044757264102549 +0.010151324964421594 +0.0102948057063913 +0.010500545732529353 +0.010785296444894683 +0.011107351871822614 +0.01146803074603974 +0.011970525794862484 +0.012589375817835296 +0.013245612990480382 +0.013958069973644953 +0.011665445800076689 +0.011718201002673777 +0.0118389312424448 +0.012018450745354192 +0.01224833518204582 +0.012537356208974794 +0.012885370056938315 +0.01327960753270652 +0.013720363507825711 +0.014216642682214174 +0.01486016146955264 +0.015726766721559964 +0.01666718376886186 +0.013990768595212736 +0.014036069894068921 +0.01414138242980811 +0.01429579971519457 +0.01452583468146943 +0.014846928501040364 +0.015305516931430696 +0.015824683806812494 +0.01640509229237594 +0.017058150424929856 +0.017764433818917118 +0.0185373861820311 +0.019790191661417465 +0.01682065465789778 +0.016880363472124973 +0.017017879961796396 +0.01722101106142912 +0.01748195246730375 +0.017809447997725377 +0.018206045751038884 +0.01870768986702101 +0.019465220540689183 +0.020515729051808866 +0.021652245093609628 +0.02285823493285339 +0.02427049219544631 +0.02024721292175748 +0.020343369871793252 +0.020563360953808774 +0.020888310907990756 +0.021307911047134157 +0.021831933782191833 +0.022466083998541365 +0.023183174832254627 +0.024022980185582694 +0.02528044737037814 +0.027052912428266802 +0.028930001506655572 +0.0309673444134223 +0.025105821421480382 +0.025221324105057258 +0.025562828525990042 +0.026067410287745514 +0.026718444030753727 +0.027531507251100658 +0.028517223583690274 +0.029626635294303538 +0.03087228565244614 +0.03227298085254655 +0.03378580202382158 +0.03539316868876543 +0.037135851468506904 +0.03230895753006618 +0.03243675080088575 +0.03272894771041453 +0.03315798500277063 +0.03371067634844207 +0.034404588275744656 +0.03523952998840467 +0.036186586815484104 +0.03724384454761774 +0.03843392174780358 +0.03972320896406866 +0.04108935223136527 +0.04257173076536576 +0.03869086429260093 +0.03879692804655795 +0.039042623184131355 +0.039406437037022166 +0.03987512306637278 +0.04046011646302221 +0.041167917853692663 +0.04196770805416776 +0.04285888748827255 +0.0438407458496884 +0.044880437571909355 +0.04594660747448502 +0.04710298170652696 +0.044277126757146686 +0.04436462977582111 +0.044560199439047626 +0.04484307272559528 +0.04520507442982647 +0.04565714780744391 +0.04620445304668585 +0.04682165216852345 +0.0475163159221887 +0.04826447398866219 +0.04906330183529078 +0.049845198777234166 +0.05067322945272325 +0.04880211324432466 +0.048867355025041526 +0.04901791016472627 +0.04923755375571003 +0.04949496791940484 +0.04981609688848358 +0.05020570009783037 +0.05064367443588832 +0.05113492867339374 +0.051686834731432124 +0.05228299539606732 +0.05291729682116347 +0.05360483133675193 +0.05228811726122667 +0.05233691617986148 +0.05244677717529097 +0.052610998190952454 +0.052820411314819724 +0.05308259672111486 +0.05340092723151598 +0.05376104209122816 +0.054164930045458005 +0.05461536433890999 +0.05510522455793888 +0.055625731310695425 +0.05619037481178976 +0.05532098535474582 +0.05536129720528953 +0.05544848410679309 +0.055582043237214496 +0.055751425820819725 +0.05596216443787767 +0.05622079058049011 +0.05651125724991733 +0.05683326306695493 +0.05720024446528361 +0.05759347010687769 +0.0580131811621584 +0.05846875112526724 +0.05799435919819699 +0.05802507570110432 +0.05809608023226327 +0.05820134598733067 +0.058332666919630835 +0.05850092959330665 +0.058702519812299986 +0.058932459718193775 +0.05918912919006026 +0.05947519108938735 +0.0597874586549343 +0.06011786571502429 +0.06047724322554454 +0.060352521151835786 +0.06037579919714032 +0.060429087093266436 +0.060508522940964496 +0.06060977387930974 +0.06073747696870231 +0.06089241320594243 +0.06106683417724981 +0.061262235043522024 +0.061481768767155255 +0.06171947431053058 +0.06197245167700852 +0.06224723192151977 +0.06242882052545734 +0.06244660471019523 +0.06248584710478293 +0.06254379092598054 +0.06261695356887444 +0.06271107920365698 +0.06282123894540549 +0.0629502078383069 +0.06309221786762444 +0.06325055819359733 +0.06342473654195348 +0.06360688677123495 +0.06380785331138987 +0.06425899973626209 +0.06427060334316638 +0.06429750001295029 +0.06433671684925406 +0.06438556933586415 +0.06444781792282796 +0.06452375001364201 +0.06460841317437555 +0.06470232454513683 +0.06481140715851215 +0.06492701587981238 +0.06504845323747882 +0.06518072540574639 +0.06587352600720281 +0.06588123935785532 +0.06589468632482744 +0.06591623939736047 +0.06594583196118799 +0.06598023254654407 +0.06602268100154965 +0.06607011781886994 +0.06612359841122453 +0.06618439214638203 +0.06624855905012483 +0.06631916776659934 +0.06639335214966903 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0016167412146555356 +0.0015226790270160533 +0.0014430731136451788 +0.001373544885451077 +0.0013137443463792232 +0.001263549960569512 +0.001220564307520702 +0.0011845877553216017 +0.001155695140817032 +0.0011333628172425407 +0.001116062650193002 +0.00110495048315582 +0.001100085344861326 +0.0018990744170542992 +0.0017929224548109918 +0.001703033348019089 +0.0016242110150776177 +0.0015562397032211884 +0.0014996877945315185 +0.001451270129393199 +0.001410539145279668 +0.0013779211604287396 +0.0013526633817798424 +0.0013336026208742584 +0.0013208811807670976 +0.0013152912987119622 +0.00221982920722972 +0.002098924225668003 +0.0019966175019222716 +0.0019085691056874477 +0.0018316957788031512 +0.0017670516361791588 +0.001713068053945113 +0.001666565262539628 +0.0016297334606872932 +0.0016016196101449331 +0.0015797094135429398 +0.0015650839370454188 +0.001558838330330652 +0.002583745401039784 +0.0024477856262075767 +0.0023319209907479137 +0.002231306364763531 +0.0021438854471890825 +0.0020717120310857597 +0.0020089426384513305 +0.001957439020725109 +0.0019160539960276684 +0.0018830626690281007 +0.001858259773685094 +0.0018425050067453813 +0.0018356224565612496 +0.0030037372363087627 +0.0028436789023534663 +0.0027153258858141354 +0.0025982000289611028 +0.002500878028739191 +0.002417104549788359 +0.0023468598600371645 +0.002288185771933267 +0.002240800909455546 +0.002204396671508576 +0.0021760612038113363 +0.0021576743544805504 +0.0021497299122761296 +0.0034789016808567494 +0.003304583315928378 +0.003150040084264166 +0.003021430301848479 +0.002908314558217634 +0.0028109817862489034 +0.002734222222795156 +0.0026663274980699998 +0.002610733492228787 +0.0025690351228520114 +0.002538614523265272 +0.002518134849754148 +0.0025091480046959716 +0.0040342316040746775 +0.003827255781020681 +0.0036575619536221558 +0.0035023621032242614 +0.0033745445030953993 +0.0032694529811795694 +0.0031754676563397286 +0.003095219111934521 +0.003037350456956845 +0.0029912015508330087 +0.002955312196619687 +0.0029309927849273695 +0.0029203465721487007 +0.004671664699656037 +0.004438151171201264 +0.0042355504455207655 +0.004064649685125829 +0.003913454926490874 +0.0037888985527372108 +0.0036874510986373474 +0.003598767213499159 +0.0035252687082392192 +0.0034694242668175767 +0.0034280026651262838 +0.0034008198353040584 +0.003389698812461438 +0.005405241317713331 +0.005149298941821692 +0.0049155671094089646 +0.004710160334813827 +0.0045373330920143685 +0.0043989937227939405 +0.004275262331399745 +0.004174098810636061 +0.004093763135155835 +0.004029702985372574 +0.003980204886687589 +0.003948208508292696 +0.003934994970957428 +0.0062901809869593105 +0.0059854182475170764 +0.005704427149801688 +0.005456310263878783 +0.005267863010433476 +0.005109388000753573 +0.004967631532334734 +0.004842592322017885 +0.004747844995459713 +0.004675562709784342 +0.004619208565908092 +0.004581145604763459 +0.004565643923644698 +0.007347312950028937 +0.0069558339229819095 +0.006596993560564964 +0.006348852690236076 +0.0061346514522845515 +0.00594439332281247 +0.005774310963949121 +0.005623851928087774 +0.005507449880956072 +0.005422045328326065 +0.005360941764807657 +0.005322621264419238 +0.005305964290390017 +0.008517793226311942 +0.008049636378561625 +0.007729426801763106 +0.007432533186865409 +0.007157669662926968 +0.00691367853938824 +0.006695282470170094 +0.006517205852283938 +0.006408299406684351 +0.006321519093148128 +0.006254041832217949 +0.006208323546909418 +0.0061883758394120384 +0.010009542668748588 +0.00952396634492937 +0.009076606924557383 +0.008654619105134157 +0.008289492594012939 +0.008021476961317112 +0.00782782730878143 +0.007659605257994642 +0.007520156243192374 +0.00740901844912338 +0.007322618445742937 +0.0072639988256160155 +0.007238333981492171 +0.011709753649624033 +0.011107727581626578 +0.010572341497250544 +0.01014510835553779 +0.009805334734326201 +0.0095037018729825 +0.009233925740050263 +0.008995340092613586 +0.00879759950857982 +0.008640197252678866 +0.00851747648318329 +0.008438881938738367 +0.00840590311501555 +0.013958069755794042 +0.013245612336382013 +0.01258937472835809 +0.011970524272722593 +0.011468029354887426 +0.01110735019079846 +0.01078548004096645 +0.010500543470815015 +0.01029480361790669 +0.010151397106573095 +0.010044755029362659 +0.009972852686125518 +0.009941231812178715 +0.01666642912964977 +0.015726765723465253 +0.014860159807511538 +0.0142166411579283 +0.013720361555008921 +0.01327960515759313 +0.012885628965758851 +0.012537353014541662 +0.012248331593868471 +0.012018446776193976 +0.011839599543409131 +0.011718134299850764 +0.011664760604253949 +0.019788783378257128 +0.018537384951071954 +0.017764432154522967 +0.017058148100509946 +0.016405600011504148 +0.01582468018625294 +0.01530551267985211 +0.01484692363303736 +0.01452583023360284 +0.014295795744823673 +0.01414070544140516 +0.014036065206842724 +0.013990763574567243 +0.02427049133825811 +0.022858233064748296 +0.021652241984136587 +0.02051734724623508 +0.019465214980279116 +0.018708831857769986 +0.018205643416423826 +0.01781042235956273 +0.01748194699805221 +0.017221005012784597 +0.017017873355682098 +0.016880356332617127 +0.01682064701178441 +0.030967343281906038 +0.028929998112746495 +0.027052906779561875 +0.02528043948420619 +0.024022972524633607 +0.023183168067528646 +0.022466076056191733 +0.021833751986364808 +0.021307900838664476 +0.020888299619182572 +0.020563348625581238 +0.020343356549089437 +0.020247198653311527 +0.03713585033560373 +0.035393165290892335 +0.033787878494372516 +0.03227297295994491 +0.03087227554727844 +0.029626623011622832 +0.028517209164433427 +0.0275314907470218 +0.026718425500723526 +0.0260673897984578 +0.02556280615168717 +0.02522129992730403 +0.02510580177801908 +0.04257172963118028 +0.04109204356306349 +0.03972320330535749 +0.038433913850171524 +0.037243834436398754 +0.036186574525790195 +0.035239515563189376 +0.03440457176630794 +0.0337097128625777 +0.03315796450976488 +0.032728925333402055 +0.03243672662148821 +0.0323089316367091 +0.0471029806586231 +0.04594660433275225 +0.04488043234535729 +0.04384073813709915 +0.042858877615534786 +0.04196769575895627 +0.04116790342327354 +0.04046009994886873 +0.0398751045277291 +0.03940641654090788 +0.039042600806592095 +0.038796903867663435 +0.038690838400818064 +0.050673228557988205 +0.04984519609445232 +0.049063296882107886 +0.048264467076469385 +0.04751630657967927 +0.04682306081138638 +0.04620443972262335 +0.04565713256153647 +0.04520418586529797 +0.04484305380566406 +0.04456017878186561 +0.04436460617700387 +0.044277101487357064 +0.053604830441275904 +0.052917294136667785 +0.05228299093098504 +0.05168682850139322 +0.05113356179161761 +0.050643664746459524 +0.05020568872629203 +0.04981608387647321 +0.04949495331391611 +0.0492375358347956 +0.04901789059908241 +0.04886733388599417 +0.04880209060917752 +0.05619037391570881 +0.05562749850663071 +0.05510744562396215 +0.05461685960740548 +0.054164922068264135 +0.05376103239821689 +0.053400915857349296 +0.05308258370663644 +0.05282039670717362 +0.05261098204315391 +0.05244634308622685 +0.052336897133646934 +0.052288096867502985 +0.05846673810872333 +0.05801317847508227 +0.057593465638056965 +0.057198736911246745 +0.056833255087261114 +0.05650876316789073 +0.05622077920392934 +0.05596215142121009 +0.05575141121131677 +0.055582027087974724 +0.05545119870080056 +0.05536127815846408 +0.055320964960837105 +0.060477242328527324 +0.06011574019335378 +0.05978745418415991 +0.05947518485196428 +0.05918912120817472 +0.05893366061438559 +0.05870250843437624 +0.05850091657570749 +0.05833265230962246 +0.05820132983803869 +0.05809606260249276 +0.058025306993705825 +0.05799433880567608 +0.062247231024102394 +0.06197244898756013 +0.06171946983825775 +0.06148176252788802 +0.06126358528947722 +0.061066824477423766 +0.06089240182526015 +0.06073746394843719 +0.06060975926674622 +0.06050850678927829 +0.06042906946135307 +0.060375780149280044 +0.060352584293105964 +0.06380785241369744 +0.06360688408105399 +0.0634247320686649 +0.06325055195323638 +0.06309220988260922 +0.06295019813687944 +0.06282122756324174 +0.06271106618207713 +0.06261693895524387 +0.06254319443370059 +0.06248582947235967 +0.06244658566216762 +0.062428800131341416 +0.0651827368594625 +0.06504845054634471 +0.06492701140510686 +0.06481140091636117 +0.06470231655810915 +0.0646084034714227 +0.0645237386300145 +0.06444780490077368 +0.06438481239067889 +0.0643367006969714 +0.06429748238104466 +0.06427333649847877 +0.0642589793433704 +0.06639335125131278 +0.06631916507471557 +0.06624855457439753 +0.06618670673587379 +0.06612359042282574 +0.06607010811447458 +0.06602266961652972 +0.0659802195223571 +0.06594581734529034 +0.06591892542571133 +0.0658946686910293 +0.06588122030891574 +0.06587350561262395 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0011000853388621128 +0.0011049504652002077 +0.001116062620005701 +0.0011333607874467295 +0.0011556950846754895 +0.0011845876828813294 +0.0012205642231041818 +0.0012635498578623522 +0.0013137442234769235 +0.0013735447443580877 +0.0014430729498884191 +0.0015226788367414107 +0.0016167409945360208 +0.0013152912909557457 +0.0013208811575478633 +0.0013336025823465858 +0.0013526633260829376 +0.0013779210867776645 +0.001410539055786909 +0.0014512700212132071 +0.0014996876610976278 +0.0015562395480952127 +0.001624210837133199 +0.0017030331368005835 +0.0017929222052394372 +0.0018990741229292258 +0.0015588383205831719 +0.0015650839076515313 +0.0015797093629212782 +0.0016016195397120653 +0.001629733370850639 +0.0016665651434924786 +0.0017130679149060031 +0.0017670593129578153 +0.0018316955842433674 +0.001908568868694412 +0.001996617229769447 +0.0020989239172481615 +0.002219828837632629 +0.0018356224443782797 +0.0018425049702663764 +0.0018582597113517064 +0.0018830667852986881 +0.0019160538767630608 +0.0019574388763121215 +0.002008942459861643 +0.002071711816383491 +0.0021438851925336027 +0.0022313060676995675 +0.0023319206468718472 +0.002447766196711736 +0.0025837449179431865 +0.002149729896375568 +0.00215767430686312 +0.0021760611226008 +0.0022043965547198087 +0.0022408007603612356 +0.00228818557942874 +0.0023468494957365363 +0.0024171042760057506 +0.0025008777011925544 +0.0025981996415226447 +0.002715325433018153 +0.0028436783434748684 +0.003003736627898311 +0.0025091479842915486 +0.0025181347886426846 +0.0025386144217562335 +0.002569034971421306 +0.002610733298197316 +0.0026663272452299358 +0.0027342219269780943 +0.002810981448853445 +0.0029083141160046026 +0.0030214298147989787 +0.003150039453031037 +0.0033046132401484078 +0.003478900880200276 +0.0029203453062086556 +0.0029309927025706127 +0.002955318222146172 +0.002991201360236807 +0.0030373502135072924 +0.0030952188167505724 +0.0031754672446351207 +0.003269452511406527 +0.003374543977392526 +0.0035023614403504708 +0.003657561186712681 +0.003827296366417867 +0.004034230503579841 +0.003389698779825607 +0.003400819737547491 +0.0034280024856945266 +0.0034694240168108336 +0.003525268356461871 +0.0035987667868826426 +0.0036874505991437083 +0.003788897949168797 +0.003913454214303779 +0.004064648806577746 +0.004235549460145963 +0.004438150007944182 +0.004671663279306961 +0.003934994926808247 +0.003948208376039752 +0.003980204646534734 +0.004029687209027631 +0.004093762697226357 +0.004174098279459865 +0.004275261629054612 +0.004398992920868864 +0.004537332191667649 +0.004710159202145303 +0.004915565697284917 +0.005149297419902319 +0.005405239399475433 +0.004565641356867842 +0.00458114541423809 +0.0046192082493027205 +0.004675562268536945 +0.004747844431439237 +0.004842626221842003 +0.0049676306146447975 +0.005109386952622776 +0.005267861836307001 +0.005456308735576922 +0.005704425211752625 +0.0059854161580881835 +0.006290178754297201 +0.005305964217760525 +0.005322621046833172 +0.005360941399220417 +0.00542204473359752 +0.00550744912067988 +0.005623850854111789 +0.005774309705571527 +0.005944391885271028 +0.006134649841506215 +0.006348850912982912 +0.006596990839682393 +0.006955830853208731 +0.007347309669153094 +0.006188375739860116 +0.006208323248664103 +0.006254041336542236 +0.0063215184021849155 +0.0064082985232112475 +0.006517204780033604 +0.006695280623542534 +0.006913676429293095 +0.007157667298233376 +0.007432530576774787 +0.0077294239568365085 +0.008049632427316213 +0.0085177878835365 +0.007238333835441787 +0.007263998388054783 +0.007322584961248639 +0.0074090631052762135 +0.0075201549467177175 +0.007659603684424775 +0.007827825464326933 +0.008021474774208974 +0.008289489551512416 +0.008654614857209959 +0.00907660229345435 +0.009523961348598722 +0.01000953732667561 +0.008405902899193877 +0.008438881292145437 +0.008517422028315522 +0.008640195603623712 +0.008797597399820275 +0.00899533753294481 +0.00923392273926231 +0.009503698443234447 +0.009805330889199881 +0.010145104110192356 +0.010572335135923299 +0.011107720717424472 +0.011709743288297545 +0.009941231574991497 +0.009972851975510856 +0.010044753848171868 +0.010151395459488002 +0.010294801238678493 +0.010500539956559635 +0.01078547592101076 +0.011107345481391103 +0.011468024038828866 +0.011970516042506318 +0.012589365752907327 +0.013245602649948009 +0.013958059395139916 +0.011664760144713703 +0.011718194939096463 +0.01183959725474707 +0.012018443584747997 +0.012248327512215055 +0.012537348058728448 +0.012885361457500775 +0.013279598515029507 +0.013720689623971086 +0.014216632931506726 +0.014860146142097559 +0.01572675097376325 +0.01666641335256411 +0.013990763115462018 +0.014036063831350415 +0.01414060016674245 +0.01429579255628182 +0.014525597577747044 +0.014846916091083318 +0.015305503836522192 +0.01582467007555203 +0.01640558867327613 +0.017058135576406206 +0.017764418493212315 +0.018537366793353504 +0.019788753938949306 +0.01682061484936699 +0.016880354239475447 +0.017017869876172664 +0.017221000160357904 +0.01748194079151844 +0.01781041482284706 +0.018206032658795262 +0.018708819415476977 +0.01946519383185048 +0.020517323885692402 +0.021652216499746323 +0.022858205551978972 +0.024270450812216012 +0.02024719735077381 +0.020343176863543123 +0.020563342137901248 +0.02088829057136239 +0.021307889265327028 +0.021833737931862524 +0.02246605957414705 +0.023183149222204946 +0.02402294342159798 +0.02528039710613931 +0.027052860544469332 +0.028929948197313236 +0.03096728986541025 +0.025105799986060176 +0.02522129284996762 +0.025562794386215892 +0.026066634306443376 +0.026718404511090938 +0.027531465256255494 +0.028517179269320552 +0.02962658882776953 +0.030872237198439633 +0.0322729305930047 +0.03378783226807633 +0.03539311537769656 +0.037135796921592246 +0.03230892927601536 +0.03243671954823607 +0.03272891357448392 +0.03315794810958016 +0.03370969188333938 +0.034404546287151686 +0.03523948568035551 +0.036186540351817835 +0.03724379609925117 +0.03843387149643665 +0.039723157087062796 +0.041091993654877416 +0.0425716762185367 +0.03869083604143379 +0.03879689679853616 +0.03904258905422375 +0.03940640014837079 +0.03987508355762343 +0.04046007447993437 +0.04116787355099427 +0.04196766159521515 +0.04285884021206536 +0.04384069680987695 +0.044880389693384315 +0.0459465582731324 +0.047102931357937305 +0.044277099185695175 +0.04436459928073173 +0.04456016793853615 +0.044843038681995843 +0.04520503796841974 +0.04565710906263423 +0.04620441215778713 +0.04682302928531098 +0.047516271209839825 +0.04826609712873649 +0.04906325649239858 +0.049845156795338956 +0.050673186498224825 +0.04880208854830964 +0.048867327711256965 +0.049017880333379386 +0.04923752151648147 +0.04949685537627207 +0.049818675956206426 +0.050205665213827716 +0.05064363785650068 +0.051133531621898196 +0.05168679516365049 +0.052282954545373135 +0.0529172548402793 +0.05360478837943443 +0.05228809501143961 +0.05233689157223717 +0.052446750300080405 +0.05261096914689732 +0.05282038020847415 +0.053082563666699965 +0.053400892350896345 +0.05376100551190826 +0.05416489190157849 +0.054616826271806015 +0.0551074092420699 +0.055625689330711055 +0.05619033185477266 +0.055320963105293365 +0.055361272598687616 +0.05545118945741698 +0.05558201419517944 +0.05575139471684831 +0.05596213138601566 +0.05622075570241444 +0.05650873628648978 +0.0568332249252383 +0.057198703579797554 +0.05759342926210317 +0.05801313918615464 +0.058466696051185714 +0.05799433695080132 +0.05802505109735154 +0.05809605336219105 +0.058201316949345105 +0.05833263582014254 +0.05850089654625287 +0.058702484938691166 +0.05893242314347027 +0.05918909105023389 +0.059475151524030954 +0.059787417808668364 +0.06011570090377453 +0.060477200268448224 +0.06035258243843333 +0.06037577459226928 +0.06042906022233138 +0.060508493902353154 +0.060609742779258964 +0.06073744392104123 +0.060892378331644036 +0.061066797603891006 +0.061263555134719164 +0.0614817292026565 +0.06171943346528501 +0.0619724096996051 +0.06224718896517617 +0.062428798277149505 +0.06244658010631989 +0.06248582023531145 +0.0625431815493581 +0.06261692247081992 +0.06271104615815115 +0.06282120407327967 +0.06295017126707304 +0.06309217973339742 +0.06325051863335619 +0.06342469570021796 +0.06360684479706104 +0.06380781035797695 +0.06425897748954527 +0.06427333094395474 +0.06429747314615179 +0.06433668781546005 +0.06438479590988216 +0.06444778488097624 +0.06452371514290386 +0.06460837660444586 +0.06470228640959695 +0.06481136759664806 +0.06492697503606693 +0.06504841126091734 +0.06518269480138268 +0.06587350375898214 +0.06588121475478373 +0.06589465945677558 +0.06591891254507593 +0.06594580086540197 +0.06598019950346612 +0.06602264613185783 +0.06607008124990184 +0.06612356027645407 +0.06618667341796991 +0.06624851820667083 +0.06631912579007704 +0.06639330919324314 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0016167409867538414 +0.0015226788149586665 +0.0014430729159750106 +0.0013735446996218366 +0.0013137441680900013 +0.0012635497944248843 +0.0012205641527751902 +0.0011845876014990047 +0.0011556949982723436 +0.0011333626767374972 +0.0011160625189990294 +0.001104950356781678 +0.0011000852220699512 +0.0018990601334414488 +0.001792922175987778 +0.0017030300257171414 +0.0016242107794827664 +0.0015562394767192553 +0.0014996875770250098 +0.0014512699293507748 +0.0014105389533934233 +0.0013779209714333343 +0.0013526632022325391 +0.001333602451388937 +0.001320881015244728 +0.0013153019828785293 +0.002219828823966889 +0.0020989238804200506 +0.0019966171711006085 +0.0019085687905969213 +0.0018316954932472076 +0.0017670592014026563 +0.0017130533173387256 +0.0016665650053165908 +0.0016297291818148916 +0.0016016162086252674 +0.0015797234096632214 +0.0015650837253884467 +0.0015588381260254539 +0.0025837448997927796 +0.0024477851530614195 +0.0023319412145890064 +0.0022313059684621406 +0.0021438850718596735 +0.0020717116772415007 +0.002008934260045506 +0.0019574387067642436 +0.001916053685334499 +0.0018830623628216042 +0.0018582594947178098 +0.0018425047419447938 +0.001835622199060221 +0.003003736604739179 +0.0028436782748969395 +0.0027153253328551894 +0.0025981995106480566 +0.0025008775443142338 +0.0024171040967596313 +0.0023468492974421354 +0.002288176680536681 +0.0022408005189195387 +0.0022043962866295616 +0.0021760608380952703 +0.0021576740065581885 +0.002149729573894779 +0.003478900849392375 +0.0033045767793954475 +0.0031500393120515923 +0.003021429648761524 +0.002908313902338624 +0.0028110116918445833 +0.002734221664298725 +0.0026663269433046706 +0.0026107329816871722 +0.0025690346213881063 +0.0025386140637864616 +0.0025181344008298728 +0.0025091475680591693 +0.004034230460852049 +0.0038272547443163026 +0.0036575146362812254 +0.0035023612126443135 +0.00337454372152414 +0.0032694521990860145 +0.0031754668766104956 +0.00309521846201094 +0.0030373498139694586 +0.0029912009171328175 +0.0029553115746970633 +0.0029309921772275333 +0.002920345981019088 +0.004671663223740382 +0.004438149861503319 +0.004235549236823772 +0.004064648502845391 +0.003913453865538207 +0.003788897545542803 +0.0036874501501445015 +0.003598820817747051 +0.0035252677762042622 +0.003469423432776395 +0.003428001846548193 +0.0034008238445905866 +0.003389698108085709 +0.005405239323946397 +0.005149297227158594 +0.004915565375428429 +0.004710158808436404 +0.0045373317484711595 +0.0043989923819457025 +0.004275260994734955 +0.004174097634810262 +0.004093761971762651 +0.004029722996540017 +0.003980182883577703 +0.003948213950551048 +0.003934994014930092 +0.006290178665911244 +0.005985510004364688 +0.005704424767892192 +0.005456308201902475 +0.0052678612557975875 +0.005109386245284958 +0.004967629782511705 +0.004842625284128986 +0.004747870398549377 +0.0046755521236304665 +0.004619243960605668 +0.004581144185316426 +0.0045656100457017595 +0.007347466260780436 +0.006955830460749924 +0.006596990213966444 +0.00634885028993482 +0.006134649042116468 +0.005944390911660581 +0.005774308560617905 +0.0056238218712598605 +0.005507375158202917 +0.0054219673334656064 +0.005360950746057978 +0.005322619639671969 +0.0053059093811944754 +0.008517787670180793 +0.008049631920272188 +0.007729423300283532 +0.007432529658677752 +0.0071577726317176345 +0.00691367499579149 +0.006695278938449188 +0.006517217303756767 +0.006408325257603765 +0.006321574051148877 +0.006254025063538281 +0.006208365099622528 +0.006188344368979364 +0.010009537112611077 +0.009523960705372378 +0.00907660122143088 +0.008654613358665908 +0.008289488032528025 +0.008021473284460982 +0.00782792314610648 +0.007659642430064453 +0.0075201113058184785 +0.007409018598625501 +0.007322508639851901 +0.007263952645874288 +0.007238309259881986 +0.011709742871868921 +0.011107719831272168 +0.010572333659516294 +0.010145102608800893 +0.009805328964890517 +0.009503696101740141 +0.009233887613943044 +0.008995367511833123 +0.008797695175122492 +0.008640123111113045 +0.00851748709781643 +0.00843900406762996 +0.008405930256415277 +0.013958058977658581 +0.013245601396458332 +0.012589363665073095 +0.011970513125533724 +0.01146802137287607 +0.011107385553830264 +0.010785153075139213 +0.010500535622294997 +0.01029479723638427 +0.010151283062428214 +0.010044818916866444 +0.00997281241077654 +0.00994122661528319 +0.016667167022126058 +0.01572674906105091 +0.014860142957024751 +0.01421663001042114 +0.013720350363719446 +0.013279777319568174 +0.012885481733185676 +0.01253727765330116 +0.012248320635965496 +0.012018369465002917 +0.01183925262730919 +0.011718253723496577 +0.011665158629014582 +0.019788752747720215 +0.018537364434391235 +0.017764415303629322 +0.01705813112197545 +0.016405072272029857 +0.015824476937353137 +0.015305782730340159 +0.01484680884614892 +0.014526141404999887 +0.014295917980051748 +0.01414109843525556 +0.01403639368096162 +0.013990549438363808 +0.02427044916953224 +0.022858201972012344 +0.02165221054086823 +0.020515693029119264 +0.019465014878283903 +0.018708122994833203 +0.018205546048569967 +0.017809915873384586 +0.01748222970747374 +0.0172211911903253 +0.0170179596660999 +0.016880650192864853 +0.016820320905380944 +0.030967287697009443 +0.02892994169335767 +0.02705284971949789 +0.025280381993367605 +0.024022001862786236 +0.023182788770742573 +0.022466044353722004 +0.021832624131751625 +0.021307497250082665 +0.02088883606343425 +0.020563318512543217 +0.02034351969938421 +0.020246976711568714 +0.03713579475053535 +0.03539310886614103 +0.03378573930822377 +0.03227291546791805 +0.030871606890472168 +0.02962719591986472 +0.02851585538276535 +0.027531765239919296 +0.026717355150499365 +0.026068363286122002 +0.025562751508928536 +0.02522159599080302 +0.025106560659470825 +0.04257167404502896 +0.041091987137096435 +0.03972314624291749 +0.038433856361702795 +0.037244082220748397 +0.0361855707123886 +0.035239458036409516 +0.034403519760419374 +0.03371060131529838 +0.033157908837548065 +0.03272782997204696 +0.032437372166539344 +0.03231028271681168 +0.04710292934977412 +0.04594655225243449 +0.044882987365015524 +0.043840682029752796 +0.042859119452431135 +0.04196700725499599 +0.04116687357523738 +0.04045937954184636 +0.039873696129724405 +0.03940739008086292 +0.03904393370706311 +0.038798248271857766 +0.03869078642338711 +0.05067318478358749 +0.0498451516541525 +0.04906324700030648 +0.0482644168189743 +0.047515407200671496 +0.046823043216252455 +0.04620498498636481 +0.04565707984594679 +0.045204381269990754 +0.04484236912390555 +0.0445614091164837 +0.04436557721824721 +0.044277393068065704 +0.053604786663375564 +0.05291724969580982 +0.05228294598865517 +0.05168678322463396 +0.05113487524926382 +0.05064361928803803 +0.0502051328612404 +0.04981708374537611 +0.049496239780150886 +0.049238986672876246 +0.04901784283850955 +0.04886820367886262 +0.048802965017637534 +0.056190330137562694 +0.055625684183314934 +0.05510517514783023 +0.0546153128252936 +0.054163913956491214 +0.053761483792241334 +0.05340138112930871 +0.05308384483031101 +0.05282008601688975 +0.05261012759238454 +0.05244726295742847 +0.05233657983396602 +0.0522883321795544 +0.05846870645319808 +0.058013134036738474 +0.0575934206982245 +0.057200192949095625 +0.05683369098598213 +0.05650995989947474 +0.05621971271312262 +0.05596315135412368 +0.05575056810970134 +0.055581442834354684 +0.0554497895594595 +0.05536041037961644 +0.05532147652308811 +0.06047719854943358 +0.06011781858496171 +0.05978740924104278 +0.05947513957086803 +0.05918811300722099 +0.05893141076538385 +0.05870348428889146 +0.058500871599806985 +0.05833340638462977 +0.058200205246655014 +0.05809601957715655 +0.05802584025513791 +0.05799512655757116 +0.06224718724539953 +0.06197240454564311 +0.06171942489478577 +0.061481717245954574 +0.06126170020655461 +0.06106727593510649 +0.06089261183763539 +0.06073820269045201 +0.06061024720054131 +0.060508192737671 +0.06042902643318324 +0.060375187608428645 +0.060351631069946496 +0.06380780863766868 +0.06360683964170015 +0.06342468712777437 +0.06325050667456594 +0.06309096098875633 +0.06294940728354205 +0.06282220353500548 +0.06270997623623357 +0.06261689446580525 +0.06254319051322256 +0.06248523999879182 +0.06244626836584688 +0.062429035441235126 +0.06518068072859072 +0.06504840610372602 +0.0649269664609046 +0.06481135563441946 +0.06470299323905573 +0.06460835801006581 +0.06452343800286668 +0.06444775992599368 +0.06438604263247895 +0.06433638666617486 +0.06429743935702023 +0.06427164312118751 +0.06426031955381215 +0.06639330747166625 +0.0663191206314489 +0.06624850962954527 +0.06618434062047826 +0.06612426712840899 +0.06607006265275751 +0.06602236898182916 +0.06598017454439548 +0.06594524041270446 +0.0659172602779438 +0.06589517212139928 +0.06588062776652386 +0.06587401717600612 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +0.0 +); + } + + "(OUTLET|Outlet|outlet)" + { + type zeroGradient; + } + + "(WALL|Wall|wall)" + { + type epsilonWallFunction; + value $internalField; + } + +} + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/0/k b/Simulation_setup_and_evluation/BaseCase/0/k new file mode 100644 index 0000000..4a1bc69 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/0/k @@ -0,0 +1,4050 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + location "0"; + object k; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0.01; + +boundaryField +{ + "(INLET|Inlet|inlet)" + { + type fixedValue; + value nonuniform List<scalar> +4004 + ( +0.0004860326028481298 +0.0004899714652631393 +0.000497975994808378 +0.0005099680326324088 +0.0005259209037326109 +0.0005457291061856573 +0.0005692500259141369 +0.000596360325705945 +0.0006268184727528361 +0.0006605936270093274 +0.000697375370239689 +0.0007369900492074152 +0.0007792340794229791 +0.0004899718029354052 +0.0004939778603342571 +0.0005018876381439241 +0.0005139375940958071 +0.0005297902188498428 +0.0005494227556158012 +0.000572768844335351 +0.0005995970741633963 +0.0006298468789386178 +0.0006632769560204051 +0.0006997103403481124 +0.0007389053347912323 +0.0007806856746660807 +0.0004979759921421104 +0.0005018876368354777 +0.0005098243418236866 +0.0005216945756996029 +0.0005372965177499342 +0.0005566154007905015 +0.0005795749620613092 +0.0006060301865606025 +0.0006357393495787862 +0.0006685817890796165 +0.0007043480264384645 +0.0007428412447153726 +0.000783848997405587 +0.0005099680284580135 +0.0005139375915004579 +0.0005216939798338142 +0.000533184870367301 +0.0005484566928324591 +0.0005672872087870842 +0.0005896577184187245 +0.0006154267298815215 +0.0006443825071129829 +0.000676371386964803 +0.0007112040013293434 +0.0007486324380230371 +0.0007885363199562933 +0.000525920898270642 +0.0005297902149157219 +0.0005372965150809148 +0.0005484574538132952 +0.0005631742888731819 +0.000581377614544448 +0.0006029488478031217 +0.0006277640223845576 +0.0006556608913455791 +0.00068651329830953 +0.0007200523777314115 +0.0007561073473382051 +0.0007945585054215307 +0.0005457290995299135 +0.0005494227503673754 +0.0005566153968039721 +0.000567287206132558 +0.0005813776132225583 +0.0005987508641843931 +0.0006193845732965067 +0.0006430395804266898 +0.0006696280482540406 +0.0006990573326930927 +0.0007310408578198213 +0.000765443444844217 +0.0008021430928536589 +0.0005692500180373563 +0.0005727688378682984 +0.0005795749567616152 +0.0005896577145435869 +0.000602948845166182 +0.0006193845720038403 +0.0006388165575919194 +0.0006611610871324672 +0.0006862313505540137 +0.0007139814206825281 +0.0007441689471046485 +0.0007766218553537527 +0.000811278353828244 +0.0005963615628999212 +0.0005995970666154201 +0.0006060301801090042 +0.0006154267246661371 +0.0006277640184805464 +0.0006430395778528171 +0.0006611622498668846 +0.0006819039203939387 +0.0007051960844386641 +0.0007310469848165368 +0.00075917561395194 +0.000789381226488025 +0.0008216896703773913 +0.0006268184627360458 +0.000629846870054039 +0.0006357393419932404 +0.0006443825007625278 +0.0006556608862439393 +0.000669628044415913 +0.0006862313480222812 +0.0007051960831772029 +0.0007265520605435403 +0.000750247578352156 +0.0007760371043993476 +0.0008037236659556927 +0.0008334164716347158 +0.0006605936159243338 +0.0006632769461667966 +0.000668581780306121 +0.0006763713795109745 +0.0006865132920495689 +0.0006990587874146965 +0.0007139814169403692 +0.0007310469823294959 +0.0007502475771083835 +0.000771598618475026 +0.000794845782866668 +0.000819811301803068 +0.0008466751046181307 +0.0006973753581226145 +0.0006997103294112817 +0.0007043480166868026 +0.0007112039927067387 +0.0007200523702700441 +0.0007310400828693142 +0.000744168942145267 +0.0007591771372968233 +0.0007760371019298602 +0.0007948457816433626 +0.0008153631676028739 +0.0008373792319138925 +0.0008611381740093617 +0.0007369900361937918 +0.0007389053228760264 +0.0007428412339425865 +0.0007486324283354752 +0.0007561073388795594 +0.0007654434375377782 +0.0007766218492421643 +0.0007893812215992127 +0.0008037236623024357 +0.000819811299350572 +0.0008373792306977364 +0.000856212719280568 +0.0008766552521850138 +0.000779234065577481 +0.0007806856618800677 +0.0007838489855963585 +0.0007885363092715181 +0.0007945566670985125 +0.0008021430844725214 +0.0008112783465951375 +0.000821689664329107 +0.0008334164667945384 +0.0008466734404290267 +0.0008611381716020294 +0.0008766552509874295 +0.0008936205558254724 +0.00048603260514295453 +0.0004899715543241972 +0.0004979760018552146 +0.0005099680426446213 +0.0005259209161610557 +0.0005457291208355199 +0.0005692500428578491 +0.000596361590564635 +0.0006268184936623725 +0.0006605936499087767 +0.0006973753950579479 +0.0007369900756707408 +0.0007792341074061146 +0.0004899714671436862 +0.0004939778661944967 +0.0005018876463442347 +0.0005139376046834983 +0.0005297902320172637 +0.0005494227712501728 +0.0005727688621622897 +0.0005995970938394547 +0.0006298469011374293 +0.0006632769798326543 +0.0006997103660704455 +0.0007389053621868134 +0.0007806857035058211 +0.0004979759967456794 +0.0005018876438367775 +0.000509824351955573 +0.0005216939930338797 +0.0005372965323687 +0.0005566154177932629 +0.0005795749814384017 +0.0006060302077718095 +0.0006357393726368864 +0.0006685818141822129 +0.0007043480530167924 +0.0007428412729219315 +0.0007838490273025418 +0.0005099680346449664 +0.0005139375997098683 +0.0005216945850891091 +0.0005331854707900084 +0.0005484574707374886 +0.0005672872268969961 +0.0005896577383544324 +0.0006154267523069438 +0.0006443825311762306 +0.0006763714126554073 +0.0007112040289149859 +0.0007486324671926196 +0.0007885363505512392 +0.000525920905693943 +0.0005297902244780628 +0.0005372965272538908 +0.0005484567059127429 +0.0005631743054049766 +0.0005813776336738995 +0.0006029488691829014 +0.0006277640457153484 +0.0006556609163653254 +0.0006865133249670202 +0.0007200524062615832 +0.0007561073770237548 +0.0007945567077009937 +0.0005457291080807014 +0.0005494227611922871 +0.000556615410153627 +0.0005672872218099601 +0.0005813776311406803 +0.0005987508837861141 +0.0006193845952343133 +0.0006430396043923949 +0.0006696280741600649 +0.0006990573600888779 +0.0007310401178899435 +0.0007654451754914174 +0.0008021431246245479 +0.0005692500277630807 +0.0005727688497690726 +0.0005795749712822656 +0.0005896577309282626 +0.0006029488641295679 +0.0006193845927570969 +0.0006388165800824513 +0.0006611622757096479 +0.0006862313769256088 +0.0007139814486063143 +0.0007441689767387632 +0.0007766218863753883 +0.0008112783861877858 +0.0005963603274695805 +0.0005995970793747937 +0.0006060301954082069 +0.0006154267423123761 +0.0006277640382338451 +0.0006430395994599194 +0.0006611611092568392 +0.0006819039458743963 +0.0007051961114117264 +0.000731047013264186 +0.0007591756441323071 +0.0007893812579236344 +0.0008216897031685613 +0.0006268184744665674 +0.0006298468841113534 +0.0006357393581002298 +0.0006443825190064567 +0.0006556609065887328 +0.000669628066804821 +0.0006862313720738902 +0.000705196108994308 +0.000726552087916204 +0.0007502476073932354 +0.000776037134909716 +0.0008037236976462295 +0.0008334165047086621 +0.0006605936286659061 +0.0006632769609495662 +0.0006685817973690141 +0.0006763713983711683 +0.0006865133129706634 +0.0006990573504832034 +0.0007139814414349782 +0.0007310470084981128 +0.0007502476050097173 +0.0007715986479581116 +0.000794845813495708 +0.0008198113340122929 +0.0008466751378590972 +0.0006973753718372388 +0.00069971034511151 +0.0007043480343290723 +0.0007112040123909479 +0.0007200523919628979 +0.0007310408748882638 +0.0007441689672347875 +0.0007591756369981307 +0.0007760359690884129 +0.0007948458111514141 +0.0008153631985021525 +0.0008373792640884679 +0.0008611382072665554 +0.0007369900507319189 +0.0007389053393529579 +0.0007428409116729115 +0.0007486324486277386 +0.0007561073608139233 +0.0007654434612830792 +0.0007766218746633673 +0.0007893812485548951 +0.0008037236906452635 +0.0008198113293124205 +0.0008373792617578749 +0.0008562127516258142 +0.0008766552854263164 +0.0007792340808731163 +0.0007806856790031851 +0.0007838490046717765 +0.0007885363300753325 +0.0007945585183070358 +0.0008021431085632495 +0.0008112783723265297 +0.000821690646492655 +0.0008334164954331266 +0.0008466751309103421 +0.0008611382026532362 +0.0008766552831313103 +0.0008936205891243983 +0.00048603260586402064 +0.0004899714689173946 +0.0004979759997976752 +0.000509968039102601 +0.0005259209113153662 +0.0005457291147752269 +0.0005692500355620338 +0.0005963603361622281 +0.0006268184841840604 +0.0006605936393443032 +0.0006973753834428476 +0.0007369900631361395 +0.00077923409401627 +0.0004899714702081646 +0.0004939778680358671 +0.0005018876468245643 +0.0005139376038521674 +0.0005297902298516107 +0.0005494227677539593 +0.0005727688574025911 +0.0005995970879289739 +0.000629846893878198 +0.0006632769715278591 +0.0006997103566303421 +0.0007389053517049682 +0.0007806856920825897 +0.0004979760024639422 +0.0005018876481330101 +0.0005098243551391558 +0.000521694589236775 +0.0005372965326859593 +0.0005566154167487614 +0.0005795749790360639 +0.0006060302041002547 +0.0006357393677289006 +0.0006685818080133655 +0.0007043480457444726 +0.0007428391682102704 +0.0007838490177764544 +0.0005099680432769957 +0.0005139376064475161 +0.0005216939959842205 +0.0005331860622658148 +0.0005484574735293986 +0.0005672881636081946 +0.0005896577384099699 +0.0006154267509975119 +0.0006443825285628751 +0.000676371408785622 +0.0007112040237680967 +0.0007486324608372076 +0.0007885363430460096 +0.0005259209167773342 +0.0005297902337857304 +0.0005372965353549784 +0.0005484574748474747 +0.0005631735659683017 +0.0005813776375667831 +0.000602948871675963 +0.0006277640467914082 +0.0006556609160533018 +0.000686513323313796 +0.0007200524032719528 +0.0007561073727993735 +0.0007945567022458774 +0.0005457291214309697 +0.0005494227730023841 +0.0005566154207352902 +0.000567287230988969 +0.0005813776388886721 +0.0005987508899452541 +0.0006193846000564426 +0.0006430396077990332 +0.0006696280761508578 +0.0006990573606663331 +0.0007310408858922259 +0.0007654434731437515 +0.0008021431211795889 +0.0005692500434388134 +0.0005727688638696422 +0.0005795749843357572 +0.0005896577422851075 +0.0006029488743129035 +0.0006193846013491082 +0.000638816587149297 +0.0006611622813863802 +0.0006862313811557279 +0.0007139814513848698 +0.0007441689781045571 +0.0007766218863311567 +0.0008112783847671046 +0.0005963615911187912 +0.00059959709547695 +0.0006060302105518529 +0.0006154267562128953 +0.0006277640506954199 +0.0006430396103729067 +0.000661162282661417 +0.0006819051015743396 +0.0007051961178659979 +0.0007310470182182336 +0.0007591771747186182 +0.0007893812599685464 +0.0008216906586965466 +0.0006268184942008512 +0.0006298469027627765 +0.0006357393753144454 +0.0006443825349133297 +0.0006556609211549415 +0.0006696280799889839 +0.0006862313836874609 +0.0007051961191274599 +0.0007265520965170853 +0.0007502476145256498 +0.0007760359794511753 +0.0008037237017507867 +0.0008334165073462849 +0.0006605936504292973 +0.0006632769813814672 +0.0006685818167868598 +0.0006763714162394496 +0.0006865126692092085 +0.0006990573656787842 +0.0007139814551270301 +0.0007310470207052749 +0.0007502476157694215 +0.0007715986572221177 +0.0007948458211598754 +0.0008198113402036277 +0.000846675142494473 +0.0006973753955599208 +0.0006997103675671728 +0.0007043480554961338 +0.0007112040323906996 +0.0007200524107333191 +0.0007310401232530538 +0.0007441689830639398 +0.0007591756513737487 +0.0007760371430095105 +0.0007948458223831786 +0.0008153632082111462 +0.0008373792722497189 +0.0008611382138595389 +0.0007369900761497615 +0.0007389053636201726 +0.0007428412752980172 +0.0007486324705247681 +0.0007561073812580175 +0.0007654451806567255 +0.0007766218924427444 +0.0007893812648573595 +0.0008037237054040439 +0.0008198113426561237 +0.0008373779292336764 +0.000856212761789151 +0.0008766552939524998 +0.0007792341078617683 +0.0007806857048686011 +0.0007838490295856819 +0.0007885363537307853 +0.0007945567117498161 +0.0008021431295607253 +0.0008112783920002105 +0.0008216906647447721 +0.0008334165121864623 +0.0008466751461204848 +0.0008611382162668692 +0.0008766552951500842 +0.0008936205995873958 +0.00048603260356919675 +0.0004899717188215111 +0.0004979759927508381 +0.0005099680290903878 +0.0005259208988869206 +0.0005457291001253634 +0.0005692500186183208 +0.0005963615634540775 +0.0006268184632745246 +0.0006605936164448545 +0.0006973753586245875 +0.0007369900366728125 +0.0007792340660331348 +0.0004899714670368481 +0.0004939778621756281 +0.0005018876386242536 +0.0005139375932644762 +0.000529790216684189 +0.0005494227521195869 +0.0005727688395756513 +0.0005995970682529156 +0.0006298468716793863 +0.0006632769477156093 +0.0006997103309080091 +0.0007389053243093858 +0.0007806856632428478 +0.0004979759978603741 +0.0005018876411317114 +0.00050982434500727 +0.0005216939827841555 +0.0005372965180671937 +0.0005566153997459999 +0.000579574959658971 +0.0006060301828890479 +0.0006357393446707997 +0.0006685817829107682 +0.0007043480191661442 +0.0007428412363186724 +0.0007838489878794988 +0.0005099680370900435 +0.0005139375982381065 +0.0005216945798472693 +0.000533185461846878 +0.0005484574579232819 +0.0005672872102245317 +0.0005896577184742624 +0.0006154267285720891 +0.0006443825044996272 +0.0006763713830950171 +0.0007112039961824527 +0.0007486324316676239 +0.0007885363124510643 +0.0005259209093540344 +0.0005297902242233909 +0.0005372965231820032 +0.0005484574604491949 +0.0005631735494364268 +0.0005813776184373315 +0.0006029488502961846 +0.0006277640234606184 +0.0006556608910335559 +0.0006865126362917007 +0.0007200523747417802 +0.0007561073431138225 +0.0007945566711473351 +0.000545729112880183 +0.0005494227621774736 +0.0005566154073856364 +0.0005672881505853934 +0.0005813776209705512 +0.0005987508703435338 +0.0006193845781186356 +0.0006430395838333293 +0.0006696280502448327 +0.0006990587930045831 +0.0007310400882324247 +0.0007654434427031033 +0.0008021430894086991 +0.00056925003371309 +0.0005727688519688698 +0.0005795749698151079 +0.0005896577259004322 +0.0006029488553495171 +0.0006193845805958529 +0.0006388165646587657 +0.0006611622568186544 +0.0006862313547841335 +0.0007139814234610852 +0.0007441689484704441 +0.0007766218553095209 +0.0008112783524075625 +0.0005963603343985928 +0.0005995970827175766 +0.0006060301952526508 +0.0006154267385666576 +0.0006277640309421212 +0.0006430395887658041 +0.000661162259262085 +0.0006819050760939597 +0.0007051960908929369 +0.0007310469897705853 +0.0007591771445382441 +0.0007893812285329386 +0.0008216906259053783 +0.0006268184824703293 +0.0006298468887054627 +0.0006357393592074573 +0.0006443825166694016 +0.0006556609008101486 +0.0006696280576000776 +0.0006862313596358518 +0.0007051960933103545 +0.0007265520691444221 +0.0007502475854845699 +0.0007760371100296551 +0.0008037236700602506 +0.0008334164742723387 +0.0006605936376877242 +0.0006632769665986982 +0.000668581799723968 +0.0006763713973792569 +0.000686513308652663 +0.0006990573428762227 +0.0007139814306324204 +0.0007310469945366581 +0.0007502475878680888 +0.0007715986277390325 +0.0007948457905308337 +0.0008198113079944032 +0.0008466734486904357 +0.000697375381845298 +0.0006997103518669448 +0.0007043480378538649 +0.0007112040127064925 +0.0007200523890404669 +0.0007310408688237838 +0.0007441689579744189 +0.0007591771516724966 +0.0007760371147620883 +0.0007948457928751298 +0.0008153631773118684 +0.0008373778958428753 +0.0008611381806023435 +0.0007369900616116358 +0.0007389053471432426 +0.0007428395012539397 +0.0007486324502325064 +0.0007561073593236556 +0.0007654434567048898 +0.0007766218670215426 +0.0007893812379016767 +0.0008037236770612162 +0.0008198113126942755 +0.000837379242405737 +0.0008562127294439054 +0.0008766552607111976 +0.0007792340925661329 +0.0007806856877454854 +0.0007838490105102651 +0.0007885363329269709 +0.0007945566893603312 +0.0008021431054699985 +0.0008112783662688192 +0.000821689682581302 +0.0008334164835478746 +0.0008466751162022622 +0.0008611381852156646 +0.0008766552630062036 +0.0008936205662884701 +0.0008249988483681899 +0.0008261700289089594 +0.0008288331401100892 +0.0008327844880940224 +0.0008378906064102733 +0.0008443051579030753 +0.0008520904985118874 +0.0008609504269180067 +0.0008709191253188079 +0.0008822256930649687 +0.0008945539158282255 +0.0009077602318266712 +0.0009222381211941391 +0.0008712177553983352 +0.0008722875555495842 +0.0008747302531182265 +0.0008783471591619493 +0.0008830129426176318 +0.0008888746781011602 +0.0008959802308574365 +0.0009040435182735972 +0.0009131055214991996 +0.0009233603239334341 +0.0009345175898929857 +0.000946437023406803 +0.0009594584246120267 +0.000913510843332412 +0.00091448359076967 +0.0009166992969865622 +0.0009199711339134793 +0.0009241907586422 +0.0009294920729310896 +0.000935903576505657 +0.0009431741335819165 +0.000951330344067299 +0.0009605467195926191 +0.0009705529788092339 +0.0009812133872242395 +0.0009928322398804533 +0.0009518275192925784 +0.0009526998454364907 +0.0009546902284746366 +0.0009576289920059707 +0.0009614057074188243 +0.000966159296759946 +0.0009718959403534821 +0.0009783957914769163 +0.0009856784135522049 +0.0009938919537713865 +0.0010027860302734665 +0.0010122409254244478 +0.001022515400599597 +0.000986248742277495 +0.0009870242578616452 +0.0009887914224291049 +0.0009914078526281692 +0.0009947682173282177 +0.0009989879001406534 +0.0010040797791562213 +0.0010098424882583933 +0.0010162857476962816 +0.001023540851185693 +0.0010313791427886613 +0.0010396914165048993 +0.001048695361606245 +0.0010169160627248573 +0.0010176008385607564 +0.001019162033349708 +0.0010214690262384345 +0.0010244303527312958 +0.0010281479643997173 +0.0010326260535747035 +0.0010376895430081522 +0.0010433398588971152 +0.0010496881880518105 +0.0010565304184691356 +0.0010637626079910974 +0.0010715677093471726 +0.0010440155965348189 +0.0010446135001664673 +0.0010459784275794182 +0.0010479922004588962 +0.001050581225020681 +0.00105382081331768 +0.0010577234966467528 +0.0010621206929403108 +0.0010670250109358031 +0.001072518195231504 +0.0010784175949608665 +0.001084629216678068 +0.0010912980371178664 +0.0010677294741283261 +0.0010682468545342911 +0.0010694263096114678 +0.0010711693692637154 +0.0010733990709134694 +0.001076191523013026 +0.001079547900708322 +0.0010833213621491654 +0.0010875133203678447 +0.0010921987531042378 +0.0010972082166437957 +0.0011024516967678508 +0.00110804043163589 +0.0010882328876748626 +0.0010886745018155641 +0.0010896811117009774 +0.0010911642460679721 +0.0010930562331818358 +0.0010954252582948973 +0.0010982620747719213 +0.001101446682108628 +0.0011049632020456728 +0.001108876809773604 +0.0011130398624236164 +0.0011173547624001251 +0.0011219075323130813 +0.0011056766365837314 +0.0011060459684717838 +0.0011068879744046247 +0.0011081249446128032 +0.001109693332955693 +0.0011116595171339104 +0.0011140041209662418 +0.001116617534263018 +0.0011194919473560747 +0.0011226756240332422 +0.001126003208984818 +0.0011294172408729012 +0.0011329649678328256 +0.0011201730477562414 +0.0011204719900971202 +0.0011211544304299975 +0.0011221604908244539 +0.0011234225983148272 +0.0011249901691586768 +0.0011268706441593351 +0.001128924046921246 +0.0011311887309031219 +0.0011336323340798724 +0.0011361613316687002 +0.0011387157017271534 +0.0011412776732287208 +0.0011318050581430692 +0.001132033009194724 +0.0011325530145570497 +0.0011333226437243952 +0.0011343037284932992 +0.0011354892794373137 +0.0011368882172206485 +0.0011384267414870735 +0.0011400577594745305 +0.0011417994740914935 +0.001143543383791252 +0.0011452130262472268 +0.0011467887792901749 +0.0011405840907451718 +0.0011407507638173241 +0.001141121115765533 +0.0011416579944637435 +0.0011423247927321231 +0.001143145217573094 +0.0011440837022726105 +0.0011450800911760291 +0.0011460955951423497 +0.0011471337437915083 +0.001148064995306315 +0.001148833619979067 +0.0011494175102046318 +0.001146468064240283 +0.0011465691017903692 +0.0011467880203938575 +0.0011470990084525338 +0.0011474607376174212 +0.0011478899399472318 +0.0011483833055915631 +0.001148805647416458 +0.0011492163202044116 +0.0011494877844735703 +0.0011496344118582789 +0.001149437315585513 +0.0011489888448726134 +0.001149363664802272 +0.001149388562612427 +0.0011494453225911643 +0.001149490275837984 +0.0011495447627641417 +0.0011496134118424372 +0.0011496049991088872 +0.001149437501563252 +0.0011492156703992943 +0.0011486927368085337 +0.0011479800160252899 +0.0011467943794569281 +0.0011451858946650976 +0.0011490394673596559 +0.0011489791774781202 +0.0011488416648302272 +0.0011486384014822047 +0.0011483773275365598 +0.0011480406199563008 +0.0011474999573482859 +0.0011467242072455103 +0.0011457929450920039 +0.0011444469365574556 +0.0011427313872500898 +0.0011405481226222786 +0.00113760335820692 +0.001145102796314604 +0.0011449751946735318 +0.00114466831067398 +0.001144214542510848 +0.0011435915170737397 +0.0011427638734509105 +0.0011416417443542795 +0.0011402848382109333 +0.0011385038601187485 +0.0011362036603858286 +0.001133525606295553 +0.0011299940901862322 +0.0011258444846064405 +0.0011370761075413787 +0.0011368580971133054 +0.0011363517794082555 +0.0011356023786236887 +0.0011346172014373478 +0.001133349584859362 +0.0011315115128430675 +0.0011292857919801278 +0.0011267305587574225 +0.001123458262881287 +0.0011193037006862272 +0.0011147789444778317 +0.0011085909355255667 +0.001124393071260034 +0.0011240558920731186 +0.0011232882346793513 +0.001122151348373864 +0.0011205972237088855 +0.0011186266837434028 +0.0011162501984853948 +0.0011133024502786326 +0.001109520541606875 +0.0011048636609027542 +0.001099679804201988 +0.0010931580107457718 +0.0010849779577844453 +0.0011054623974098257 +0.0011050336195238405 +0.0011040471089445592 +0.0011025871795604719 +0.0011007083654515364 +0.0010980447927828884 +0.0010946997177168924 +0.0010904133138139114 +0.0010853834546203584 +0.0010794097792658516 +0.0010723439901400003 +0.0010638381819451162 +0.0010530408166670791 +0.0010792351930871305 +0.0010786416160393113 +0.001077285010735342 +0.0010752797414114849 +0.0010726948925864545 +0.001069144430541549 +0.0010646620414879093 +0.0010591013498347744 +0.0010523501240881938 +0.0010445531171808155 +0.0010354389483367128 +0.0010245442979774561 +0.0010104057856989777 +0.0010428591710488512 +0.0010421507168821996 +0.0010405309957701358 +0.0010379047986379616 +0.001034263154765799 +0.0010296892234495027 +0.0010238286921169521 +0.001016183365832852 +0.001007636505214111 +0.0009980267626882484 +0.0009861991955911263 +0.0009717867724010317 +0.0009541549607016925 +0.0009937511272441362 +0.0009928877954621521 +0.0009905567881360595 +0.00098674949883283 +0.0009818438664304337 +0.0009757093359468796 +0.0009680261349521245 +0.0009584785040563508 +0.0009477830109308191 +0.0009347882218592666 +0.0009204364111650208 +0.000901988605057051 +0.0008810540642238712 +0.0009251124361175113 +0.0009239403777372785 +0.0009212519749360316 +0.0009172190279609646 +0.00091076787793808 +0.0009026947082113917 +0.0008929304963670636 +0.0008818184401655764 +0.00086828337753246 +0.0008529975044075471 +0.0008339414976973304 +0.0008107253856222992 +0.0007851530149274743 +0.0008337439606529214 +0.0008319780912047089 +0.0008279270213525052 +0.0008219660559663475 +0.0008142814105690744 +0.0008046276168091779 +0.0007929636851165549 +0.0007791355684165666 +0.0007636820491679361 +0.0007462904424909607 +0.00072304465748033 +0.0006962546573749121 +0.0006669898930321356 +0.0007119112970690923 +0.0007099074727329889 +0.000705307280852735 +0.0006985312856482289 +0.0006898266456093861 +0.0006788852690748214 +0.000665346510090093 +0.0006491161126188287 +0.0006310133128353369 +0.0006105187881125272 +0.0005879441154200501 +0.0005607184409859343 +0.0005311666766791139 +0.0005618857772408881 +0.0005598935334882785 +0.0005553412549159153 +0.0005485830706197456 +0.000539942725915403 +0.0005290797566732555 +0.0005159368589373611 +0.0005009509144945463 +0.0004817541085148801 +0.0004602895656981448 +0.00043693727270278725 +0.00041222844304895695 +0.0003852726447607261 +0.00039471723994538875 +0.00039294533715644573 +0.0003888955135691435 +0.00038294048360137744 +0.0003752637396793586 +0.000365638644878109 +0.000354023628460727 +0.0003408849746235997 +0.00032615773158614907 +0.00030970966457628937 +0.0002920265099813931 +0.0002741961583373204 +0.00025482908924637975 +0.00024201124300499412 +0.00024079672049957408 +0.00023805001811122952 +0.00023396565261809985 +0.00022875219512069289 +0.00022221048239767064 +0.0002142826018085375 +0.00020533514536647448 +0.00019564837725761803 +0.00018593240840920517 +0.00017532520766044124 +0.0001642325209961286 +0.00015199394352878164 +0.00012444120295633342 +0.00012374660518229977 +0.0001221757337938306 +0.00011978753194690254 +0.00011680909667541329 +0.0001131276724179243 +0.00011061698612837258 +0.00010772414920678019 +0.00010454002115305587 +0.000100894018144196 +9.70041280908625e-05 +9.291811622283685e-05 +8.846754149279763e-05 +6.55103857614548e-05 +6.534041450552525e-05 +6.49664145458553e-05 +6.439841424463983e-05 +6.367889258777067e-05 +6.278053808018579e-05 +6.1695473430912e-05 +6.043786921387513e-05 +5.907506501274737e-05 +5.7530211530246884e-05 +5.588003475814467e-05 +5.4064191494750364e-05 +5.215638907640264e-05 +2.9200626240447626e-05 +2.91537014277409e-05 +2.904972980403273e-05 +2.8892438500050988e-05 +2.8687551869643427e-05 +2.8430881707884564e-05 +2.8145324185521935e-05 +2.778962039264044e-05 +2.7407505888100447e-05 +2.6992560207823634e-05 +2.6531631752800732e-05 +2.601064917954483e-05 +2.549816948615707e-05 +0.0009222365517926139 +0.0009077602336643346 +0.0008945539189084743 +0.0008822256973765949 +0.000870919130859157 +0.0008609504336731169 +0.0008520905064738904 +0.0008443051670938755 +0.0008378906167138932 +0.0008327844995942539 +0.0008288311858792584 +0.0008261700425294531 +0.0008249988630384768 +0.0009594584252481712 +0.0009464370253324659 +0.0009345175931171998 +0.0009233603284526533 +0.0009131055273084346 +0.0009040435253598177 +0.0008959802392020847 +0.000888874687681465 +0.0008830109404914401 +0.0008783471711918405 +0.0008747323235596931 +0.0008722875697903258 +0.0008712156917895865 +0.0009928322405386833 +0.000981213389215415 +0.0009705512102196728 +0.0009605467242581202 +0.0009513303500793146 +0.0009431741409223719 +0.0009359055861171841 +0.000929490045591076 +0.0009241907698377641 +0.0009199711462939386 +0.0009166971853576997 +0.0009144836055174127 +0.0009135108591673157 +0.0010225154012714506 +0.0010122394805331819 +0.001002786033679757 +0.0009938919585530572 +0.0009856784196962541 +0.0009783957989790326 +0.0009718959492137618 +0.0009661600543135338 +0.0009614057188925412 +0.0009576294860905308 +0.000954690242398784 +0.0009526998605404601 +0.000951827535500471 +0.001048695362284126 +0.0010396914185600856 +0.0010313791462374 +0.0010235408560324841 +0.0010162857539373186 +0.0010098424958815864 +0.0010040797881347822 +0.0009989879104748875 +0.000994768228953289 +0.0009914078655389126 +0.0009887914365842535 +0.0009870242731617206 +0.0009862486888141263 +0.0010715677100213386 +0.0010637626100438223 +0.001056530421921844 +0.001049688192915284 +0.001043339865162077 +0.0010376895506695775 +0.0010326260626190898 +0.0010281479747879332 +0.0010244303644527937 +0.0010214690392332199 +0.0010191620475898523 +0.0010176008539808435 +0.001016916079274954 +0.0010912980377774393 +0.0010846306122141176 +0.0010784175983669588 +0.0010725182000424123 +0.0010670250171427168 +0.0010621207005599592 +0.0010577235056559375 +0.0010538208236757244 +0.0010505812367000598 +0.0010479922134284706 +0.0010459787876370438 +0.0010446135155604923 +0.001044015613050897 +0.001108040432265973 +0.001102450356991432 +0.0010972082199553583 +0.0010921975907165907 +0.0010875133264474726 +0.0010833213696372955 +0.0010795479095366148 +0.0010761915332272627 +0.0010733990824249927 +0.0010711693820900324 +0.0010694263236447612 +0.0010682464450162596 +0.0010677294904225458 +0.0011219075329081069 +0.0011173547642560895 +0.0011130398655332695 +0.0011088768142220485 +0.0011049632078803308 +0.00110144668934849 +0.0010982620832926046 +0.001095424563108925 +0.001093056244346796 +0.0010911636325284702 +0.0010896817641509013 +0.0010886743020135205 +0.001088232903570342 +0.0011329649683583685 +0.0011294172425413722 +0.0011260032118951993 +0.0011226756281066922 +0.00111949195277893 +0.0011166184117750296 +0.0011140033664211397 +0.0011116595265585852 +0.0011096927610179253 +0.001108125154271417 +0.0011068871751916249 +0.0011060457774018592 +0.0011056774125958184 +0.0011412766918052163 +0.0011387157031309482 +0.0011361613341425696 +0.0011336332493560766 +0.0011311887357186084 +0.001128924053034176 +0.001126870651534803 +0.0011249905256850113 +0.0011234218991107894 +0.0011221612448006832 +0.0011211542536890696 +0.0011204721786712095 +0.0011201721072520742 +0.001146788779572502 +0.001145213027248798 +0.0011435433856756977 +0.0011417994769744747 +0.0011400577635609817 +0.001138426746614598 +0.0011368882235896064 +0.001135489138512843 +0.001134303424376509 +0.0011333220011224693 +0.0011325531902433214 +0.001132032522163425 +0.0011318054040455976 +0.0011494175102926838 +0.0011488336204423975 +0.001148064996511799 +0.0011471337455785965 +0.0011460955979668236 +0.0011450800950115678 +0.0011440842375351936 +0.001143144988291961 +0.0011423250461272117 +0.001141658255371799 +0.0011411204574537143 +0.0011407510522943262 +0.001140584241014263 +0.0011489888446258648 +0.0011494373153277235 +0.0011496344120836203 +0.001149487784785599 +0.0011492163215698601 +0.0011488056491030893 +0.0011483833669255086 +0.0011478898720902043 +0.0011474605102965653 +0.0011470991875323013 +0.0011467878501945604 +0.0011465687205759747 +0.0011464679740826357 +0.001145185894107971 +0.0011467933058906738 +0.0011479795406714817 +0.001148692735080377 +0.0011492156692788178 +0.001149437524761868 +0.0011496049373241766 +0.001149613412503968 +0.0011495447635006795 +0.0011494902903090745 +0.0011494452696856605 +0.0011493885920548072 +0.0011493636668423641 +0.0011376059537736404 +0.0011405481200293327 +0.0011427313832002377 +0.0011444469320898423 +0.0011457929400979449 +0.0011467245788369935 +0.0011475006203169609 +0.0011480405408269565 +0.0011483773234627352 +0.001148638321460081 +0.0011488421588574903 +0.0011489792491053375 +0.0011490399250680102 +0.0011258444829050746 +0.0011299940850803315 +0.0011335255998570243 +0.0011362036518146887 +0.0011385038498702843 +0.0011402842688588966 +0.0011416424790126622 +0.0011427636229995593 +0.0011435929346296895 +0.0011442149207858661 +0.0011446678112117339 +0.0011449761740366675 +0.001145102261627277 +0.0011085909323182083 +0.001114778937469218 +0.0011193036890179055 +0.0011234545728227839 +0.0011267300829017255 +0.0011292876756259014 +0.0011315091949673861 +0.0011333514600453294 +0.001134618338464887 +0.0011356031034721822 +0.0011363521328247093 +0.0011368592125458083 +0.0011370751197555201 +0.001084977952988815 +0.001093157997385969 +0.001099672706179874 +0.0011048636380984057 +0.0011095170448278703 +0.0011133008085179978 +0.00111625016868789 +0.001118629392404026 +0.0011205957877719352 +0.001122153289666164 +0.0011232881916222914 +0.0011240571320860386 +0.0011243923463301385 +0.001053040809441353 +0.0010638381637253379 +0.0010723342389612701 +0.0010794097424026631 +0.0010853808224785667 +0.0010904157478822457 +0.0010946952625287712 +0.0010980458638832945 +0.001100705380131074 +0.0011025900963251819 +0.0011040470442450802 +0.0011050345601791639 +0.0011054653109873814 +0.0010104057748617514 +0.0010245700138599631 +0.001035438904144536 +0.0010445530651140723 +0.0010523520080800636 +0.001059095237259139 +0.0010646619641382611 +0.0010691390073094525 +0.0010726992195068997 +0.0010752761955508143 +0.0010772800454347763 +0.001078644767645221 +0.0010792416252901433 +0.0009541549445138551 +0.000971786729827214 +0.000986234461712173 +0.0009980266871799602 +0.0010076393276230058 +0.0010161772212172874 +0.0010238192636227723 +0.0010296839144559053 +0.0010342524522046 +0.0010379126762751045 +0.0010405399958549459 +0.0010421597728149455 +0.0010428590003520553 +0.0008810016986326128 +0.0009019885375518442 +0.0009204363221758595 +0.0009347581471138182 +0.0009477697961263675 +0.0009584788799758036 +0.0009680351725157646 +0.0009757091293486052 +0.000981835179981299 +0.0009867406605490227 +0.0009905738639345999 +0.0009928975814416506 +0.000993754231135684 +0.0007851529805406306 +0.0008107252873670685 +0.000833941334270869 +0.0008529973322812854 +0.0008682831572290846 +0.0008818181724617368 +0.0008929173633124961 +0.000902720671709024 +0.0009108197050917703 +0.0009172526159675647 +0.0009212516234185543 +0.0009239564634436836 +0.0009251285554688846 +0.0006671023649651962 +0.0006962545191280986 +0.0007230444275550812 +0.0007462902031364697 +0.000763644776200333 +0.0007791542757535814 +0.0007929828547439432 +0.0008045793357537936 +0.0008142711328023739 +0.0008219357958291994 +0.0008279463763976294 +0.0008319673200805111 +0.0008337533252426526 +0.0005311666185237741 +0.0005607182666820295 +0.0005879438255390267 +0.0006106023923106205 +0.0006310397835855745 +0.0006490461077052782 +0.000665288769687644 +0.0006789383796711762 +0.000689784790063183 +0.0006985026399797738 +0.0007053766857839004 +0.0007098639935619515 +0.0007119386840002968 +0.00038527257728439534 +0.00041222824199810666 +0.0004369369383662251 +0.0004602890992470104 +0.0004816815148142919 +0.0005010616670759602 +0.0005160023605644664 +0.0005290789122546796 +0.0005399935789183893 +0.0005485119172494925 +0.0005553401113176966 +0.0005599458562716373 +0.0005619382091928467 +0.00025482902599502344 +0.00027419596878052626 +0.00029202619476828426 +0.0003097091952406778 +0.0003261209188978653 +0.00034092162469100996 +0.00035404197793720597 +0.000365696619192471 +0.00037530269095846757 +0.0003829189424901678 +0.0003888941872459651 +0.0003929024955470194 +0.0003946470810878893 +0.00015199388886092256 +0.00016423235716925063 +0.000175324935245636 +0.00018593202838315806 +0.00019557460362291942 +0.00020528192515109842 +0.00021437177589472145 +0.00022213591358630585 +0.00022876992820405198 +0.00023396732763953775 +0.0002380102609205517 +0.00024077597877501897 +0.00024202927590388776 +8.839980228811082e-05 +9.291802567504071e-05 +9.700397753174592e-05 +0.00010089380811642129 +0.00010456404988958851 +0.00010772382273443299 +0.00011057241725020413 +0.00011312723423909709 +0.0001168568396597077 +0.00011978654830347288 +0.00012217466004409478 +0.00012381248680947088 +0.00012451898532280133 +5.215636597385245e-05 +5.406412226890403e-05 +5.587991965807232e-05 +5.753005097261992e-05 +5.909343101284308e-05 +6.0468737564125895e-05 +6.168861440131179e-05 +6.27802031438178e-05 +6.366482414666989e-05 +6.442579506900883e-05 +6.498001403005075e-05 +6.532576813045153e-05 +6.552406965421697e-05 +2.5455500426123018e-05 +2.5970752815452924e-05 +2.653153096839825e-05 +2.6992419622941116e-05 +2.7396486859392543e-05 +2.7806184641599232e-05 +2.8110576730673655e-05 +2.8430588465605618e-05 +2.869321643030546e-05 +2.8904241983854534e-05 +2.90124246855547e-05 +2.9178059212051997e-05 +2.9187728366310974e-05 +0.0008249988644825758 +0.0008261700468522744 +0.0008288311930468054 +0.0008327849635447521 +0.0008378906295437647 +0.000844305182771528 +0.0008520905247883081 +0.0008609504546318524 +0.0008709191544187431 +0.0008822257234360146 +0.0008945539474115233 +0.0009077602644261543 +0.0009222365848696543 +0.0008712156932764036 +0.0008722875742432341 +0.0008747323309592001 +0.0008783471815593167 +0.0008830109537003737 +0.0008888747037276824 +0.0008959802580340108 +0.0009040435469126323 +0.0009131055515036351 +0.0009233603551841294 +0.0009345176222910684 +0.0009464370568173937 +0.0009594584588802241 +0.000913510860687643 +0.0009144836100752791 +0.0009166971929227279 +0.0009199711568258647 +0.0009241907833514861 +0.0009294900619411063 +0.0009359056053338024 +0.0009431731728895626 +0.0009513303747129131 +0.0009605467513896651 +0.000970551239841281 +0.0009812134211712445 +0.000992832274654084 +0.0009518275370429811 +0.0009526998651649607 +0.0009546902500766531 +0.0009576290153882074 +0.0009614057325914724 +0.0009661600709067076 +0.0009718959686777656 +0.000978395821163034 +0.0009856784445431402 +0.0009938919859834392 +0.0010027860635330411 +0.0010122409595801948 +0.0010225154355403346 +0.0009862486903655535 +0.000987024277810884 +0.0009887914443273348 +0.0009914078763171815 +0.0009947682427102389 +0.000998987927186859 +0.0010040806874542483 +0.0010098425181952432 +0.0010162857789088224 +0.0010235408835291117 +0.0010313791761141565 +0.0010396914506569112 +0.001048695396411742 +0.001016916080829726 +0.0010176008586374019 +0.0010191620553282404 +0.001021469050006589 +0.001024430378223156 +0.0010281479914590673 +0.001032626082137934 +0.0010376895729079243 +0.0010433398900101276 +0.0010496882202548337 +0.0010565304515477419 +0.0010637612122898427 +0.0010715677435973426 +0.0010440156841395125 +0.00104461352018522 +0.00104597844946487 +0.0010479922241193155 +0.0010505812503379933 +0.0010538208401930035 +0.0010577235249699302 +0.0010621207225233933 +0.001067025041581365 +0.0010725182268810744 +0.0010784176273610992 +0.0010846292496342425 +0.0010912980703324695 +0.001067729491939613 +0.0010682464495604459 +0.001069426331194577 +0.0010711693926119031 +0.0010733990957988763 +0.0010761915494285873 +0.0010795479283574468 +0.001083321391095752 +0.0010875133502386092 +0.0010921976166270555 +0.0010972082479567924 +0.0011024503867798636 +0.0011080404631303403 +0.001088232905045156 +0.0010886743064314616 +0.001089681771489106 +0.0010911640992727163 +0.0010930562572626574 +0.0010954245787631336 +0.0010982621013724445 +0.0011014467099934944 +0.0011049632305950088 +0.0011088768387473014 +0.001113039891678967 +0.0011173547923400704 +0.0011219075618683241 +0.0011056774773525499 +0.0011060457816149296 +0.0011068871821710501 +0.0011081251638597796 +0.001109692773229862 +0.0011116588736211285 +0.001114003383350965 +0.0011166184311059968 +0.0011194919737978987 +0.0011226756504615942 +0.0011260032362478325 +0.0011294172676596826 +0.0011329649937988863 +0.0011201721085521666 +0.0011204721825660647 +0.0011211542601661975 +0.0011221612537794796 +0.0011234219102315873 +0.0011249905391887466 +0.0011268706670690565 +0.0011289240703308383 +0.0011311887543135617 +0.001133633269594394 +0.00113616135475775 +0.0011387157241732674 +0.001141276712359611 +0.0011318054051790746 +0.0011320325255591826 +0.0011325531958913983 +0.0011333220089907532 +0.0011343034341677251 +0.0011354891500019453 +0.0011368882369648429 +0.0011384267610786295 +0.0011400577792899345 +0.0011417994926812328 +0.0011435434013238313 +0.0011452130422059188 +0.0011467887931210616 +0.0011405842419635428 +0.0011407510551383318 +0.0011411206672315363 +0.0011416579866441985 +0.0011423250538386187 +0.0011431449973867205 +0.0011440842473832656 +0.0011450801058025643 +0.0011460956088084067 +0.001147133755286624 +0.0011480650064915432 +0.0011488336273393282 +0.0011494175145036443 +0.0011464679747419544 +0.0011465687225512668 +0.0011467879882847809 +0.0011470991917140831 +0.0011474605151158225 +0.0011478898776067124 +0.0011483833723692045 +0.0011488056538375107 +0.0011492163267985001 +0.001149487786476395 +0.001149634413944251 +0.0011494373115010228 +0.001148988832860436 +0.00114936366702933 +0.0011493885926149587 +0.0011494452706167497 +0.00114949029096506 +0.001149544764339753 +0.001149613413531856 +0.001149604935445097 +0.0011494375221364364 +0.0011492156649971022 +0.0011486927257362293 +0.0011479795301462766 +0.0011467932860024508 +0.0011451858676118603 +0.0011490399245461956 +0.0011489793179620346 +0.0011488421562586776 +0.0011486383178366838 +0.0011483773188286442 +0.0011480405350154433 +0.001147500159105413 +0.001146724565198435 +0.0011457937790943476 +0.0011444469079785774 +0.0011427313499020701 +0.0011405480817111473 +0.0011376058994608047 +0.0011451022604531712 +0.0011449761700051625 +0.0011446675026571534 +0.0011442149114403958 +0.0011435923326935315 +0.001142763604622271 +0.0011416424560386144 +0.0011402842385326167 +0.0011385038108382775 +0.0011362036056329107 +0.0011335255470097335 +0.0011299940097637894 +0.0011258444023287124 +0.0011370750090359527 +0.0011368592048274912 +0.0011363521199942554 +0.0011356030855791896 +0.0011346183144555879 +0.0011333514308903088 +0.0011315110640235317 +0.0011292876240163207 +0.0011267300250177741 +0.001123454491234578 +0.0011193035933875239 +0.0011147788342489092 +0.0011085907806812265 +0.0011243923417809493 +0.001124056504523733 +0.0011232881689636882 +0.0011221532580661213 +0.0011205957443428914 +0.0011186293396642881 +0.0011162501068518124 +0.001113300721180549 +0.0011095169359325455 +0.0011048635155543165 +0.0010996725490193984 +0.0010931578008984309 +0.0010849777265976195 +0.001105465304282379 +0.001105034539713724 +0.001104047010223024 +0.001102587911679019 +0.0011007053194356342 +0.0010980457772361027 +0.0010946951609105005 +0.0010904156133206323 +0.0010853806599475115 +0.001079409544523637 +0.0010723340230567367 +0.0010638378960850816 +0.0010530404687643775 +0.0010792416142642875 +0.0010786447346088888 +0.001077279990513575 +0.0010752761189521131 +0.0010726991215212708 +0.0010691388706873066 +0.0010646618039030923 +0.0010590950192959987 +0.0010523517635640067 +0.0010445527858885238 +0.0010354385431989924 +0.0010245695369826347 +0.0010104052644998053 +0.0010428589847973383 +0.001042159726210296 +0.0010405399183750846 +0.0010379125482562483 +0.0010342522884368487 +0.001029683715554183 +0.0010238189781908288 +0.0010161768947800941 +0.0010076389614332444 +0.000998026282575634 +0.0009862338837324763 +0.0009717861056702704 +0.0009541541829258991 +0.0009937542086018115 +0.0009928975139253408 +0.0009905737169959297 +0.000986740455607198 +0.0009818467268868688 +0.000975708810913434 +0.0009680347466992272 +0.0009584783929667731 +0.0009477692497395723 +0.0009347874327285436 +0.0009204355965319702 +0.0009019875486926141 +0.000881000536586971 +0.0009251285184432116 +0.0009239563525079905 +0.000921251438984327 +0.0009172522913653592 +0.0009108005852617346 +0.0009027201673218559 +0.0008929167716829219 +0.0008818174295341181 +0.0008682823236868119 +0.0008529964112114639 +0.000833940002521319 +0.0008107238490802006 +0.0007851513653407667 +0.0008337532573088785 +0.0008319671165273855 +0.0008279612808292439 +0.0008219353238133855 +0.0008142705289335788 +0.000804578602273617 +0.0007929819520821065 +0.0007791532433032488 +0.0007636436177815568 +0.0007462889230295035 +0.0007230425550146581 +0.000696161402764122 +0.0006671000129381906 +0.0007119385884974228 +0.0007098637074061624 +0.0007053762100358023 +0.0006985019764012866 +0.0006897839411104032 +0.0006789373484809833 +0.0006652874554963307 +0.0006490446045153867 +0.0006310380969424715 +0.0006106005284349708 +0.0005879414659236392 +0.0005607157181094686 +0.0005311638903625562 +0.0005619380888718426 +0.0005599292569275488 +0.0005553395119228815 +0.0005485110811928116 +0.0005399925092878522 +0.0005290776129950229 +0.0005160008364592908 +0.0005009691255086943 +0.0004816792595224463 +0.0004602866068946128 +0.0004369342181092382 +0.0004122253038223806 +0.00038526941340474304 +0.00039464694157408965 +0.0003929020775327754 +0.00038889349226028816 +0.000382917973098722 +0.00037530145072242637 +0.0003656951126743687 +0.00035404021068008364 +0.00034091960318688647 +0.00032611865057057633 +0.0003097066884212707 +0.00029202363114211495 +0.0002741931997016979 +0.00025482606161362744 +0.00024202914521743416 +0.0002407755871898681 +0.00023800960987839664 +0.000233966419530167 +0.00022876876635509854 +0.00022213450226748585 +0.00021437012028407575 +0.0002052800313235306 +0.0001955727675931219 +0.00018592999926565347 +0.00017532272047620967 +0.0001642299648486038 +0.00015199132774732922 +0.00012451887242836837 +0.00012381214854881534 +0.00012217409765662474 +0.00011978576384387584 +0.00011685583601045038 +0.00011312656059339365 +0.0001105716269865308 +0.00010772291874943044 +0.00010456303549176452 +0.00010089268701816506 +9.700275383371303e-05 +9.291670385020765e-05 +8.839838717269488e-05 +6.552402198505969e-05 +6.532562529769451e-05 +6.497977655748736e-05 +6.442546382367964e-05 +6.366440034184144e-05 +6.27796883282827e-05 +6.16880104580748e-05 +6.04680467017123e-05 +5.909265575408566e-05 +5.752919415176318e-05 +5.587898440793794e-05 +5.4063112006040335e-05 +5.2155284388087e-05 +2.9187686641437512e-05 +2.91779341868039e-05 +2.901221681731938e-05 +2.890395203346833e-05 +2.8692845453183732e-05 +2.8430137818623152e-05 +2.8110048061533188e-05 +2.780557987626576e-05 +2.7395808208355456e-05 +2.6991669562890635e-05 +2.6530712237479632e-05 +2.5969868402165263e-05 +2.5454553558297457e-05 +0.0009222381560507529 +0.0009077602679477843 +0.0008945539533143982 +0.0008822257316986572 +0.0008709191650360625 +0.0008609504675770931 +0.0008520905400463926 +0.0008443052003844341 +0.0008378906492892352 +0.0008327845317094692 +0.0008288331837747479 +0.0008261700729540808 +0.0008249988925961669 +0.0009594584600993065 +0.0009464370605076645 +0.000934517628469832 +0.0009233603638445924 +0.0009131055626362364 +0.000904043560492402 +0.0008959802740253797 +0.0008888747220870239 +0.0008830129873074547 +0.0008783472046129492 +0.0008747302987937021 +0.000872287601533661 +0.0008712157226283253 +0.0009928322759154913 +0.0009812151259029032 +0.000970553018148539 +0.0009605467603304562 +0.0009513303862341148 +0.0009431741769691405 +0.0009359056218980535 +0.0009294921181608976 +0.000924190804806248 +0.0009199711805513142 +0.0009166972189559014 +0.0009144836383373044 +0.0009135108910330625 +0.001022515436827849 +0.0010122409634740054 +0.0010027860700607297 +0.0009938901315120136 +0.000985678456317366 +0.0009783958355398068 +0.0009718959856572742 +0.0009661593430000664 +0.0009614057545792729 +0.0009576290397159192 +0.0009546902767603721 +0.0009526998941096449 +0.0009518275681031828 +0.0010486953977108077 +0.0010396914545953934 +0.0010313791827231908 +0.001023540892817322 +0.0010162857908689142 +0.0010098425328040458 +0.0010040798248734761 +0.0009989879469909993 +0.0009947682649880908 +0.0009914079010588477 +0.0009887914714537334 +0.0009870243071313793 +0.0009862487917124973 +0.0010715677448892898 +0.0010637626457144303 +0.0010565304581643818 +0.0010496882295750157 +0.001043339902016067 +0.0010376895875899939 +0.0010326260994702587 +0.0010281480113666574 +0.0010244304006857962 +0.0010214690749093102 +0.0010191620826175223 +0.0010176008881878805 +0.0010169161125457126 +0.0010912980715964515 +0.0010846292535015534 +0.0010784193872652808 +0.0010725182361005197 +0.0010670250534760648 +0.001062120737125403 +0.0010577235422347955 +0.0010538208600427738 +0.0010505812727199199 +0.0010479922489737231 +0.0010459784766908556 +0.0010446135496857561 +0.001044015646245626 +0.001108040464337809 +0.0011024517322631006 +0.0010972082543029482 +0.0010921987926468075 +0.0010875133618893787 +0.0010833214054457245 +0.0010795479452756559 +0.0010761915690027722 +0.001073399117859128 +0.0010711694171917788 +0.0010694263580874577 +0.0010682466833557606 +0.0010677295231652497 +0.0011219075630086088 +0.0011173547958967713 +0.0011130398976381903 +0.001108876847272134 +0.00110496324177633 +0.0011014467238676963 +0.001098262117701166 +0.0010954253028611976 +0.001093056278658769 +0.0010911636664437754 +0.001089681797729349 +0.0010886743348396599 +0.0010882329355066606 +0.001132964994806018 +0.0011294159203092042 +0.0011260032418251775 +0.0011226756582678 +0.0011194919841900576 +0.0011166175734471458 +0.001114004161258199 +0.0011116595594450461 +0.0011096927935333846 +0.0011081251864277324 +0.001106887207210156 +0.001106045808789966 +0.0011056775064869503 +0.0011412767131771281 +0.0011387157268634481 +0.0011361613594985816 +0.0011336323651154091 +0.0011311887635417812 +0.0011289240820454313 +0.0011268706812031285 +0.0011249905556934836 +0.0011234219287782903 +0.0011221612749749861 +0.0011211542834682444 +0.001120472032324551 +0.0011201740447354543 +0.001146788793662103 +0.0011452130441252932 +0.001143543404935112 +0.00114179949820607 +0.001140057787121057 +0.0011384267709048281 +0.001136888249170077 +0.0011354891640834818 +0.0011343034505404718 +0.001133322027611736 +0.0011325532162598433 +0.0011320325475702806 +0.0011318054287678128 +0.0011494175146723837 +0.0011488336282272373 +0.001148064400942781 +0.0011471337587113338 +0.001146095614221124 +0.0011450801131528473 +0.0011440842563924833 +0.0011431450085604262 +0.0011423250667630357 +0.0011416582759447894 +0.0011411204784745747 +0.0011407510736090472 +0.0011405842617554418 +0.0011489888323875758 +0.0011494373110070048 +0.001149634414376087 +0.001149487787074355 +0.0011492163294151946 +0.0011488056570697074 +0.001148383377360031 +0.001147889884398292 +0.0011474605232088442 +0.0011470992016507293 +0.0011467878640512134 +0.0011465687354014543 +0.0011464679885096855 +0.001145185866544202 +0.0011467943556519996 +0.0011479800017741425 +0.001148692722424455 +0.0011492156628498628 +0.00114943752034052 +0.0011496049337191127 +0.0011496134147995893 +0.0011495447657512267 +0.0011494902925263052 +0.0011494452739925453 +0.0011493885962643368 +0.0011493636709388867 +0.0011376033005560497 +0.0011405480767421206 +0.0011427313421410834 +0.0011444468994170102 +0.0011457929114775881 +0.0011467245558531008 +0.001147500149889381 +0.001148040527836743 +0.0011483773110217178 +0.0011486383092008398 +0.001148842029767038 +0.0011489792373433384 +0.0011490391412729715 +0.0011258405462519089 +0.001129993999979027 +0.001133525534671181 +0.0011362035892075008 +0.0011385037911985012 +0.0011402842177216973 +0.001141642434872085 +0.0011427635818908753 +0.0011435923106406201 +0.001144214889139728 +0.0011446674782989534 +0.0011449761436780836 +0.0011451022358476691 +0.0011085907745347703 +0.0011147788208178636 +0.0011193035710267826 +0.0011234581370697914 +0.0011267299958525976 +0.0011292875885543503 +0.001131509113381879 +0.0011333513947853306 +0.0011346182739107133 +0.0011356030428367014 +0.0011363520733124357 +0.0011368591543764672 +0.001137074958593736 +0.0010849777174074563 +0.0010931577752961942 +0.001099679591044592 +0.0011048634718529267 +0.0011095168809998098 +0.0011133006611012608 +0.0011162500497489875 +0.0011186292742857485 +0.0011205956709320801 +0.001122153182510019 +0.001123288086450745 +0.0011240564153547573 +0.0011243922462821126 +0.0010530404549172988 +0.0010638378611693689 +0.0010723436972205373 +0.0010794094738804144 +0.001085380577873553 +0.0010904155206651577 +0.0010946950669831223 +0.0010980456697281444 +0.0011007052167510882 +0.0011025899353343048 +0.0011040468862353542 +0.0011050344057322089 +0.001105465163429182 +0.0010104052437317687 +0.0010245694747056512 +0.0010354384585107663 +0.0010445526861097493 +0.0010523516399781401 +0.001059094869083414 +0.0010646616556730945 +0.0010691387010403584 +0.0010726945421366653 +0.0010752793856740536 +0.0010772797902266873 +0.0010786445181896367 +0.0010792413825041376 +0.0009541541519041764 +0.0009717860240833902 +0.0009862337480053991 +0.0009980261378743623 +0.0010076387762039643 +0.001016176669642546 +0.0010238187139555207 +0.0010296834684034735 +0.0010342520109876705 +0.0010379122415115573 +0.0010405396356570613 +0.0010421594207339355 +0.0010428586576803445 +0.0008810528300836263 +0.0009019874193281545 +0.0009204354259964732 +0.0009347871947453035 +0.0009477689731674703 +0.0009584999927065497 +0.0009680343522587138 +0.0009757084149961625 +0.0009818344733759003 +0.0009867399642800563 +0.0009905731805545446 +0.0009928970711715447 +0.0009937537344977512 +0.0007851512994431041 +0.0008107236607875425 +0.0008339396893369726 +0.0008529960813550764 +0.0008682819015056385 +0.0008818169165165133 +0.0008929162233444359 +0.0009027195398795038 +0.0009107998809814195 +0.0009172515127956972 +0.0009212507653492777 +0.0009239556247014929 +0.0009251277391266792 +0.000666987394874844 +0.0006962522317786866 +0.0007230421143944945 +0.0007462884643394593 +0.0007636430307440484 +0.0007791525299995723 +0.0007929811150631737 +0.0008046732988453471 +0.0008142695043417741 +0.000821934191194155 +0.0008279448014611686 +0.000831965780610925 +0.0008337518268771376 +0.0005311637789158929 +0.0005607153840801046 +0.0005879409104066916 +0.0006105159073566983 +0.000631037241823052 +0.0006490435655227348 +0.0006652862363622995 +0.000678936064606006 +0.0006897825001289724 +0.0006985003835506561 +0.0007053744711150268 +0.0007098618287574869 +0.0007119365769819848 +0.0003852692840956417 +0.0004122249185362752 +0.00043693357739923343 +0.0004602857130048945 +0.000481678115632444 +0.0005008724709857401 +0.0005159994220743188 +0.0005290759947828424 +0.0005399906931240966 +0.0005485090736813112 +0.0005553373203738412 +0.0005599431281585334 +0.0005619355538863809 +0.0002548259404009257 +0.0002741928364422143 +0.00029202302707948945 +0.00030970578900397204 +0.00032611749965694875 +0.0003409182049151718 +0.00035403857010572965 +0.00036569323574715584 +0.000375299344258343 +0.0003829156447637385 +0.00038889095054390555 +0.0003928993317016315 +0.0003946502854360636 +0.00015199122298390372 +0.00016422965089686234 +0.00017532219843067144 +0.00018592927099791659 +0.00019557183571903465 +0.0002052787209675753 +0.00021436858291382918 +0.00022213274346396188 +0.0002287667925161132 +0.00023392333455275128 +0.00023800722829598234 +0.0002407730144042199 +0.00024202639061766948 +8.84660382541235e-05 +9.291653032779149e-05 +9.700246530789789e-05 +0.00010089228452872074 +0.00010456252049397747 +0.00010772229311003613 +0.00011060648798866343 +0.0001131257208837863 +0.00011685413053638276 +0.00011978387882625972 +0.000122172039962779 +0.00012380992569083275 +0.00012452157734560743 +5.215524011516312e-05 +5.406297934431594e-05 +5.5878763834496626e-05 +5.752888646506631e-05 +5.9092262068898554e-05 +6.0436450536566356e-05 +6.168744938012821e-05 +6.277904646875041e-05 +6.366368003948295e-05 +6.442466770582209e-05 +6.49789075265599e-05 +6.532468652566919e-05 +6.552301689705426e-05 +2.5497163620722585e-05 +2.6009587983441356e-05 +2.653051909792246e-05 +2.6991400151310432e-05 +2.7395463506106625e-05 +2.7805161140574776e-05 +2.816704200104747e-05 +2.842957586008461e-05 +2.869221482857123e-05 +2.8903255041528204e-05 +2.901145600371852e-05 +2.9177112326231028e-05 +2.9186806732380715e-05 +0.0008249988930499234 +0.0008261700743123729 +0.0008288331860268862 +0.0008327849887495104 +0.0008378906533205637 +0.0008443052053105761 +0.0008520905458010438 +0.0008609504741626268 +0.0008709191724388203 +0.0008822257398868984 +0.0008945539622704627 +0.0009077602776135867 +0.0009222381664440095 +0.0008712157230955045 +0.0008722876029328284 +0.0008747303011187395 +0.000878347207870558 +0.0008830129914578779 +0.0008888747271289739 +0.0008959802799426395 +0.0009040435672646038 +0.0009131055702387134 +0.0009233603722440033 +0.0009345189516892214 +0.000946437070400678 +0.0009594584706669771 +0.000913510891510771 +0.0009144836397694509 +0.0009166972213329411 +0.0009199707094839705 +0.0009241902003695528 +0.0009294921232982967 +0.0009359056279361889 +0.0009431741838755055 +0.000951330393974342 +0.0009605467688555743 +0.0009705530274560503 +0.0009812151359438605 +0.0009928322866350368 +0.0009518275685878615 +0.0009526998955627288 +0.0009546902791728681 +0.0009576290430740857 +0.0009614057588836724 +0.0009661600956017126 +0.0009718951150770905 +0.0009783958425103364 +0.000985678464124612 +0.0009938901401310492 +0.0010027860794410573 +0.0010122409735677837 +0.001022515447595621 +0.0009862487223176752 +0.0009870243085922127 +0.00098879147388672 +0.0009914079044455336 +0.0009947682693107205 +0.0009989871995033 +0.0010040798310108714 +0.001009842539815315 +0.001016285798715317 +0.0010235409014571538 +0.0010313791921108936 +0.0010396914646806736 +0.0010486954084341904 +0.0010169161130342442 +0.0010176008896510377 +0.001019162085049034 +0.0010214690782944563 +0.0010244304050126404 +0.0010281480166049654 +0.001032626105603358 +0.0010376895945775995 +0.001043339909823679 +0.0010496882381654923 +0.0010565304674732615 +0.0010637643548237555 +0.0010715677554393485 +0.0010440157162753903 +0.0010446135511389116 +0.0010459784791034983 +0.001047992252332939 +0.0010505812770051528 +0.0010538208652327381 +0.0010577235483035274 +0.0010621207440266271 +0.0010670250611550366 +0.00107251824453361 +0.0010784193963756363 +0.0010846292632227547 +0.0010912980818257065 +0.001067729523641934 +0.0010682464801016187 +0.0010694263604597173 +0.0010711694204979007 +0.001073399122061393 +0.0010761915740934587 +0.0010795479511894299 +0.0010833214121882776 +0.0010875133693648929 +0.0010921976337262792 +0.0010972082631013986 +0.0011024503998898383 +0.0011080404740358325 +0.0010882329359700681 +0.00108867433622784 +0.0010896818000351177 +0.0010911641262359578 +0.0010930562827171167 +0.0010954246026802724 +0.0010982621233821092 +0.0011014467303546514 +0.001104963248913606 +0.0011088768549783181 +0.0011130399058535412 +0.0011173548047211583 +0.0011219075721083213 +0.0011056775069288995 +0.0011060458101137729 +0.001106887209403191 +0.0011081251894405327 +0.0011096927973705494 +0.0011116595641033876 +0.0011140034040220043 +0.0011166184502256903 +0.0011194919907945174 +0.001122675665292029 +0.001126003249477123 +0.0011294170595848392 +0.0011329650027997909 +0.0011201740451439609 +0.0011204722089784868 +0.0011211542855034504 +0.001122160873374914 +0.0011234219322726034 +0.0011249905599365498 +0.0011268706860842125 +0.0011289240874802894 +0.001131188769384581 +0.0011336332830484666 +0.0011361613659761649 +0.001138715733475245 +0.0011412767196356114 +0.0011318054291239675 +0.001132032548637276 +0.0011325532180345495 +0.0011333220300840628 +0.0011343034536170113 +0.0011354891676935216 +0.0011368882533727667 +0.001138426775449633 +0.0011400585005286897 +0.0011417995031413573 +0.0011435434098519786 +0.0011452130488250338 +0.0011467887979192534 +0.001140584262053719 +0.0011407510745026744 +0.0011411206851277972 +0.001141658277862013 +0.0011423250691860699 +0.0011431450114181294 +0.0011440842594868878 +0.0011450801165435323 +0.0011460956176277037 +0.0011471337617617343 +0.0011480644040785643 +0.0011488336303943514 +0.0011494175159955278 +0.0011464679887168527 +0.0011465687360221193 +0.0011467878649936045 +0.0011470992029647047 +0.0011474605247231236 +0.0011478898861316574 +0.001148383379070518 +0.0011488056585573303 +0.001149216331058108 +0.001149487787605627 +0.0011496344149607234 +0.0011494373098046007 +0.0011489888286907108 +0.0011493636709976342 +0.0011493885964403445 +0.0011494452742851068 +0.0011494902631856412 +0.0011495447660148754 +0.0011496134151225664 +0.0011496050177660722 +0.001149437519515572 +0.0011492156615044865 +0.0011486927194883907 +0.0011479795243907757 +0.0011467943494028261 +0.0011451858582187467 +0.0011490391411090105 +0.0011489792368520805 +0.0011488421460070755 +0.0011486383080623168 +0.0011483773095656204 +0.0011480405260106826 +0.0011475005979361926 +0.001146724551567671 +0.0011457937635381164 +0.0011444468918409075 +0.0011427313316783243 +0.0011405480647020008 +0.0011376032834902081 +0.0011451022354787483 +0.0011449761424113271 +0.0011446674761932064 +0.001144214886203248 +0.001143592306532688 +0.0011427635761164694 +0.0011416424276533116 +0.0011402842081927479 +0.001138505537012654 +0.0011362035746965277 +0.0011335255180658086 +0.0011299939763134955 +0.0011258405209337043 +0.0011370749578381034 +0.0011368591519512615 +0.0011363520692809243 +0.0011356030372144685 +0.0011346182663666488 +0.0011333513856244086 +0.0011315091000472244 +0.001129287572337884 +0.0011267299776646328 +0.0011234544365390571 +0.001119303540978353 +0.0011147787883845708 +0.001108590726888264 +0.0011243922448526925 +0.001124056411071906 +0.0011232880793310889 +0.001122153172580835 +0.0011205956572860561 +0.00111862925771417 +0.0011162500303192099 +0.0011133006336585892 +0.001109516846783346 +0.0011048634333478264 +0.0010996724628415343 +0.001093157713557002 +0.0010849776462721196 +0.001105465161322375 +0.0011050343993016752 +0.0011040468755451392 +0.0011025877832280112 +0.001100705197679716 +0.0010980456425023616 +0.0010946950350532126 +0.00109041547838398 +0.001085380526803978 +0.0010794094117039961 +0.0010723436293804045 +0.0010638377770729852 +0.00105304034787173 +0.0010792413790396559 +0.001078644507809152 +0.0010772797729696624 +0.001075275911459755 +0.0010726945113479654 +0.001069138658111731 +0.001064661605324924 +0.0010590948005962868 +0.0010523515631477086 +0.0010445525983731054 +0.0010354383450965276 +0.0010245693248639902 +0.0010104050833687642 +0.0010428586527928298 +0.0010421594060900906 +0.0010405396113117836 +0.0010379122012862073 +0.001034251959529509 +0.0010296834059057198 +0.0010238186242687351 +0.001016176567071325 +0.001007638661141916 +0.0009980260107419214 +0.0009862335663959345 +0.0009717858279643753 +0.0009541539126023559 +0.0009937537274172879 +0.000992897049956958 +0.0009905731343843197 +0.0009867398998844124 +0.0009818343909951857 +0.0009757083149392874 +0.0009680342184610888 +0.0009584998396819386 +0.0009477688014849443 +0.0009347869858098404 +0.0009204351979888122 +0.000901987108614504 +0.0008810001240828948 +0.0009251277274926842 +0.0009239555898439201 +0.0009212507073974203 +0.0009172514108010555 +0.0009107997504975545 +0.0009027193813938611 +0.0008929160374459858 +0.0008818166830780644 +0.0008682440950876544 +0.000852995791941804 +0.0008339392708822687 +0.000810723208857328 +0.0007851507919242733 +0.0008337518055313831 +0.0008319657166516304 +0.000827944695126058 +0.000821934042880057 +0.0008142693145975968 +0.0008046730683749757 +0.0007929808314339436 +0.0007791522055889516 +0.0007636426667523487 +0.0007463457206699816 +0.0007230415260155835 +0.0006962515963059348 +0.0006669866558354365 +0.000711936546973632 +0.0007098617388432619 +0.000705374321628187 +0.0006985001750448381 +0.0006897822333758946 +0.0006789357405913299 +0.0006652858234246838 +0.0006490430931990416 +0.0006310367118557254 +0.0006105153216988579 +0.0005879401689818406 +0.0005607145832823174 +0.0005311629216887181 +0.0005619355160798164 +0.0005599430148774502 +0.0005553371320354321 +0.0005485088109803776 +0.000539990357030938 +0.0005290755865369178 +0.0005159989431787436 +0.0005008718394374804 +0.00048167740698759257 +0.0004602849298722142 +0.0004369327226556915 +0.0004122239953195394 +0.00038526828995961624 +0.000394650241601763 +0.00039289920035560206 +0.0003888907321694935 +0.00038291534016714044 +0.00037529895455848443 +0.000365692762377688 +0.0003540380148083242 +0.00034091756972974585 +0.0003262189568564513 +0.00030970500132555595 +0.000292022221551655 +0.0002741919663581274 +0.0002548250089500922 +0.00024202634955411206 +0.0002407728913625743 +0.00023800702372925382 +0.00023392304920921944 +0.00022876642744659799 +0.00022213230000748583 +0.0002143680626973468 +0.00020527812589993938 +0.00019557125881228079 +0.00018592863342020818 +0.00017532150251853295 +0.0001642288991955987 +0.00015199041824547985 +0.00012451645704648342 +0.00012380981940450858 +0.00012217186325261308 +0.00011978363233786682 +0.00011680860860365373 +0.00011312550921469633 +0.00011057064466632368 +0.00010772200906504887 +0.00010456220175573748 +0.00010089193226368405 +9.700208080455587e-05 +9.291611499160686e-05 +8.84655936040252e-05 +6.552300191872615e-05 +6.532464164557741e-05 +6.497883290929931e-05 +6.442456362381574e-05 +6.366354687396845e-05 +6.277888470636715e-05 +6.168725961255436e-05 +6.0467351369707116e-05 +5.90920184715234e-05 +5.7528617239704154e-05 +5.587846996558785e-05 +5.4062661905309444e-05 +5.215490026552183e-05 +2.9186793621835497e-05 +2.9177073041511237e-05 +2.902075343833952e-05 +2.8903163934982228e-05 +2.8708807772785808e-05 +2.842943426038866e-05 +2.8166875885369528e-05 +2.7804971114679784e-05 +2.7395250264254803e-05 +2.699116447176363e-05 +2.6530261840992615e-05 +2.5969474342539444e-05 +2.5454217272088264e-05 +0.0009222381658337839 +0.0009077602757759231 +0.0008945539591902134 +0.0008822257355752704 +0.0008709191668984712 +0.0008609504674075185 +0.0008520905378390422 +0.0008443051961197767 +0.0008378906430169451 +0.0008327849772493367 +0.0008288331735122795 +0.0008261700606918801 +0.0008249988783796361 +0.0009594600684518295 +0.0009464370684750145 +0.0009345193719935693 +0.0009233603677247846 +0.0009131055644294777 +0.0009040435601783828 +0.0008959802715979944 +0.0008888747175486684 +0.0008830129806632929 +0.0008783471958406681 +0.000874730287994191 +0.0008722875886920871 +0.0008712157077790306 +0.000992832285976806 +0.000981213433036861 +0.000970553024123901 +0.0009605467641900743 +0.000951330387962328 +0.000943173186522464 +0.0009359056192925998 +0.0009294921133956132 +0.0009241907978568885 +0.0009199711714801379 +0.0009166972077482624 +0.000914483625021708 +0.0009135108756758677 +0.001022515446923768 +0.0010122409715359086 +0.0010027842839361078 +0.0009938919989842014 +0.0009856784579805639 +0.0009783958350082218 +0.000971895982912863 +0.0009661600854360005 +0.0009614057474099571 +0.0009576290303793542 +0.0009546902652487208 +0.0009526998804587603 +0.0009518275523799701 +0.0010486954077563108 +0.001039691462625488 +0.0010313791886621554 +0.0010235408966103624 +0.0010162857924742794 +0.0010098425321921232 +0.0010040807018192473 +0.0009989879419079074 +0.0009947682576856506 +0.000991407891534791 +0.0009887914597315726 +0.0009870242932921375 +0.0009862487058987378 +0.0010715677547651827 +0.0010637629232827786 +0.0010565304640205535 +0.001049688233302017 +0.0010433399035587167 +0.0010376875788594396 +0.0010326260965589722 +0.0010281480062167502 +0.0010244303932911436 +0.0010214690652996725 +0.0010191620708088912 +0.001017600874230952 +0.001016916096484149 +0.0010912980811661327 +0.001084629261204707 +0.001078419392969513 +0.0010725182397227015 +0.001067025054948122 +0.0010621207364069796 +0.001057723539294343 +0.0010538208548746943 +0.0010505812653257745 +0.0010479922393633666 +0.0010459784648963835 +0.0010446135357448877 +0.0010440156997593543 +0.0011080404734057497 +0.0011024503979329937 +0.0010972082597898358 +0.0010921976290519104 +0.0010875133632852678 +0.0010833214047001485 +0.0010795479423611383 +0.0010761894924073184 +0.0010733991105498716 +0.0010711694076715843 +0.001069426346426425 +0.00106824646490965 +0.0010677295073477143 +0.0011219075715132958 +0.0011173548028651935 +0.0011130399027438874 +0.0011088768505298744 +0.0011049632430789479 +0.0011014467231147895 +0.0010982621148614255 +0.0010954245927665117 +0.0010930562715521582 +0.0010911641138281168 +0.0010896817863423856 +0.001088674321403821 +0.0010882329200745885 +0.001132965002274248 +0.0011294172770811388 +0.001126003246566743 +0.00112267566121858 +0.0011194919853716619 +0.001116618443418196 +0.0011140033960112838 +0.0011116588869158998 +0.0011096927867757277 +0.001108125177664081 +0.001106887196337238 +0.0011060457959332448 +0.0011056774917259321 +0.0011412767192090132 +0.0011387157320714497 +0.0011361613635022954 +0.0011336332793461907 +0.0011311887645690938 +0.0011289240813673578 +0.0011268706787087449 +0.001124990551324017 +0.001123423694799892 +0.0011221612667359749 +0.0011211542733439328 +0.0011204721958345233 +0.0011201740310556457 +0.0011467887976369265 +0.0011452130478234624 +0.0011435434079675331 +0.0011417995002583766 +0.0011400577879768674 +0.0011384267703221074 +0.001136888247003809 +0.001135489160345468 +0.0011343034450733544 +0.0011333220203672274 +0.0011325532074058502 +0.0011320325371514035 +0.001131805416814848 +0.0011494175159074758 +0.001148833629931021 +0.0011480650107319823 +0.0011471337599746462 +0.0011460956148032298 +0.0011450801127079943 +0.0011440831936630278 +0.0011431450055874454 +0.001142325062441827 +0.0011416579954813082 +0.0011411220103426556 +0.0011407510648642513 +0.0011405842517258737 +0.001148988828937459 +0.0011494373100623902 +0.0011496344147353822 +0.0011494877872935984 +0.0011492163296926597 +0.001148805656870699 +0.0011483833764661959 +0.0011478898825876631 +0.0011474605205000073 +0.001147099197779546 +0.0011467879944189671 +0.0011465687293166107 +0.00114646798153255 +0.0011451858587758737 +0.0011467943507458256 +0.0011479795256683684 +0.001148692721216547 +0.0011492156626249632 +0.0011494375204527203 +0.0011496049340293355 +0.0011496134144610352 +0.0011495447652783376 +0.0011494902919177334 +0.0011494452725235433 +0.0011493885945360193 +0.0011493636689575422 +0.0011376058813461034 +0.0011405480672949469 +0.0011427313357281774 +0.0011444468963085197 +0.0011457937685322073 +0.0011467245564442707 +0.001147500151550959 +0.0011480405297566853 +0.001148377313639445 +0.001148638312568689 +0.0011488413871421541 +0.001148979312594052 +0.0011490399191582757 +0.001125844375451402 +0.0011299939814194003 +0.001133525524504336 +0.0011362035832676674 +0.0011385037891825528 +0.0011402842190523412 +0.0011416424386984686 +0.0011427635879782086 +0.0011435923180403789 +0.0011442148978402233 +0.0011446694604152043 +0.0011449761561493725 +0.0011451022483184375 +0.0011085907300956196 +0.001114778795393185 +0.001119303552646676 +0.0011234487849002312 +0.0011267299928836595 +0.0011292828354656007 +0.001131511031969415 +0.0011333476164119062 +0.001134618287523852 +0.0011356030595184323 +0.00113635209364052 +0.0011368591782777095 +0.0011370749841599541 +0.0010849776510677414 +0.0010931577269168147 +0.0010996724820423855 +0.0011048634561521642 +0.0011095168754484495 +0.0011133006650092788 +0.001116250060116711 +0.001118622434888235 +0.0011205956955934215 +0.0011221532120076587 +0.0011232881223881457 +0.0011240564576022291 +0.0011243922946860758 +0.0010530403550974377 +0.0010638377952927687 +0.0010723339310173773 +0.00107940944856718 +0.0010853805696319646 +0.0010904155267336287 +0.0010946950840665724 +0.0010980456986023652 +0.0011007052512627558 +0.0011025878424766099 +0.0011040469402446111 +0.00110503446921616 +0.0011054652348226482 +0.001010405094205994 +0.0010245436089815468 +0.0010354383892886938 +0.0010445526504398385 +0.0010523516276375188 +0.0010590948789805082 +0.0010646616826745755 +0.0010691387466372155 +0.0010726990114048912 +0.0010752760071743844 +0.0010772798774837335 +0.0010786446207414425 +0.0010792414999771652 +0.0009541539287901823 +0.0009717858705382027 +0.000986233637221285 +0.0009980260862501892 +0.0010076387577986035 +0.0010161766845530212 +0.0010238187621525055 +0.0010296835348743477 +0.0010342521043085581 +0.0010379123613522827 +0.0010405397588402272 +0.0010421595654943323 +0.0010428588234896335 +0.0008810001488030277 +0.00090198717611968 +0.0009204352869779857 +0.0009347871099947007 +0.0009477689458063153 +0.0009584780792254756 +0.0009680344242887613 +0.0009757085215375812 +0.0009818464319915185 +0.000986740156269644 +0.000990573414311151 +0.0009928972809955566 +0.0009937539748151438 +0.0007851508263110877 +0.0008107233071125362 +0.0008339394343087134 +0.0008529959640680572 +0.0008682818598981385 +0.0008818169507818618 +0.0008929163235809527 +0.0009027197088070087 +0.0009108001180064098 +0.0009172518170757208 +0.0009212510589149223 +0.0009239559696292812 +0.0009251281341570615 +0.0006669867059437712 +0.0006961606406081676 +0.000722927210106465 +0.0007462883014660686 +0.0007636429730813614 +0.0007791525778063777 +0.0007929812682087423 +0.0008046735447178098 +0.0008142698492519502 +0.0008219346339055188 +0.0008279605832168587 +0.0008319664137619956 +0.0008337525519619212 +0.0005312935009378015 +0.0005607147575860928 +0.0005879404588628441 +0.0006105996232594114 +0.0006310371580756453 +0.0006491825608412273 +0.000665286459595463 +0.0006789364105453844 +0.0006897829853114941 +0.0006985010062290565 +0.0007052346043579209 +0.0007098627191631375 +0.000711937596626452 +0.00038526835743582017 +0.0004123829475386279 +0.0004369330569922079 +0.0004602853963234633 +0.0004816780038944308 +0.000500782033194978 +0.0005159996812356384 +0.0005290764309553744 +0.0005399913047449188 +0.0005485098585437599 +0.0005553382756336808 +0.0005599280115162924 +0.0005619368388906372 +0.00025482507220152425 +0.00027419215591481343 +0.0002920225367646991 +0.00030970547066110977 +0.00032611738748801467 +0.0003409182993784459 +0.0003540388708958457 +0.00036569374179932563 +0.0003753000537573693 +0.0003829165551432419 +0.00038889205849252186 +0.0003929006331902129 +0.00039464549193455635 +0.00015199047291324552 +0.00016422906302251408 +0.00017532177493331954 +0.0001859290134463487 +0.00019557174508455508 +0.00020527880967228525 +0.00021436886493071209 +0.00022213321778955916 +0.0002287674574389873 +0.00023396509095279902 +0.0002380082664910507 +0.00024077423389846182 +0.0002420277869644876 +8.839791483304096e-05 +9.291620553937717e-05 +9.70022313636105e-05 +0.0001008921422914381 +0.0001045624704928271 +0.00010772233553734965 +0.00011057102768777417 +0.00011312594739349773 +0.0001168547051290896 +0.0001197846159812311 +0.00012217293700220877 +0.00012364337543230031 +0.0001245176989348907 +5.2154923368087804e-05 +5.406273113110055e-05 +5.58785850655655e-05 +5.7469094131719524e-05 +5.909222390506788e-05 +6.04676009326531e-05 +6.168755239525869e-05 +6.277921964268779e-05 +6.366392274349372e-05 +6.43554884136556e-05 +6.49792863886197e-05 +6.532513151736316e-05 +6.552352639562512e-05 +2.545423750148371e-05 +2.5969534959645628e-05 +2.653036262544691e-05 +2.699130505660125e-05 +2.7395430137445835e-05 +2.780518962013085e-05 +2.816713222718605e-05 +2.8429727502629616e-05 +2.8692427335937377e-05 +2.8903527640603587e-05 +2.9011787697730024e-05 +2.9177501906332537e-05 +2.9187252777590963e-05 +0.0008249988769355373 +0.0008261700563690588 +0.0008288331663447551 +0.0008327845132988486 +0.0008378906301870738 +0.0008443051804421245 +0.0008520905195246248 +0.0008609504464487832 +0.0008709191433388854 +0.0008822257095158514 +0.0008945539306871648 +0.0009077602450141038 +0.000922238132756811 +0.0008712157062922134 +0.0008722875842391788 +0.0008747302805946625 +0.0008783471854731922 +0.0008830129674543968 +0.0008888747015024516 +0.0008959802527660686 +0.0009040435386255689 +0.0009131055402342777 +0.0009233603409933089 +0.0009345193428197651 +0.0009464370369900868 +0.000959460034819842 +0.0009135108741555404 +0.0009144836204638417 +0.0009166972001832344 +0.0009199711609482119 +0.000924190784343167 +0.0009294920970456258 +0.0009359056000759815 +0.0009431741545552568 +0.0009513303633287299 +0.0009605467370585302 +0.0009705529945023554 +0.0009812134010810318 +0.0009928322518614056 +0.0009518275508374602 +0.0009526998758342598 +0.000954690257570852 +0.000957629501081669 +0.0009614057337110263 +0.0009661600688428271 +0.0009718959634488599 +0.0009783958128242207 +0.000985678433133678 +0.0009938919715538198 +0.0010027842540827636 +0.0010122394924889154 +0.0010225154126548845 +0.0009862487043473104 +0.0009870242886429743 +0.0009887914519884915 +0.000991407880756522 +0.0009947682439287013 +0.0009989879251959361 +0.0010040798024997957 +0.0010098425098784666 +0.0010162857675027758 +0.0010235408691137353 +0.0010313791587853996 +0.0010396914305286628 +0.0010486953736286954 +0.0010169160949293772 +0.0010176008695743934 +0.0010191620630705034 +0.0010214690545263033 +0.0010244303795207816 +0.0010281479895456161 +0.0010326260770401284 +0.0010376875566210449 +0.0010433398787106668 +0.0010496882059624678 +0.001056530434394656 +0.0010637643210342088 +0.0010715677211891792 +0.00104401562867074 +0.00104461353112016 +0.001045978803068552 +0.0010479922286725217 +0.0010505812516878417 +0.0010538208383574152 +0.0010577235199803509 +0.001062120714443546 +0.0010670250305094742 +0.0010725182128840398 +0.0010784193639754274 +0.0010846306237845653 +0.0010912980486111027 +0.001067729505830647 +0.001068246460365464 +0.0010694263388766091 +0.0010711693971497136 +0.0010733990971759884 +0.0010761894762059587 +0.0010795479235403067 +0.0010833213832416924 +0.0010875133394941312 +0.0010921976031414466 +0.0010972082317884022 +0.0011024503681445626 +0.0011080404425413827 +0.0010882329185997748 +0.0010886743169858802 +0.0010896817790041807 +0.0010911636470838778 +0.0010930562586362969 +0.0010954245771123035 +0.001098262096781586 +0.0011014467024697855 +0.0011049632203642698 +0.0011088768260046219 +0.0011130398765981906 +0.0011173547747812132 +0.001121907542553079 +0.0011056774269692015 +0.001106045791720174 +0.0011068871893578128 +0.0011081251680757189 +0.001109692774563791 +0.001111659539853347 +0.0011140033790814588 +0.0011166184240872293 +0.0011194919643526936 +0.0011226756388636782 +0.0011260032222141097 +0.0011294172519628286 +0.0011329649768337306 +0.0011201740297555563 +0.0011204721919396681 +0.0011211542668668052 +0.0011221612577571784 +0.001123423683679118 +0.0011249905378202818 +0.0011268706631744913 +0.001128924064070696 +0.0011311887459741407 +0.0011336332591078736 +0.0011361613428871155 +0.0011387157110291308 +0.0011412766986546186 +0.001131805415681371 +0.0011320325337556458 +0.0011325532017577736 +0.0011333220124989435 +0.0011343034352821384 +0.0011354891488563662 +0.0011368882336285728 +0.001138426755858076 +0.0011400577722479148 +0.0011417994845516189 +0.0011435433923193993 +0.0011452130328663418 +0.0011467887840883669 +0.0011405842507765938 +0.0011407510620202457 +0.001141121800565286 +0.0011416582642089046 +0.0011423250547304197 +0.0011431449964926861 +0.0011440831838149365 +0.001145080101916998 +0.001146095603961647 +0.0011471337502666186 +0.001148065000752238 +0.0011488336230340904 +0.0011494175116965153 +0.0011464679808732311 +0.0011465687273413188 +0.0011467878563287486 +0.0011470991935977639 +0.0011474605156807504 +0.0011478898770711555 +0.0011483833710224998 +0.0011488056521362776 +0.0011492163244640197 +0.0011494877856028027 +0.0011496344128747514 +0.001149437313889091 +0.0011489888407028874 +0.001149363668770576 +0.0011493885939758677 +0.0011494452715924536 +0.001149490291261748 +0.0011495447644392642 +0.0011496134134331474 +0.001149604935908415 +0.0011494375230781519 +0.0011492156669066786 +0.0011486927305606944 +0.0011479795361935732 +0.0011467943706340807 +0.0011451858852719841 +0.0011490399196800898 +0.0011489792437373559 +0.0011488413897409613 +0.0011486383161920862 +0.0011483773182735361 +0.0011480405355681984 +0.0011475006127625005 +0.0011467245700828295 +0.0011457929295358152 +0.0011444469204197844 +0.0011427313690263446 +0.0011405481056131319 +0.0011376059356589384 +0.001145102249492543 +0.0011449761601808775 +0.0011446697689704182 +0.0011442149071856935 +0.0011435929199765287 +0.0011427636063554964 +0.001141642461672516 +0.0011402842493786207 +0.001138503828214559 +0.0011362036294494452 +0.0011335255773516262 +0.0011299940567359415 +0.0011258444560277633 +0.0011370750948795196 +0.0011368591859960266 +0.0011363521064709735 +0.0011356030774114245 +0.0011346183115331508 +0.0011333476455668689 +0.0011315091629132941 +0.0011292828870750843 +0.0011267300507676098 +0.0011234488664882947 +0.0011193036482770576 +0.0011147788986134923 +0.0011085908817326004 +0.0011243922992352651 +0.0011240570851645255 +0.001123288145046748 +0.0011221532436077007 +0.0011205957390224644 +0.001118622487627869 +0.0011162501219527878 +0.0011133007523467246 +0.0011095169843437726 +0.0011048635786962521 +0.0010996726392028592 +0.0010931579234043512 +0.0010849778774589338 +0.0011054652415276513 +0.0011050344896815988 +0.0011040469742666667 +0.0011025900271227416 +0.0011007053119581952 +0.001098045785249556 +0.001094695185684842 +0.0010904156612952399 +0.001085380732163018 +0.0010794096464462044 +0.001072334146921909 +0.0010638380629330228 +0.0010530406957744093 +0.001079241511003021 +0.0010786446537777727 +0.0010772799324049345 +0.0010752760837730846 +0.0010726991093905184 +0.0010691388832593603 +0.0010646618429097422 +0.0010590950969436436 +0.001052351872153573 +0.0010445529296653831 +0.0010354387502342344 +0.001024544085858123 +0.0010104056045679326 +0.0010428588390443505 +0.0010421596120989806 +0.0010405398363200872 +0.0010379124893711376 +0.001034252268076308 +0.001029683733776067 +0.0010238190475844431 +0.0010161770109902088 +0.001007639123988361 +0.0009980264908545139 +0.0009862342152009746 +0.000971786494695139 +0.00095415469037813 +0.0009937539973490163 +0.0009928973485118665 +0.0009905735612498214 +0.000986740361211466 +0.0009818348850861049 +0.0009757088399727501 +0.0009680348501052931 +0.0009584785662345034 +0.0009477694921931048 +0.0009347578243803181 +0.0009204360126218657 +0.0009019881649788983 +0.0008810013108486567 +0.0009251281711827344 +0.0009239560805649712 +0.0009212512433491436 +0.0009172521416779225 +0.0009107522575908937 +0.0009026544859121369 +0.0008929169152105115 +0.0008818176937094633 +0.0008682826934404068 +0.0008529968851378659 +0.0008339407660582409 +0.000810724745399376 +0.0007851524415109397 +0.000833752619895684 +0.0008319666173151155 +0.0008279456787854519 +0.0008219351059213158 +0.000814270453120734 +0.0008046742781993848 +0.0007929821708705847 +0.0007791536102566984 +0.0007636441315001198 +0.0007462895815730116 +0.0007229290826438165 +0.0006962537569711412 +0.0006669890579672936 +0.000711937692129318 +0.0007098630053189265 +0.0007052350801050559 +0.0006985016698075356 +0.0006897838342642662 +0.0006789374417355614 +0.0006652877737867506 +0.0006491840640338122 +0.0006310388447187312 +0.0006106014871350097 +0.000587942818478192 +0.0005607173061586239 +0.0005312962291029998 +0.0005619369592116315 +0.0005599446108601421 +0.0005553388750284858 +0.0005485106946004408 +0.000539992374375426 +0.0005290777302150113 +0.000516001205340804 +0.0005008745745935336 +0.00048168025918624203 +0.00046028788867582654 +0.0004369357772491604 +0.00041238588571888574 +0.0003852715213154493 +0.0003946456314483444 +0.0003929010512044802 +0.0003888927534781988 +0.00038291752453466465 +0.00037530129399338745 +0.00036569524831741635 +0.0003540406381529449 +0.00034092032088255765 +0.00032611965581529214 +0.0003097079774804822 +0.00029202510039082506 +0.0002741949249936202 +0.000254828036582877 +0.0002420279176509412 +0.0002407746254836235 +0.00023800891753319499 +0.00023396599906215892 +0.00022876861928792995 +0.0002221346291083467 +0.000214370520541347 +0.00020528070349983145 +0.00019557358111434327 +0.0001859310425638253 +0.00017532398970272718 +0.0001642314553431422 +0.00015199303402682019 +0.00012451781182932364 +0.00012364371369227387 +0.0001221734993896601 +0.00011978540044082813 +0.00011685570877833757 +0.00011312662103919598 +0.00011057181795143717 +0.00010772323952234183 +0.00010456348489064076 +0.00010089326338968399 +9.700345506162791e-05 +9.291752736419479e-05 +8.839932994845174e-05 +6.552357406477845e-05 +6.532527435012019e-05 +6.497952386117521e-05 +6.435581965833383e-05 +6.366434654831034e-05 +6.277973445821502e-05 +6.168815633849172e-05 +6.046829179505881e-05 +5.909299916380951e-05 +5.7469950951124345e-05 +5.5879520315695936e-05 +5.406374139395241e-05 +5.2156004953841414e-05 +2.9187294502467877e-05 +2.917762693158409e-05 +2.901199556596189e-05 +2.890381759098979e-05 +2.869279831305219e-05 +2.843017814960517e-05 +2.8167660897293638e-05 +2.780579438545741e-05 +2.7396108788472557e-05 +2.699205511663791e-05 +2.653118135635516e-05 +2.5970419372926387e-05 +2.5455184369309275e-05 +0.0009222381315873965 +0.0009077602414924742 +0.0008945539247842906 +0.0008822257012532102 +0.0008709191327215661 +0.0008609504335035407 +0.000852090504266539 +0.0008443051628292174 +0.0008378906104416022 +0.0008327849451340949 +0.0008288331423622276 +0.0008261700302672516 +0.0008249988488219464 +0.0009594584351796979 +0.000946437033299817 +0.0009345189131124394 +0.0009233603323328456 +0.000913105529101677 +0.0009040435250457991 +0.0008959802367746966 +0.0008888746831431107 +0.0008830129467680555 +0.0008783471624195581 +0.0008747302554432642 +0.0008722875569487517 +0.0008712177558655131 +0.0009928322505999992 +0.0009812133972652176 +0.0009705529881167459 +0.0009605467281177376 +0.0009513303518075266 +0.000943174140488282 +0.000935903582543808 +0.0009294920780684894 +0.0009241901542054691 +0.000919970662846107 +0.0009166992993635952 +0.0009144835922018166 +0.0009135108438101205 +0.0010225154113673695 +0.0010122409355182264 +0.0010027860396537949 +0.0009938919623904041 +0.0009856784213594513 +0.0009783957984474464 +0.0009718950697732517 +0.0009661600493616338 +0.0009614057117232239 +0.0009576289953641373 +0.0009546902308871324 +0.0009526998468895746 +0.0009518275197772568 +0.0010486953723296282 +0.0010396914265901798 +0.0010313791521763646 +0.0010235408598255255 +0.001016285755542685 +0.001009842495269663 +0.001004079785293617 +0.0009989871526529144 +0.0009947682216508477 +0.0009914078560148553 +0.0009887914248620914 +0.0009870242593224784 +0.000986248672882669 +0.0010715677198972315 +0.0010637626179632667 +0.0010565304277780157 +0.0010496881966422873 +0.0010433398667047272 +0.0010376895499957582 +0.0010326260597078028 +0.0010281479696380253 +0.0010244303570581402 +0.0010214690296235808 +0.0010191620357812199 +0.0010176008400239137 +0.001016916063213389 +0.0010912980473471218 +0.0010846292263992695 +0.0010784176040712391 +0.0010725182036645947 +0.0010670250186147752 +0.0010621206998415351 +0.001057723502715485 +0.001053820818507645 +0.0010505812293059144 +0.0010479922038181123 +0.0010459784299920605 +0.0010446135016196228 +0.001044015666564587 +0.0011080404413339139 +0.0011024503643945374 +0.0010972082254422468 +0.0010921975941836598 +0.0010875133278433593 +0.001083321368891719 +0.0010795479066220961 +0.0010761915281037127 +0.0010733990751157347 +0.0010711693725698375 +0.0010694263119837278 +0.0010682466512801864 +0.0010677294746050104 +0.0011219075414127945 +0.0011173547712245127 +0.0011130398706389677 +0.0011088768174797885 +0.0011049632091829488 +0.001101446688595583 +0.001098262080452865 +0.0010954245581139385 +0.0010930562372401837 +0.0010911647058598675 +0.0010896811140067475 +0.001088674503203744 +0.0010882328881382701 +0.001132964975826599 +0.001129418380146656 +0.0011260032166367639 +0.0011226756310574717 +0.0011194919539605347 +0.0011166184110416016 +0.0011140033637300126 +0.001111659521792252 +0.0011096933367928555 +0.0011081249476256043 +0.0011068879765976578 +0.0011060457645451376 +0.001105676637025681 +0.0011412776796871946 +0.0011387157083389504 +0.0011361613381462837 +0.0011336332520129673 +0.0011311887367459219 +0.0011289240523561044 +0.0011268706490404194 +0.001124990173401745 +0.0011234226018091377 +0.0011221600892240137 +0.0011211544324652033 +0.001120472166751065 +0.0011201730481647486 +0.0011467887835473255 +0.0011452130309469676 +0.0011435433887081185 +0.001141799479026781 +0.0011400584728821926 +0.0011384267460318785 +0.0011368882214233386 +0.0011354892830473529 +0.0011343037315698378 +0.0011333226461967202 +0.0011325530163317566 +0.001132033010261719 +0.001131805058499224 +0.0011494175115277759 +0.001148833622146181 +0.001148064998442093 +0.001147133746841909 +0.0011460955985489296 +0.0011450800945667142 +0.0011440837053670184 +0.0011431452204307962 +0.0011423247951551584 +0.001141657996380968 +0.0011411213224185443 +0.0011407507647109517 +0.001140584091043449 +0.0011489888411757479 +0.001149437314383109 +0.0011496344124429156 +0.0011494877850048426 +0.001149216321847325 +0.001148805648904081 +0.0011483833073020506 +0.0011478899416805972 +0.0011474607391316997 +0.00114709900976651 +0.0011467880213362485 +0.0011465691024110335 +0.0011464680644474503 +0.0011451858863396418 +0.0011467943732077547 +0.0011479795386419053 +0.001148692733872469 +0.0011492156690539183 +0.001149437500738304 +0.0011496050831558992 +0.001149613412165414 +0.0011495447630277904 +0.0011494902464973126 +0.0011494453228837259 +0.0011493885627884347 +0.0011493636648610194 +0.001137603341141077 +0.0011405481105821586 +0.0011427313767873304 +0.0011444469289813525 +0.0011457937971525664 +0.0011467242029600828 +0.0011475004053949432 +0.00114804061813024 +0.0011483773260804622 +0.0011486384003436812 +0.0011488417810701492 +0.0011489791769868625 +0.0011490394671956946 +0.0011258444592881969 +0.0011299940665206994 +0.0011335255896901802 +0.0011362036458748546 +0.0011385056059329713 +0.00114028482868198 +0.0011416417371355098 +0.0011427638676765031 +0.001143591512965811 +0.001144214539574369 +0.0011446683085682308 +0.0011449751934067766 +0.001145102795945683 +0.001108590887879058 +0.0011147789120445376 +0.0011193036706377958 +0.0011234545623504107 +0.0011267305405694543 +0.0011292857757636732 +0.0011315114995084 +0.0011333495756984482 +0.0011346171938932876 +0.0011356023730014573 +0.0011363517753767449 +0.0011368580946881017 +0.0011370761067857455 +0.001084977886649107 +0.0010931579490065773 +0.0010996726759986682 +0.0011048636223976514 +0.0011095205073903853 +0.0011133024228359499 +0.0011162501790556163 +0.0011186266671718366 +0.0011205972100628546 +0.0011221513384446853 +0.001123288227559695 +0.0011240558877902676 +0.0011243930698306137 +0.0010530407096215081 +0.001063838097848727 +0.0010723439222998657 +0.0010794097170894316 +0.0010853834035507636 +0.0010904132715327474 +0.0010946996857869576 +0.0010980447655571097 +0.0011007083463801521 +0.0011025850274553799 +0.0011040470982543436 +0.0011050336130933084 +0.001105462395303019 +0.0010104056253359673 +0.0010245441481360243 +0.001035438834922471 +0.0010445530294441703 +0.0010523500472577733 +0.0010591012813476088 +0.0010646619911397366 +0.0010691443876128953 +0.0010726948617977544 +0.0010752762671970314 +0.0010772849934783054 +0.0010786416056588286 +0.0010792351896226516 +0.0009541547213998664 +0.0009717865762820119 +0.0009861990139819492 +0.0009980266355557985 +0.0010076363901520777 +0.00101618326326159 +0.0010238286024301085 +0.0010296891609517214 +0.001034263103307598 +0.0010379047584126342 +0.0010405309714248787 +0.0010421507022383663 +0.0010428591661613368 +0.0008810013582214104 +0.0009019882943433849 +0.0009204361831573475 +0.0009347880129237973 +0.0009477828392481928 +0.0009584783510318759 +0.0009680260011545384 +0.000975709235890002 +0.0009818437840496824 +0.000986749434437159 +0.0009905567419658686 +0.0009928877742475745 +0.000993751120163673 +0.0007851525074086259 +0.0008107249336920679 +0.0008339410792426154 +0.000852997214994262 +0.0008682455711129965 +0.0008818182067271105 +0.0008929303104685324 +0.0009026945497258648 +0.0009107677474543346 +0.0009172189259664155 +0.0009212519169841684 +0.0009239403428797272 +0.0009251124244835194 +0.0006669891539926939 +0.0006962540219021522 +0.0007230440691013952 +0.0007463476988236395 +0.0007636816851759655 +0.0007791352440060518 +0.0007929634014874192 +0.0008046273863390142 +0.0008142812208248579 +0.0008219659076521541 +0.0008279269150174394 +0.0008319780272453975 +0.0008337439393071726 +0.0005311658194519092 +0.0005607176401881173 +0.0005879433739951592 +0.0006105182024546612 +0.0006310127828681733 +0.0006491156402946807 +0.0006653460971521427 +0.000678884945060398 +0.0006898263788561425 +0.0006985310771423161 +0.0007053071313660293 +0.0007099073828187166 +0.0007119112670607476 +0.00038527165062465454 +0.0004122275198321982 +0.00043693641795921093 +0.000460288782565453 +0.00048175339986950087 +0.0005009502829458048 +0.0005159363800421141 +0.0005290793484273308 +0.0005399423898224334 +0.000548582807918593 +0.0005553410665775062 +0.000559893420207255 +0.0005618857394343336 +0.00025482815779552466 +0.00027419528825322264 +0.00029202570445351544 +0.00030970887689785013 +0.00032625918882514375 +0.00034088433943838155 +0.0003540230731634138 +0.00036563817150889503 +0.00037526334997965005 +0.00038294017900472176 +0.0003888952951947084 +0.0003929452058103471 +0.0003947171961110535 +0.00015199313879032974 +0.000164231769294837 +0.00017532451174827473 +0.00018593177083145942 +0.00019564780035035038 +0.00020533455029850338 +0.0002143000768574896 +0.0002222100389408269 +0.0002287705931267964 +0.00023396536727444899 +0.00023804981354441453 +0.00024079659745789605 +0.0002420112019414367 +8.846709684268381e-05 +9.29177008866419e-05 +9.700374358750501e-05 +0.00010089366587914898 +0.00010453970241497072 +0.00010772386516178778 +0.0001105811427979181 +0.000113127460748824 +0.00011677978573791886 +0.00011980373986084864 +0.00012217555708365536 +0.00012374649889605968 +0.0001244360826621141 +5.2156049226749535e-05 +5.406387405573992e-05 +5.587974088922406e-05 +5.7529942304880796e-05 +5.9074821415490575e-05 +6.0468770048258703e-05 +6.16952836632908e-05 +6.278037631780253e-05 +6.367875942219304e-05 +6.439831016270844e-05 +6.496633992861838e-05 +6.53403696254177e-05 +6.551037078313064e-05 +2.545522313613078e-05 +2.5970535537278583e-05 +2.6531374495860525e-05 +2.6992324528269924e-05 +2.7412712223449242e-05 +2.7789430366842154e-05 +2.814515806996489e-05 +2.8430740108181708e-05 +2.870414481137111e-05 +2.889234739354646e-05 +2.905902725010379e-05 +2.91536621430522e-05 +2.9200613129892047e-05 +); + } + + "(OUTLET|Outlet|outlet)" + { + type zeroGradient; + } + + "(WALL|Wall|wall)" + { + type kqRWallFunction; + value uniform 0; + } + +} + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/0/normals0.csv b/Simulation_setup_and_evluation/BaseCase/0/normals0.csv new file mode 100644 index 0000000..ad8e7ff --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/0/normals0.csv @@ -0,0 +1,4058 @@ +"Normals:0","Normals:1","Normals:2","Points:0","Points:1","Points:2" +-1,0,0,0.842,-0.285,-0.142 +-1,0,0,0.842,-0.285,-0.1396923 +-1,0,0,0.842,-0.285,-0.1373846 +-1,0,0,0.842,-0.285,-0.1350769 +-1,0,0,0.842,-0.285,-0.1327692 +-1,0,0,0.842,-0.285,-0.1304615 +-1,0,0,0.842,-0.285,-0.1281538 +-1,0,0,0.842,-0.285,-0.1258461 +-1,0,0,0.842,-0.285,-0.1235385 +-1,0,0,0.842,-0.285,-0.1212308 +-1,0,0,0.842,-0.285,-0.1189231 +-1,0,0,0.842,-0.285,-0.1166154 +-1,0,0,0.842,-0.285,-0.1143077 +-1,0,0,0.842,-0.285,-0.112 +-1,0,0,0.842,-0.2826923,-0.142 +-1,0,0,0.842,-0.2826917,-0.1396917 +-1,0,0,0.842,-0.2826949,-0.1373836 +-1,0,0,0.842,-0.2827019,-0.1350757 +-1,0,0,0.842,-0.2827144,-0.1327682 +-1,0,0,0.842,-0.2827317,-0.1304614 +-1,0,0,0.842,-0.2827527,-0.1281552 +-1,0,0,0.842,-0.2827781,-0.1258497 +-1,0,0,0.842,-0.2828093,-0.1235455 +-1,0,0,0.842,-0.2828441,-0.1212422 +-1,0,0,0.842,-0.2828827,-0.1189399 +-1,0,0,0.842,-0.282927,-0.1166395 +-1,0,0,0.842,-0.2829757,-0.1143406 +-1,0,0,0.842,-0.2830267,-0.1120425 +-1,0,0,0.842,-0.2803846,-0.142 +-1,0,0,0.842,-0.2803836,-0.1396949 +-1,0,0,0.842,-0.2803901,-0.1373902 +-1,0,0,0.842,-0.2804043,-0.1350858 +-1,0,0,0.842,-0.2804294,-0.1327824 +-1,0,0,0.842,-0.2804641,-0.1304803 +-1,0,0,0.842,-0.2805064,-0.1281793 +-1,0,0,0.842,-0.2805573,-0.1258798 +-1,0,0,0.842,-0.2806198,-0.1235829 +-1,0,0,0.842,-0.2806897,-0.1212879 +-1,0,0,0.842,-0.2807669,-0.1189948 +-1,0,0,0.842,-0.2808558,-0.1167054 +-1,0,0,0.842,-0.2809533,-0.1144191 +-1,0,0,0.842,-0.2810555,-0.1121344 +-1,0,0,0.842,-0.2780769,-0.142 +-1,0,0,0.842,-0.2780757,-0.1397019 +-1,0,0,0.842,-0.2780858,-0.1374043 +-1,0,0,0.842,-0.2781074,-0.1351074 +-1,0,0,0.842,-0.2781453,-0.1328118 +-1,0,0,0.842,-0.2781976,-0.1305181 +-1,0,0,0.842,-0.2782613,-0.1282262 +-1,0,0,0.842,-0.278338,-0.1259366 +-1,0,0,0.842,-0.278432,-0.1236507 +-1,0,0,0.842,-0.2785372,-0.1213677 +-1,0,0,0.842,-0.2786534,-0.1190877 +-1,0,0,0.842,-0.2787868,-0.116813 +-1,0,0,0.842,-0.2789335,-0.1145431 +-1,0,0,0.842,-0.279087,-0.1122757 +-1,0,0,0.842,-0.2757692,-0.142 +-1,0,0,0.842,-0.2757682,-0.1397144 +-1,0,0,0.842,-0.2757824,-0.1374294 +-1,0,0,0.842,-0.2758118,-0.1351452 +-1,0,0,0.842,-0.275863,-0.132863 +-1,0,0,0.842,-0.2759335,-0.1305832 +-1,0,0,0.842,-0.2760191,-0.1283058 +-1,0,0,0.842,-0.2761219,-0.1260314 +-1,0,0,0.842,-0.276248,-0.1237621 +-1,0,0,0.842,-0.2763889,-0.1214966 +-1,0,0,0.842,-0.2765444,-0.119235 +-1,0,0,0.842,-0.2767231,-0.1169806 +-1,0,0,0.842,-0.2769193,-0.1147325 +-1,0,0,0.842,-0.2771246,-0.1124878 +-1,0,0,0.842,-0.2734616,-0.142 +-1,0,0,0.842,-0.2734614,-0.1397316 +-1,0,0,0.842,-0.2734803,-0.1374641 +-1,0,0,0.842,-0.2735181,-0.1351976 +-1,0,0,0.842,-0.2735832,-0.1329335 +-1,0,0,0.842,-0.2736725,-0.1306725 +-1,0,0,0.842,-0.2737806,-0.1284144 +-1,0,0,0.842,-0.2739103,-0.1261601 +-1,0,0,0.842,-0.2740691,-0.1239121 +-1,0,0,0.842,-0.2742462,-0.1216689 +-1,0,0,0.842,-0.2744418,-0.1194307 +-1,0,0,0.842,-0.2746663,-0.1172014 +-1,0,0,0.842,-0.2749126,-0.11498 +-1,0,0,0.842,-0.2751704,-0.1127627 +-1,0,0,0.842,-0.2711538,-0.142 +-1,0,0,0.842,-0.2711552,-0.1397527 +-1,0,0,0.842,-0.2711793,-0.1375064 +-1,0,0,0.842,-0.2712262,-0.1352613 +-1,0,0,0.842,-0.2713058,-0.1330191 +-1,0,0,0.842,-0.2714144,-0.1307806 +-1,0,0,0.842,-0.2715456,-0.1285456 +-1,0,0,0.842,-0.2717027,-0.1263151 +-1,0,0,0.842,-0.2718948,-0.1240923 +-1,0,0,0.842,-0.2721089,-0.1218751 +-1,0,0,0.842,-0.272345,-0.1196639 +-1,0,0,0.842,-0.2726158,-0.1174635 +-1,0,0,0.842,-0.2729129,-0.1152725 +-1,0,0,0.842,-0.2732238,-0.1130866 +-1,0,0,0.842,-0.2688462,-0.142 +-1,0,0,0.842,-0.2688497,-0.1397781 +-1,0,0,0.842,-0.2688798,-0.1375573 +-1,0,0,0.842,-0.2689365,-0.135338 +-1,0,0,0.842,-0.2690314,-0.1331219 +-1,0,0,0.842,-0.2691601,-0.1309103 +-1,0,0,0.842,-0.2693151,-0.1287027 +-1,0,0,0.842,-0.2695005,-0.1265005 +-1,0,0,0.842,-0.2697265,-0.1243071 +-1,0,0,0.842,-0.2699782,-0.1221203 +-1,0,0,0.842,-0.2702557,-0.1199405 +-1,0,0,0.842,-0.2705737,-0.1177733 +-1,0,0,0.842,-0.2709223,-0.1156171 +-1,0,0,0.842,-0.2712869,-0.1134667 +-1,0,0,0.842,-0.2665385,-0.142 +-1,0,0,0.842,-0.2665455,-0.1398093 +-1,0,0,0.842,-0.2665829,-0.1376198 +-1,0,0,0.842,-0.2666507,-0.135432 +-1,0,0,0.842,-0.2667621,-0.133248 +-1,0,0,0.842,-0.2669121,-0.1310691 +-1,0,0,0.842,-0.2670923,-0.1288947 +-1,0,0,0.842,-0.2673071,-0.1267264 +-1,0,0,0.842,-0.2675683,-0.1245683 +-1,0,0,0.842,-0.267859,-0.1224178 +-1,0,0,0.842,-0.2681791,-0.1202751 +-1,0,0,0.842,-0.2685455,-0.1181469 +-1,0,0,0.842,-0.2689469,-0.1160313 +-1,0,0,0.842,-0.2693666,-0.1139223 +-1,0,0,0.842,-0.2642308,-0.142 +-1,0,0,0.842,-0.2642422,-0.1398441 +-1,0,0,0.842,-0.2642879,-0.1376897 +-1,0,0,0.842,-0.2643677,-0.1355372 +-1,0,0,0.842,-0.2644965,-0.1333889 +-1,0,0,0.842,-0.2646689,-0.1312463 +-1,0,0,0.842,-0.2648751,-0.1291088 +-1,0,0,0.842,-0.2651203,-0.1269782 +-1,0,0,0.842,-0.2654178,-0.124859 +-1,0,0,0.842,-0.2657484,-0.1227484 +-1,0,0,0.842,-0.2661121,-0.1206467 +-1,0,0,0.842,-0.2665278,-0.1185611 +-1,0,0,0.842,-0.2669829,-0.1164898 +-1,0,0,0.842,-0.2674586,-0.1144259 +-1,0,0,0.842,-0.2619231,-0.142 +-1,0,0,0.842,-0.2619399,-0.1398827 +-1,0,0,0.842,-0.2619948,-0.1377669 +-1,0,0,0.842,-0.2620877,-0.1356533 +-1,0,0,0.842,-0.262235,-0.1335444 +-1,0,0,0.842,-0.2624306,-0.1314418 +-1,0,0,0.842,-0.2626639,-0.129345 +-1,0,0,0.842,-0.2629405,-0.1272557 +-1,0,0,0.842,-0.2632751,-0.1251792 +-1,0,0,0.842,-0.2636467,-0.1231121 +-1,0,0,0.842,-0.2640549,-0.1210549 +-1,0,0,0.842,-0.264521,-0.1190157 +-1,0,0,0.842,-0.2650307,-0.1169923 +-1,0,0,0.842,-0.2655635,-0.1149771 +-1,0,0,0.842,-0.2596154,-0.142 +-1,0,0,0.842,-0.2596395,-0.139927 +-1,0,0,0.842,-0.2597054,-0.1378558 +-1,0,0,0.842,-0.259813,-0.1357868 +-1,0,0,0.842,-0.2599806,-0.1337231 +-1,0,0,0.842,-0.2602014,-0.1316663 +-1,0,0,0.842,-0.2604635,-0.1296159 +-1,0,0,0.842,-0.2607733,-0.1275737 +-1,0,0,0.842,-0.2611469,-0.1255455 +-1,0,0,0.842,-0.2615611,-0.1235278 +-1,0,0,0.842,-0.2620157,-0.121521 +-1,0,0,0.842,-0.2625339,-0.1195339 +-1,0,0,0.842,-0.2631002,-0.1175642 +-1,0,0,0.842,-0.2636917,-0.1156036 +-1,0,0,0.842,-0.2573077,-0.142 +-1,0,0,0.842,-0.2573406,-0.1399757 +-1,0,0,0.842,-0.257419,-0.1379533 +-1,0,0,0.842,-0.2575431,-0.1359335 +-1,0,0,0.842,-0.2577325,-0.1339193 +-1,0,0,0.842,-0.25798,-0.1319126 +-1,0,0,0.842,-0.2582725,-0.1299129 +-1,0,0,0.842,-0.2586171,-0.1279223 +-1,0,0,0.842,-0.2590313,-0.1259469 +-1,0,0,0.842,-0.2594897,-0.1239828 +-1,0,0,0.842,-0.2599923,-0.1220307 +-1,0,0,0.842,-0.2605642,-0.1201002 +-1,0,0,0.842,-0.2611886,-0.1181886 +-1,0,0,0.842,-0.2618405,-0.1162869 +-1,0,0,0.842,-0.255,-0.142 +-1,0,0,0.842,-0.2550425,-0.1400267 +-1,0,0,0.842,-0.2551344,-0.1380555 +-1,0,0,0.842,-0.2552757,-0.136087 +-1,0,0,0.842,-0.2554878,-0.1341246 +-1,0,0,0.842,-0.2557627,-0.1321704 +-1,0,0,0.842,-0.2560866,-0.1302238 +-1,0,0,0.842,-0.2564667,-0.1282869 +-1,0,0,0.842,-0.2569223,-0.1263666 +-1,0,0,0.842,-0.2574258,-0.1244586 +-1,0,0,0.842,-0.2579771,-0.1225635 +-1,0,0,0.842,-0.2586036,-0.1206917 +-1,0,0,0.842,-0.2592869,-0.1188405 +-1,0,0,0.842,-0.26,-0.117 +-1,0,0,0.842,-0.285,-0.1443077 +-1,0,0,0.842,-0.2826917,-0.1443083 +-1,0,0,0.842,-0.2803836,-0.1443051 +-1,0,0,0.842,-0.2780757,-0.1442981 +-1,0,0,0.842,-0.2757682,-0.1442856 +-1,0,0,0.842,-0.2734614,-0.1442683 +-1,0,0,0.842,-0.2711552,-0.1442473 +-1,0,0,0.842,-0.2688497,-0.1442219 +-1,0,0,0.842,-0.2665455,-0.1441908 +-1,0,0,0.842,-0.2642422,-0.1441559 +-1,0,0,0.842,-0.2619399,-0.1441173 +-1,0,0,0.842,-0.2596395,-0.144073 +-1,0,0,0.842,-0.2573406,-0.1440243 +-1,0,0,0.842,-0.2550425,-0.1439733 +-1,0,0,0.842,-0.285,-0.1466154 +-1,0,0,0.842,-0.2826949,-0.1466164 +-1,0,0,0.842,-0.2803901,-0.1466098 +-1,0,0,0.842,-0.2780858,-0.1465957 +-1,0,0,0.842,-0.2757824,-0.1465706 +-1,0,0,0.842,-0.2734803,-0.1465359 +-1,0,0,0.842,-0.2711793,-0.1464936 +-1,0,0,0.842,-0.2688798,-0.1464427 +-1,0,0,0.842,-0.2665829,-0.1463802 +-1,0,0,0.842,-0.2642879,-0.1463103 +-1,0,0,0.842,-0.2619948,-0.1462331 +-1,0,0,0.842,-0.2597054,-0.1461442 +-1,0,0,0.842,-0.257419,-0.1460467 +-1,0,0,0.842,-0.2551344,-0.1459446 +-1,0,0,0.842,-0.285,-0.1489231 +-1,0,0,0.842,-0.2827019,-0.1489243 +-1,0,0,0.842,-0.2804043,-0.1489142 +-1,0,0,0.842,-0.2781074,-0.1488926 +-1,0,0,0.842,-0.2758118,-0.1488548 +-1,0,0,0.842,-0.2735181,-0.1488024 +-1,0,0,0.842,-0.2712262,-0.1487387 +-1,0,0,0.842,-0.2689365,-0.148662 +-1,0,0,0.842,-0.2666507,-0.148568 +-1,0,0,0.842,-0.2643677,-0.1484628 +-1,0,0,0.842,-0.2620877,-0.1483467 +-1,0,0,0.842,-0.259813,-0.1482131 +-1,0,0,0.842,-0.2575431,-0.1480665 +-1,0,0,0.842,-0.2552757,-0.147913 +-1,0,0,0.842,-0.285,-0.1512308 +-1,0,0,0.842,-0.2827144,-0.1512318 +-1,0,0,0.842,-0.2804294,-0.1512176 +-1,0,0,0.842,-0.2781453,-0.1511882 +-1,0,0,0.842,-0.275863,-0.151137 +-1,0,0,0.842,-0.2735832,-0.1510665 +-1,0,0,0.842,-0.2713058,-0.1509809 +-1,0,0,0.842,-0.2690314,-0.1508781 +-1,0,0,0.842,-0.2667621,-0.150752 +-1,0,0,0.842,-0.2644965,-0.1506111 +-1,0,0,0.842,-0.262235,-0.1504556 +-1,0,0,0.842,-0.2599806,-0.1502769 +-1,0,0,0.842,-0.2577325,-0.1500807 +-1,0,0,0.842,-0.2554878,-0.1498754 +-1,0,0,0.842,-0.285,-0.1535385 +-1,0,0,0.842,-0.2827317,-0.1535386 +-1,0,0,0.842,-0.2804641,-0.1535197 +-1,0,0,0.842,-0.2781976,-0.1534819 +-1,0,0,0.842,-0.2759335,-0.1534168 +-1,0,0,0.842,-0.2736725,-0.1533275 +-1,0,0,0.842,-0.2714144,-0.1532194 +-1,0,0,0.842,-0.2691601,-0.1530897 +-1,0,0,0.842,-0.2669121,-0.1529309 +-1,0,0,0.842,-0.2646689,-0.1527537 +-1,0,0,0.842,-0.2624306,-0.1525582 +-1,0,0,0.842,-0.2602014,-0.1523337 +-1,0,0,0.842,-0.25798,-0.1520874 +-1,0,0,0.842,-0.2557627,-0.1518296 +-1,0,0,0.842,-0.285,-0.1558461 +-1,0,0,0.842,-0.2827527,-0.1558448 +-1,0,0,0.842,-0.2805064,-0.1558207 +-1,0,0,0.842,-0.2782613,-0.1557738 +-1,0,0,0.842,-0.2760191,-0.1556942 +-1,0,0,0.842,-0.2737806,-0.1555856 +-1,0,0,0.842,-0.2715456,-0.1554544 +-1,0,0,0.842,-0.2693151,-0.1552973 +-1,0,0,0.842,-0.2670923,-0.1551053 +-1,0,0,0.842,-0.2648751,-0.1548911 +-1,0,0,0.842,-0.2626639,-0.154655 +-1,0,0,0.842,-0.2604635,-0.1543842 +-1,0,0,0.842,-0.2582725,-0.1540871 +-1,0,0,0.842,-0.2560866,-0.1537762 +-1,0,0,0.842,-0.285,-0.1581538 +-1,0,0,0.842,-0.2827781,-0.1581503 +-1,0,0,0.842,-0.2805573,-0.1581202 +-1,0,0,0.842,-0.278338,-0.1580634 +-1,0,0,0.842,-0.2761219,-0.1579686 +-1,0,0,0.842,-0.2739103,-0.1578399 +-1,0,0,0.842,-0.2717027,-0.1576849 +-1,0,0,0.842,-0.2695005,-0.1574996 +-1,0,0,0.842,-0.2673071,-0.1572736 +-1,0,0,0.842,-0.2651203,-0.1570218 +-1,0,0,0.842,-0.2629405,-0.1567443 +-1,0,0,0.842,-0.2607733,-0.1564263 +-1,0,0,0.842,-0.2586171,-0.1560777 +-1,0,0,0.842,-0.2564667,-0.1557131 +-1,0,0,0.842,-0.285,-0.1604615 +-1,0,0,0.842,-0.2828093,-0.1604545 +-1,0,0,0.842,-0.2806198,-0.1604171 +-1,0,0,0.842,-0.278432,-0.1603493 +-1,0,0,0.842,-0.276248,-0.1602379 +-1,0,0,0.842,-0.2740691,-0.1600879 +-1,0,0,0.842,-0.2718948,-0.1599077 +-1,0,0,0.842,-0.2697265,-0.1596929 +-1,0,0,0.842,-0.2675683,-0.1594317 +-1,0,0,0.842,-0.2654178,-0.159141 +-1,0,0,0.842,-0.2632751,-0.1588208 +-1,0,0,0.842,-0.2611469,-0.1584544 +-1,0,0,0.842,-0.2590313,-0.1580531 +-1,0,0,0.842,-0.2569223,-0.1576334 +-1,0,0,0.842,-0.285,-0.1627692 +-1,0,0,0.842,-0.2828441,-0.1627578 +-1,0,0,0.842,-0.2806897,-0.1627121 +-1,0,0,0.842,-0.2785372,-0.1626323 +-1,0,0,0.842,-0.2763889,-0.1625035 +-1,0,0,0.842,-0.2742462,-0.1623311 +-1,0,0,0.842,-0.2721089,-0.1621249 +-1,0,0,0.842,-0.2699782,-0.1618797 +-1,0,0,0.842,-0.267859,-0.1615822 +-1,0,0,0.842,-0.2657484,-0.1612516 +-1,0,0,0.842,-0.2636467,-0.1608879 +-1,0,0,0.842,-0.2615611,-0.1604722 +-1,0,0,0.842,-0.2594897,-0.1600171 +-1,0,0,0.842,-0.2574258,-0.1595414 +-1,0,0,0.842,-0.285,-0.1650769 +-1,0,0,0.842,-0.2828827,-0.1650601 +-1,0,0,0.842,-0.2807669,-0.1650052 +-1,0,0,0.842,-0.2786534,-0.1649123 +-1,0,0,0.842,-0.2765444,-0.164765 +-1,0,0,0.842,-0.2744418,-0.1645693 +-1,0,0,0.842,-0.272345,-0.1643361 +-1,0,0,0.842,-0.2702557,-0.1640595 +-1,0,0,0.842,-0.2681791,-0.1637249 +-1,0,0,0.842,-0.2661121,-0.1633534 +-1,0,0,0.842,-0.2640549,-0.1629451 +-1,0,0,0.842,-0.2620157,-0.162479 +-1,0,0,0.842,-0.2599923,-0.1619693 +-1,0,0,0.842,-0.2579771,-0.1614366 +-1,0,0,0.842,-0.285,-0.1673846 +-1,0,0,0.842,-0.282927,-0.1673605 +-1,0,0,0.842,-0.2808558,-0.1672947 +-1,0,0,0.842,-0.2787868,-0.167187 +-1,0,0,0.842,-0.2767231,-0.1670194 +-1,0,0,0.842,-0.2746663,-0.1667986 +-1,0,0,0.842,-0.2726158,-0.1665365 +-1,0,0,0.842,-0.2705737,-0.1662267 +-1,0,0,0.842,-0.2685455,-0.1658531 +-1,0,0,0.842,-0.2665278,-0.1654389 +-1,0,0,0.842,-0.264521,-0.1649843 +-1,0,0,0.842,-0.2625339,-0.1644661 +-1,0,0,0.842,-0.2605642,-0.1638998 +-1,0,0,0.842,-0.2586036,-0.1633083 +-1,0,0,0.842,-0.285,-0.1696923 +-1,0,0,0.842,-0.2829757,-0.1696594 +-1,0,0,0.842,-0.2809533,-0.169581 +-1,0,0,0.842,-0.2789335,-0.1694569 +-1,0,0,0.842,-0.2769193,-0.1692675 +-1,0,0,0.842,-0.2749126,-0.16902 +-1,0,0,0.842,-0.2729129,-0.1687275 +-1,0,0,0.842,-0.2709223,-0.1683829 +-1,0,0,0.842,-0.2689469,-0.1679687 +-1,0,0,0.842,-0.2669829,-0.1675102 +-1,0,0,0.842,-0.2650307,-0.1670077 +-1,0,0,0.842,-0.2631002,-0.1664358 +-1,0,0,0.842,-0.2611886,-0.1658114 +-1,0,0,0.842,-0.2592869,-0.1651595 +-1,0,0,0.842,-0.285,-0.172 +-1,0,0,0.842,-0.2830267,-0.1719575 +-1,0,0,0.842,-0.2810555,-0.1718656 +-1,0,0,0.842,-0.279087,-0.1717243 +-1,0,0,0.842,-0.2771246,-0.1715122 +-1,0,0,0.842,-0.2751704,-0.1712373 +-1,0,0,0.842,-0.2732238,-0.1709134 +-1,0,0,0.842,-0.2712869,-0.1705333 +-1,0,0,0.842,-0.2693666,-0.1700777 +-1,0,0,0.842,-0.2674586,-0.1695741 +-1,0,0,0.842,-0.2655635,-0.1690229 +-1,0,0,0.842,-0.2636917,-0.1683964 +-1,0,0,0.842,-0.2618405,-0.1677131 +-1,0,0,0.842,-0.26,-0.167 +-1,0,0,0.842,-0.2873077,-0.142 +-1,0,0,0.842,-0.2873083,-0.1443083 +-1,0,0,0.842,-0.2873051,-0.1466164 +-1,0,0,0.842,-0.2872981,-0.1489243 +-1,0,0,0.842,-0.2872856,-0.1512318 +-1,0,0,0.842,-0.2872683,-0.1535386 +-1,0,0,0.842,-0.2872473,-0.1558448 +-1,0,0,0.842,-0.2872219,-0.1581503 +-1,0,0,0.842,-0.2871908,-0.1604545 +-1,0,0,0.842,-0.2871559,-0.1627578 +-1,0,0,0.842,-0.2871173,-0.1650601 +-1,0,0,0.842,-0.287073,-0.1673605 +-1,0,0,0.842,-0.2870243,-0.1696594 +-1,0,0,0.842,-0.2869733,-0.1719575 +-1,0,0,0.842,-0.2896154,-0.142 +-1,0,0,0.842,-0.2896164,-0.1443051 +-1,0,0,0.842,-0.2896098,-0.1466098 +-1,0,0,0.842,-0.2895957,-0.1489142 +-1,0,0,0.842,-0.2895706,-0.1512176 +-1,0,0,0.842,-0.2895359,-0.1535197 +-1,0,0,0.842,-0.2894936,-0.1558207 +-1,0,0,0.842,-0.2894427,-0.1581202 +-1,0,0,0.842,-0.2893802,-0.1604171 +-1,0,0,0.842,-0.2893103,-0.1627121 +-1,0,0,0.842,-0.2892331,-0.1650052 +-1,0,0,0.842,-0.2891442,-0.1672947 +-1,0,0,0.842,-0.2890467,-0.169581 +-1,0,0,0.842,-0.2889445,-0.1718656 +-1,0,0,0.842,-0.2919231,-0.142 +-1,0,0,0.842,-0.2919243,-0.1442981 +-1,0,0,0.842,-0.2919142,-0.1465957 +-1,0,0,0.842,-0.2918926,-0.1488926 +-1,0,0,0.842,-0.2918548,-0.1511882 +-1,0,0,0.842,-0.2918024,-0.1534819 +-1,0,0,0.842,-0.2917387,-0.1557738 +-1,0,0,0.842,-0.291662,-0.1580634 +-1,0,0,0.842,-0.291568,-0.1603493 +-1,0,0,0.842,-0.2914628,-0.1626323 +-1,0,0,0.842,-0.2913467,-0.1649123 +-1,0,0,0.842,-0.2912132,-0.167187 +-1,0,0,0.842,-0.2910665,-0.1694569 +-1,0,0,0.842,-0.290913,-0.1717243 +-1,0,0,0.842,-0.2942308,-0.142 +-1,0,0,0.842,-0.2942318,-0.1442856 +-1,0,0,0.842,-0.2942176,-0.1465706 +-1,0,0,0.842,-0.2941882,-0.1488548 +-1,0,0,0.842,-0.294137,-0.151137 +-1,0,0,0.842,-0.2940665,-0.1534168 +-1,0,0,0.842,-0.293981,-0.1556942 +-1,0,0,0.842,-0.2938781,-0.1579686 +-1,0,0,0.842,-0.293752,-0.1602379 +-1,0,0,0.842,-0.2936111,-0.1625035 +-1,0,0,0.842,-0.2934556,-0.164765 +-1,0,0,0.842,-0.2932769,-0.1670194 +-1,0,0,0.842,-0.2930807,-0.1692675 +-1,0,0,0.842,-0.2928754,-0.1715122 +-1,0,0,0.842,-0.2965385,-0.142 +-1,0,0,0.842,-0.2965386,-0.1442683 +-1,0,0,0.842,-0.2965197,-0.1465359 +-1,0,0,0.842,-0.2964818,-0.1488024 +-1,0,0,0.842,-0.2964168,-0.1510665 +-1,0,0,0.842,-0.2963275,-0.1533275 +-1,0,0,0.842,-0.2962194,-0.1555856 +-1,0,0,0.842,-0.2960897,-0.1578399 +-1,0,0,0.842,-0.2959309,-0.1600879 +-1,0,0,0.842,-0.2957537,-0.1623311 +-1,0,0,0.842,-0.2955582,-0.1645693 +-1,0,0,0.842,-0.2953337,-0.1667986 +-1,0,0,0.842,-0.2950874,-0.16902 +-1,0,0,0.842,-0.2948296,-0.1712373 +-1,0,0,0.842,-0.2988462,-0.142 +-1,0,0,0.842,-0.2988448,-0.1442473 +-1,0,0,0.842,-0.2988207,-0.1464936 +-1,0,0,0.842,-0.2987738,-0.1487387 +-1,0,0,0.842,-0.2986942,-0.1509809 +-1,0,0,0.842,-0.2985856,-0.1532194 +-1,0,0,0.842,-0.2984544,-0.1554544 +-1,0,0,0.842,-0.2982973,-0.1576849 +-1,0,0,0.842,-0.2981053,-0.1599077 +-1,0,0,0.842,-0.2978911,-0.1621249 +-1,0,0,0.842,-0.297655,-0.1643361 +-1,0,0,0.842,-0.2973841,-0.1665365 +-1,0,0,0.842,-0.2970871,-0.1687275 +-1,0,0,0.842,-0.2967762,-0.1709134 +-1,0,0,0.842,-0.3011538,-0.142 +-1,0,0,0.842,-0.3011503,-0.1442219 +-1,0,0,0.842,-0.3011202,-0.1464427 +-1,0,0,0.842,-0.3010634,-0.148662 +-1,0,0,0.842,-0.3009686,-0.1508781 +-1,0,0,0.842,-0.3008399,-0.1530897 +-1,0,0,0.842,-0.3006849,-0.1552973 +-1,0,0,0.842,-0.3004996,-0.1574996 +-1,0,0,0.842,-0.3002736,-0.1596929 +-1,0,0,0.842,-0.3000218,-0.1618797 +-1,0,0,0.842,-0.2997443,-0.1640595 +-1,0,0,0.842,-0.2994263,-0.1662267 +-1,0,0,0.842,-0.2990777,-0.1683829 +-1,0,0,0.842,-0.2987131,-0.1705333 +-1,0,0,0.842,-0.3034616,-0.142 +-1,0,0,0.842,-0.3034545,-0.1441908 +-1,0,0,0.842,-0.3034171,-0.1463802 +-1,0,0,0.842,-0.3033493,-0.148568 +-1,0,0,0.842,-0.3032379,-0.150752 +-1,0,0,0.842,-0.3030879,-0.1529309 +-1,0,0,0.842,-0.3029077,-0.1551053 +-1,0,0,0.842,-0.3026929,-0.1572736 +-1,0,0,0.842,-0.3024317,-0.1594317 +-1,0,0,0.842,-0.302141,-0.1615822 +-1,0,0,0.842,-0.3018208,-0.1637249 +-1,0,0,0.842,-0.3014545,-0.1658531 +-1,0,0,0.842,-0.3010531,-0.1679687 +-1,0,0,0.842,-0.3006334,-0.1700777 +-1,0,0,0.842,-0.3057692,-0.142 +-1,0,0,0.842,-0.3057578,-0.1441559 +-1,0,0,0.842,-0.3057121,-0.1463103 +-1,0,0,0.842,-0.3056323,-0.1484628 +-1,0,0,0.842,-0.3055035,-0.1506111 +-1,0,0,0.842,-0.3053311,-0.1527537 +-1,0,0,0.842,-0.3051249,-0.1548911 +-1,0,0,0.842,-0.3048797,-0.1570218 +-1,0,0,0.842,-0.3045822,-0.159141 +-1,0,0,0.842,-0.3042516,-0.1612516 +-1,0,0,0.842,-0.3038879,-0.1633534 +-1,0,0,0.842,-0.3034722,-0.1654389 +-1,0,0,0.842,-0.3030171,-0.1675102 +-1,0,0,0.842,-0.3025414,-0.1695741 +-1,0,0,0.842,-0.3080769,-0.142 +-1,0,0,0.842,-0.3080601,-0.1441173 +-1,0,0,0.842,-0.3080052,-0.1462331 +-1,0,0,0.842,-0.3079123,-0.1483467 +-1,0,0,0.842,-0.307765,-0.1504556 +-1,0,0,0.842,-0.3075694,-0.1525582 +-1,0,0,0.842,-0.3073361,-0.154655 +-1,0,0,0.842,-0.3070595,-0.1567443 +-1,0,0,0.842,-0.3067248,-0.1588208 +-1,0,0,0.842,-0.3063534,-0.1608879 +-1,0,0,0.842,-0.3059451,-0.1629451 +-1,0,0,0.842,-0.305479,-0.1649843 +-1,0,0,0.842,-0.3049693,-0.1670077 +-1,0,0,0.842,-0.3044366,-0.1690229 +-1,0,0,0.842,-0.3103846,-0.142 +-1,0,0,0.842,-0.3103605,-0.144073 +-1,0,0,0.842,-0.3102947,-0.1461442 +-1,0,0,0.842,-0.310187,-0.1482131 +-1,0,0,0.842,-0.3100194,-0.1502769 +-1,0,0,0.842,-0.3097986,-0.1523337 +-1,0,0,0.842,-0.3095365,-0.1543842 +-1,0,0,0.842,-0.3092268,-0.1564263 +-1,0,0,0.842,-0.3088531,-0.1584544 +-1,0,0,0.842,-0.3084389,-0.1604722 +-1,0,0,0.842,-0.3079843,-0.162479 +-1,0,0,0.842,-0.3074661,-0.1644661 +-1,0,0,0.842,-0.3068998,-0.1664358 +-1,0,0,0.842,-0.3063083,-0.1683964 +-1,0,0,0.842,-0.3126923,-0.142 +-1,0,0,0.842,-0.3126594,-0.1440243 +-1,0,0,0.842,-0.3125809,-0.1460467 +-1,0,0,0.842,-0.3124569,-0.1480665 +-1,0,0,0.842,-0.3122675,-0.1500807 +-1,0,0,0.842,-0.31202,-0.1520874 +-1,0,0,0.842,-0.3117275,-0.1540871 +-1,0,0,0.842,-0.3113829,-0.1560777 +-1,0,0,0.842,-0.3109687,-0.1580531 +-1,0,0,0.842,-0.3105102,-0.1600171 +-1,0,0,0.842,-0.3100077,-0.1619693 +-1,0,0,0.842,-0.3094358,-0.1638998 +-1,0,0,0.842,-0.3088115,-0.1658114 +-1,0,0,0.842,-0.3081595,-0.1677131 +-1,0,0,0.842,-0.315,-0.142 +-1,0,0,0.842,-0.3149575,-0.1439733 +-1,0,0,0.842,-0.3148656,-0.1459446 +-1,0,0,0.842,-0.3147243,-0.147913 +-1,0,0,0.842,-0.3145122,-0.1498754 +-1,0,0,0.842,-0.3142373,-0.1518296 +-1,0,0,0.842,-0.3139134,-0.1537762 +-1,0,0,0.842,-0.3135333,-0.1557131 +-1,0,0,0.842,-0.3130777,-0.1576334 +-1,0,0,0.842,-0.3125741,-0.1595414 +-1,0,0,0.842,-0.3120229,-0.1614366 +-1,0,0,0.842,-0.3113964,-0.1633083 +-1,0,0,0.842,-0.3107131,-0.1651595 +-1,0,0,0.842,-0.31,-0.167 +-1,0,0,0.842,-0.2873083,-0.1396917 +-1,0,0,0.842,-0.2896164,-0.1396949 +-1,0,0,0.842,-0.2919243,-0.1397019 +-1,0,0,0.842,-0.2942318,-0.1397144 +-1,0,0,0.842,-0.2965386,-0.1397316 +-1,0,0,0.842,-0.2988448,-0.1397527 +-1,0,0,0.842,-0.3011503,-0.1397781 +-1,0,0,0.842,-0.3034545,-0.1398093 +-1,0,0,0.842,-0.3057578,-0.1398441 +-1,0,0,0.842,-0.3080601,-0.1398827 +-1,0,0,0.842,-0.3103605,-0.139927 +-1,0,0,0.842,-0.3126594,-0.1399757 +-1,0,0,0.842,-0.3149575,-0.1400267 +-1,0,0,0.842,-0.2873051,-0.1373836 +-1,0,0,0.842,-0.2896098,-0.1373902 +-1,0,0,0.842,-0.2919142,-0.1374043 +-1,0,0,0.842,-0.2942176,-0.1374294 +-1,0,0,0.842,-0.2965197,-0.1374641 +-1,0,0,0.842,-0.2988207,-0.1375064 +-1,0,0,0.842,-0.3011202,-0.1375573 +-1,0,0,0.842,-0.3034171,-0.1376198 +-1,0,0,0.842,-0.3057121,-0.1376897 +-1,0,0,0.842,-0.3080052,-0.1377669 +-1,0,0,0.842,-0.3102947,-0.1378558 +-1,0,0,0.842,-0.3125809,-0.1379533 +-1,0,0,0.842,-0.3148656,-0.1380555 +-1,0,0,0.842,-0.2872981,-0.1350757 +-1,0,0,0.842,-0.2895957,-0.1350858 +-1,0,0,0.842,-0.2918926,-0.1351074 +-1,0,0,0.842,-0.2941882,-0.1351452 +-1,0,0,0.842,-0.2964818,-0.1351976 +-1,0,0,0.842,-0.2987738,-0.1352613 +-1,0,0,0.842,-0.3010634,-0.135338 +-1,0,0,0.842,-0.3033493,-0.135432 +-1,0,0,0.842,-0.3056323,-0.1355372 +-1,0,0,0.842,-0.3079123,-0.1356533 +-1,0,0,0.842,-0.310187,-0.1357868 +-1,0,0,0.842,-0.3124569,-0.1359335 +-1,0,0,0.842,-0.3147243,-0.136087 +-1,0,0,0.842,-0.2872856,-0.1327682 +-1,0,0,0.842,-0.2895706,-0.1327824 +-1,0,0,0.842,-0.2918548,-0.1328118 +-1,0,0,0.842,-0.294137,-0.132863 +-1,0,0,0.842,-0.2964168,-0.1329335 +-1,0,0,0.842,-0.2986942,-0.1330191 +-1,0,0,0.842,-0.3009686,-0.1331219 +-1,0,0,0.842,-0.3032379,-0.133248 +-1,0,0,0.842,-0.3055035,-0.1333889 +-1,0,0,0.842,-0.307765,-0.1335444 +-1,0,0,0.842,-0.3100194,-0.1337231 +-1,0,0,0.842,-0.3122675,-0.1339193 +-1,0,0,0.842,-0.3145122,-0.1341246 +-1,0,0,0.842,-0.2872683,-0.1304614 +-1,0,0,0.842,-0.2895359,-0.1304803 +-1,0,0,0.842,-0.2918024,-0.1305181 +-1,0,0,0.842,-0.2940665,-0.1305832 +-1,0,0,0.842,-0.2963275,-0.1306725 +-1,0,0,0.842,-0.2985856,-0.1307806 +-1,0,0,0.842,-0.3008399,-0.1309103 +-1,0,0,0.842,-0.3030879,-0.1310691 +-1,0,0,0.842,-0.3053311,-0.1312463 +-1,0,0,0.842,-0.3075694,-0.1314418 +-1,0,0,0.842,-0.3097986,-0.1316663 +-1,0,0,0.842,-0.31202,-0.1319126 +-1,0,0,0.842,-0.3142373,-0.1321704 +-1,0,0,0.842,-0.2872473,-0.1281552 +-1,0,0,0.842,-0.2894936,-0.1281793 +-1,0,0,0.842,-0.2917387,-0.1282262 +-1,0,0,0.842,-0.293981,-0.1283058 +-1,0,0,0.842,-0.2962194,-0.1284144 +-1,0,0,0.842,-0.2984544,-0.1285456 +-1,0,0,0.842,-0.3006849,-0.1287027 +-1,0,0,0.842,-0.3029077,-0.1288947 +-1,0,0,0.842,-0.3051249,-0.1291088 +-1,0,0,0.842,-0.3073361,-0.129345 +-1,0,0,0.842,-0.3095365,-0.1296159 +-1,0,0,0.842,-0.3117275,-0.1299129 +-1,0,0,0.842,-0.3139134,-0.1302238 +-1,0,0,0.842,-0.2872219,-0.1258497 +-1,0,0,0.842,-0.2894427,-0.1258798 +-1,0,0,0.842,-0.291662,-0.1259366 +-1,0,0,0.842,-0.2938781,-0.1260314 +-1,0,0,0.842,-0.2960897,-0.1261601 +-1,0,0,0.842,-0.2982973,-0.1263151 +-1,0,0,0.842,-0.3004996,-0.1265005 +-1,0,0,0.842,-0.3026929,-0.1267264 +-1,0,0,0.842,-0.3048797,-0.1269782 +-1,0,0,0.842,-0.3070595,-0.1272557 +-1,0,0,0.842,-0.3092268,-0.1275737 +-1,0,0,0.842,-0.3113829,-0.1279223 +-1,0,0,0.842,-0.3135333,-0.1282869 +-1,0,0,0.842,-0.2871908,-0.1235455 +-1,0,0,0.842,-0.2893802,-0.1235829 +-1,0,0,0.842,-0.291568,-0.1236507 +-1,0,0,0.842,-0.293752,-0.1237621 +-1,0,0,0.842,-0.2959309,-0.1239121 +-1,0,0,0.842,-0.2981053,-0.1240923 +-1,0,0,0.842,-0.3002736,-0.1243071 +-1,0,0,0.842,-0.3024317,-0.1245683 +-1,0,0,0.842,-0.3045822,-0.124859 +-1,0,0,0.842,-0.3067248,-0.1251792 +-1,0,0,0.842,-0.3088531,-0.1255455 +-1,0,0,0.842,-0.3109687,-0.1259469 +-1,0,0,0.842,-0.3130777,-0.1263666 +-1,0,0,0.842,-0.2871559,-0.1212422 +-1,0,0,0.842,-0.2893103,-0.1212879 +-1,0,0,0.842,-0.2914628,-0.1213677 +-1,0,0,0.842,-0.2936111,-0.1214966 +-1,0,0,0.842,-0.2957537,-0.1216689 +-1,0,0,0.842,-0.2978911,-0.1218751 +-1,0,0,0.842,-0.3000218,-0.1221203 +-1,0,0,0.842,-0.302141,-0.1224178 +-1,0,0,0.842,-0.3042516,-0.1227484 +-1,0,0,0.842,-0.3063534,-0.1231121 +-1,0,0,0.842,-0.3084389,-0.1235278 +-1,0,0,0.842,-0.3105102,-0.1239828 +-1,0,0,0.842,-0.3125741,-0.1244586 +-1,0,0,0.842,-0.2871173,-0.1189399 +-1,0,0,0.842,-0.2892331,-0.1189948 +-1,0,0,0.842,-0.2913467,-0.1190877 +-1,0,0,0.842,-0.2934556,-0.119235 +-1,0,0,0.842,-0.2955582,-0.1194307 +-1,0,0,0.842,-0.297655,-0.1196639 +-1,0,0,0.842,-0.2997443,-0.1199405 +-1,0,0,0.842,-0.3018208,-0.1202751 +-1,0,0,0.842,-0.3038879,-0.1206467 +-1,0,0,0.842,-0.3059451,-0.1210549 +-1,0,0,0.842,-0.3079843,-0.121521 +-1,0,0,0.842,-0.3100077,-0.1220307 +-1,0,0,0.842,-0.3120229,-0.1225635 +-1,0,0,0.842,-0.287073,-0.1166395 +-1,0,0,0.842,-0.2891442,-0.1167054 +-1,0,0,0.842,-0.2912132,-0.116813 +-1,0,0,0.842,-0.2932769,-0.1169806 +-1,0,0,0.842,-0.2953337,-0.1172014 +-1,0,0,0.842,-0.2973841,-0.1174635 +-1,0,0,0.842,-0.2994263,-0.1177733 +-1,0,0,0.842,-0.3014545,-0.1181469 +-1,0,0,0.842,-0.3034722,-0.1185611 +-1,0,0,0.842,-0.305479,-0.1190157 +-1,0,0,0.842,-0.3074661,-0.1195339 +-1,0,0,0.842,-0.3094358,-0.1201002 +-1,0,0,0.842,-0.3113964,-0.1206917 +-1,0,0,0.842,-0.2870243,-0.1143406 +-1,0,0,0.842,-0.2890467,-0.1144191 +-1,0,0,0.842,-0.2910665,-0.1145431 +-1,0,0,0.842,-0.2930807,-0.1147325 +-1,0,0,0.842,-0.2950874,-0.11498 +-1,0,0,0.842,-0.2970871,-0.1152725 +-1,0,0,0.842,-0.2990777,-0.1156171 +-1,0,0,0.842,-0.3010531,-0.1160313 +-1,0,0,0.842,-0.3030171,-0.1164898 +-1,0,0,0.842,-0.3049693,-0.1169923 +-1,0,0,0.842,-0.3068998,-0.1175642 +-1,0,0,0.842,-0.3088115,-0.1181886 +-1,0,0,0.842,-0.3107131,-0.1188405 +-1,0,0,0.842,-0.2869733,-0.1120425 +-1,0,0,0.842,-0.2889445,-0.1121344 +-1,0,0,0.842,-0.290913,-0.1122757 +-1,0,0,0.842,-0.2928754,-0.1124878 +-1,0,0,0.842,-0.2948296,-0.1127627 +-1,0,0,0.842,-0.2967762,-0.1130866 +-1,0,0,0.842,-0.2987131,-0.1134667 +-1,0,0,0.842,-0.3006334,-0.1139223 +-1,0,0,0.842,-0.3025414,-0.1144259 +-1,0,0,0.842,-0.3044366,-0.1149771 +-1,0,0,0.842,-0.3063083,-0.1156036 +-1,0,0,0.842,-0.3081595,-0.1162869 +-1,0,0,0.842,-0.31,-0.117 +-1,0,0,0.842,-0.285,-0.1095863 +-1,0,0,0.842,-0.285,-0.1074588 +-1,0,0,0.842,-0.285,-0.1055835 +-1,0,0,0.842,-0.285,-0.1039305 +-1,0,0,0.842,-0.285,-0.1024735 +-1,0,0,0.842,-0.285,-0.1011893 +-1,0,0,0.842,-0.285,-0.1000573 +-1,0,0,0.842,-0.285,-0.0990595 +-1,0,0,0.842,-0.285,-0.09818 +-1,0,0,0.842,-0.285,-0.09740477 +-1,0,0,0.842,-0.285,-0.09672145 +-1,0,0,0.842,-0.285,-0.09611914 +-1,0,0,0.842,-0.285,-0.09558824 +-1,0,0,0.842,-0.285,-0.09512028 +-1,0,0,0.842,-0.285,-0.0947078 +-1,0,0,0.842,-0.285,-0.09434422 +-1,0,0,0.842,-0.285,-0.09402375 +-1,0,0,0.842,-0.285,-0.09374127 +-1,0,0,0.842,-0.285,-0.09349228 +-1,0,0,0.842,-0.285,-0.09327281 +-1,0,0,0.842,-0.285,-0.09307936 +-1,0,0,0.842,-0.285,-0.09290884 +-1,0,0,0.842,-0.285,-0.09275854 +-1,0,0,0.842,-0.285,-0.09262607 +-1,0,0,0.842,-0.285,-0.09250929 +-1,0,0,0.842,-0.285,-0.09240636 +-1,0,0,0.842,-0.285,-0.09231564 +-1,0,0,0.842,-0.285,-0.09223566 +-1,0,0,0.842,-0.285,-0.09216517 +-1,0,0,0.842,-0.285,-0.09210304 +-1,0,0,0.842,-0.285,-0.09204827 +-1,0,0,0.842,-0.285,-0.092 +-1,0,0,0.842,-0.2829005,-0.1096347 +-1,0,0,0.842,-0.2827893,-0.1075124 +-1,0,0,0.842,-0.2826912,-0.1056416 +-1,0,0,0.842,-0.2826048,-0.1039927 +-1,0,0,0.842,-0.2825286,-0.1025393 +-1,0,0,0.842,-0.2824615,-0.1012581 +-1,0,0,0.842,-0.2824023,-0.1001289 +-1,0,0,0.842,-0.2823502,-0.09913352 +-1,0,0,0.842,-0.2823042,-0.09825617 +-1,0,0,0.842,-0.2822636,-0.09748282 +-1,0,0,0.842,-0.2822279,-0.09680117 +-1,0,0,0.842,-0.2821964,-0.09620033 +-1,0,0,0.842,-0.2821687,-0.09567072 +-1,0,0,0.842,-0.2821442,-0.0952039 +-1,0,0,0.842,-0.2821226,-0.09479243 +-1,0,0,0.842,-0.2821036,-0.09442973 +-1,0,0,0.842,-0.2820869,-0.09411004 +-1,0,0,0.842,-0.2820721,-0.09382825 +-1,0,0,0.842,-0.2820591,-0.09357987 +-1,0,0,0.842,-0.2820476,-0.09336093 +-1,0,0,0.842,-0.2820375,-0.09316795 +-1,0,0,0.842,-0.2820286,-0.09299786 +-1,0,0,0.842,-0.2820207,-0.09284792 +-1,0,0,0.842,-0.2820138,-0.09271576 +-1,0,0,0.842,-0.2820077,-0.09259927 +-1,0,0,0.842,-0.2820023,-0.0924966 +-1,0,0,0.842,-0.2819976,-0.09240609 +-1,0,0,0.842,-0.2819934,-0.09232631 +-1,0,0,0.842,-0.2819897,-0.09225599 +-1,0,0,0.842,-0.2819865,-0.09219401 +-1,0,0,0.842,-0.2819836,-0.09213938 +-1,0,0,0.842,-0.2819811,-0.09209123 +-1,0,0,0.842,-0.2808042,-0.1097485 +-1,0,0,0.842,-0.2805826,-0.1076455 +-1,0,0,0.842,-0.2803874,-0.1057918 +-1,0,0,0.842,-0.2802153,-0.1041578 +-1,0,0,0.842,-0.2800636,-0.1027176 +-1,0,0,0.842,-0.2799299,-0.1014481 +-1,0,0,0.842,-0.279812,-0.1003291 +-1,0,0,0.842,-0.2797081,-0.09934282 +-1,0,0,0.842,-0.2796166,-0.09847344 +-1,0,0,0.842,-0.2795359,-0.09770713 +-1,0,0,0.842,-0.2794648,-0.09703168 +-1,0,0,0.842,-0.279402,-0.0964363 +-1,0,0,0.842,-0.2793468,-0.0959115 +-1,0,0,0.842,-0.279298,-0.09544893 +-1,0,0,0.842,-0.2792551,-0.0950412 +-1,0,0,0.842,-0.2792172,-0.09468181 +-1,0,0,0.842,-0.2791839,-0.09436502 +-1,0,0,0.842,-0.2791544,-0.09408579 +-1,0,0,0.842,-0.2791285,-0.09383967 +-1,0,0,0.842,-0.2791057,-0.09362272 +-1,0,0,0.842,-0.2790855,-0.0934315 +-1,0,0,0.842,-0.2790678,-0.09326294 +-1,0,0,0.842,-0.2790521,-0.09311438 +-1,0,0,0.842,-0.2790383,-0.09298342 +-1,0,0,0.842,-0.2790262,-0.09286799 +-1,0,0,0.842,-0.2790155,-0.09276624 +-1,0,0,0.842,-0.279006,-0.09267656 +-1,0,0,0.842,-0.2789977,-0.09259751 +-1,0,0,0.842,-0.2789904,-0.09252783 +-1,0,0,0.842,-0.2789839,-0.09246641 +-1,0,0,0.842,-0.2789782,-0.09241228 +-1,0,0,0.842,-0.2789732,-0.09236456 +-1,0,0,0.842,-0.2787129,-0.1099276 +-1,0,0,0.842,-0.2783831,-0.1078579 +-1,0,0,0.842,-0.2780925,-0.1060335 +-1,0,0,0.842,-0.2778363,-0.1044255 +-1,0,0,0.842,-0.2776105,-0.103008 +-1,0,0,0.842,-0.2774115,-0.1017587 +-1,0,0,0.842,-0.277236,-0.1006574 +-1,0,0,0.842,-0.2770814,-0.09968673 +-1,0,0,0.842,-0.2769451,-0.09883112 +-1,0,0,0.842,-0.2768249,-0.09807695 +-1,0,0,0.842,-0.276719,-0.0974122 +-1,0,0,0.842,-0.2766257,-0.09682625 +-1,0,0,0.842,-0.2765434,-0.09630977 +-1,0,0,0.842,-0.2764708,-0.09585452 +-1,0,0,0.842,-0.2764069,-0.09545325 +-1,0,0,0.842,-0.2763506,-0.09509955 +-1,0,0,0.842,-0.2763009,-0.09478778 +-1,0,0,0.842,-0.2762571,-0.09451298 +-1,0,0,0.842,-0.2762185,-0.09427075 +-1,0,0,0.842,-0.2761845,-0.09405724 +-1,0,0,0.842,-0.2761545,-0.09386905 +-1,0,0,0.842,-0.2761281,-0.09370316 +-1,0,0,0.842,-0.2761048,-0.09355695 +-1,0,0,0.842,-0.2760843,-0.09342806 +-1,0,0,0.842,-0.2760662,-0.09331446 +-1,0,0,0.842,-0.2760502,-0.09321433 +-1,0,0,0.842,-0.2760362,-0.09312607 +-1,0,0,0.842,-0.2760238,-0.09304827 +-1,0,0,0.842,-0.2760128,-0.09297969 +-1,0,0,0.842,-0.2760032,-0.09291925 +-1,0,0,0.842,-0.2759947,-0.09286597 +-1,0,0,0.842,-0.2759872,-0.09281901 +-1,0,0,0.842,-0.276631,-0.1101906 +-1,0,0,0.842,-0.2761959,-0.1081657 +-1,0,0,0.842,-0.2758123,-0.1063809 +-1,0,0,0.842,-0.2754743,-0.1048077 +-1,0,0,0.842,-0.2751763,-0.103421 +-1,0,0,0.842,-0.2749136,-0.1021988 +-1,0,0,0.842,-0.2746821,-0.1011214 +-1,0,0,0.842,-0.274478,-0.1001717 +-1,0,0,0.842,-0.2742982,-0.09933469 +-1,0,0,0.842,-0.2741396,-0.09859687 +-1,0,0,0.842,-0.2739998,-0.09794652 +-1,0,0,0.842,-0.2738767,-0.09737328 +-1,0,0,0.842,-0.2737681,-0.09686799 +-1,0,0,0.842,-0.2736724,-0.09642262 +-1,0,0,0.842,-0.273588,-0.09603004 +-1,0,0,0.842,-0.2735136,-0.09568401 +-1,0,0,0.842,-0.2734481,-0.095379 +-1,0,0,0.842,-0.2733904,-0.09511016 +-1,0,0,0.842,-0.2733394,-0.09487318 +-1,0,0,0.842,-0.2732945,-0.0946643 +-1,0,0,0.842,-0.273255,-0.09448019 +-1,0,0,0.842,-0.2732201,-0.0943179 +-1,0,0,0.842,-0.2731894,-0.09417485 +-1,0,0,0.842,-0.2731622,-0.09404876 +-1,0,0,0.842,-0.2731384,-0.09393762 +-1,0,0,0.842,-0.2731173,-0.09383966 +-1,0,0,0.842,-0.2730988,-0.09375331 +-1,0,0,0.842,-0.2730824,-0.0936772 +-1,0,0,0.842,-0.273068,-0.09361011 +-1,0,0,0.842,-0.2730553,-0.09355098 +-1,0,0,0.842,-0.2730441,-0.09349886 +-1,0,0,0.842,-0.2730342,-0.09345291 +-1,0,0,0.842,-0.2745615,-0.1105302 +-1,0,0,0.842,-0.2740248,-0.1085624 +-1,0,0,0.842,-0.2735517,-0.1068279 +-1,0,0,0.842,-0.2731346,-0.105299 +-1,0,0,0.842,-0.2727671,-0.1039514 +-1,0,0,0.842,-0.2724431,-0.1027635 +-1,0,0,0.842,-0.2721575,-0.1017165 +-1,0,0,0.842,-0.2719058,-0.1007936 +-1,0,0,0.842,-0.2716839,-0.09998008 +-1,0,0,0.842,-0.2714883,-0.09926304 +-1,0,0,0.842,-0.271316,-0.09863101 +-1,0,0,0.842,-0.271164,-0.09807391 +-1,0,0,0.842,-0.2710301,-0.09758286 +-1,0,0,0.842,-0.270912,-0.09715003 +-1,0,0,0.842,-0.270808,-0.09676851 +-1,0,0,0.842,-0.2707162,-0.09643222 +-1,0,0,0.842,-0.2706354,-0.0961358 +-1,0,0,0.842,-0.2705641,-0.09587453 +-1,0,0,0.842,-0.2705013,-0.09564423 +-1,0,0,0.842,-0.2704459,-0.09544123 +-1,0,0,0.842,-0.2703972,-0.0952623 +-1,0,0,0.842,-0.2703541,-0.09510458 +-1,0,0,0.842,-0.2703162,-0.09496556 +-1,0,0,0.842,-0.2702828,-0.09484303 +-1,0,0,0.842,-0.2702533,-0.09473502 +-1,0,0,0.842,-0.2702274,-0.09463982 +-1,0,0,0.842,-0.2702045,-0.0945559 +-1,0,0,0.842,-0.2701843,-0.09448193 +-1,0,0,0.842,-0.2701665,-0.09441673 +-1,0,0,0.842,-0.2701508,-0.09435926 +-1,0,0,0.842,-0.270137,-0.09430861 +-1,0,0,0.842,-0.2701249,-0.09426396 +-1,0,0,0.842,-0.2725052,-0.1109339 +-1,0,0,0.842,-0.2718718,-0.1090364 +-1,0,0,0.842,-0.2713136,-0.1073639 +-1,0,0,0.842,-0.2708215,-0.1058897 +-1,0,0,0.842,-0.2703877,-0.1045902 +-1,0,0,0.842,-0.2700054,-0.1034448 +-1,0,0,0.842,-0.2696684,-0.1024352 +-1,0,0,0.842,-0.2693714,-0.1015453 +-1,0,0,0.842,-0.2691095,-0.1007609 +-1,0,0,0.842,-0.2688788,-0.1000695 +-1,0,0,0.842,-0.2686753,-0.0994601 +-1,0,0,0.842,-0.268496,-0.09892292 +-1,0,0,0.842,-0.268338,-0.09844942 +-1,0,0,0.842,-0.2681987,-0.09803207 +-1,0,0,0.842,-0.2680759,-0.09766419 +-1,0,0,0.842,-0.2679676,-0.09733993 +-1,0,0,0.842,-0.2678722,-0.09705411 +-1,0,0,0.842,-0.2677881,-0.09680218 +-1,0,0,0.842,-0.267714,-0.09658011 +-1,0,0,0.842,-0.2676487,-0.09638437 +-1,0,0,0.842,-0.2675911,-0.09621184 +-1,0,0,0.842,-0.2675403,-0.09605976 +-1,0,0,0.842,-0.2674956,-0.09592571 +-1,0,0,0.842,-0.2674561,-0.09580755 +-1,0,0,0.842,-0.2674214,-0.09570341 +-1,0,0,0.842,-0.2673907,-0.09561161 +-1,0,0,0.842,-0.2673637,-0.09553069 +-1,0,0,0.842,-0.2673399,-0.09545936 +-1,0,0,0.842,-0.2673189,-0.0953965 +-1,0,0,0.842,-0.2673004,-0.09534109 +-1,0,0,0.842,-0.2672841,-0.09529224 +-1,0,0,0.842,-0.2672698,-0.09524919 +-1,0,0,0.842,-0.2704653,-0.1114076 +-1,0,0,0.842,-0.2697412,-0.1095927 +-1,0,0,0.842,-0.2691029,-0.1079929 +-1,0,0,0.842,-0.2685403,-0.1065828 +-1,0,0,0.842,-0.2680443,-0.1053398 +-1,0,0,0.842,-0.2676072,-0.1042442 +-1,0,0,0.842,-0.2672219,-0.1032786 +-1,0,0,0.842,-0.2668822,-0.1024273 +-1,0,0,0.842,-0.2665829,-0.1016771 +-1,0,0,0.842,-0.266319,-0.1010157 +-1,0,0,0.842,-0.2660864,-0.1004328 +-1,0,0,0.842,-0.2658814,-0.09991898 +-1,0,0,0.842,-0.2657007,-0.09946608 +-1,0,0,0.842,-0.2655414,-0.09906687 +-1,0,0,0.842,-0.265401,-0.09871498 +-1,0,0,0.842,-0.2652773,-0.09840482 +-1,0,0,0.842,-0.2651682,-0.09813143 +-1,0,0,0.842,-0.265072,-0.09789046 +-1,0,0,0.842,-0.2649873,-0.09767805 +-1,0,0,0.842,-0.2649126,-0.09749082 +-1,0,0,0.842,-0.2648467,-0.09732579 +-1,0,0,0.842,-0.2647887,-0.09718033 +-1,0,0,0.842,-0.2647375,-0.09705211 +-1,0,0,0.842,-0.2646925,-0.09693909 +-1,0,0,0.842,-0.2646527,-0.09683947 +-1,0,0,0.842,-0.2646177,-0.09675167 +-1,0,0,0.842,-0.2645868,-0.09667427 +-1,0,0,0.842,-0.2645596,-0.09660605 +-1,0,0,0.842,-0.2645356,-0.09654591 +-1,0,0,0.842,-0.2645144,-0.09649291 +-1,0,0,0.842,-0.2644958,-0.09644619 +-1,0,0,0.842,-0.2644794,-0.09640501 +-1,0,0,0.842,-0.268449,-0.1119678 +-1,0,0,0.842,-0.2676403,-0.110245 +-1,0,0,0.842,-0.2669274,-0.1087265 +-1,0,0,0.842,-0.2662991,-0.107388 +-1,0,0,0.842,-0.2657452,-0.1062082 +-1,0,0,0.842,-0.265257,-0.1051683 +-1,0,0,0.842,-0.2648267,-0.1042516 +-1,0,0,0.842,-0.2644474,-0.1034437 +-1,0,0,0.842,-0.2641131,-0.1027315 +-1,0,0,0.842,-0.2638184,-0.1021037 +-1,0,0,0.842,-0.2635586,-0.1015504 +-1,0,0,0.842,-0.2633297,-0.1010627 +-1,0,0,0.842,-0.2631279,-0.1006328 +-1,0,0,0.842,-0.26295,-0.1002539 +-1,0,0,0.842,-0.2627932,-0.09991986 +-1,0,0,0.842,-0.262655,-0.09962545 +-1,0,0,0.842,-0.2625332,-0.09936594 +-1,0,0,0.842,-0.2624258,-0.0991372 +-1,0,0,0.842,-0.2623311,-0.09893558 +-1,0,0,0.842,-0.2622477,-0.09875786 +-1,0,0,0.842,-0.2621742,-0.09860121 +-1,0,0,0.842,-0.2621093,-0.09846314 +-1,0,0,0.842,-0.2620522,-0.09834144 +-1,0,0,0.842,-0.2620018,-0.09823416 +-1,0,0,0.842,-0.2619574,-0.0981396 +-1,0,0,0.842,-0.2619183,-0.09805625 +-1,0,0,0.842,-0.2618838,-0.09798279 +-1,0,0,0.842,-0.2618534,-0.09791803 +-1,0,0,0.842,-0.2618266,-0.09786095 +-1,0,0,0.842,-0.261803,-0.09781063 +-1,0,0,0.842,-0.2617822,-0.09776629 +-1,0,0,0.842,-0.2617638,-0.0977272 +-1,0,0,0.842,-0.2664538,-0.1125897 +-1,0,0,0.842,-0.2655682,-0.1109712 +-1,0,0,0.842,-0.2647876,-0.1095445 +-1,0,0,0.842,-0.2640995,-0.1082871 +-1,0,0,0.842,-0.263493,-0.1071787 +-1,0,0,0.842,-0.2629584,-0.1062017 +-1,0,0,0.842,-0.2624871,-0.1053405 +-1,0,0,0.842,-0.2620718,-0.1045814 +-1,0,0,0.842,-0.2617057,-0.1039123 +-1,0,0,0.842,-0.261383,-0.1033226 +-1,0,0,0.842,-0.2610985,-0.1028028 +-1,0,0,0.842,-0.2608478,-0.1023446 +-1,0,0,0.842,-0.2606268,-0.1019407 +-1,0,0,0.842,-0.260432,-0.1015847 +-1,0,0,0.842,-0.2602603,-0.1012709 +-1,0,0,0.842,-0.2601089,-0.1009943 +-1,0,0,0.842,-0.2599756,-0.1007505 +-1,0,0,0.842,-0.259858,-0.1005356 +-1,0,0,0.842,-0.2597543,-0.1003462 +-1,0,0,0.842,-0.259663,-0.1001792 +-1,0,0,0.842,-0.2595824,-0.1000321 +-1,0,0,0.842,-0.2595114,-0.09990234 +-1,0,0,0.842,-0.2594489,-0.099788 +-1,0,0,0.842,-0.2593937,-0.09968721 +-1,0,0,0.842,-0.2593451,-0.09959838 +-1,0,0,0.842,-0.2593023,-0.09952007 +-1,0,0,0.842,-0.2592645,-0.09945105 +-1,0,0,0.842,-0.2592312,-0.09939022 +-1,0,0,0.842,-0.2592019,-0.09933659 +-1,0,0,0.842,-0.259176,-0.09928932 +-1,0,0,0.842,-0.2591532,-0.09924766 +-1,0,0,0.842,-0.2591331,-0.09921093 +-1,0,0,0.842,-0.2644813,-0.1132723 +-1,0,0,0.842,-0.2635275,-0.1117696 +-1,0,0,0.842,-0.2626867,-0.1104451 +-1,0,0,0.842,-0.2619456,-0.1092775 +-1,0,0,0.842,-0.2612924,-0.1082484 +-1,0,0,0.842,-0.2607166,-0.1073414 +-1,0,0,0.842,-0.2602091,-0.1065418 +-1,0,0,0.842,-0.2597618,-0.105837 +-1,0,0,0.842,-0.2593675,-0.1052158 +-1,0,0,0.842,-0.2590199,-0.1046683 +-1,0,0,0.842,-0.2587135,-0.1041856 +-1,0,0,0.842,-0.2584435,-0.1037602 +-1,0,0,0.842,-0.2582055,-0.1033852 +-1,0,0,0.842,-0.2579957,-0.1030547 +-1,0,0,0.842,-0.2578108,-0.1027634 +-1,0,0,0.842,-0.2576478,-0.1025066 +-1,0,0,0.842,-0.2575041,-0.1022802 +-1,0,0,0.842,-0.2573774,-0.1020807 +-1,0,0,0.842,-0.2572658,-0.1019048 +-1,0,0,0.842,-0.2571674,-0.1017498 +-1,0,0,0.842,-0.2570807,-0.1016132 +-1,0,0,0.842,-0.2570042,-0.1014927 +-1,0,0,0.842,-0.2569368,-0.1013866 +-1,0,0,0.842,-0.2568775,-0.101293 +-1,0,0,0.842,-0.2568251,-0.1012105 +-1,0,0,0.842,-0.256779,-0.1011378 +-1,0,0,0.842,-0.2567383,-0.1010737 +-1,0,0,0.842,-0.2567024,-0.1010173 +-1,0,0,0.842,-0.2566708,-0.1009675 +-1,0,0,0.842,-0.256643,-0.1009236 +-1,0,0,0.842,-0.2566184,-0.1008849 +-1,0,0,0.842,-0.2565968,-0.1008508 +-1,0,0,0.842,-0.2625419,-0.1140392 +-1,0,0,0.842,-0.2615284,-0.1126603 +-1,0,0,0.842,-0.260635,-0.1114448 +-1,0,0,0.842,-0.2598476,-0.1103735 +-1,0,0,0.842,-0.2591535,-0.1094292 +-1,0,0,0.842,-0.2585417,-0.1085968 +-1,0,0,0.842,-0.2580024,-0.1078631 +-1,0,0,0.842,-0.2575271,-0.1072164 +-1,0,0,0.842,-0.2571081,-0.1066463 +-1,0,0,0.842,-0.2567388,-0.1061439 +-1,0,0,0.842,-0.2564133,-0.105701 +-1,0,0,0.842,-0.2561263,-0.1053106 +-1,0,0,0.842,-0.2558734,-0.1049665 +-1,0,0,0.842,-0.2556505,-0.1046632 +-1,0,0,0.842,-0.255454,-0.1043959 +-1,0,0,0.842,-0.2552808,-0.1041602 +-1,0,0,0.842,-0.2551281,-0.1039525 +-1,0,0,0.842,-0.2549936,-0.1037694 +-1,0,0,0.842,-0.2548749,-0.103608 +-1,0,0,0.842,-0.2547704,-0.1034658 +-1,0,0,0.842,-0.2546782,-0.1033404 +-1,0,0,0.842,-0.254597,-0.1032299 +-1,0,0,0.842,-0.2545254,-0.1031325 +-1,0,0,0.842,-0.2544623,-0.1030466 +-1,0,0,0.842,-0.2544067,-0.1029709 +-1,0,0,0.842,-0.2543576,-0.1029042 +-1,0,0,0.842,-0.2543144,-0.1028454 +-1,0,0,0.842,-0.2542763,-0.1027936 +-1,0,0,0.842,-0.2542427,-0.1027479 +-1,0,0,0.842,-0.2542132,-0.1027076 +-1,0,0,0.842,-0.254187,-0.1026721 +-1,0,0,0.842,-0.2541641,-0.1026408 +-1,0,0,0.842,-0.260634,-0.1148734 +-1,0,0,0.842,-0.2595706,-0.1136275 +-1,0,0,0.842,-0.2586333,-0.1125292 +-1,0,0,0.842,-0.2578071,-0.1115612 +-1,0,0,0.842,-0.2570789,-0.110708 +-1,0,0,0.842,-0.2564369,-0.1099559 +-1,0,0,0.842,-0.2558711,-0.109293 +-1,0,0,0.842,-0.2553724,-0.1087086 +-1,0,0,0.842,-0.2549328,-0.1081936 +-1,0,0,0.842,-0.2545453,-0.1077396 +-1,0,0,0.842,-0.2542038,-0.1073394 +-1,0,0,0.842,-0.2539027,-0.1069867 +-1,0,0,0.842,-0.2536374,-0.1066758 +-1,0,0,0.842,-0.2534035,-0.1064018 +-1,0,0,0.842,-0.2531973,-0.1061602 +-1,0,0,0.842,-0.2530156,-0.1059473 +-1,0,0,0.842,-0.2528554,-0.1057596 +-1,0,0,0.842,-0.2527142,-0.1055942 +-1,0,0,0.842,-0.2525898,-0.1054484 +-1,0,0,0.842,-0.2524801,-0.1053199 +-1,0,0,0.842,-0.2523834,-0.1052066 +-1,0,0,0.842,-0.2522981,-0.1051067 +-1,0,0,0.842,-0.252223,-0.1050187 +-1,0,0,0.842,-0.2521568,-0.1049411 +-1,0,0,0.842,-0.2520984,-0.1048727 +-1,0,0,0.842,-0.252047,-0.1048124 +-1,0,0,0.842,-0.2520016,-0.1047593 +-1,0,0,0.842,-0.2519616,-0.1047125 +-1,0,0,0.842,-0.2519264,-0.1046712 +-1,0,0,0.842,-0.2518954,-0.1046348 +-1,0,0,0.842,-0.251868,-0.1046027 +-1,0,0,0.842,-0.2518439,-0.1045745 +-1,0,0,0.842,-0.2587503,-0.1157503 +-1,0,0,0.842,-0.2576487,-0.1146487 +-1,0,0,0.842,-0.2566777,-0.1136778 +-1,0,0,0.842,-0.2558219,-0.1128219 +-1,0,0,0.842,-0.2550675,-0.1120675 +-1,0,0,0.842,-0.2544026,-0.1114026 +-1,0,0,0.842,-0.2538165,-0.1108165 +-1,0,0,0.842,-0.2532998,-0.1102998 +-1,0,0,0.842,-0.2528445,-0.1098445 +-1,0,0,0.842,-0.2524431,-0.1094431 +-1,0,0,0.842,-0.2520893,-0.1090893 +-1,0,0,0.842,-0.2517774,-0.1087774 +-1,0,0,0.842,-0.2515025,-0.1085025 +-1,0,0,0.842,-0.2512603,-0.1082602 +-1,0,0,0.842,-0.2510467,-0.1080467 +-1,0,0,0.842,-0.2508584,-0.1078584 +-1,0,0,0.842,-0.2506925,-0.1076925 +-1,0,0,0.842,-0.2505462,-0.1075462 +-1,0,0,0.842,-0.2504173,-0.1074173 +-1,0,0,0.842,-0.2503037,-0.1073037 +-1,0,0,0.842,-0.2502035,-0.1072035 +-1,0,0,0.842,-0.2501152,-0.1071152 +-1,0,0,0.842,-0.2500374,-0.1070374 +-1,0,0,0.842,-0.2499688,-0.1069688 +-1,0,0,0.842,-0.2499084,-0.1069084 +-1,0,0,0.842,-0.2498551,-0.1068551 +-1,0,0,0.842,-0.2498081,-0.1068081 +-1,0,0,0.842,-0.2497667,-0.1067667 +-1,0,0,0.842,-0.2497302,-0.1067302 +-1,0,0,0.842,-0.249698,-0.106698 +-1,0,0,0.842,-0.2496697,-0.1066697 +-1,0,0,0.842,-0.2496447,-0.1066447 +-1,0,0,0.842,-0.2578734,-0.117634 +-1,0,0,0.842,-0.2566275,-0.1165706 +-1,0,0,0.842,-0.2555293,-0.1156333 +-1,0,0,0.842,-0.2545612,-0.1148071 +-1,0,0,0.842,-0.253708,-0.1140789 +-1,0,0,0.842,-0.2529559,-0.113437 +-1,0,0,0.842,-0.252293,-0.1128711 +-1,0,0,0.842,-0.2517087,-0.1123724 +-1,0,0,0.842,-0.2511936,-0.1119328 +-1,0,0,0.842,-0.2507396,-0.1115453 +-1,0,0,0.842,-0.2503394,-0.1112038 +-1,0,0,0.842,-0.2499867,-0.1109027 +-1,0,0,0.842,-0.2496758,-0.1106374 +-1,0,0,0.842,-0.2494018,-0.1104035 +-1,0,0,0.842,-0.2491602,-0.1101973 +-1,0,0,0.842,-0.2489473,-0.1100156 +-1,0,0,0.842,-0.2487596,-0.1098554 +-1,0,0,0.842,-0.2485942,-0.1097142 +-1,0,0,0.842,-0.2484484,-0.1095898 +-1,0,0,0.842,-0.2483198,-0.1094801 +-1,0,0,0.842,-0.2482066,-0.1093834 +-1,0,0,0.842,-0.2481067,-0.1092981 +-1,0,0,0.842,-0.2480187,-0.109223 +-1,0,0,0.842,-0.2479411,-0.1091568 +-1,0,0,0.842,-0.2478727,-0.1090984 +-1,0,0,0.842,-0.2478124,-0.109047 +-1,0,0,0.842,-0.2477593,-0.1090016 +-1,0,0,0.842,-0.2477125,-0.1089617 +-1,0,0,0.842,-0.2476712,-0.1089264 +-1,0,0,0.842,-0.2476348,-0.1088954 +-1,0,0,0.842,-0.2476027,-0.108868 +-1,0,0,0.842,-0.2475745,-0.1088439 +-1,0,0,0.842,-0.2570392,-0.1195419 +-1,0,0,0.842,-0.2556603,-0.1185284 +-1,0,0,0.842,-0.2544448,-0.117635 +-1,0,0,0.842,-0.2533735,-0.1168476 +-1,0,0,0.842,-0.2524292,-0.1161535 +-1,0,0,0.842,-0.2515968,-0.1155417 +-1,0,0,0.842,-0.2508631,-0.1150024 +-1,0,0,0.842,-0.2502164,-0.1145271 +-1,0,0,0.842,-0.2496463,-0.1141081 +-1,0,0,0.842,-0.2491439,-0.1137388 +-1,0,0,0.842,-0.248701,-0.1134133 +-1,0,0,0.842,-0.2483106,-0.1131263 +-1,0,0,0.842,-0.2479665,-0.1128734 +-1,0,0,0.842,-0.2476632,-0.1126505 +-1,0,0,0.842,-0.2473959,-0.112454 +-1,0,0,0.842,-0.2471602,-0.1122808 +-1,0,0,0.842,-0.2469525,-0.1121281 +-1,0,0,0.842,-0.2467694,-0.1119936 +-1,0,0,0.842,-0.246608,-0.111875 +-1,0,0,0.842,-0.2464658,-0.1117704 +-1,0,0,0.842,-0.2463404,-0.1116782 +-1,0,0,0.842,-0.2462299,-0.111597 +-1,0,0,0.842,-0.2461325,-0.1115254 +-1,0,0,0.842,-0.2460466,-0.1114623 +-1,0,0,0.842,-0.2459709,-0.1114067 +-1,0,0,0.842,-0.2459042,-0.1113576 +-1,0,0,0.842,-0.2458454,-0.1113144 +-1,0,0,0.842,-0.2457936,-0.1112763 +-1,0,0,0.842,-0.2457479,-0.1112427 +-1,0,0,0.842,-0.2457076,-0.1112131 +-1,0,0,0.842,-0.2456721,-0.1111871 +-1,0,0,0.842,-0.2456408,-0.1111641 +-1,0,0,0.842,-0.2562723,-0.1214813 +-1,0,0,0.842,-0.2547696,-0.1205275 +-1,0,0,0.842,-0.2534451,-0.1196867 +-1,0,0,0.842,-0.2522776,-0.1189456 +-1,0,0,0.842,-0.2512484,-0.1182924 +-1,0,0,0.842,-0.2503414,-0.1177166 +-1,0,0,0.842,-0.2495418,-0.1172091 +-1,0,0,0.842,-0.2488371,-0.1167618 +-1,0,0,0.842,-0.2482158,-0.1163675 +-1,0,0,0.842,-0.2476683,-0.1160199 +-1,0,0,0.842,-0.2471856,-0.1157136 +-1,0,0,0.842,-0.2467602,-0.1154435 +-1,0,0,0.842,-0.2463852,-0.1152055 +-1,0,0,0.842,-0.2460547,-0.1149957 +-1,0,0,0.842,-0.2457634,-0.1148108 +-1,0,0,0.842,-0.2455066,-0.1146478 +-1,0,0,0.842,-0.2452802,-0.1145041 +-1,0,0,0.842,-0.2450807,-0.1143774 +-1,0,0,0.842,-0.2449048,-0.1142658 +-1,0,0,0.842,-0.2447498,-0.1141674 +-1,0,0,0.842,-0.2446132,-0.1140807 +-1,0,0,0.842,-0.2444927,-0.1140042 +-1,0,0,0.842,-0.2443866,-0.1139368 +-1,0,0,0.842,-0.244293,-0.1138775 +-1,0,0,0.842,-0.2442105,-0.1138251 +-1,0,0,0.842,-0.2441378,-0.1137789 +-1,0,0,0.842,-0.2440737,-0.1137383 +-1,0,0,0.842,-0.2440173,-0.1137024 +-1,0,0,0.842,-0.2439675,-0.1136708 +-1,0,0,0.842,-0.2439236,-0.113643 +-1,0,0,0.842,-0.2438849,-0.1136184 +-1,0,0,0.842,-0.2438508,-0.1135968 +-1,0,0,0.842,-0.2555897,-0.1234538 +-1,0,0,0.842,-0.2539712,-0.1225682 +-1,0,0,0.842,-0.2525445,-0.1217876 +-1,0,0,0.842,-0.251287,-0.1210995 +-1,0,0,0.842,-0.2501786,-0.120493 +-1,0,0,0.842,-0.2492017,-0.1199584 +-1,0,0,0.842,-0.2483405,-0.1194871 +-1,0,0,0.842,-0.2475814,-0.1190718 +-1,0,0,0.842,-0.2469123,-0.1187057 +-1,0,0,0.842,-0.2463226,-0.118383 +-1,0,0,0.842,-0.2458028,-0.1180985 +-1,0,0,0.842,-0.2453445,-0.1178478 +-1,0,0,0.842,-0.2449407,-0.1176268 +-1,0,0,0.842,-0.2445847,-0.117432 +-1,0,0,0.842,-0.2442709,-0.1172603 +-1,0,0,0.842,-0.2439943,-0.1171089 +-1,0,0,0.842,-0.2437505,-0.1169755 +-1,0,0,0.842,-0.2435356,-0.116858 +-1,0,0,0.842,-0.2433462,-0.1167543 +-1,0,0,0.842,-0.2431792,-0.1166629 +-1,0,0,0.842,-0.2430321,-0.1165824 +-1,0,0,0.842,-0.2429023,-0.1165114 +-1,0,0,0.842,-0.242788,-0.1164489 +-1,0,0,0.842,-0.2426872,-0.1163937 +-1,0,0,0.842,-0.2425984,-0.1163451 +-1,0,0,0.842,-0.2425201,-0.1163023 +-1,0,0,0.842,-0.2424511,-0.1162645 +-1,0,0,0.842,-0.2423902,-0.1162312 +-1,0,0,0.842,-0.2423366,-0.1162019 +-1,0,0,0.842,-0.2422893,-0.116176 +-1,0,0,0.842,-0.2422477,-0.1161532 +-1,0,0,0.842,-0.2422109,-0.1161331 +-1,0,0,0.842,-0.2549678,-0.125449 +-1,0,0,0.842,-0.2532451,-0.1246403 +-1,0,0,0.842,-0.2517265,-0.1239274 +-1,0,0,0.842,-0.250388,-0.1232991 +-1,0,0,0.842,-0.2492082,-0.1227452 +-1,0,0,0.842,-0.2481683,-0.122257 +-1,0,0,0.842,-0.2472516,-0.1218267 +-1,0,0,0.842,-0.2464437,-0.1214474 +-1,0,0,0.842,-0.2457315,-0.1211131 +-1,0,0,0.842,-0.2451037,-0.1208184 +-1,0,0,0.842,-0.2445504,-0.1205586 +-1,0,0,0.842,-0.2440627,-0.1203297 +-1,0,0,0.842,-0.2436328,-0.1201279 +-1,0,0,0.842,-0.2432539,-0.11995 +-1,0,0,0.842,-0.2429199,-0.1197932 +-1,0,0,0.842,-0.2426254,-0.119655 +-1,0,0,0.842,-0.2423659,-0.1195331 +-1,0,0,0.842,-0.2421372,-0.1194258 +-1,0,0,0.842,-0.2419356,-0.1193311 +-1,0,0,0.842,-0.2417579,-0.1192477 +-1,0,0,0.842,-0.2416012,-0.1191741 +-1,0,0,0.842,-0.2414631,-0.1191093 +-1,0,0,0.842,-0.2413414,-0.1190522 +-1,0,0,0.842,-0.2412342,-0.1190018 +-1,0,0,0.842,-0.2411396,-0.1189574 +-1,0,0,0.842,-0.2410562,-0.1189183 +-1,0,0,0.842,-0.2409828,-0.1188838 +-1,0,0,0.842,-0.240918,-0.1188534 +-1,0,0,0.842,-0.240861,-0.1188266 +-1,0,0,0.842,-0.2408106,-0.118803 +-1,0,0,0.842,-0.2407663,-0.1187822 +-1,0,0,0.842,-0.2407272,-0.1187638 +-1,0,0,0.842,-0.2544076,-0.1274654 +-1,0,0,0.842,-0.2525927,-0.1267412 +-1,0,0,0.842,-0.2509929,-0.1261029 +-1,0,0,0.842,-0.2495828,-0.1255403 +-1,0,0,0.842,-0.2483398,-0.1250443 +-1,0,0,0.842,-0.2472442,-0.1246072 +-1,0,0,0.842,-0.2462786,-0.1242219 +-1,0,0,0.842,-0.2454274,-0.1238823 +-1,0,0,0.842,-0.2446771,-0.1235829 +-1,0,0,0.842,-0.2440157,-0.123319 +-1,0,0,0.842,-0.2434328,-0.1230864 +-1,0,0,0.842,-0.242919,-0.1228814 +-1,0,0,0.842,-0.2424661,-0.1227007 +-1,0,0,0.842,-0.2420669,-0.1225414 +-1,0,0,0.842,-0.241715,-0.122401 +-1,0,0,0.842,-0.2414048,-0.1222773 +-1,0,0,0.842,-0.2411314,-0.1221682 +-1,0,0,0.842,-0.2408905,-0.122072 +-1,0,0,0.842,-0.240678,-0.1219873 +-1,0,0,0.842,-0.2404908,-0.1219126 +-1,0,0,0.842,-0.2403258,-0.1218468 +-1,0,0,0.842,-0.2401803,-0.1217887 +-1,0,0,0.842,-0.2400521,-0.1217376 +-1,0,0,0.842,-0.2399391,-0.1216925 +-1,0,0,0.842,-0.2398395,-0.1216527 +-1,0,0,0.842,-0.2397517,-0.1216177 +-1,0,0,0.842,-0.2396743,-0.1215868 +-1,0,0,0.842,-0.2396061,-0.1215596 +-1,0,0,0.842,-0.2395459,-0.1215356 +-1,0,0,0.842,-0.2394929,-0.1215144 +-1,0,0,0.842,-0.2394462,-0.1214958 +-1,0,0,0.842,-0.239405,-0.1214794 +-1,0,0,0.842,-0.2539339,-0.1295052 +-1,0,0,0.842,-0.2520364,-0.1288718 +-1,0,0,0.842,-0.2503639,-0.1283136 +-1,0,0,0.842,-0.2488897,-0.1278215 +-1,0,0,0.842,-0.2475902,-0.1273877 +-1,0,0,0.842,-0.2464448,-0.1270054 +-1,0,0,0.842,-0.2454352,-0.1266684 +-1,0,0,0.842,-0.2445453,-0.1263714 +-1,0,0,0.842,-0.2437609,-0.1261095 +-1,0,0,0.842,-0.2430695,-0.1258788 +-1,0,0,0.842,-0.2424601,-0.1256753 +-1,0,0,0.842,-0.2419229,-0.125496 +-1,0,0,0.842,-0.2414494,-0.125338 +-1,0,0,0.842,-0.2410321,-0.1251987 +-1,0,0,0.842,-0.2406642,-0.1250759 +-1,0,0,0.842,-0.2403399,-0.1249676 +-1,0,0,0.842,-0.2400541,-0.1248722 +-1,0,0,0.842,-0.2398022,-0.1247881 +-1,0,0,0.842,-0.2395801,-0.124714 +-1,0,0,0.842,-0.2393844,-0.1246487 +-1,0,0,0.842,-0.2392118,-0.1245911 +-1,0,0,0.842,-0.2390598,-0.1245403 +-1,0,0,0.842,-0.2389257,-0.1244956 +-1,0,0,0.842,-0.2388076,-0.1244561 +-1,0,0,0.842,-0.2387034,-0.1244214 +-1,0,0,0.842,-0.2386116,-0.1243907 +-1,0,0,0.842,-0.2385307,-0.1243637 +-1,0,0,0.842,-0.2384594,-0.1243399 +-1,0,0,0.842,-0.2383965,-0.1243189 +-1,0,0,0.842,-0.2383411,-0.1243004 +-1,0,0,0.842,-0.2382922,-0.1242841 +-1,0,0,0.842,-0.2382492,-0.1242698 +-1,0,0,0.842,-0.2535302,-0.1315615 +-1,0,0,0.842,-0.2515624,-0.1310248 +-1,0,0,0.842,-0.2498279,-0.1305517 +-1,0,0,0.842,-0.248299,-0.1301347 +-1,0,0,0.842,-0.2469514,-0.1297671 +-1,0,0,0.842,-0.2457635,-0.1294431 +-1,0,0,0.842,-0.2447165,-0.1291575 +-1,0,0,0.842,-0.2437936,-0.1289058 +-1,0,0,0.842,-0.2429801,-0.1286839 +-1,0,0,0.842,-0.242263,-0.1284883 +-1,0,0,0.842,-0.241631,-0.128316 +-1,0,0,0.842,-0.2410739,-0.128164 +-1,0,0,0.842,-0.2405829,-0.1280301 +-1,0,0,0.842,-0.24015,-0.127912 +-1,0,0,0.842,-0.2397685,-0.127808 +-1,0,0,0.842,-0.2394322,-0.1277162 +-1,0,0,0.842,-0.2391358,-0.1276354 +-1,0,0,0.842,-0.2388745,-0.1275641 +-1,0,0,0.842,-0.2386442,-0.1275013 +-1,0,0,0.842,-0.2384412,-0.127446 +-1,0,0,0.842,-0.2382623,-0.1273971 +-1,0,0,0.842,-0.2381046,-0.1273541 +-1,0,0,0.842,-0.2379656,-0.1273162 +-1,0,0,0.842,-0.237843,-0.1272828 +-1,0,0,0.842,-0.237735,-0.1272533 +-1,0,0,0.842,-0.2376398,-0.1272274 +-1,0,0,0.842,-0.2375559,-0.1272045 +-1,0,0,0.842,-0.2374819,-0.1271843 +-1,0,0,0.842,-0.2374167,-0.1271665 +-1,0,0,0.842,-0.2373593,-0.1271508 +-1,0,0,0.842,-0.2373086,-0.127137 +-1,0,0,0.842,-0.237264,-0.1271248 +-1,0,0,0.842,-0.2531906,-0.133631 +-1,0,0,0.842,-0.2511657,-0.1331958 +-1,0,0,0.842,-0.2493809,-0.1328123 +-1,0,0,0.842,-0.2478077,-0.1324742 +-1,0,0,0.842,-0.2464211,-0.1321763 +-1,0,0,0.842,-0.2451988,-0.1319136 +-1,0,0,0.842,-0.2441214,-0.1316821 +-1,0,0,0.842,-0.2431718,-0.131478 +-1,0,0,0.842,-0.2423347,-0.1312981 +-1,0,0,0.842,-0.2415969,-0.1311396 +-1,0,0,0.842,-0.2409465,-0.1309998 +-1,0,0,0.842,-0.2403733,-0.1308767 +-1,0,0,0.842,-0.239868,-0.1307681 +-1,0,0,0.842,-0.2394226,-0.1306724 +-1,0,0,0.842,-0.23903,-0.130588 +-1,0,0,0.842,-0.238684,-0.1305137 +-1,0,0,0.842,-0.238379,-0.1304481 +-1,0,0,0.842,-0.2381102,-0.1303903 +-1,0,0,0.842,-0.2378732,-0.1303394 +-1,0,0,0.842,-0.2376643,-0.1302945 +-1,0,0,0.842,-0.2374802,-0.130255 +-1,0,0,0.842,-0.2373179,-0.1302201 +-1,0,0,0.842,-0.2371749,-0.1301894 +-1,0,0,0.842,-0.2370488,-0.1301623 +-1,0,0,0.842,-0.2369376,-0.1301384 +-1,0,0,0.842,-0.2368397,-0.1301173 +-1,0,0,0.842,-0.2367533,-0.1300988 +-1,0,0,0.842,-0.2366772,-0.1300824 +-1,0,0,0.842,-0.2366101,-0.130068 +-1,0,0,0.842,-0.236551,-0.1300553 +-1,0,0,0.842,-0.2364988,-0.1300441 +-1,0,0,0.842,-0.2364529,-0.1300342 +-1,0,0,0.842,-0.2529276,-0.1357129 +-1,0,0,0.842,-0.2508579,-0.1353831 +-1,0,0,0.842,-0.2490335,-0.1350925 +-1,0,0,0.842,-0.2474255,-0.1348363 +-1,0,0,0.842,-0.246008,-0.1346105 +-1,0,0,0.842,-0.2447587,-0.1344115 +-1,0,0,0.842,-0.2436574,-0.134236 +-1,0,0,0.842,-0.2426867,-0.1340814 +-1,0,0,0.842,-0.2418311,-0.1339451 +-1,0,0,0.842,-0.2410769,-0.1338249 +-1,0,0,0.842,-0.2404122,-0.133719 +-1,0,0,0.842,-0.2398262,-0.1336257 +-1,0,0,0.842,-0.2393098,-0.1335434 +-1,0,0,0.842,-0.2388545,-0.1334708 +-1,0,0,0.842,-0.2384533,-0.1334069 +-1,0,0,0.842,-0.2380995,-0.1333506 +-1,0,0,0.842,-0.2377878,-0.1333009 +-1,0,0,0.842,-0.237513,-0.1332571 +-1,0,0,0.842,-0.2372707,-0.1332185 +-1,0,0,0.842,-0.2370572,-0.1331845 +-1,0,0,0.842,-0.2368691,-0.1331545 +-1,0,0,0.842,-0.2367032,-0.1331281 +-1,0,0,0.842,-0.2365569,-0.1331048 +-1,0,0,0.842,-0.2364281,-0.1330843 +-1,0,0,0.842,-0.2363145,-0.1330662 +-1,0,0,0.842,-0.2362143,-0.1330502 +-1,0,0,0.842,-0.2361261,-0.1330362 +-1,0,0,0.842,-0.2360483,-0.1330238 +-1,0,0,0.842,-0.2359797,-0.1330128 +-1,0,0,0.842,-0.2359193,-0.1330032 +-1,0,0,0.842,-0.235866,-0.1329947 +-1,0,0,0.842,-0.235819,-0.1329872 +-1,0,0,0.842,-0.2527485,-0.1378042 +-1,0,0,0.842,-0.2506455,-0.1375826 +-1,0,0,0.842,-0.2487918,-0.1373874 +-1,0,0,0.842,-0.2471578,-0.1372153 +-1,0,0,0.842,-0.2457176,-0.1370636 +-1,0,0,0.842,-0.2444481,-0.1369299 +-1,0,0,0.842,-0.2433291,-0.136812 +-1,0,0,0.842,-0.2423428,-0.1367082 +-1,0,0,0.842,-0.2414734,-0.1366166 +-1,0,0,0.842,-0.2407071,-0.1365359 +-1,0,0,0.842,-0.2400317,-0.1364647 +-1,0,0,0.842,-0.2394363,-0.136402 +-1,0,0,0.842,-0.2389115,-0.1363468 +-1,0,0,0.842,-0.2384489,-0.136298 +-1,0,0,0.842,-0.2380412,-0.1362551 +-1,0,0,0.842,-0.2376818,-0.1362172 +-1,0,0,0.842,-0.237365,-0.1361839 +-1,0,0,0.842,-0.2370858,-0.1361545 +-1,0,0,0.842,-0.2368397,-0.1361285 +-1,0,0,0.842,-0.2366227,-0.1361057 +-1,0,0,0.842,-0.2364315,-0.1360855 +-1,0,0,0.842,-0.2362629,-0.1360678 +-1,0,0,0.842,-0.2361144,-0.1360521 +-1,0,0,0.842,-0.2359834,-0.1360383 +-1,0,0,0.842,-0.235868,-0.1360262 +-1,0,0,0.842,-0.2357662,-0.1360155 +-1,0,0,0.842,-0.2356766,-0.136006 +-1,0,0,0.842,-0.2355975,-0.1359977 +-1,0,0,0.842,-0.2355278,-0.1359904 +-1,0,0,0.842,-0.2354664,-0.1359839 +-1,0,0,0.842,-0.2354123,-0.1359782 +-1,0,0,0.842,-0.2353646,-0.1359732 +-1,0,0,0.842,-0.2526347,-0.1399005 +-1,0,0,0.842,-0.2505124,-0.1397893 +-1,0,0,0.842,-0.2486416,-0.1396912 +-1,0,0,0.842,-0.2469927,-0.1396048 +-1,0,0,0.842,-0.2455393,-0.1395286 +-1,0,0,0.842,-0.2442581,-0.1394615 +-1,0,0,0.842,-0.2431289,-0.1394023 +-1,0,0,0.842,-0.2421335,-0.1393501 +-1,0,0,0.842,-0.2412562,-0.1393042 +-1,0,0,0.842,-0.2404828,-0.1392636 +-1,0,0,0.842,-0.2398012,-0.1392279 +-1,0,0,0.842,-0.2392003,-0.1391964 +-1,0,0,0.842,-0.2386707,-0.1391687 +-1,0,0,0.842,-0.2382039,-0.1391442 +-1,0,0,0.842,-0.2377924,-0.1391226 +-1,0,0,0.842,-0.2374297,-0.1391036 +-1,0,0,0.842,-0.23711,-0.1390869 +-1,0,0,0.842,-0.2368283,-0.1390721 +-1,0,0,0.842,-0.2365799,-0.1390591 +-1,0,0,0.842,-0.2363609,-0.1390476 +-1,0,0,0.842,-0.236168,-0.1390375 +-1,0,0,0.842,-0.2359979,-0.1390286 +-1,0,0,0.842,-0.2358479,-0.1390207 +-1,0,0,0.842,-0.2357158,-0.1390138 +-1,0,0,0.842,-0.2355993,-0.1390077 +-1,0,0,0.842,-0.2354966,-0.1390023 +-1,0,0,0.842,-0.2354061,-0.1389976 +-1,0,0,0.842,-0.2353263,-0.1389934 +-1,0,0,0.842,-0.235256,-0.1389897 +-1,0,0,0.842,-0.235194,-0.1389865 +-1,0,0,0.842,-0.2351394,-0.1389836 +-1,0,0,0.842,-0.2350912,-0.1389811 +-1,0,0,0.842,-0.2525863,-0.142 +-1,0,0,0.842,-0.2504588,-0.142 +-1,0,0,0.842,-0.2485835,-0.142 +-1,0,0,0.842,-0.2469305,-0.142 +-1,0,0,0.842,-0.2454735,-0.142 +-1,0,0,0.842,-0.2441893,-0.142 +-1,0,0,0.842,-0.2430573,-0.142 +-1,0,0,0.842,-0.2420595,-0.142 +-1,0,0,0.842,-0.24118,-0.142 +-1,0,0,0.842,-0.2404048,-0.142 +-1,0,0,0.842,-0.2397214,-0.142 +-1,0,0,0.842,-0.2391191,-0.142 +-1,0,0,0.842,-0.2385882,-0.142 +-1,0,0,0.842,-0.2381203,-0.142 +-1,0,0,0.842,-0.2377078,-0.142 +-1,0,0,0.842,-0.2373442,-0.142 +-1,0,0,0.842,-0.2370238,-0.142 +-1,0,0,0.842,-0.2367413,-0.142 +-1,0,0,0.842,-0.2364923,-0.142 +-1,0,0,0.842,-0.2362728,-0.142 +-1,0,0,0.842,-0.2360794,-0.142 +-1,0,0,0.842,-0.2359089,-0.142 +-1,0,0,0.842,-0.2357585,-0.142 +-1,0,0,0.842,-0.2356261,-0.142 +-1,0,0,0.842,-0.2355093,-0.142 +-1,0,0,0.842,-0.2354064,-0.142 +-1,0,0,0.842,-0.2353156,-0.142 +-1,0,0,0.842,-0.2352357,-0.142 +-1,0,0,0.842,-0.2351652,-0.142 +-1,0,0,0.842,-0.235103,-0.142 +-1,0,0,0.842,-0.2350483,-0.142 +-1,0,0,0.842,-0.235,-0.142 +-1,0,0,0.842,-0.2526347,-0.1440995 +-1,0,0,0.842,-0.2505124,-0.1442108 +-1,0,0,0.842,-0.2486416,-0.1443088 +-1,0,0,0.842,-0.2469927,-0.1443952 +-1,0,0,0.842,-0.2455393,-0.1444714 +-1,0,0,0.842,-0.2442581,-0.1445385 +-1,0,0,0.842,-0.2431289,-0.1445977 +-1,0,0,0.842,-0.2421335,-0.1446499 +-1,0,0,0.842,-0.2412562,-0.1446958 +-1,0,0,0.842,-0.2404828,-0.1447364 +-1,0,0,0.842,-0.2398012,-0.1447721 +-1,0,0,0.842,-0.2392003,-0.1448036 +-1,0,0,0.842,-0.2386707,-0.1448313 +-1,0,0,0.842,-0.2382039,-0.1448558 +-1,0,0,0.842,-0.2377924,-0.1448774 +-1,0,0,0.842,-0.2374297,-0.1448964 +-1,0,0,0.842,-0.23711,-0.1449131 +-1,0,0,0.842,-0.2368283,-0.1449279 +-1,0,0,0.842,-0.2365799,-0.1449409 +-1,0,0,0.842,-0.2363609,-0.1449524 +-1,0,0,0.842,-0.236168,-0.1449625 +-1,0,0,0.842,-0.2359979,-0.1449714 +-1,0,0,0.842,-0.2358479,-0.1449793 +-1,0,0,0.842,-0.2357158,-0.1449862 +-1,0,0,0.842,-0.2355993,-0.1449923 +-1,0,0,0.842,-0.2354966,-0.1449977 +-1,0,0,0.842,-0.2354061,-0.1450024 +-1,0,0,0.842,-0.2353263,-0.1450066 +-1,0,0,0.842,-0.235256,-0.1450103 +-1,0,0,0.842,-0.235194,-0.1450135 +-1,0,0,0.842,-0.2351394,-0.1450164 +-1,0,0,0.842,-0.2350912,-0.1450189 +-1,0,0,0.842,-0.2527485,-0.1461958 +-1,0,0,0.842,-0.2506455,-0.1464173 +-1,0,0,0.842,-0.2487918,-0.1466126 +-1,0,0,0.842,-0.2471578,-0.1467847 +-1,0,0,0.842,-0.2457176,-0.1469364 +-1,0,0,0.842,-0.2444481,-0.1470701 +-1,0,0,0.842,-0.2433291,-0.1471879 +-1,0,0,0.842,-0.2423428,-0.1472918 +-1,0,0,0.842,-0.2414734,-0.1473834 +-1,0,0,0.842,-0.2407071,-0.1474641 +-1,0,0,0.842,-0.2400317,-0.1475353 +-1,0,0,0.842,-0.2394363,-0.147598 +-1,0,0,0.842,-0.2389115,-0.1476533 +-1,0,0,0.842,-0.2384489,-0.147702 +-1,0,0,0.842,-0.2380412,-0.1477449 +-1,0,0,0.842,-0.2376818,-0.1477828 +-1,0,0,0.842,-0.237365,-0.1478161 +-1,0,0,0.842,-0.2370858,-0.1478455 +-1,0,0,0.842,-0.2368397,-0.1478715 +-1,0,0,0.842,-0.2366227,-0.1478943 +-1,0,0,0.842,-0.2364315,-0.1479145 +-1,0,0,0.842,-0.2362629,-0.1479322 +-1,0,0,0.842,-0.2361144,-0.1479479 +-1,0,0,0.842,-0.2359834,-0.1479616 +-1,0,0,0.842,-0.235868,-0.1479738 +-1,0,0,0.842,-0.2357662,-0.1479845 +-1,0,0,0.842,-0.2356766,-0.147994 +-1,0,0,0.842,-0.2355975,-0.1480023 +-1,0,0,0.842,-0.2355278,-0.1480096 +-1,0,0,0.842,-0.2354664,-0.1480161 +-1,0,0,0.842,-0.2354123,-0.1480218 +-1,0,0,0.842,-0.2353646,-0.1480268 +-1,0,0,0.842,-0.2529276,-0.1482871 +-1,0,0,0.842,-0.2508579,-0.1486169 +-1,0,0,0.842,-0.2490335,-0.1489075 +-1,0,0,0.842,-0.2474255,-0.1491637 +-1,0,0,0.842,-0.246008,-0.1493895 +-1,0,0,0.842,-0.2447587,-0.1495885 +-1,0,0,0.842,-0.2436574,-0.149764 +-1,0,0,0.842,-0.2426867,-0.1499186 +-1,0,0,0.842,-0.2418311,-0.1500549 +-1,0,0,0.842,-0.2410769,-0.1501751 +-1,0,0,0.842,-0.2404122,-0.150281 +-1,0,0,0.842,-0.2398262,-0.1503743 +-1,0,0,0.842,-0.2393098,-0.1504566 +-1,0,0,0.842,-0.2388545,-0.1505291 +-1,0,0,0.842,-0.2384533,-0.1505931 +-1,0,0,0.842,-0.2380995,-0.1506494 +-1,0,0,0.842,-0.2377878,-0.1506991 +-1,0,0,0.842,-0.237513,-0.1507429 +-1,0,0,0.842,-0.2372707,-0.1507815 +-1,0,0,0.842,-0.2370572,-0.1508155 +-1,0,0,0.842,-0.2368691,-0.1508455 +-1,0,0,0.842,-0.2367032,-0.1508719 +-1,0,0,0.842,-0.2365569,-0.1508952 +-1,0,0,0.842,-0.2364281,-0.1509157 +-1,0,0,0.842,-0.2363145,-0.1509338 +-1,0,0,0.842,-0.2362143,-0.1509498 +-1,0,0,0.842,-0.2361261,-0.1509638 +-1,0,0,0.842,-0.2360483,-0.1509762 +-1,0,0,0.842,-0.2359797,-0.1509871 +-1,0,0,0.842,-0.2359193,-0.1509968 +-1,0,0,0.842,-0.235866,-0.1510053 +-1,0,0,0.842,-0.235819,-0.1510127 +-1,0,0,0.842,-0.2531906,-0.150369 +-1,0,0,0.842,-0.2511657,-0.1508042 +-1,0,0,0.842,-0.2493809,-0.1511877 +-1,0,0,0.842,-0.2478077,-0.1515258 +-1,0,0,0.842,-0.2464211,-0.1518237 +-1,0,0,0.842,-0.2451988,-0.1520864 +-1,0,0,0.842,-0.2441214,-0.1523179 +-1,0,0,0.842,-0.2431718,-0.152522 +-1,0,0,0.842,-0.2423347,-0.1527019 +-1,0,0,0.842,-0.2415969,-0.1528604 +-1,0,0,0.842,-0.2409465,-0.1530002 +-1,0,0,0.842,-0.2403733,-0.1531233 +-1,0,0,0.842,-0.239868,-0.1532319 +-1,0,0,0.842,-0.2394226,-0.1533276 +-1,0,0,0.842,-0.23903,-0.153412 +-1,0,0,0.842,-0.238684,-0.1534863 +-1,0,0,0.842,-0.238379,-0.1535519 +-1,0,0,0.842,-0.2381102,-0.1536097 +-1,0,0,0.842,-0.2378732,-0.1536606 +-1,0,0,0.842,-0.2376643,-0.1537055 +-1,0,0,0.842,-0.2374802,-0.153745 +-1,0,0,0.842,-0.2373179,-0.1537799 +-1,0,0,0.842,-0.2371749,-0.1538107 +-1,0,0,0.842,-0.2370488,-0.1538377 +-1,0,0,0.842,-0.2369376,-0.1538616 +-1,0,0,0.842,-0.2368397,-0.1538827 +-1,0,0,0.842,-0.2367533,-0.1539012 +-1,0,0,0.842,-0.2366772,-0.1539176 +-1,0,0,0.842,-0.2366101,-0.153932 +-1,0,0,0.842,-0.236551,-0.1539447 +-1,0,0,0.842,-0.2364988,-0.1539559 +-1,0,0,0.842,-0.2364529,-0.1539658 +-1,0,0,0.842,-0.2535302,-0.1524385 +-1,0,0,0.842,-0.2515624,-0.1529752 +-1,0,0,0.842,-0.2498279,-0.1534483 +-1,0,0,0.842,-0.248299,-0.1538653 +-1,0,0,0.842,-0.2469514,-0.1542329 +-1,0,0,0.842,-0.2457635,-0.1545569 +-1,0,0,0.842,-0.2447165,-0.1548425 +-1,0,0,0.842,-0.2437936,-0.1550942 +-1,0,0,0.842,-0.2429801,-0.1553161 +-1,0,0,0.842,-0.242263,-0.1555116 +-1,0,0,0.842,-0.241631,-0.155684 +-1,0,0,0.842,-0.2410739,-0.155836 +-1,0,0,0.842,-0.2405829,-0.1559699 +-1,0,0,0.842,-0.24015,-0.156088 +-1,0,0,0.842,-0.2397685,-0.156192 +-1,0,0,0.842,-0.2394322,-0.1562838 +-1,0,0,0.842,-0.2391358,-0.1563646 +-1,0,0,0.842,-0.2388745,-0.1564359 +-1,0,0,0.842,-0.2386442,-0.1564987 +-1,0,0,0.842,-0.2384412,-0.156554 +-1,0,0,0.842,-0.2382623,-0.1566029 +-1,0,0,0.842,-0.2381046,-0.1566459 +-1,0,0,0.842,-0.2379656,-0.1566838 +-1,0,0,0.842,-0.237843,-0.1567172 +-1,0,0,0.842,-0.237735,-0.1567467 +-1,0,0,0.842,-0.2376398,-0.1567726 +-1,0,0,0.842,-0.2375559,-0.1567955 +-1,0,0,0.842,-0.2374819,-0.1568157 +-1,0,0,0.842,-0.2374167,-0.1568335 +-1,0,0,0.842,-0.2373593,-0.1568492 +-1,0,0,0.842,-0.2373086,-0.156863 +-1,0,0,0.842,-0.237264,-0.1568751 +-1,0,0,0.842,-0.2539339,-0.1544948 +-1,0,0,0.842,-0.2520364,-0.1551282 +-1,0,0,0.842,-0.2503639,-0.1556864 +-1,0,0,0.842,-0.2488897,-0.1561785 +-1,0,0,0.842,-0.2475902,-0.1566123 +-1,0,0,0.842,-0.2464448,-0.1569946 +-1,0,0,0.842,-0.2454352,-0.1573316 +-1,0,0,0.842,-0.2445453,-0.1576286 +-1,0,0,0.842,-0.2437609,-0.1578905 +-1,0,0,0.842,-0.2430695,-0.1581212 +-1,0,0,0.842,-0.2424601,-0.1583247 +-1,0,0,0.842,-0.2419229,-0.158504 +-1,0,0,0.842,-0.2414494,-0.158662 +-1,0,0,0.842,-0.2410321,-0.1588013 +-1,0,0,0.842,-0.2406642,-0.1589241 +-1,0,0,0.842,-0.2403399,-0.1590324 +-1,0,0,0.842,-0.2400541,-0.1591278 +-1,0,0,0.842,-0.2398022,-0.1592119 +-1,0,0,0.842,-0.2395801,-0.159286 +-1,0,0,0.842,-0.2393844,-0.1593513 +-1,0,0,0.842,-0.2392118,-0.1594089 +-1,0,0,0.842,-0.2390598,-0.1594597 +-1,0,0,0.842,-0.2389257,-0.1595044 +-1,0,0,0.842,-0.2388076,-0.1595439 +-1,0,0,0.842,-0.2387034,-0.1595786 +-1,0,0,0.842,-0.2386116,-0.1596093 +-1,0,0,0.842,-0.2385307,-0.1596363 +-1,0,0,0.842,-0.2384594,-0.1596601 +-1,0,0,0.842,-0.2383965,-0.1596811 +-1,0,0,0.842,-0.2383411,-0.1596996 +-1,0,0,0.842,-0.2382922,-0.1597159 +-1,0,0,0.842,-0.2382492,-0.1597302 +-1,0,0,0.842,-0.2544076,-0.1565347 +-1,0,0,0.842,-0.2525927,-0.1572588 +-1,0,0,0.842,-0.2509929,-0.1578971 +-1,0,0,0.842,-0.2495828,-0.1584598 +-1,0,0,0.842,-0.2483398,-0.1589557 +-1,0,0,0.842,-0.2472442,-0.1593928 +-1,0,0,0.842,-0.2462786,-0.1597781 +-1,0,0,0.842,-0.2454274,-0.1601177 +-1,0,0,0.842,-0.2446771,-0.1604171 +-1,0,0,0.842,-0.2440157,-0.160681 +-1,0,0,0.842,-0.2434328,-0.1609136 +-1,0,0,0.842,-0.242919,-0.1611186 +-1,0,0,0.842,-0.2424661,-0.1612993 +-1,0,0,0.842,-0.2420669,-0.1614586 +-1,0,0,0.842,-0.241715,-0.161599 +-1,0,0,0.842,-0.2414048,-0.1617227 +-1,0,0,0.842,-0.2411314,-0.1618318 +-1,0,0,0.842,-0.2408905,-0.161928 +-1,0,0,0.842,-0.240678,-0.1620127 +-1,0,0,0.842,-0.2404908,-0.1620874 +-1,0,0,0.842,-0.2403258,-0.1621532 +-1,0,0,0.842,-0.2401803,-0.1622113 +-1,0,0,0.842,-0.2400521,-0.1622625 +-1,0,0,0.842,-0.2399391,-0.1623075 +-1,0,0,0.842,-0.2398395,-0.1623473 +-1,0,0,0.842,-0.2397517,-0.1623823 +-1,0,0,0.842,-0.2396743,-0.1624132 +-1,0,0,0.842,-0.2396061,-0.1624404 +-1,0,0,0.842,-0.2395459,-0.1624644 +-1,0,0,0.842,-0.2394929,-0.1624856 +-1,0,0,0.842,-0.2394462,-0.1625042 +-1,0,0,0.842,-0.239405,-0.1625206 +-1,0,0,0.842,-0.2549678,-0.1585509 +-1,0,0,0.842,-0.2532451,-0.1593597 +-1,0,0,0.842,-0.2517265,-0.1600726 +-1,0,0,0.842,-0.250388,-0.1607009 +-1,0,0,0.842,-0.2492082,-0.1612548 +-1,0,0,0.842,-0.2481683,-0.161743 +-1,0,0,0.842,-0.2472516,-0.1621733 +-1,0,0,0.842,-0.2464437,-0.1625526 +-1,0,0,0.842,-0.2457315,-0.1628869 +-1,0,0,0.842,-0.2451037,-0.1631816 +-1,0,0,0.842,-0.2445504,-0.1634414 +-1,0,0,0.842,-0.2440627,-0.1636703 +-1,0,0,0.842,-0.2436328,-0.1638721 +-1,0,0,0.842,-0.2432539,-0.16405 +-1,0,0,0.842,-0.2429199,-0.1642068 +-1,0,0,0.842,-0.2426254,-0.164345 +-1,0,0,0.842,-0.2423659,-0.1644669 +-1,0,0,0.842,-0.2421372,-0.1645742 +-1,0,0,0.842,-0.2419356,-0.1646689 +-1,0,0,0.842,-0.2417579,-0.1647523 +-1,0,0,0.842,-0.2416012,-0.1648259 +-1,0,0,0.842,-0.2414631,-0.1648907 +-1,0,0,0.842,-0.2413414,-0.1649478 +-1,0,0,0.842,-0.2412342,-0.1649982 +-1,0,0,0.842,-0.2411396,-0.1650426 +-1,0,0,0.842,-0.2410562,-0.1650817 +-1,0,0,0.842,-0.2409828,-0.1651162 +-1,0,0,0.842,-0.240918,-0.1651466 +-1,0,0,0.842,-0.240861,-0.1651734 +-1,0,0,0.842,-0.2408106,-0.165197 +-1,0,0,0.842,-0.2407663,-0.1652178 +-1,0,0,0.842,-0.2407272,-0.1652362 +-1,0,0,0.842,-0.2555897,-0.1605462 +-1,0,0,0.842,-0.2539712,-0.1614318 +-1,0,0,0.842,-0.2525445,-0.1622124 +-1,0,0,0.842,-0.251287,-0.1629005 +-1,0,0,0.842,-0.2501786,-0.163507 +-1,0,0,0.842,-0.2492017,-0.1640416 +-1,0,0,0.842,-0.2483405,-0.1645129 +-1,0,0,0.842,-0.2475814,-0.1649282 +-1,0,0,0.842,-0.2469123,-0.1652943 +-1,0,0,0.842,-0.2463226,-0.165617 +-1,0,0,0.842,-0.2458028,-0.1659015 +-1,0,0,0.842,-0.2453445,-0.1661522 +-1,0,0,0.842,-0.2449407,-0.1663732 +-1,0,0,0.842,-0.2445847,-0.166568 +-1,0,0,0.842,-0.2442709,-0.1667397 +-1,0,0,0.842,-0.2439943,-0.1668911 +-1,0,0,0.842,-0.2437505,-0.1670245 +-1,0,0,0.842,-0.2435356,-0.167142 +-1,0,0,0.842,-0.2433462,-0.1672457 +-1,0,0,0.842,-0.2431792,-0.1673371 +-1,0,0,0.842,-0.2430321,-0.1674176 +-1,0,0,0.842,-0.2429023,-0.1674886 +-1,0,0,0.842,-0.242788,-0.1675511 +-1,0,0,0.842,-0.2426872,-0.1676063 +-1,0,0,0.842,-0.2425984,-0.1676549 +-1,0,0,0.842,-0.2425201,-0.1676977 +-1,0,0,0.842,-0.2424511,-0.1677355 +-1,0,0,0.842,-0.2423902,-0.1677688 +-1,0,0,0.842,-0.2423366,-0.1677981 +-1,0,0,0.842,-0.2422893,-0.167824 +-1,0,0,0.842,-0.2422477,-0.1678468 +-1,0,0,0.842,-0.2422109,-0.1678669 +-1,0,0,0.842,-0.2562723,-0.1625187 +-1,0,0,0.842,-0.2547696,-0.1634725 +-1,0,0,0.842,-0.2534451,-0.1643133 +-1,0,0,0.842,-0.2522776,-0.1650544 +-1,0,0,0.842,-0.2512484,-0.1657076 +-1,0,0,0.842,-0.2503414,-0.1662834 +-1,0,0,0.842,-0.2495418,-0.1667909 +-1,0,0,0.842,-0.2488371,-0.1672382 +-1,0,0,0.842,-0.2482158,-0.1676325 +-1,0,0,0.842,-0.2476683,-0.1679801 +-1,0,0,0.842,-0.2471856,-0.1682864 +-1,0,0,0.842,-0.2467602,-0.1685565 +-1,0,0,0.842,-0.2463852,-0.1687945 +-1,0,0,0.842,-0.2460547,-0.1690043 +-1,0,0,0.842,-0.2457634,-0.1691892 +-1,0,0,0.842,-0.2455066,-0.1693522 +-1,0,0,0.842,-0.2452802,-0.1694959 +-1,0,0,0.842,-0.2450807,-0.1696226 +-1,0,0,0.842,-0.2449048,-0.1697342 +-1,0,0,0.842,-0.2447498,-0.1698326 +-1,0,0,0.842,-0.2446132,-0.1699193 +-1,0,0,0.842,-0.2444927,-0.1699958 +-1,0,0,0.842,-0.2443866,-0.1700632 +-1,0,0,0.842,-0.244293,-0.1701225 +-1,0,0,0.842,-0.2442105,-0.1701749 +-1,0,0,0.842,-0.2441378,-0.170221 +-1,0,0,0.842,-0.2440737,-0.1702617 +-1,0,0,0.842,-0.2440173,-0.1702976 +-1,0,0,0.842,-0.2439675,-0.1703292 +-1,0,0,0.842,-0.2439236,-0.170357 +-1,0,0,0.842,-0.2438849,-0.1703816 +-1,0,0,0.842,-0.2438508,-0.1704032 +-1,0,0,0.842,-0.2570392,-0.1644581 +-1,0,0,0.842,-0.2556603,-0.1654716 +-1,0,0,0.842,-0.2544448,-0.166365 +-1,0,0,0.842,-0.2533735,-0.1671524 +-1,0,0,0.842,-0.2524292,-0.1678465 +-1,0,0,0.842,-0.2515968,-0.1684583 +-1,0,0,0.842,-0.2508631,-0.1689976 +-1,0,0,0.842,-0.2502164,-0.1694729 +-1,0,0,0.842,-0.2496463,-0.1698919 +-1,0,0,0.842,-0.2491439,-0.1702612 +-1,0,0,0.842,-0.248701,-0.1705867 +-1,0,0,0.842,-0.2483106,-0.1708737 +-1,0,0,0.842,-0.2479665,-0.1711266 +-1,0,0,0.842,-0.2476632,-0.1713495 +-1,0,0,0.842,-0.2473959,-0.171546 +-1,0,0,0.842,-0.2471602,-0.1717192 +-1,0,0,0.842,-0.2469525,-0.1718719 +-1,0,0,0.842,-0.2467694,-0.1720064 +-1,0,0,0.842,-0.246608,-0.172125 +-1,0,0,0.842,-0.2464658,-0.1722296 +-1,0,0,0.842,-0.2463404,-0.1723218 +-1,0,0,0.842,-0.2462299,-0.172403 +-1,0,0,0.842,-0.2461325,-0.1724746 +-1,0,0,0.842,-0.2460466,-0.1725377 +-1,0,0,0.842,-0.2459709,-0.1725933 +-1,0,0,0.842,-0.2459042,-0.1726424 +-1,0,0,0.842,-0.2458454,-0.1726856 +-1,0,0,0.842,-0.2457936,-0.1727237 +-1,0,0,0.842,-0.2457479,-0.1727573 +-1,0,0,0.842,-0.2457076,-0.1727869 +-1,0,0,0.842,-0.2456721,-0.172813 +-1,0,0,0.842,-0.2456408,-0.1728359 +-1,0,0,0.842,-0.2578734,-0.166366 +-1,0,0,0.842,-0.2566275,-0.1674294 +-1,0,0,0.842,-0.2555293,-0.1683667 +-1,0,0,0.842,-0.2545612,-0.1691929 +-1,0,0,0.842,-0.253708,-0.1699211 +-1,0,0,0.842,-0.2529559,-0.170563 +-1,0,0,0.842,-0.252293,-0.1711289 +-1,0,0,0.842,-0.2517087,-0.1716276 +-1,0,0,0.842,-0.2511936,-0.1720672 +-1,0,0,0.842,-0.2507396,-0.1724547 +-1,0,0,0.842,-0.2503394,-0.1727962 +-1,0,0,0.842,-0.2499867,-0.1730973 +-1,0,0,0.842,-0.2496758,-0.1733626 +-1,0,0,0.842,-0.2494018,-0.1735965 +-1,0,0,0.842,-0.2491602,-0.1738027 +-1,0,0,0.842,-0.2489473,-0.1739844 +-1,0,0,0.842,-0.2487596,-0.1741446 +-1,0,0,0.842,-0.2485942,-0.1742858 +-1,0,0,0.842,-0.2484484,-0.1744102 +-1,0,0,0.842,-0.2483198,-0.1745199 +-1,0,0,0.842,-0.2482066,-0.1746166 +-1,0,0,0.842,-0.2481067,-0.1747019 +-1,0,0,0.842,-0.2480187,-0.174777 +-1,0,0,0.842,-0.2479411,-0.1748432 +-1,0,0,0.842,-0.2478727,-0.1749016 +-1,0,0,0.842,-0.2478124,-0.174953 +-1,0,0,0.842,-0.2477593,-0.1749984 +-1,0,0,0.842,-0.2477125,-0.1750383 +-1,0,0,0.842,-0.2476712,-0.1750736 +-1,0,0,0.842,-0.2476348,-0.1751046 +-1,0,0,0.842,-0.2476027,-0.175132 +-1,0,0,0.842,-0.2475745,-0.1751561 +-1,0,0,0.842,-0.2587503,-0.1682497 +-1,0,0,0.842,-0.2576487,-0.1693513 +-1,0,0,0.842,-0.2566777,-0.1703223 +-1,0,0,0.842,-0.2558219,-0.1711781 +-1,0,0,0.842,-0.2550675,-0.1719325 +-1,0,0,0.842,-0.2544026,-0.1725974 +-1,0,0,0.842,-0.2538165,-0.1731835 +-1,0,0,0.842,-0.2532998,-0.1737002 +-1,0,0,0.842,-0.2528445,-0.1741555 +-1,0,0,0.842,-0.2524431,-0.1745569 +-1,0,0,0.842,-0.2520893,-0.1749107 +-1,0,0,0.842,-0.2517774,-0.1752226 +-1,0,0,0.842,-0.2515025,-0.1754975 +-1,0,0,0.842,-0.2512603,-0.1757398 +-1,0,0,0.842,-0.2510467,-0.1759533 +-1,0,0,0.842,-0.2508584,-0.1761416 +-1,0,0,0.842,-0.2506925,-0.1763075 +-1,0,0,0.842,-0.2505462,-0.1764538 +-1,0,0,0.842,-0.2504173,-0.1765827 +-1,0,0,0.842,-0.2503037,-0.1766963 +-1,0,0,0.842,-0.2502035,-0.1767965 +-1,0,0,0.842,-0.2501152,-0.1768848 +-1,0,0,0.842,-0.2500374,-0.1769626 +-1,0,0,0.842,-0.2499688,-0.1770312 +-1,0,0,0.842,-0.2499084,-0.1770916 +-1,0,0,0.842,-0.2498551,-0.1771449 +-1,0,0,0.842,-0.2498081,-0.1771919 +-1,0,0,0.842,-0.2497667,-0.1772333 +-1,0,0,0.842,-0.2497302,-0.1772698 +-1,0,0,0.842,-0.249698,-0.177302 +-1,0,0,0.842,-0.2496697,-0.1773303 +-1,0,0,0.842,-0.2496447,-0.1773553 +-1,0,0,0.842,-0.260634,-0.1691266 +-1,0,0,0.842,-0.2595706,-0.1703725 +-1,0,0,0.842,-0.2586333,-0.1714707 +-1,0,0,0.842,-0.2578071,-0.1724388 +-1,0,0,0.842,-0.2570789,-0.173292 +-1,0,0,0.842,-0.2564369,-0.1740441 +-1,0,0,0.842,-0.2558711,-0.174707 +-1,0,0,0.842,-0.2553724,-0.1752913 +-1,0,0,0.842,-0.2549328,-0.1758064 +-1,0,0,0.842,-0.2545453,-0.1762604 +-1,0,0,0.842,-0.2542038,-0.1766606 +-1,0,0,0.842,-0.2539027,-0.1770133 +-1,0,0,0.842,-0.2536374,-0.1773242 +-1,0,0,0.842,-0.2534035,-0.1775982 +-1,0,0,0.842,-0.2531973,-0.1778398 +-1,0,0,0.842,-0.2530156,-0.1780527 +-1,0,0,0.842,-0.2528554,-0.1782404 +-1,0,0,0.842,-0.2527142,-0.1784058 +-1,0,0,0.842,-0.2525898,-0.1785516 +-1,0,0,0.842,-0.2524801,-0.1786802 +-1,0,0,0.842,-0.2523834,-0.1787934 +-1,0,0,0.842,-0.2522981,-0.1788933 +-1,0,0,0.842,-0.252223,-0.1789813 +-1,0,0,0.842,-0.2521568,-0.1790589 +-1,0,0,0.842,-0.2520984,-0.1791273 +-1,0,0,0.842,-0.252047,-0.1791876 +-1,0,0,0.842,-0.2520016,-0.1792407 +-1,0,0,0.842,-0.2519616,-0.1792875 +-1,0,0,0.842,-0.2519264,-0.1793288 +-1,0,0,0.842,-0.2518954,-0.1793652 +-1,0,0,0.842,-0.251868,-0.1793973 +-1,0,0,0.842,-0.2518439,-0.1794255 +-1,0,0,0.842,-0.2625419,-0.1699608 +-1,0,0,0.842,-0.2615284,-0.1713397 +-1,0,0,0.842,-0.260635,-0.1725552 +-1,0,0,0.842,-0.2598476,-0.1736265 +-1,0,0,0.842,-0.2591535,-0.1745708 +-1,0,0,0.842,-0.2585417,-0.1754032 +-1,0,0,0.842,-0.2580024,-0.1761369 +-1,0,0,0.842,-0.2575271,-0.1767836 +-1,0,0,0.842,-0.2571081,-0.1773537 +-1,0,0,0.842,-0.2567388,-0.1778561 +-1,0,0,0.842,-0.2564133,-0.178299 +-1,0,0,0.842,-0.2561263,-0.1786894 +-1,0,0,0.842,-0.2558734,-0.1790335 +-1,0,0,0.842,-0.2556505,-0.1793368 +-1,0,0,0.842,-0.255454,-0.1796041 +-1,0,0,0.842,-0.2552808,-0.1798398 +-1,0,0,0.842,-0.2551281,-0.1800475 +-1,0,0,0.842,-0.2549936,-0.1802306 +-1,0,0,0.842,-0.2548749,-0.180392 +-1,0,0,0.842,-0.2547704,-0.1805342 +-1,0,0,0.842,-0.2546782,-0.1806596 +-1,0,0,0.842,-0.254597,-0.1807701 +-1,0,0,0.842,-0.2545254,-0.1808675 +-1,0,0,0.842,-0.2544623,-0.1809534 +-1,0,0,0.842,-0.2544067,-0.1810291 +-1,0,0,0.842,-0.2543576,-0.1810958 +-1,0,0,0.842,-0.2543144,-0.1811546 +-1,0,0,0.842,-0.2542763,-0.1812064 +-1,0,0,0.842,-0.2542427,-0.1812521 +-1,0,0,0.842,-0.2542132,-0.1812924 +-1,0,0,0.842,-0.254187,-0.1813279 +-1,0,0,0.842,-0.2541641,-0.1813592 +-1,0,0,0.842,-0.2644813,-0.1707277 +-1,0,0,0.842,-0.2635275,-0.1722304 +-1,0,0,0.842,-0.2626867,-0.1735549 +-1,0,0,0.842,-0.2619456,-0.1747224 +-1,0,0,0.842,-0.2612924,-0.1757516 +-1,0,0,0.842,-0.2607166,-0.1766586 +-1,0,0,0.842,-0.2602091,-0.1774582 +-1,0,0,0.842,-0.2597618,-0.1781629 +-1,0,0,0.842,-0.2593675,-0.1787842 +-1,0,0,0.842,-0.2590199,-0.1793317 +-1,0,0,0.842,-0.2587135,-0.1798144 +-1,0,0,0.842,-0.2584435,-0.1802398 +-1,0,0,0.842,-0.2582055,-0.1806148 +-1,0,0,0.842,-0.2579957,-0.1809453 +-1,0,0,0.842,-0.2578108,-0.1812366 +-1,0,0,0.842,-0.2576478,-0.1814934 +-1,0,0,0.842,-0.2575041,-0.1817198 +-1,0,0,0.842,-0.2573774,-0.1819193 +-1,0,0,0.842,-0.2572658,-0.1820952 +-1,0,0,0.842,-0.2571674,-0.1822502 +-1,0,0,0.842,-0.2570807,-0.1823868 +-1,0,0,0.842,-0.2570042,-0.1825073 +-1,0,0,0.842,-0.2569368,-0.1826134 +-1,0,0,0.842,-0.2568775,-0.182707 +-1,0,0,0.842,-0.2568251,-0.1827895 +-1,0,0,0.842,-0.256779,-0.1828622 +-1,0,0,0.842,-0.2567383,-0.1829263 +-1,0,0,0.842,-0.2567024,-0.1829827 +-1,0,0,0.842,-0.2566708,-0.1830325 +-1,0,0,0.842,-0.256643,-0.1830764 +-1,0,0,0.842,-0.2566184,-0.1831151 +-1,0,0,0.842,-0.2565968,-0.1831492 +-1,0,0,0.842,-0.2664538,-0.1714103 +-1,0,0,0.842,-0.2655682,-0.1730288 +-1,0,0,0.842,-0.2647876,-0.1744555 +-1,0,0,0.842,-0.2640995,-0.1757129 +-1,0,0,0.842,-0.263493,-0.1768214 +-1,0,0,0.842,-0.2629584,-0.1777983 +-1,0,0,0.842,-0.2624871,-0.1786595 +-1,0,0,0.842,-0.2620718,-0.1794186 +-1,0,0,0.842,-0.2617057,-0.1800877 +-1,0,0,0.842,-0.261383,-0.1806774 +-1,0,0,0.842,-0.2610985,-0.1811972 +-1,0,0,0.842,-0.2608478,-0.1816554 +-1,0,0,0.842,-0.2606268,-0.1820593 +-1,0,0,0.842,-0.260432,-0.1824153 +-1,0,0,0.842,-0.2602603,-0.1827291 +-1,0,0,0.842,-0.2601089,-0.1830057 +-1,0,0,0.842,-0.2599756,-0.1832495 +-1,0,0,0.842,-0.259858,-0.1834644 +-1,0,0,0.842,-0.2597543,-0.1836538 +-1,0,0,0.842,-0.259663,-0.1838208 +-1,0,0,0.842,-0.2595824,-0.1839679 +-1,0,0,0.842,-0.2595114,-0.1840977 +-1,0,0,0.842,-0.2594489,-0.184212 +-1,0,0,0.842,-0.2593937,-0.1843128 +-1,0,0,0.842,-0.2593451,-0.1844016 +-1,0,0,0.842,-0.2593023,-0.1844799 +-1,0,0,0.842,-0.2592645,-0.1845489 +-1,0,0,0.842,-0.2592312,-0.1846098 +-1,0,0,0.842,-0.2592019,-0.1846634 +-1,0,0,0.842,-0.259176,-0.1847107 +-1,0,0,0.842,-0.2591532,-0.1847523 +-1,0,0,0.842,-0.2591331,-0.1847891 +-1,0,0,0.842,-0.268449,-0.1720322 +-1,0,0,0.842,-0.2676403,-0.1737549 +-1,0,0,0.842,-0.2669274,-0.1752735 +-1,0,0,0.842,-0.2662991,-0.176612 +-1,0,0,0.842,-0.2657452,-0.1777918 +-1,0,0,0.842,-0.265257,-0.1788317 +-1,0,0,0.842,-0.2648267,-0.1797484 +-1,0,0,0.842,-0.2644474,-0.1805563 +-1,0,0,0.842,-0.2641131,-0.1812685 +-1,0,0,0.842,-0.2638184,-0.1818963 +-1,0,0,0.842,-0.2635586,-0.1824496 +-1,0,0,0.842,-0.2633297,-0.1829373 +-1,0,0,0.842,-0.2631279,-0.1833672 +-1,0,0,0.842,-0.26295,-0.1837461 +-1,0,0,0.842,-0.2627932,-0.1840801 +-1,0,0,0.842,-0.262655,-0.1843746 +-1,0,0,0.842,-0.2625332,-0.1846341 +-1,0,0,0.842,-0.2624258,-0.1848628 +-1,0,0,0.842,-0.2623311,-0.1850644 +-1,0,0,0.842,-0.2622477,-0.1852421 +-1,0,0,0.842,-0.2621742,-0.1853988 +-1,0,0,0.842,-0.2621093,-0.1855369 +-1,0,0,0.842,-0.2620522,-0.1856586 +-1,0,0,0.842,-0.2620018,-0.1857658 +-1,0,0,0.842,-0.2619574,-0.1858604 +-1,0,0,0.842,-0.2619183,-0.1859438 +-1,0,0,0.842,-0.2618838,-0.1860172 +-1,0,0,0.842,-0.2618534,-0.186082 +-1,0,0,0.842,-0.2618266,-0.186139 +-1,0,0,0.842,-0.261803,-0.1861894 +-1,0,0,0.842,-0.2617822,-0.1862337 +-1,0,0,0.842,-0.2617638,-0.1862728 +-1,0,0,0.842,-0.2704653,-0.1725924 +-1,0,0,0.842,-0.2697412,-0.1744073 +-1,0,0,0.842,-0.2691029,-0.1760071 +-1,0,0,0.842,-0.2685403,-0.1774172 +-1,0,0,0.842,-0.2680443,-0.1786602 +-1,0,0,0.842,-0.2676072,-0.1797558 +-1,0,0,0.842,-0.2672219,-0.1807214 +-1,0,0,0.842,-0.2668822,-0.1815726 +-1,0,0,0.842,-0.2665829,-0.1823229 +-1,0,0,0.842,-0.266319,-0.1829843 +-1,0,0,0.842,-0.2660864,-0.1835672 +-1,0,0,0.842,-0.2658814,-0.184081 +-1,0,0,0.842,-0.2657007,-0.1845339 +-1,0,0,0.842,-0.2655414,-0.1849331 +-1,0,0,0.842,-0.265401,-0.185285 +-1,0,0,0.842,-0.2652773,-0.1855952 +-1,0,0,0.842,-0.2651682,-0.1858686 +-1,0,0,0.842,-0.265072,-0.1861095 +-1,0,0,0.842,-0.2649873,-0.1863219 +-1,0,0,0.842,-0.2649126,-0.1865092 +-1,0,0,0.842,-0.2648467,-0.1866742 +-1,0,0,0.842,-0.2647887,-0.1868197 +-1,0,0,0.842,-0.2647375,-0.1869479 +-1,0,0,0.842,-0.2646925,-0.1870609 +-1,0,0,0.842,-0.2646527,-0.1871605 +-1,0,0,0.842,-0.2646177,-0.1872483 +-1,0,0,0.842,-0.2645868,-0.1873257 +-1,0,0,0.842,-0.2645596,-0.1873939 +-1,0,0,0.842,-0.2645356,-0.1874541 +-1,0,0,0.842,-0.2645144,-0.1875071 +-1,0,0,0.842,-0.2644958,-0.1875538 +-1,0,0,0.842,-0.2644794,-0.187595 +-1,0,0,0.842,-0.2725052,-0.1730661 +-1,0,0,0.842,-0.2718718,-0.1749636 +-1,0,0,0.842,-0.2713136,-0.1766361 +-1,0,0,0.842,-0.2708215,-0.1781103 +-1,0,0,0.842,-0.2703877,-0.1794098 +-1,0,0,0.842,-0.2700054,-0.1805552 +-1,0,0,0.842,-0.2696684,-0.1815648 +-1,0,0,0.842,-0.2693714,-0.1824547 +-1,0,0,0.842,-0.2691095,-0.1832391 +-1,0,0,0.842,-0.2688788,-0.1839305 +-1,0,0,0.842,-0.2686753,-0.1845399 +-1,0,0,0.842,-0.268496,-0.1850771 +-1,0,0,0.842,-0.268338,-0.1855506 +-1,0,0,0.842,-0.2681987,-0.1859679 +-1,0,0,0.842,-0.2680759,-0.1863358 +-1,0,0,0.842,-0.2679676,-0.1866601 +-1,0,0,0.842,-0.2678722,-0.1869459 +-1,0,0,0.842,-0.2677881,-0.1871978 +-1,0,0,0.842,-0.267714,-0.1874199 +-1,0,0,0.842,-0.2676487,-0.1876156 +-1,0,0,0.842,-0.2675911,-0.1877882 +-1,0,0,0.842,-0.2675403,-0.1879402 +-1,0,0,0.842,-0.2674956,-0.1880743 +-1,0,0,0.842,-0.2674561,-0.1881924 +-1,0,0,0.842,-0.2674214,-0.1882966 +-1,0,0,0.842,-0.2673907,-0.1883884 +-1,0,0,0.842,-0.2673637,-0.1884693 +-1,0,0,0.842,-0.2673399,-0.1885406 +-1,0,0,0.842,-0.2673189,-0.1886035 +-1,0,0,0.842,-0.2673004,-0.1886589 +-1,0,0,0.842,-0.2672841,-0.1887078 +-1,0,0,0.842,-0.2672698,-0.1887508 +-1,0,0,0.842,-0.2745615,-0.1734698 +-1,0,0,0.842,-0.2740248,-0.1754376 +-1,0,0,0.842,-0.2735517,-0.1771721 +-1,0,0,0.842,-0.2731346,-0.178701 +-1,0,0,0.842,-0.2727671,-0.1800486 +-1,0,0,0.842,-0.2724431,-0.1812365 +-1,0,0,0.842,-0.2721575,-0.1822835 +-1,0,0,0.842,-0.2719058,-0.1832064 +-1,0,0,0.842,-0.2716839,-0.1840199 +-1,0,0,0.842,-0.2714883,-0.184737 +-1,0,0,0.842,-0.271316,-0.185369 +-1,0,0,0.842,-0.271164,-0.1859261 +-1,0,0,0.842,-0.2710301,-0.1864171 +-1,0,0,0.842,-0.270912,-0.18685 +-1,0,0,0.842,-0.270808,-0.1872315 +-1,0,0,0.842,-0.2707162,-0.1875678 +-1,0,0,0.842,-0.2706354,-0.1878642 +-1,0,0,0.842,-0.2705641,-0.1881255 +-1,0,0,0.842,-0.2705013,-0.1883558 +-1,0,0,0.842,-0.2704459,-0.1885588 +-1,0,0,0.842,-0.2703972,-0.1887377 +-1,0,0,0.842,-0.2703541,-0.1888954 +-1,0,0,0.842,-0.2703162,-0.1890344 +-1,0,0,0.842,-0.2702828,-0.189157 +-1,0,0,0.842,-0.2702533,-0.189265 +-1,0,0,0.842,-0.2702274,-0.1893602 +-1,0,0,0.842,-0.2702045,-0.1894441 +-1,0,0,0.842,-0.2701843,-0.1895181 +-1,0,0,0.842,-0.2701665,-0.1895833 +-1,0,0,0.842,-0.2701508,-0.1896407 +-1,0,0,0.842,-0.270137,-0.1896914 +-1,0,0,0.842,-0.2701249,-0.189736 +-1,0,0,0.842,-0.276631,-0.1738094 +-1,0,0,0.842,-0.2761959,-0.1758343 +-1,0,0,0.842,-0.2758123,-0.1776191 +-1,0,0,0.842,-0.2754743,-0.1791923 +-1,0,0,0.842,-0.2751763,-0.1805789 +-1,0,0,0.842,-0.2749136,-0.1818012 +-1,0,0,0.842,-0.2746821,-0.1828786 +-1,0,0,0.842,-0.274478,-0.1838282 +-1,0,0,0.842,-0.2742982,-0.1846653 +-1,0,0,0.842,-0.2741396,-0.1854031 +-1,0,0,0.842,-0.2739998,-0.1860535 +-1,0,0,0.842,-0.2738767,-0.1866267 +-1,0,0,0.842,-0.2737681,-0.187132 +-1,0,0,0.842,-0.2736724,-0.1875774 +-1,0,0,0.842,-0.273588,-0.18797 +-1,0,0,0.842,-0.2735136,-0.188316 +-1,0,0,0.842,-0.2734481,-0.188621 +-1,0,0,0.842,-0.2733904,-0.1888898 +-1,0,0,0.842,-0.2733394,-0.1891268 +-1,0,0,0.842,-0.2732945,-0.1893357 +-1,0,0,0.842,-0.273255,-0.1895198 +-1,0,0,0.842,-0.2732201,-0.1896821 +-1,0,0,0.842,-0.2731894,-0.1898251 +-1,0,0,0.842,-0.2731622,-0.1899512 +-1,0,0,0.842,-0.2731384,-0.1900624 +-1,0,0,0.842,-0.2731173,-0.1901603 +-1,0,0,0.842,-0.2730988,-0.1902467 +-1,0,0,0.842,-0.2730824,-0.1903228 +-1,0,0,0.842,-0.273068,-0.1903899 +-1,0,0,0.842,-0.2730553,-0.190449 +-1,0,0,0.842,-0.2730441,-0.1905012 +-1,0,0,0.842,-0.2730342,-0.1905471 +-1,0,0,0.842,-0.2787129,-0.1740724 +-1,0,0,0.842,-0.2783831,-0.1761421 +-1,0,0,0.842,-0.2780925,-0.1779665 +-1,0,0,0.842,-0.2778363,-0.1795745 +-1,0,0,0.842,-0.2776105,-0.180992 +-1,0,0,0.842,-0.2774115,-0.1822413 +-1,0,0,0.842,-0.277236,-0.1833426 +-1,0,0,0.842,-0.2770814,-0.1843133 +-1,0,0,0.842,-0.2769451,-0.1851689 +-1,0,0,0.842,-0.2768249,-0.185923 +-1,0,0,0.842,-0.276719,-0.1865878 +-1,0,0,0.842,-0.2766257,-0.1871738 +-1,0,0,0.842,-0.2765434,-0.1876902 +-1,0,0,0.842,-0.2764708,-0.1881455 +-1,0,0,0.842,-0.2764069,-0.1885467 +-1,0,0,0.842,-0.2763506,-0.1889005 +-1,0,0,0.842,-0.2763009,-0.1892122 +-1,0,0,0.842,-0.2762571,-0.189487 +-1,0,0,0.842,-0.2762185,-0.1897293 +-1,0,0,0.842,-0.2761845,-0.1899428 +-1,0,0,0.842,-0.2761545,-0.1901309 +-1,0,0,0.842,-0.2761281,-0.1902968 +-1,0,0,0.842,-0.2761048,-0.1904431 +-1,0,0,0.842,-0.2760843,-0.1905719 +-1,0,0,0.842,-0.2760662,-0.1906855 +-1,0,0,0.842,-0.2760502,-0.1907857 +-1,0,0,0.842,-0.2760362,-0.1908739 +-1,0,0,0.842,-0.2760238,-0.1909517 +-1,0,0,0.842,-0.2760128,-0.1910203 +-1,0,0,0.842,-0.2760032,-0.1910807 +-1,0,0,0.842,-0.2759947,-0.191134 +-1,0,0,0.842,-0.2759872,-0.191181 +-1,0,0,0.842,-0.2808042,-0.1742515 +-1,0,0,0.842,-0.2805826,-0.1763545 +-1,0,0,0.842,-0.2803874,-0.1782082 +-1,0,0,0.842,-0.2802153,-0.1798422 +-1,0,0,0.842,-0.2800636,-0.1812824 +-1,0,0,0.842,-0.2799299,-0.1825519 +-1,0,0,0.842,-0.279812,-0.1836709 +-1,0,0,0.842,-0.2797081,-0.1846572 +-1,0,0,0.842,-0.2796166,-0.1855266 +-1,0,0,0.842,-0.2795359,-0.1862929 +-1,0,0,0.842,-0.2794648,-0.1869683 +-1,0,0,0.842,-0.279402,-0.1875637 +-1,0,0,0.842,-0.2793468,-0.1880885 +-1,0,0,0.842,-0.279298,-0.1885511 +-1,0,0,0.842,-0.2792551,-0.1889588 +-1,0,0,0.842,-0.2792172,-0.1893182 +-1,0,0,0.842,-0.2791839,-0.189635 +-1,0,0,0.842,-0.2791544,-0.1899142 +-1,0,0,0.842,-0.2791285,-0.1901603 +-1,0,0,0.842,-0.2791057,-0.1903773 +-1,0,0,0.842,-0.2790855,-0.1905685 +-1,0,0,0.842,-0.2790678,-0.1907371 +-1,0,0,0.842,-0.2790521,-0.1908856 +-1,0,0,0.842,-0.2790383,-0.1910166 +-1,0,0,0.842,-0.2790262,-0.191132 +-1,0,0,0.842,-0.2790155,-0.1912338 +-1,0,0,0.842,-0.279006,-0.1913234 +-1,0,0,0.842,-0.2789977,-0.1914025 +-1,0,0,0.842,-0.2789904,-0.1914722 +-1,0,0,0.842,-0.2789839,-0.1915336 +-1,0,0,0.842,-0.2789782,-0.1915877 +-1,0,0,0.842,-0.2789732,-0.1916354 +-1,0,0,0.842,-0.2829005,-0.1743653 +-1,0,0,0.842,-0.2827893,-0.1764876 +-1,0,0,0.842,-0.2826912,-0.1783584 +-1,0,0,0.842,-0.2826048,-0.1800073 +-1,0,0,0.842,-0.2825286,-0.1814607 +-1,0,0,0.842,-0.2824615,-0.1827419 +-1,0,0,0.842,-0.2824023,-0.1838711 +-1,0,0,0.842,-0.2823502,-0.1848665 +-1,0,0,0.842,-0.2823042,-0.1857438 +-1,0,0,0.842,-0.2822636,-0.1865172 +-1,0,0,0.842,-0.2822279,-0.1871988 +-1,0,0,0.842,-0.2821964,-0.1877997 +-1,0,0,0.842,-0.2821687,-0.1883293 +-1,0,0,0.842,-0.2821442,-0.1887961 +-1,0,0,0.842,-0.2821226,-0.1892076 +-1,0,0,0.842,-0.2821036,-0.1895703 +-1,0,0,0.842,-0.2820869,-0.18989 +-1,0,0,0.842,-0.2820721,-0.1901717 +-1,0,0,0.842,-0.2820591,-0.1904201 +-1,0,0,0.842,-0.2820476,-0.1906391 +-1,0,0,0.842,-0.2820375,-0.190832 +-1,0,0,0.842,-0.2820286,-0.1910021 +-1,0,0,0.842,-0.2820207,-0.1911521 +-1,0,0,0.842,-0.2820138,-0.1912842 +-1,0,0,0.842,-0.2820077,-0.1914007 +-1,0,0,0.842,-0.2820023,-0.1915034 +-1,0,0,0.842,-0.2819976,-0.1915939 +-1,0,0,0.842,-0.2819934,-0.1916737 +-1,0,0,0.842,-0.2819897,-0.191744 +-1,0,0,0.842,-0.2819865,-0.191806 +-1,0,0,0.842,-0.2819836,-0.1918606 +-1,0,0,0.842,-0.2819811,-0.1919088 +-1,0,0,0.842,-0.285,-0.1744137 +-1,0,0,0.842,-0.285,-0.1765412 +-1,0,0,0.842,-0.285,-0.1784165 +-1,0,0,0.842,-0.285,-0.1800694 +-1,0,0,0.842,-0.285,-0.1815265 +-1,0,0,0.842,-0.285,-0.1828107 +-1,0,0,0.842,-0.285,-0.1839427 +-1,0,0,0.842,-0.285,-0.1849405 +-1,0,0,0.842,-0.285,-0.18582 +-1,0,0,0.842,-0.285,-0.1865952 +-1,0,0,0.842,-0.285,-0.1872786 +-1,0,0,0.842,-0.285,-0.1878809 +-1,0,0,0.842,-0.285,-0.1884118 +-1,0,0,0.842,-0.285,-0.1888797 +-1,0,0,0.842,-0.285,-0.1892922 +-1,0,0,0.842,-0.285,-0.1896558 +-1,0,0,0.842,-0.285,-0.1899762 +-1,0,0,0.842,-0.285,-0.1902587 +-1,0,0,0.842,-0.285,-0.1905077 +-1,0,0,0.842,-0.285,-0.1907272 +-1,0,0,0.842,-0.285,-0.1909206 +-1,0,0,0.842,-0.285,-0.1910912 +-1,0,0,0.842,-0.285,-0.1912415 +-1,0,0,0.842,-0.285,-0.1913739 +-1,0,0,0.842,-0.285,-0.1914907 +-1,0,0,0.842,-0.285,-0.1915936 +-1,0,0,0.842,-0.285,-0.1916844 +-1,0,0,0.842,-0.285,-0.1917643 +-1,0,0,0.842,-0.285,-0.1918348 +-1,0,0,0.842,-0.285,-0.191897 +-1,0,0,0.842,-0.285,-0.1919517 +-1,0,0,0.842,-0.285,-0.192 +-1,0,0,0.842,-0.2870995,-0.1743653 +-1,0,0,0.842,-0.2872108,-0.1764876 +-1,0,0,0.842,-0.2873088,-0.1783584 +-1,0,0,0.842,-0.2873952,-0.1800073 +-1,0,0,0.842,-0.2874714,-0.1814607 +-1,0,0,0.842,-0.2875385,-0.1827419 +-1,0,0,0.842,-0.2875977,-0.1838711 +-1,0,0,0.842,-0.2876499,-0.1848665 +-1,0,0,0.842,-0.2876958,-0.1857438 +-1,0,0,0.842,-0.2877364,-0.1865172 +-1,0,0,0.842,-0.2877721,-0.1871988 +-1,0,0,0.842,-0.2878036,-0.1877997 +-1,0,0,0.842,-0.2878313,-0.1883293 +-1,0,0,0.842,-0.2878558,-0.1887961 +-1,0,0,0.842,-0.2878774,-0.1892076 +-1,0,0,0.842,-0.2878964,-0.1895703 +-1,0,0,0.842,-0.2879131,-0.18989 +-1,0,0,0.842,-0.2879279,-0.1901717 +-1,0,0,0.842,-0.2879409,-0.1904201 +-1,0,0,0.842,-0.2879524,-0.1906391 +-1,0,0,0.842,-0.2879625,-0.190832 +-1,0,0,0.842,-0.2879714,-0.1910021 +-1,0,0,0.842,-0.2879793,-0.1911521 +-1,0,0,0.842,-0.2879862,-0.1912842 +-1,0,0,0.842,-0.2879923,-0.1914007 +-1,0,0,0.842,-0.2879977,-0.1915034 +-1,0,0,0.842,-0.2880024,-0.1915939 +-1,0,0,0.842,-0.2880066,-0.1916737 +-1,0,0,0.842,-0.2880103,-0.191744 +-1,0,0,0.842,-0.2880135,-0.191806 +-1,0,0,0.842,-0.2880164,-0.1918606 +-1,0,0,0.842,-0.2880189,-0.1919088 +-1,0,0,0.842,-0.2891958,-0.1742515 +-1,0,0,0.842,-0.2894174,-0.1763545 +-1,0,0,0.842,-0.2896126,-0.1782082 +-1,0,0,0.842,-0.2897847,-0.1798422 +-1,0,0,0.842,-0.2899364,-0.1812824 +-1,0,0,0.842,-0.2900701,-0.1825519 +-1,0,0,0.842,-0.290188,-0.1836709 +-1,0,0,0.842,-0.2902918,-0.1846572 +-1,0,0,0.842,-0.2903834,-0.1855266 +-1,0,0,0.842,-0.2904641,-0.1862929 +-1,0,0,0.842,-0.2905353,-0.1869683 +-1,0,0,0.842,-0.290598,-0.1875637 +-1,0,0,0.842,-0.2906533,-0.1880885 +-1,0,0,0.842,-0.290702,-0.1885511 +-1,0,0,0.842,-0.2907449,-0.1889588 +-1,0,0,0.842,-0.2907828,-0.1893182 +-1,0,0,0.842,-0.2908161,-0.189635 +-1,0,0,0.842,-0.2908455,-0.1899142 +-1,0,0,0.842,-0.2908715,-0.1901603 +-1,0,0,0.842,-0.2908943,-0.1903773 +-1,0,0,0.842,-0.2909144,-0.1905685 +-1,0,0,0.842,-0.2909322,-0.1907371 +-1,0,0,0.842,-0.2909479,-0.1908856 +-1,0,0,0.842,-0.2909617,-0.1910166 +-1,0,0,0.842,-0.2909738,-0.191132 +-1,0,0,0.842,-0.2909845,-0.1912338 +-1,0,0,0.842,-0.290994,-0.1913234 +-1,0,0,0.842,-0.2910023,-0.1914025 +-1,0,0,0.842,-0.2910096,-0.1914722 +-1,0,0,0.842,-0.2910161,-0.1915336 +-1,0,0,0.842,-0.2910218,-0.1915877 +-1,0,0,0.842,-0.2910268,-0.1916354 +-1,0,0,0.842,-0.2912871,-0.1740724 +-1,0,0,0.842,-0.2916169,-0.1761421 +-1,0,0,0.842,-0.2919075,-0.1779665 +-1,0,0,0.842,-0.2921637,-0.1795745 +-1,0,0,0.842,-0.2923895,-0.180992 +-1,0,0,0.842,-0.2925885,-0.1822413 +-1,0,0,0.842,-0.292764,-0.1833426 +-1,0,0,0.842,-0.2929186,-0.1843133 +-1,0,0,0.842,-0.2930549,-0.1851689 +-1,0,0,0.842,-0.2931751,-0.185923 +-1,0,0,0.842,-0.293281,-0.1865878 +-1,0,0,0.842,-0.2933743,-0.1871738 +-1,0,0,0.842,-0.2934566,-0.1876902 +-1,0,0,0.842,-0.2935292,-0.1881455 +-1,0,0,0.842,-0.2935931,-0.1885467 +-1,0,0,0.842,-0.2936494,-0.1889005 +-1,0,0,0.842,-0.2936991,-0.1892122 +-1,0,0,0.842,-0.2937429,-0.189487 +-1,0,0,0.842,-0.2937815,-0.1897293 +-1,0,0,0.842,-0.2938155,-0.1899428 +-1,0,0,0.842,-0.2938455,-0.1901309 +-1,0,0,0.842,-0.2938719,-0.1902968 +-1,0,0,0.842,-0.2938952,-0.1904431 +-1,0,0,0.842,-0.2939157,-0.1905719 +-1,0,0,0.842,-0.2939338,-0.1906855 +-1,0,0,0.842,-0.2939498,-0.1907857 +-1,0,0,0.842,-0.2939638,-0.1908739 +-1,0,0,0.842,-0.2939762,-0.1909517 +-1,0,0,0.842,-0.2939872,-0.1910203 +-1,0,0,0.842,-0.2939968,-0.1910807 +-1,0,0,0.842,-0.2940053,-0.191134 +-1,0,0,0.842,-0.2940128,-0.191181 +-1,0,0,0.842,-0.2933691,-0.1738094 +-1,0,0,0.842,-0.2938042,-0.1758343 +-1,0,0,0.842,-0.2941877,-0.1776191 +-1,0,0,0.842,-0.2945257,-0.1791923 +-1,0,0,0.842,-0.2948237,-0.1805789 +-1,0,0,0.842,-0.2950864,-0.1818012 +-1,0,0,0.842,-0.2953179,-0.1828786 +-1,0,0,0.842,-0.295522,-0.1838282 +-1,0,0,0.842,-0.2957019,-0.1846653 +-1,0,0,0.842,-0.2958604,-0.1854031 +-1,0,0,0.842,-0.2960002,-0.1860535 +-1,0,0,0.842,-0.2961233,-0.1866267 +-1,0,0,0.842,-0.2962319,-0.187132 +-1,0,0,0.842,-0.2963276,-0.1875774 +-1,0,0,0.842,-0.296412,-0.18797 +-1,0,0,0.842,-0.2964863,-0.188316 +-1,0,0,0.842,-0.2965519,-0.188621 +-1,0,0,0.842,-0.2966097,-0.1888898 +-1,0,0,0.842,-0.2966606,-0.1891268 +-1,0,0,0.842,-0.2967055,-0.1893357 +-1,0,0,0.842,-0.296745,-0.1895198 +-1,0,0,0.842,-0.2967799,-0.1896821 +-1,0,0,0.842,-0.2968107,-0.1898251 +-1,0,0,0.842,-0.2968377,-0.1899512 +-1,0,0,0.842,-0.2968616,-0.1900624 +-1,0,0,0.842,-0.2968827,-0.1901603 +-1,0,0,0.842,-0.2969012,-0.1902467 +-1,0,0,0.842,-0.2969176,-0.1903228 +-1,0,0,0.842,-0.296932,-0.1903899 +-1,0,0,0.842,-0.2969447,-0.190449 +-1,0,0,0.842,-0.2969559,-0.1905012 +-1,0,0,0.842,-0.2969658,-0.1905471 +-1,0,0,0.842,-0.2954385,-0.1734698 +-1,0,0,0.842,-0.2959752,-0.1754376 +-1,0,0,0.842,-0.2964483,-0.1771721 +-1,0,0,0.842,-0.2968653,-0.178701 +-1,0,0,0.842,-0.2972329,-0.1800486 +-1,0,0,0.842,-0.2975569,-0.1812365 +-1,0,0,0.842,-0.2978425,-0.1822835 +-1,0,0,0.842,-0.2980942,-0.1832064 +-1,0,0,0.842,-0.2983161,-0.1840199 +-1,0,0,0.842,-0.2985117,-0.184737 +-1,0,0,0.842,-0.298684,-0.185369 +-1,0,0,0.842,-0.298836,-0.1859261 +-1,0,0,0.842,-0.2989699,-0.1864171 +-1,0,0,0.842,-0.299088,-0.18685 +-1,0,0,0.842,-0.299192,-0.1872315 +-1,0,0,0.842,-0.2992837,-0.1875678 +-1,0,0,0.842,-0.2993646,-0.1878642 +-1,0,0,0.842,-0.2994359,-0.1881255 +-1,0,0,0.842,-0.2994987,-0.1883558 +-1,0,0,0.842,-0.299554,-0.1885588 +-1,0,0,0.842,-0.2996029,-0.1887377 +-1,0,0,0.842,-0.2996459,-0.1888954 +-1,0,0,0.842,-0.2996838,-0.1890344 +-1,0,0,0.842,-0.2997172,-0.189157 +-1,0,0,0.842,-0.2997467,-0.189265 +-1,0,0,0.842,-0.2997727,-0.1893602 +-1,0,0,0.842,-0.2997955,-0.1894441 +-1,0,0,0.842,-0.2998157,-0.1895181 +-1,0,0,0.842,-0.2998335,-0.1895833 +-1,0,0,0.842,-0.2998492,-0.1896407 +-1,0,0,0.842,-0.299863,-0.1896914 +-1,0,0,0.842,-0.2998751,-0.189736 +-1,0,0,0.842,-0.2974948,-0.1730661 +-1,0,0,0.842,-0.2981282,-0.1749636 +-1,0,0,0.842,-0.2986864,-0.1766361 +-1,0,0,0.842,-0.2991785,-0.1781103 +-1,0,0,0.842,-0.2996123,-0.1794098 +-1,0,0,0.842,-0.2999946,-0.1805552 +-1,0,0,0.842,-0.3003316,-0.1815648 +-1,0,0,0.842,-0.3006286,-0.1824547 +-1,0,0,0.842,-0.3008904,-0.1832391 +-1,0,0,0.842,-0.3011212,-0.1839305 +-1,0,0,0.842,-0.3013247,-0.1845399 +-1,0,0,0.842,-0.301504,-0.1850771 +-1,0,0,0.842,-0.301662,-0.1855506 +-1,0,0,0.842,-0.3018013,-0.1859679 +-1,0,0,0.842,-0.3019241,-0.1863358 +-1,0,0,0.842,-0.3020324,-0.1866601 +-1,0,0,0.842,-0.3021278,-0.1869459 +-1,0,0,0.842,-0.3022119,-0.1871978 +-1,0,0,0.842,-0.302286,-0.1874199 +-1,0,0,0.842,-0.3023513,-0.1876156 +-1,0,0,0.842,-0.3024089,-0.1877882 +-1,0,0,0.842,-0.3024597,-0.1879402 +-1,0,0,0.842,-0.3025044,-0.1880743 +-1,0,0,0.842,-0.3025439,-0.1881924 +-1,0,0,0.842,-0.3025786,-0.1882966 +-1,0,0,0.842,-0.3026093,-0.1883884 +-1,0,0,0.842,-0.3026363,-0.1884693 +-1,0,0,0.842,-0.3026601,-0.1885406 +-1,0,0,0.842,-0.3026811,-0.1886035 +-1,0,0,0.842,-0.3026996,-0.1886589 +-1,0,0,0.842,-0.3027159,-0.1887078 +-1,0,0,0.842,-0.3027302,-0.1887508 +-1,0,0,0.842,-0.2995346,-0.1725924 +-1,0,0,0.842,-0.3002588,-0.1744073 +-1,0,0,0.842,-0.3008971,-0.1760071 +-1,0,0,0.842,-0.3014598,-0.1774172 +-1,0,0,0.842,-0.3019557,-0.1786602 +-1,0,0,0.842,-0.3023928,-0.1797558 +-1,0,0,0.842,-0.3027781,-0.1807214 +-1,0,0,0.842,-0.3031178,-0.1815726 +-1,0,0,0.842,-0.3034171,-0.1823229 +-1,0,0,0.842,-0.303681,-0.1829843 +-1,0,0,0.842,-0.3039136,-0.1835672 +-1,0,0,0.842,-0.3041186,-0.184081 +-1,0,0,0.842,-0.3042993,-0.1845339 +-1,0,0,0.842,-0.3044586,-0.1849331 +-1,0,0,0.842,-0.304599,-0.185285 +-1,0,0,0.842,-0.3047227,-0.1855952 +-1,0,0,0.842,-0.3048318,-0.1858686 +-1,0,0,0.842,-0.3049279,-0.1861095 +-1,0,0,0.842,-0.3050127,-0.1863219 +-1,0,0,0.842,-0.3050874,-0.1865092 +-1,0,0,0.842,-0.3051533,-0.1866742 +-1,0,0,0.842,-0.3052113,-0.1868197 +-1,0,0,0.842,-0.3052624,-0.1869479 +-1,0,0,0.842,-0.3053075,-0.1870609 +-1,0,0,0.842,-0.3053473,-0.1871605 +-1,0,0,0.842,-0.3053823,-0.1872483 +-1,0,0,0.842,-0.3054132,-0.1873257 +-1,0,0,0.842,-0.3054404,-0.1873939 +-1,0,0,0.842,-0.3054644,-0.1874541 +-1,0,0,0.842,-0.3054856,-0.1875071 +-1,0,0,0.842,-0.3055042,-0.1875538 +-1,0,0,0.842,-0.3055207,-0.187595 +-1,0,0,0.842,-0.301551,-0.1720322 +-1,0,0,0.842,-0.3023597,-0.1737549 +-1,0,0,0.842,-0.3030726,-0.1752735 +-1,0,0,0.842,-0.3037009,-0.176612 +-1,0,0,0.842,-0.3042548,-0.1777918 +-1,0,0,0.842,-0.304743,-0.1788317 +-1,0,0,0.842,-0.3051733,-0.1797484 +-1,0,0,0.842,-0.3055526,-0.1805563 +-1,0,0,0.842,-0.3058869,-0.1812685 +-1,0,0,0.842,-0.3061816,-0.1818963 +-1,0,0,0.842,-0.3064414,-0.1824496 +-1,0,0,0.842,-0.3066703,-0.1829373 +-1,0,0,0.842,-0.3068721,-0.1833672 +-1,0,0,0.842,-0.30705,-0.1837461 +-1,0,0,0.842,-0.3072068,-0.1840801 +-1,0,0,0.842,-0.307345,-0.1843746 +-1,0,0,0.842,-0.3074669,-0.1846341 +-1,0,0,0.842,-0.3075742,-0.1848628 +-1,0,0,0.842,-0.3076689,-0.1850644 +-1,0,0,0.842,-0.3077523,-0.1852421 +-1,0,0,0.842,-0.3078259,-0.1853988 +-1,0,0,0.842,-0.3078907,-0.1855369 +-1,0,0,0.842,-0.3079478,-0.1856586 +-1,0,0,0.842,-0.3079982,-0.1857658 +-1,0,0,0.842,-0.3080426,-0.1858604 +-1,0,0,0.842,-0.3080817,-0.1859438 +-1,0,0,0.842,-0.3081162,-0.1860172 +-1,0,0,0.842,-0.3081466,-0.186082 +-1,0,0,0.842,-0.3081734,-0.186139 +-1,0,0,0.842,-0.308197,-0.1861894 +-1,0,0,0.842,-0.3082178,-0.1862337 +-1,0,0,0.842,-0.3082362,-0.1862728 +-1,0,0,0.842,-0.3035462,-0.1714103 +-1,0,0,0.842,-0.3044318,-0.1730288 +-1,0,0,0.842,-0.3052124,-0.1744555 +-1,0,0,0.842,-0.3059005,-0.1757129 +-1,0,0,0.842,-0.306507,-0.1768214 +-1,0,0,0.842,-0.3070416,-0.1777983 +-1,0,0,0.842,-0.3075128,-0.1786595 +-1,0,0,0.842,-0.3079282,-0.1794186 +-1,0,0,0.842,-0.3082943,-0.1800877 +-1,0,0,0.842,-0.308617,-0.1806774 +-1,0,0,0.842,-0.3089015,-0.1811972 +-1,0,0,0.842,-0.3091522,-0.1816554 +-1,0,0,0.842,-0.3093732,-0.1820593 +-1,0,0,0.842,-0.309568,-0.1824153 +-1,0,0,0.842,-0.3097397,-0.1827291 +-1,0,0,0.842,-0.309891,-0.1830057 +-1,0,0,0.842,-0.3100245,-0.1832495 +-1,0,0,0.842,-0.310142,-0.1834644 +-1,0,0,0.842,-0.3102457,-0.1836538 +-1,0,0,0.842,-0.3103371,-0.1838208 +-1,0,0,0.842,-0.3104176,-0.1839679 +-1,0,0,0.842,-0.3104886,-0.1840977 +-1,0,0,0.842,-0.3105511,-0.184212 +-1,0,0,0.842,-0.3106063,-0.1843128 +-1,0,0,0.842,-0.3106549,-0.1844016 +-1,0,0,0.842,-0.3106977,-0.1844799 +-1,0,0,0.842,-0.3107355,-0.1845489 +-1,0,0,0.842,-0.3107688,-0.1846098 +-1,0,0,0.842,-0.3107981,-0.1846634 +-1,0,0,0.842,-0.310824,-0.1847107 +-1,0,0,0.842,-0.3108468,-0.1847523 +-1,0,0,0.842,-0.3108669,-0.1847891 +-1,0,0,0.842,-0.3055187,-0.1707277 +-1,0,0,0.842,-0.3064725,-0.1722304 +-1,0,0,0.842,-0.3073133,-0.1735549 +-1,0,0,0.842,-0.3080544,-0.1747224 +-1,0,0,0.842,-0.3087076,-0.1757516 +-1,0,0,0.842,-0.3092833,-0.1766586 +-1,0,0,0.842,-0.3097909,-0.1774582 +-1,0,0,0.842,-0.3102382,-0.1781629 +-1,0,0,0.842,-0.3106325,-0.1787842 +-1,0,0,0.842,-0.3109801,-0.1793317 +-1,0,0,0.842,-0.3112864,-0.1798144 +-1,0,0,0.842,-0.3115565,-0.1802398 +-1,0,0,0.842,-0.3117945,-0.1806148 +-1,0,0,0.842,-0.3120043,-0.1809453 +-1,0,0,0.842,-0.3121893,-0.1812366 +-1,0,0,0.842,-0.3123522,-0.1814934 +-1,0,0,0.842,-0.3124959,-0.1817198 +-1,0,0,0.842,-0.3126226,-0.1819193 +-1,0,0,0.842,-0.3127342,-0.1820952 +-1,0,0,0.842,-0.3128326,-0.1822502 +-1,0,0,0.842,-0.3129193,-0.1823868 +-1,0,0,0.842,-0.3129958,-0.1825073 +-1,0,0,0.842,-0.3130631,-0.1826134 +-1,0,0,0.842,-0.3131225,-0.182707 +-1,0,0,0.842,-0.3131749,-0.1827895 +-1,0,0,0.842,-0.313221,-0.1828622 +-1,0,0,0.842,-0.3132617,-0.1829263 +-1,0,0,0.842,-0.3132976,-0.1829827 +-1,0,0,0.842,-0.3133292,-0.1830325 +-1,0,0,0.842,-0.3133571,-0.1830764 +-1,0,0,0.842,-0.3133816,-0.1831151 +-1,0,0,0.842,-0.3134032,-0.1831492 +-1,0,0,0.842,-0.3074581,-0.1699608 +-1,0,0,0.842,-0.3084716,-0.1713397 +-1,0,0,0.842,-0.309365,-0.1725552 +-1,0,0,0.842,-0.3101524,-0.1736265 +-1,0,0,0.842,-0.3108465,-0.1745708 +-1,0,0,0.842,-0.3114583,-0.1754032 +-1,0,0,0.842,-0.3119976,-0.1761369 +-1,0,0,0.842,-0.3124729,-0.1767836 +-1,0,0,0.842,-0.3128919,-0.1773537 +-1,0,0,0.842,-0.3132612,-0.1778561 +-1,0,0,0.842,-0.3135867,-0.178299 +-1,0,0,0.842,-0.3138736,-0.1786894 +-1,0,0,0.842,-0.3141266,-0.1790335 +-1,0,0,0.842,-0.3143495,-0.1793368 +-1,0,0,0.842,-0.314546,-0.1796041 +-1,0,0,0.842,-0.3147192,-0.1798398 +-1,0,0,0.842,-0.3148719,-0.1800475 +-1,0,0,0.842,-0.3150064,-0.1802306 +-1,0,0,0.842,-0.315125,-0.180392 +-1,0,0,0.842,-0.3152296,-0.1805342 +-1,0,0,0.842,-0.3153217,-0.1806596 +-1,0,0,0.842,-0.315403,-0.1807701 +-1,0,0,0.842,-0.3154746,-0.1808675 +-1,0,0,0.842,-0.3155377,-0.1809534 +-1,0,0,0.842,-0.3155933,-0.1810291 +-1,0,0,0.842,-0.3156424,-0.1810958 +-1,0,0,0.842,-0.3156856,-0.1811546 +-1,0,0,0.842,-0.3157237,-0.1812064 +-1,0,0,0.842,-0.3157572,-0.1812521 +-1,0,0,0.842,-0.3157869,-0.1812924 +-1,0,0,0.842,-0.3158129,-0.1813279 +-1,0,0,0.842,-0.315836,-0.1813592 +-1,0,0,0.842,-0.309366,-0.1691266 +-1,0,0,0.842,-0.3104294,-0.1703725 +-1,0,0,0.842,-0.3113667,-0.1714707 +-1,0,0,0.842,-0.3121929,-0.1724388 +-1,0,0,0.842,-0.3129211,-0.173292 +-1,0,0,0.842,-0.313563,-0.1740441 +-1,0,0,0.842,-0.3141288,-0.174707 +-1,0,0,0.842,-0.3146276,-0.1752913 +-1,0,0,0.842,-0.3150672,-0.1758064 +-1,0,0,0.842,-0.3154547,-0.1762604 +-1,0,0,0.842,-0.3157962,-0.1766606 +-1,0,0,0.842,-0.3160973,-0.1770133 +-1,0,0,0.842,-0.3163626,-0.1773242 +-1,0,0,0.842,-0.3165965,-0.1775982 +-1,0,0,0.842,-0.3168027,-0.1778398 +-1,0,0,0.842,-0.3169844,-0.1780527 +-1,0,0,0.842,-0.3171446,-0.1782404 +-1,0,0,0.842,-0.3172858,-0.1784058 +-1,0,0,0.842,-0.3174102,-0.1785516 +-1,0,0,0.842,-0.3175199,-0.1786802 +-1,0,0,0.842,-0.3176166,-0.1787934 +-1,0,0,0.842,-0.3177019,-0.1788933 +-1,0,0,0.842,-0.317777,-0.1789813 +-1,0,0,0.842,-0.3178432,-0.1790589 +-1,0,0,0.842,-0.3179016,-0.1791273 +-1,0,0,0.842,-0.317953,-0.1791876 +-1,0,0,0.842,-0.3179984,-0.1792407 +-1,0,0,0.842,-0.3180383,-0.1792875 +-1,0,0,0.842,-0.3180736,-0.1793288 +-1,0,0,0.842,-0.3181046,-0.1793652 +-1,0,0,0.842,-0.318132,-0.1793973 +-1,0,0,0.842,-0.3181561,-0.1794255 +-1,0,0,0.842,-0.3112497,-0.1682497 +-1,0,0,0.842,-0.3123513,-0.1693513 +-1,0,0,0.842,-0.3133222,-0.1703223 +-1,0,0,0.842,-0.3141781,-0.1711781 +-1,0,0,0.842,-0.3149325,-0.1719325 +-1,0,0,0.842,-0.3155974,-0.1725974 +-1,0,0,0.842,-0.3161835,-0.1731835 +-1,0,0,0.842,-0.3167002,-0.1737002 +-1,0,0,0.842,-0.3171555,-0.1741555 +-1,0,0,0.842,-0.3175569,-0.1745569 +-1,0,0,0.842,-0.3179107,-0.1749107 +-1,0,0,0.842,-0.3182226,-0.1752226 +-1,0,0,0.842,-0.3184975,-0.1754975 +-1,0,0,0.842,-0.3187398,-0.1757398 +-1,0,0,0.842,-0.3189533,-0.1759533 +-1,0,0,0.842,-0.3191416,-0.1761416 +-1,0,0,0.842,-0.3193075,-0.1763075 +-1,0,0,0.842,-0.3194538,-0.1764538 +-1,0,0,0.842,-0.3195827,-0.1765827 +-1,0,0,0.842,-0.3196963,-0.1766963 +-1,0,0,0.842,-0.3197965,-0.1767965 +-1,0,0,0.842,-0.3198848,-0.1768848 +-1,0,0,0.842,-0.3199626,-0.1769626 +-1,0,0,0.842,-0.3200312,-0.1770312 +-1,0,0,0.842,-0.3200916,-0.1770916 +-1,0,0,0.842,-0.320145,-0.1771449 +-1,0,0,0.842,-0.3201919,-0.1771919 +-1,0,0,0.842,-0.3202333,-0.1772333 +-1,0,0,0.842,-0.3202698,-0.1772698 +-1,0,0,0.842,-0.320302,-0.177302 +-1,0,0,0.842,-0.3203304,-0.1773303 +-1,0,0,0.842,-0.3203553,-0.1773553 +-1,0,0,0.842,-0.3121266,-0.166366 +-1,0,0,0.842,-0.3133726,-0.1674294 +-1,0,0,0.842,-0.3144707,-0.1683667 +-1,0,0,0.842,-0.3154387,-0.1691929 +-1,0,0,0.842,-0.316292,-0.1699211 +-1,0,0,0.842,-0.3170441,-0.170563 +-1,0,0,0.842,-0.317707,-0.1711289 +-1,0,0,0.842,-0.3182913,-0.1716276 +-1,0,0,0.842,-0.3188064,-0.1720672 +-1,0,0,0.842,-0.3192604,-0.1724547 +-1,0,0,0.842,-0.3196605,-0.1727962 +-1,0,0,0.842,-0.3200133,-0.1730973 +-1,0,0,0.842,-0.3203242,-0.1733626 +-1,0,0,0.842,-0.3205982,-0.1735965 +-1,0,0,0.842,-0.3208398,-0.1738027 +-1,0,0,0.842,-0.3210527,-0.1739844 +-1,0,0,0.842,-0.3212404,-0.1741446 +-1,0,0,0.842,-0.3214058,-0.1742858 +-1,0,0,0.842,-0.3215516,-0.1744102 +-1,0,0,0.842,-0.3216802,-0.1745199 +-1,0,0,0.842,-0.3217934,-0.1746166 +-1,0,0,0.842,-0.3218933,-0.1747019 +-1,0,0,0.842,-0.3219813,-0.174777 +-1,0,0,0.842,-0.3220589,-0.1748432 +-1,0,0,0.842,-0.3221273,-0.1749016 +-1,0,0,0.842,-0.3221876,-0.174953 +-1,0,0,0.842,-0.3222407,-0.1749984 +-1,0,0,0.842,-0.3222875,-0.1750383 +-1,0,0,0.842,-0.3223288,-0.1750736 +-1,0,0,0.842,-0.3223652,-0.1751046 +-1,0,0,0.842,-0.3223973,-0.175132 +-1,0,0,0.842,-0.3224255,-0.1751561 +-1,0,0,0.842,-0.3129608,-0.1644581 +-1,0,0,0.842,-0.3143397,-0.1654716 +-1,0,0,0.842,-0.3155552,-0.166365 +-1,0,0,0.842,-0.3166265,-0.1671524 +-1,0,0,0.842,-0.3175708,-0.1678465 +-1,0,0,0.842,-0.3184032,-0.1684583 +-1,0,0,0.842,-0.3191369,-0.1689976 +-1,0,0,0.842,-0.3197836,-0.1694729 +-1,0,0,0.842,-0.3203537,-0.1698919 +-1,0,0,0.842,-0.3208561,-0.1702612 +-1,0,0,0.842,-0.321299,-0.1705867 +-1,0,0,0.842,-0.3216894,-0.1708737 +-1,0,0,0.842,-0.3220335,-0.1711266 +-1,0,0,0.842,-0.3223368,-0.1713495 +-1,0,0,0.842,-0.3226041,-0.171546 +-1,0,0,0.842,-0.3228398,-0.1717192 +-1,0,0,0.842,-0.3230475,-0.1718719 +-1,0,0,0.842,-0.3232306,-0.1720064 +-1,0,0,0.842,-0.323392,-0.172125 +-1,0,0,0.842,-0.3235342,-0.1722296 +-1,0,0,0.842,-0.3236596,-0.1723218 +-1,0,0,0.842,-0.3237701,-0.172403 +-1,0,0,0.842,-0.3238675,-0.1724746 +-1,0,0,0.842,-0.3239534,-0.1725377 +-1,0,0,0.842,-0.3240291,-0.1725933 +-1,0,0,0.842,-0.3240958,-0.1726424 +-1,0,0,0.842,-0.3241546,-0.1726856 +-1,0,0,0.842,-0.3242064,-0.1727237 +-1,0,0,0.842,-0.3242521,-0.1727573 +-1,0,0,0.842,-0.3242924,-0.1727869 +-1,0,0,0.842,-0.3243279,-0.172813 +-1,0,0,0.842,-0.3243592,-0.1728359 +-1,0,0,0.842,-0.3137277,-0.1625187 +-1,0,0,0.842,-0.3152304,-0.1634725 +-1,0,0,0.842,-0.3165549,-0.1643133 +-1,0,0,0.842,-0.3177224,-0.1650544 +-1,0,0,0.842,-0.3187515,-0.1657076 +-1,0,0,0.842,-0.3196586,-0.1662834 +-1,0,0,0.842,-0.3204582,-0.1667909 +-1,0,0,0.842,-0.3211629,-0.1672382 +-1,0,0,0.842,-0.3217842,-0.1676325 +-1,0,0,0.842,-0.3223317,-0.1679801 +-1,0,0,0.842,-0.3228143,-0.1682864 +-1,0,0,0.842,-0.3232398,-0.1685565 +-1,0,0,0.842,-0.3236147,-0.1687945 +-1,0,0,0.842,-0.3239453,-0.1690043 +-1,0,0,0.842,-0.3242366,-0.1691892 +-1,0,0,0.842,-0.3244934,-0.1693522 +-1,0,0,0.842,-0.3247198,-0.1694959 +-1,0,0,0.842,-0.3249193,-0.1696226 +-1,0,0,0.842,-0.3250952,-0.1697342 +-1,0,0,0.842,-0.3252502,-0.1698326 +-1,0,0,0.842,-0.3253868,-0.1699193 +-1,0,0,0.842,-0.3255073,-0.1699958 +-1,0,0,0.842,-0.3256134,-0.1700632 +-1,0,0,0.842,-0.325707,-0.1701225 +-1,0,0,0.842,-0.3257895,-0.1701749 +-1,0,0,0.842,-0.3258622,-0.170221 +-1,0,0,0.842,-0.3259262,-0.1702617 +-1,0,0,0.842,-0.3259827,-0.1702976 +-1,0,0,0.842,-0.3260325,-0.1703292 +-1,0,0,0.842,-0.3260764,-0.170357 +-1,0,0,0.842,-0.3261151,-0.1703816 +-1,0,0,0.842,-0.3261492,-0.1704032 +-1,0,0,0.842,-0.3144103,-0.1605462 +-1,0,0,0.842,-0.3160288,-0.1614318 +-1,0,0,0.842,-0.3174555,-0.1622124 +-1,0,0,0.842,-0.3187129,-0.1629005 +-1,0,0,0.842,-0.3198214,-0.163507 +-1,0,0,0.842,-0.3207983,-0.1640416 +-1,0,0,0.842,-0.3216595,-0.1645129 +-1,0,0,0.842,-0.3224186,-0.1649282 +-1,0,0,0.842,-0.3230877,-0.1652943 +-1,0,0,0.842,-0.3236774,-0.165617 +-1,0,0,0.842,-0.3241972,-0.1659015 +-1,0,0,0.842,-0.3246554,-0.1661522 +-1,0,0,0.842,-0.3250593,-0.1663732 +-1,0,0,0.842,-0.3254153,-0.166568 +-1,0,0,0.842,-0.3257291,-0.1667397 +-1,0,0,0.842,-0.3260057,-0.1668911 +-1,0,0,0.842,-0.3262495,-0.1670245 +-1,0,0,0.842,-0.3264644,-0.167142 +-1,0,0,0.842,-0.3266538,-0.1672457 +-1,0,0,0.842,-0.3268208,-0.1673371 +-1,0,0,0.842,-0.326968,-0.1674176 +-1,0,0,0.842,-0.3270977,-0.1674886 +-1,0,0,0.842,-0.327212,-0.1675511 +-1,0,0,0.842,-0.3273128,-0.1676063 +-1,0,0,0.842,-0.3274016,-0.1676549 +-1,0,0,0.842,-0.3274799,-0.1676977 +-1,0,0,0.842,-0.327549,-0.1677355 +-1,0,0,0.842,-0.3276098,-0.1677688 +-1,0,0,0.842,-0.3276634,-0.1677981 +-1,0,0,0.842,-0.3277107,-0.167824 +-1,0,0,0.842,-0.3277524,-0.1678468 +-1,0,0,0.842,-0.3277891,-0.1678669 +-1,0,0,0.842,-0.3150322,-0.1585509 +-1,0,0,0.842,-0.3167549,-0.1593597 +-1,0,0,0.842,-0.3182735,-0.1600726 +-1,0,0,0.842,-0.319612,-0.1607009 +-1,0,0,0.842,-0.3207918,-0.1612548 +-1,0,0,0.842,-0.3218317,-0.161743 +-1,0,0,0.842,-0.3227484,-0.1621733 +-1,0,0,0.842,-0.3235563,-0.1625526 +-1,0,0,0.842,-0.3242685,-0.1628869 +-1,0,0,0.842,-0.3248962,-0.1631816 +-1,0,0,0.842,-0.3254496,-0.1634414 +-1,0,0,0.842,-0.3259373,-0.1636703 +-1,0,0,0.842,-0.3263672,-0.1638721 +-1,0,0,0.842,-0.3267461,-0.16405 +-1,0,0,0.842,-0.3270801,-0.1642068 +-1,0,0,0.842,-0.3273745,-0.164345 +-1,0,0,0.842,-0.3276341,-0.1644669 +-1,0,0,0.842,-0.3278628,-0.1645742 +-1,0,0,0.842,-0.3280644,-0.1646689 +-1,0,0,0.842,-0.3282421,-0.1647523 +-1,0,0,0.842,-0.3283988,-0.1648259 +-1,0,0,0.842,-0.3285369,-0.1648907 +-1,0,0,0.842,-0.3286586,-0.1649478 +-1,0,0,0.842,-0.3287658,-0.1649982 +-1,0,0,0.842,-0.3288604,-0.1650426 +-1,0,0,0.842,-0.3289438,-0.1650817 +-1,0,0,0.842,-0.3290172,-0.1651162 +-1,0,0,0.842,-0.329082,-0.1651466 +-1,0,0,0.842,-0.3291391,-0.1651734 +-1,0,0,0.842,-0.3291894,-0.165197 +-1,0,0,0.842,-0.3292337,-0.1652178 +-1,0,0,0.842,-0.3292728,-0.1652362 +-1,0,0,0.842,-0.3155924,-0.1565347 +-1,0,0,0.842,-0.3174073,-0.1572588 +-1,0,0,0.842,-0.3190071,-0.1578971 +-1,0,0,0.842,-0.3204173,-0.1584598 +-1,0,0,0.842,-0.3216602,-0.1589557 +-1,0,0,0.842,-0.3227558,-0.1593928 +-1,0,0,0.842,-0.3237214,-0.1597781 +-1,0,0,0.842,-0.3245727,-0.1601177 +-1,0,0,0.842,-0.3253229,-0.1604171 +-1,0,0,0.842,-0.3259843,-0.160681 +-1,0,0,0.842,-0.3265672,-0.1609136 +-1,0,0,0.842,-0.327081,-0.1611186 +-1,0,0,0.842,-0.3275339,-0.1612993 +-1,0,0,0.842,-0.3279331,-0.1614586 +-1,0,0,0.842,-0.328285,-0.161599 +-1,0,0,0.842,-0.3285952,-0.1617227 +-1,0,0,0.842,-0.3288686,-0.1618318 +-1,0,0,0.842,-0.3291095,-0.161928 +-1,0,0,0.842,-0.329322,-0.1620127 +-1,0,0,0.842,-0.3295092,-0.1620874 +-1,0,0,0.842,-0.3296742,-0.1621532 +-1,0,0,0.842,-0.3298197,-0.1622113 +-1,0,0,0.842,-0.3299479,-0.1622625 +-1,0,0,0.842,-0.3300609,-0.1623075 +-1,0,0,0.842,-0.3301605,-0.1623473 +-1,0,0,0.842,-0.3302483,-0.1623823 +-1,0,0,0.842,-0.3303257,-0.1624132 +-1,0,0,0.842,-0.3303939,-0.1624404 +-1,0,0,0.842,-0.3304541,-0.1624644 +-1,0,0,0.842,-0.3305071,-0.1624856 +-1,0,0,0.842,-0.3305538,-0.1625042 +-1,0,0,0.842,-0.330595,-0.1625206 +-1,0,0,0.842,-0.3160661,-0.1544948 +-1,0,0,0.842,-0.3179636,-0.1551282 +-1,0,0,0.842,-0.3196361,-0.1556864 +-1,0,0,0.842,-0.3211103,-0.1561785 +-1,0,0,0.842,-0.3224098,-0.1566123 +-1,0,0,0.842,-0.3235552,-0.1569946 +-1,0,0,0.842,-0.3245648,-0.1573316 +-1,0,0,0.842,-0.3254547,-0.1576286 +-1,0,0,0.842,-0.326239,-0.1578905 +-1,0,0,0.842,-0.3269305,-0.1581212 +-1,0,0,0.842,-0.3275399,-0.1583247 +-1,0,0,0.842,-0.3280771,-0.158504 +-1,0,0,0.842,-0.3285506,-0.158662 +-1,0,0,0.842,-0.3289679,-0.1588013 +-1,0,0,0.842,-0.3293358,-0.1589241 +-1,0,0,0.842,-0.3296601,-0.1590324 +-1,0,0,0.842,-0.3299459,-0.1591278 +-1,0,0,0.842,-0.3301978,-0.1592119 +-1,0,0,0.842,-0.3304199,-0.159286 +-1,0,0,0.842,-0.3306156,-0.1593513 +-1,0,0,0.842,-0.3307882,-0.1594089 +-1,0,0,0.842,-0.3309402,-0.1594597 +-1,0,0,0.842,-0.3310743,-0.1595044 +-1,0,0,0.842,-0.3311924,-0.1595439 +-1,0,0,0.842,-0.3312966,-0.1595786 +-1,0,0,0.842,-0.3313884,-0.1596093 +-1,0,0,0.842,-0.3314693,-0.1596363 +-1,0,0,0.842,-0.3315406,-0.1596601 +-1,0,0,0.842,-0.3316035,-0.1596811 +-1,0,0,0.842,-0.3316589,-0.1596996 +-1,0,0,0.842,-0.3317077,-0.1597159 +-1,0,0,0.842,-0.3317508,-0.1597302 +-1,0,0,0.842,-0.3164698,-0.1524385 +-1,0,0,0.842,-0.3184376,-0.1529752 +-1,0,0,0.842,-0.3201721,-0.1534483 +-1,0,0,0.842,-0.321701,-0.1538653 +-1,0,0,0.842,-0.3230487,-0.1542329 +-1,0,0,0.842,-0.3242365,-0.1545569 +-1,0,0,0.842,-0.3252835,-0.1548425 +-1,0,0,0.842,-0.3262064,-0.1550942 +-1,0,0,0.842,-0.3270199,-0.1553161 +-1,0,0,0.842,-0.3277369,-0.1555116 +-1,0,0,0.842,-0.328369,-0.155684 +-1,0,0,0.842,-0.3289261,-0.155836 +-1,0,0,0.842,-0.3294171,-0.1559699 +-1,0,0,0.842,-0.32985,-0.156088 +-1,0,0,0.842,-0.3302315,-0.156192 +-1,0,0,0.842,-0.3305678,-0.1562838 +-1,0,0,0.842,-0.3308642,-0.1563646 +-1,0,0,0.842,-0.3311255,-0.1564359 +-1,0,0,0.842,-0.3313558,-0.1564987 +-1,0,0,0.842,-0.3315588,-0.156554 +-1,0,0,0.842,-0.3317377,-0.1566029 +-1,0,0,0.842,-0.3318954,-0.1566459 +-1,0,0,0.842,-0.3320344,-0.1566838 +-1,0,0,0.842,-0.332157,-0.1567172 +-1,0,0,0.842,-0.332265,-0.1567467 +-1,0,0,0.842,-0.3323602,-0.1567726 +-1,0,0,0.842,-0.3324441,-0.1567955 +-1,0,0,0.842,-0.3325181,-0.1568157 +-1,0,0,0.842,-0.3325833,-0.1568335 +-1,0,0,0.842,-0.3326407,-0.1568492 +-1,0,0,0.842,-0.3326914,-0.156863 +-1,0,0,0.842,-0.332736,-0.1568751 +-1,0,0,0.842,-0.3168094,-0.150369 +-1,0,0,0.842,-0.3188343,-0.1508042 +-1,0,0,0.842,-0.3206191,-0.1511877 +-1,0,0,0.842,-0.3221923,-0.1515258 +-1,0,0,0.842,-0.323579,-0.1518237 +-1,0,0,0.842,-0.3248012,-0.1520864 +-1,0,0,0.842,-0.3258786,-0.1523179 +-1,0,0,0.842,-0.3268282,-0.152522 +-1,0,0,0.842,-0.3276653,-0.1527019 +-1,0,0,0.842,-0.3284031,-0.1528604 +-1,0,0,0.842,-0.3290535,-0.1530002 +-1,0,0,0.842,-0.3296267,-0.1531233 +-1,0,0,0.842,-0.330132,-0.1532319 +-1,0,0,0.842,-0.3305774,-0.1533276 +-1,0,0,0.842,-0.33097,-0.153412 +-1,0,0,0.842,-0.331316,-0.1534863 +-1,0,0,0.842,-0.331621,-0.1535519 +-1,0,0,0.842,-0.3318898,-0.1536097 +-1,0,0,0.842,-0.3321268,-0.1536606 +-1,0,0,0.842,-0.3323357,-0.1537055 +-1,0,0,0.842,-0.3325198,-0.153745 +-1,0,0,0.842,-0.3326821,-0.1537799 +-1,0,0,0.842,-0.3328252,-0.1538107 +-1,0,0,0.842,-0.3329512,-0.1538377 +-1,0,0,0.842,-0.3330624,-0.1538616 +-1,0,0,0.842,-0.3331603,-0.1538827 +-1,0,0,0.842,-0.3332467,-0.1539012 +-1,0,0,0.842,-0.3333228,-0.1539176 +-1,0,0,0.842,-0.3333899,-0.153932 +-1,0,0,0.842,-0.333449,-0.1539447 +-1,0,0,0.842,-0.3335012,-0.1539559 +-1,0,0,0.842,-0.3335471,-0.1539658 +-1,0,0,0.842,-0.3170724,-0.1482871 +-1,0,0,0.842,-0.3191421,-0.1486169 +-1,0,0,0.842,-0.3209665,-0.1489075 +-1,0,0,0.842,-0.3225746,-0.1491637 +-1,0,0,0.842,-0.323992,-0.1493895 +-1,0,0,0.842,-0.3252413,-0.1495885 +-1,0,0,0.842,-0.3263426,-0.149764 +-1,0,0,0.842,-0.3273133,-0.1499186 +-1,0,0,0.842,-0.3281689,-0.1500549 +-1,0,0,0.842,-0.328923,-0.1501751 +-1,0,0,0.842,-0.3295878,-0.150281 +-1,0,0,0.842,-0.3301738,-0.1503743 +-1,0,0,0.842,-0.3306902,-0.1504566 +-1,0,0,0.842,-0.3311455,-0.1505291 +-1,0,0,0.842,-0.3315468,-0.1505931 +-1,0,0,0.842,-0.3319004,-0.1506494 +-1,0,0,0.842,-0.3322122,-0.1506991 +-1,0,0,0.842,-0.332487,-0.1507429 +-1,0,0,0.842,-0.3327293,-0.1507815 +-1,0,0,0.842,-0.3329428,-0.1508155 +-1,0,0,0.842,-0.333131,-0.1508455 +-1,0,0,0.842,-0.3332968,-0.1508719 +-1,0,0,0.842,-0.333443,-0.1508952 +-1,0,0,0.842,-0.3335719,-0.1509157 +-1,0,0,0.842,-0.3336855,-0.1509338 +-1,0,0,0.842,-0.3337857,-0.1509498 +-1,0,0,0.842,-0.3338739,-0.1509638 +-1,0,0,0.842,-0.3339517,-0.1509762 +-1,0,0,0.842,-0.3340203,-0.1509871 +-1,0,0,0.842,-0.3340808,-0.1509968 +-1,0,0,0.842,-0.334134,-0.1510053 +-1,0,0,0.842,-0.334181,-0.1510127 +-1,0,0,0.842,-0.3172515,-0.1461958 +-1,0,0,0.842,-0.3193545,-0.1464173 +-1,0,0,0.842,-0.3212082,-0.1466126 +-1,0,0,0.842,-0.3228422,-0.1467847 +-1,0,0,0.842,-0.3242824,-0.1469364 +-1,0,0,0.842,-0.3255519,-0.1470701 +-1,0,0,0.842,-0.3266709,-0.1471879 +-1,0,0,0.842,-0.3276572,-0.1472918 +-1,0,0,0.842,-0.3285266,-0.1473834 +-1,0,0,0.842,-0.3292929,-0.1474641 +-1,0,0,0.842,-0.3299683,-0.1475353 +-1,0,0,0.842,-0.3305637,-0.147598 +-1,0,0,0.842,-0.3310885,-0.1476533 +-1,0,0,0.842,-0.3315511,-0.147702 +-1,0,0,0.842,-0.3319588,-0.1477449 +-1,0,0,0.842,-0.3323182,-0.1477828 +-1,0,0,0.842,-0.332635,-0.1478161 +-1,0,0,0.842,-0.3329142,-0.1478455 +-1,0,0,0.842,-0.3331603,-0.1478715 +-1,0,0,0.842,-0.3333773,-0.1478943 +-1,0,0,0.842,-0.3335685,-0.1479145 +-1,0,0,0.842,-0.333737,-0.1479322 +-1,0,0,0.842,-0.3338856,-0.1479479 +-1,0,0,0.842,-0.3340166,-0.1479616 +-1,0,0,0.842,-0.334132,-0.1479738 +-1,0,0,0.842,-0.3342338,-0.1479845 +-1,0,0,0.842,-0.3343234,-0.147994 +-1,0,0,0.842,-0.3344025,-0.1480023 +-1,0,0,0.842,-0.3344722,-0.1480096 +-1,0,0,0.842,-0.3345336,-0.1480161 +-1,0,0,0.842,-0.3345877,-0.1480218 +-1,0,0,0.842,-0.3346354,-0.1480268 +-1,0,0,0.842,-0.3173653,-0.1440995 +-1,0,0,0.842,-0.3194876,-0.1442108 +-1,0,0,0.842,-0.3213584,-0.1443088 +-1,0,0,0.842,-0.3230073,-0.1443952 +-1,0,0,0.842,-0.3244607,-0.1444714 +-1,0,0,0.842,-0.3257419,-0.1445385 +-1,0,0,0.842,-0.3268711,-0.1445977 +-1,0,0,0.842,-0.3278665,-0.1446499 +-1,0,0,0.842,-0.3287438,-0.1446958 +-1,0,0,0.842,-0.3295172,-0.1447364 +-1,0,0,0.842,-0.3301988,-0.1447721 +-1,0,0,0.842,-0.3307997,-0.1448036 +-1,0,0,0.842,-0.3313293,-0.1448313 +-1,0,0,0.842,-0.3317961,-0.1448558 +-1,0,0,0.842,-0.3322076,-0.1448774 +-1,0,0,0.842,-0.3325703,-0.1448964 +-1,0,0,0.842,-0.3328899,-0.1449131 +-1,0,0,0.842,-0.3331718,-0.1449279 +-1,0,0,0.842,-0.3334201,-0.1449409 +-1,0,0,0.842,-0.3336391,-0.1449524 +-1,0,0,0.842,-0.3338321,-0.1449625 +-1,0,0,0.842,-0.3340021,-0.1449714 +-1,0,0,0.842,-0.3341521,-0.1449793 +-1,0,0,0.842,-0.3342842,-0.1449862 +-1,0,0,0.842,-0.3344007,-0.1449923 +-1,0,0,0.842,-0.3345034,-0.1449977 +-1,0,0,0.842,-0.3345939,-0.1450024 +-1,0,0,0.842,-0.3346737,-0.1450066 +-1,0,0,0.842,-0.334744,-0.1450103 +-1,0,0,0.842,-0.334806,-0.1450135 +-1,0,0,0.842,-0.3348606,-0.1450164 +-1,0,0,0.842,-0.3349088,-0.1450189 +-1,0,0,0.842,-0.3174137,-0.142 +-1,0,0,0.842,-0.3195412,-0.142 +-1,0,0,0.842,-0.3214165,-0.142 +-1,0,0,0.842,-0.3230695,-0.142 +-1,0,0,0.842,-0.3245265,-0.142 +-1,0,0,0.842,-0.3258107,-0.142 +-1,0,0,0.842,-0.3269427,-0.142 +-1,0,0,0.842,-0.3279405,-0.142 +-1,0,0,0.842,-0.32882,-0.142 +-1,0,0,0.842,-0.3295952,-0.142 +-1,0,0,0.842,-0.3302785,-0.142 +-1,0,0,0.842,-0.3308809,-0.142 +-1,0,0,0.842,-0.3314117,-0.142 +-1,0,0,0.842,-0.3318797,-0.142 +-1,0,0,0.842,-0.3322922,-0.142 +-1,0,0,0.842,-0.3326558,-0.142 +-1,0,0,0.842,-0.3329763,-0.142 +-1,0,0,0.842,-0.3332587,-0.142 +-1,0,0,0.842,-0.3335077,-0.142 +-1,0,0,0.842,-0.3337272,-0.142 +-1,0,0,0.842,-0.3339206,-0.142 +-1,0,0,0.842,-0.3340912,-0.142 +-1,0,0,0.842,-0.3342414,-0.142 +-1,0,0,0.842,-0.3343739,-0.142 +-1,0,0,0.842,-0.3344907,-0.142 +-1,0,0,0.842,-0.3345937,-0.142 +-1,0,0,0.842,-0.3346844,-0.142 +-1,0,0,0.842,-0.3347643,-0.142 +-1,0,0,0.842,-0.3348348,-0.142 +-1,0,0,0.842,-0.334897,-0.142 +-1,0,0,0.842,-0.3349517,-0.142 +-1,0,0,0.842,-0.335,-0.142 +-1,0,0,0.842,-0.3173653,-0.1399005 +-1,0,0,0.842,-0.3194876,-0.1397893 +-1,0,0,0.842,-0.3213584,-0.1396912 +-1,0,0,0.842,-0.3230073,-0.1396048 +-1,0,0,0.842,-0.3244607,-0.1395286 +-1,0,0,0.842,-0.3257419,-0.1394615 +-1,0,0,0.842,-0.3268711,-0.1394023 +-1,0,0,0.842,-0.3278665,-0.1393501 +-1,0,0,0.842,-0.3287438,-0.1393042 +-1,0,0,0.842,-0.3295172,-0.1392636 +-1,0,0,0.842,-0.3301988,-0.1392279 +-1,0,0,0.842,-0.3307997,-0.1391964 +-1,0,0,0.842,-0.3313293,-0.1391687 +-1,0,0,0.842,-0.3317961,-0.1391442 +-1,0,0,0.842,-0.3322076,-0.1391226 +-1,0,0,0.842,-0.3325703,-0.1391036 +-1,0,0,0.842,-0.3328899,-0.1390869 +-1,0,0,0.842,-0.3331718,-0.1390721 +-1,0,0,0.842,-0.3334201,-0.1390591 +-1,0,0,0.842,-0.3336391,-0.1390476 +-1,0,0,0.842,-0.3338321,-0.1390375 +-1,0,0,0.842,-0.3340021,-0.1390286 +-1,0,0,0.842,-0.3341521,-0.1390207 +-1,0,0,0.842,-0.3342842,-0.1390138 +-1,0,0,0.842,-0.3344007,-0.1390077 +-1,0,0,0.842,-0.3345034,-0.1390023 +-1,0,0,0.842,-0.3345939,-0.1389976 +-1,0,0,0.842,-0.3346737,-0.1389934 +-1,0,0,0.842,-0.334744,-0.1389897 +-1,0,0,0.842,-0.334806,-0.1389865 +-1,0,0,0.842,-0.3348606,-0.1389836 +-1,0,0,0.842,-0.3349088,-0.1389811 +-1,0,0,0.842,-0.3172515,-0.1378042 +-1,0,0,0.842,-0.3193545,-0.1375826 +-1,0,0,0.842,-0.3212082,-0.1373874 +-1,0,0,0.842,-0.3228422,-0.1372153 +-1,0,0,0.842,-0.3242824,-0.1370636 +-1,0,0,0.842,-0.3255519,-0.1369299 +-1,0,0,0.842,-0.3266709,-0.136812 +-1,0,0,0.842,-0.3276572,-0.1367082 +-1,0,0,0.842,-0.3285266,-0.1366166 +-1,0,0,0.842,-0.3292929,-0.1365359 +-1,0,0,0.842,-0.3299683,-0.1364647 +-1,0,0,0.842,-0.3305637,-0.136402 +-1,0,0,0.842,-0.3310885,-0.1363468 +-1,0,0,0.842,-0.3315511,-0.136298 +-1,0,0,0.842,-0.3319588,-0.1362551 +-1,0,0,0.842,-0.3323182,-0.1362172 +-1,0,0,0.842,-0.332635,-0.1361839 +-1,0,0,0.842,-0.3329142,-0.1361545 +-1,0,0,0.842,-0.3331603,-0.1361285 +-1,0,0,0.842,-0.3333773,-0.1361057 +-1,0,0,0.842,-0.3335685,-0.1360855 +-1,0,0,0.842,-0.333737,-0.1360678 +-1,0,0,0.842,-0.3338856,-0.1360521 +-1,0,0,0.842,-0.3340166,-0.1360383 +-1,0,0,0.842,-0.334132,-0.1360262 +-1,0,0,0.842,-0.3342338,-0.1360155 +-1,0,0,0.842,-0.3343234,-0.136006 +-1,0,0,0.842,-0.3344025,-0.1359977 +-1,0,0,0.842,-0.3344722,-0.1359904 +-1,0,0,0.842,-0.3345336,-0.1359839 +-1,0,0,0.842,-0.3345877,-0.1359782 +-1,0,0,0.842,-0.3346354,-0.1359732 +-1,0,0,0.842,-0.3170724,-0.1357129 +-1,0,0,0.842,-0.3191421,-0.1353831 +-1,0,0,0.842,-0.3209665,-0.1350925 +-1,0,0,0.842,-0.3225746,-0.1348363 +-1,0,0,0.842,-0.323992,-0.1346105 +-1,0,0,0.842,-0.3252413,-0.1344115 +-1,0,0,0.842,-0.3263426,-0.134236 +-1,0,0,0.842,-0.3273133,-0.1340814 +-1,0,0,0.842,-0.3281689,-0.1339451 +-1,0,0,0.842,-0.328923,-0.1338249 +-1,0,0,0.842,-0.3295878,-0.133719 +-1,0,0,0.842,-0.3301738,-0.1336257 +-1,0,0,0.842,-0.3306902,-0.1335434 +-1,0,0,0.842,-0.3311455,-0.1334708 +-1,0,0,0.842,-0.3315468,-0.1334069 +-1,0,0,0.842,-0.3319004,-0.1333506 +-1,0,0,0.842,-0.3322122,-0.1333009 +-1,0,0,0.842,-0.332487,-0.1332571 +-1,0,0,0.842,-0.3327293,-0.1332185 +-1,0,0,0.842,-0.3329428,-0.1331845 +-1,0,0,0.842,-0.333131,-0.1331545 +-1,0,0,0.842,-0.3332968,-0.1331281 +-1,0,0,0.842,-0.333443,-0.1331048 +-1,0,0,0.842,-0.3335719,-0.1330843 +-1,0,0,0.842,-0.3336855,-0.1330662 +-1,0,0,0.842,-0.3337857,-0.1330502 +-1,0,0,0.842,-0.3338739,-0.1330362 +-1,0,0,0.842,-0.3339517,-0.1330238 +-1,0,0,0.842,-0.3340203,-0.1330128 +-1,0,0,0.842,-0.3340808,-0.1330032 +-1,0,0,0.842,-0.334134,-0.1329947 +-1,0,0,0.842,-0.334181,-0.1329872 +-1,0,0,0.842,-0.3168094,-0.133631 +-1,0,0,0.842,-0.3188343,-0.1331958 +-1,0,0,0.842,-0.3206191,-0.1328123 +-1,0,0,0.842,-0.3221923,-0.1324742 +-1,0,0,0.842,-0.323579,-0.1321763 +-1,0,0,0.842,-0.3248012,-0.1319136 +-1,0,0,0.842,-0.3258786,-0.1316821 +-1,0,0,0.842,-0.3268282,-0.131478 +-1,0,0,0.842,-0.3276653,-0.1312981 +-1,0,0,0.842,-0.3284031,-0.1311396 +-1,0,0,0.842,-0.3290535,-0.1309998 +-1,0,0,0.842,-0.3296267,-0.1308767 +-1,0,0,0.842,-0.330132,-0.1307681 +-1,0,0,0.842,-0.3305774,-0.1306724 +-1,0,0,0.842,-0.33097,-0.130588 +-1,0,0,0.842,-0.331316,-0.1305137 +-1,0,0,0.842,-0.331621,-0.1304481 +-1,0,0,0.842,-0.3318898,-0.1303903 +-1,0,0,0.842,-0.3321268,-0.1303394 +-1,0,0,0.842,-0.3323357,-0.1302945 +-1,0,0,0.842,-0.3325198,-0.130255 +-1,0,0,0.842,-0.3326821,-0.1302201 +-1,0,0,0.842,-0.3328252,-0.1301894 +-1,0,0,0.842,-0.3329512,-0.1301623 +-1,0,0,0.842,-0.3330624,-0.1301384 +-1,0,0,0.842,-0.3331603,-0.1301173 +-1,0,0,0.842,-0.3332467,-0.1300988 +-1,0,0,0.842,-0.3333228,-0.1300824 +-1,0,0,0.842,-0.3333899,-0.130068 +-1,0,0,0.842,-0.333449,-0.1300553 +-1,0,0,0.842,-0.3335012,-0.1300441 +-1,0,0,0.842,-0.3335471,-0.1300342 +-1,0,0,0.842,-0.3164698,-0.1315615 +-1,0,0,0.842,-0.3184376,-0.1310248 +-1,0,0,0.842,-0.3201721,-0.1305517 +-1,0,0,0.842,-0.321701,-0.1301347 +-1,0,0,0.842,-0.3230487,-0.1297671 +-1,0,0,0.842,-0.3242365,-0.1294431 +-1,0,0,0.842,-0.3252835,-0.1291575 +-1,0,0,0.842,-0.3262064,-0.1289058 +-1,0,0,0.842,-0.3270199,-0.1286839 +-1,0,0,0.842,-0.3277369,-0.1284883 +-1,0,0,0.842,-0.328369,-0.128316 +-1,0,0,0.842,-0.3289261,-0.128164 +-1,0,0,0.842,-0.3294171,-0.1280301 +-1,0,0,0.842,-0.32985,-0.127912 +-1,0,0,0.842,-0.3302315,-0.127808 +-1,0,0,0.842,-0.3305678,-0.1277162 +-1,0,0,0.842,-0.3308642,-0.1276354 +-1,0,0,0.842,-0.3311255,-0.1275641 +-1,0,0,0.842,-0.3313558,-0.1275013 +-1,0,0,0.842,-0.3315588,-0.127446 +-1,0,0,0.842,-0.3317377,-0.1273971 +-1,0,0,0.842,-0.3318954,-0.1273541 +-1,0,0,0.842,-0.3320344,-0.1273162 +-1,0,0,0.842,-0.332157,-0.1272828 +-1,0,0,0.842,-0.332265,-0.1272533 +-1,0,0,0.842,-0.3323602,-0.1272274 +-1,0,0,0.842,-0.3324441,-0.1272045 +-1,0,0,0.842,-0.3325181,-0.1271843 +-1,0,0,0.842,-0.3325833,-0.1271665 +-1,0,0,0.842,-0.3326407,-0.1271508 +-1,0,0,0.842,-0.3326914,-0.127137 +-1,0,0,0.842,-0.332736,-0.1271248 +-1,0,0,0.842,-0.3160661,-0.1295052 +-1,0,0,0.842,-0.3179636,-0.1288718 +-1,0,0,0.842,-0.3196361,-0.1283136 +-1,0,0,0.842,-0.3211103,-0.1278215 +-1,0,0,0.842,-0.3224098,-0.1273877 +-1,0,0,0.842,-0.3235552,-0.1270054 +-1,0,0,0.842,-0.3245648,-0.1266684 +-1,0,0,0.842,-0.3254547,-0.1263714 +-1,0,0,0.842,-0.326239,-0.1261095 +-1,0,0,0.842,-0.3269305,-0.1258788 +-1,0,0,0.842,-0.3275399,-0.1256753 +-1,0,0,0.842,-0.3280771,-0.125496 +-1,0,0,0.842,-0.3285506,-0.125338 +-1,0,0,0.842,-0.3289679,-0.1251987 +-1,0,0,0.842,-0.3293358,-0.1250759 +-1,0,0,0.842,-0.3296601,-0.1249676 +-1,0,0,0.842,-0.3299459,-0.1248722 +-1,0,0,0.842,-0.3301978,-0.1247881 +-1,0,0,0.842,-0.3304199,-0.124714 +-1,0,0,0.842,-0.3306156,-0.1246487 +-1,0,0,0.842,-0.3307882,-0.1245911 +-1,0,0,0.842,-0.3309402,-0.1245403 +-1,0,0,0.842,-0.3310743,-0.1244956 +-1,0,0,0.842,-0.3311924,-0.1244561 +-1,0,0,0.842,-0.3312966,-0.1244214 +-1,0,0,0.842,-0.3313884,-0.1243907 +-1,0,0,0.842,-0.3314693,-0.1243637 +-1,0,0,0.842,-0.3315406,-0.1243399 +-1,0,0,0.842,-0.3316035,-0.1243189 +-1,0,0,0.842,-0.3316589,-0.1243004 +-1,0,0,0.842,-0.3317077,-0.1242841 +-1,0,0,0.842,-0.3317508,-0.1242698 +-1,0,0,0.842,-0.3155924,-0.1274654 +-1,0,0,0.842,-0.3174073,-0.1267412 +-1,0,0,0.842,-0.3190071,-0.1261029 +-1,0,0,0.842,-0.3204173,-0.1255403 +-1,0,0,0.842,-0.3216602,-0.1250443 +-1,0,0,0.842,-0.3227558,-0.1246072 +-1,0,0,0.842,-0.3237214,-0.1242219 +-1,0,0,0.842,-0.3245727,-0.1238823 +-1,0,0,0.842,-0.3253229,-0.1235829 +-1,0,0,0.842,-0.3259843,-0.123319 +-1,0,0,0.842,-0.3265672,-0.1230864 +-1,0,0,0.842,-0.327081,-0.1228814 +-1,0,0,0.842,-0.3275339,-0.1227007 +-1,0,0,0.842,-0.3279331,-0.1225414 +-1,0,0,0.842,-0.328285,-0.122401 +-1,0,0,0.842,-0.3285952,-0.1222773 +-1,0,0,0.842,-0.3288686,-0.1221682 +-1,0,0,0.842,-0.3291095,-0.122072 +-1,0,0,0.842,-0.329322,-0.1219873 +-1,0,0,0.842,-0.3295092,-0.1219126 +-1,0,0,0.842,-0.3296742,-0.1218468 +-1,0,0,0.842,-0.3298197,-0.1217887 +-1,0,0,0.842,-0.3299479,-0.1217376 +-1,0,0,0.842,-0.3300609,-0.1216925 +-1,0,0,0.842,-0.3301605,-0.1216527 +-1,0,0,0.842,-0.3302483,-0.1216177 +-1,0,0,0.842,-0.3303257,-0.1215868 +-1,0,0,0.842,-0.3303939,-0.1215596 +-1,0,0,0.842,-0.3304541,-0.1215356 +-1,0,0,0.842,-0.3305071,-0.1215144 +-1,0,0,0.842,-0.3305538,-0.1214958 +-1,0,0,0.842,-0.330595,-0.1214794 +-1,0,0,0.842,-0.3150322,-0.125449 +-1,0,0,0.842,-0.3167549,-0.1246403 +-1,0,0,0.842,-0.3182735,-0.1239274 +-1,0,0,0.842,-0.319612,-0.1232991 +-1,0,0,0.842,-0.3207918,-0.1227452 +-1,0,0,0.842,-0.3218317,-0.122257 +-1,0,0,0.842,-0.3227484,-0.1218267 +-1,0,0,0.842,-0.3235563,-0.1214474 +-1,0,0,0.842,-0.3242685,-0.1211131 +-1,0,0,0.842,-0.3248962,-0.1208184 +-1,0,0,0.842,-0.3254496,-0.1205586 +-1,0,0,0.842,-0.3259373,-0.1203297 +-1,0,0,0.842,-0.3263672,-0.1201279 +-1,0,0,0.842,-0.3267461,-0.11995 +-1,0,0,0.842,-0.3270801,-0.1197932 +-1,0,0,0.842,-0.3273745,-0.119655 +-1,0,0,0.842,-0.3276341,-0.1195331 +-1,0,0,0.842,-0.3278628,-0.1194258 +-1,0,0,0.842,-0.3280644,-0.1193311 +-1,0,0,0.842,-0.3282421,-0.1192477 +-1,0,0,0.842,-0.3283988,-0.1191741 +-1,0,0,0.842,-0.3285369,-0.1191093 +-1,0,0,0.842,-0.3286586,-0.1190522 +-1,0,0,0.842,-0.3287658,-0.1190018 +-1,0,0,0.842,-0.3288604,-0.1189574 +-1,0,0,0.842,-0.3289438,-0.1189183 +-1,0,0,0.842,-0.3290172,-0.1188838 +-1,0,0,0.842,-0.329082,-0.1188534 +-1,0,0,0.842,-0.3291391,-0.1188266 +-1,0,0,0.842,-0.3291894,-0.118803 +-1,0,0,0.842,-0.3292337,-0.1187822 +-1,0,0,0.842,-0.3292728,-0.1187638 +-1,0,0,0.842,-0.3144103,-0.1234538 +-1,0,0,0.842,-0.3160288,-0.1225682 +-1,0,0,0.842,-0.3174555,-0.1217876 +-1,0,0,0.842,-0.3187129,-0.1210995 +-1,0,0,0.842,-0.3198214,-0.120493 +-1,0,0,0.842,-0.3207983,-0.1199584 +-1,0,0,0.842,-0.3216595,-0.1194871 +-1,0,0,0.842,-0.3224186,-0.1190718 +-1,0,0,0.842,-0.3230877,-0.1187057 +-1,0,0,0.842,-0.3236774,-0.118383 +-1,0,0,0.842,-0.3241972,-0.1180985 +-1,0,0,0.842,-0.3246554,-0.1178478 +-1,0,0,0.842,-0.3250593,-0.1176268 +-1,0,0,0.842,-0.3254153,-0.117432 +-1,0,0,0.842,-0.3257291,-0.1172603 +-1,0,0,0.842,-0.3260057,-0.1171089 +-1,0,0,0.842,-0.3262495,-0.1169755 +-1,0,0,0.842,-0.3264644,-0.116858 +-1,0,0,0.842,-0.3266538,-0.1167543 +-1,0,0,0.842,-0.3268208,-0.1166629 +-1,0,0,0.842,-0.326968,-0.1165824 +-1,0,0,0.842,-0.3270977,-0.1165114 +-1,0,0,0.842,-0.327212,-0.1164489 +-1,0,0,0.842,-0.3273128,-0.1163937 +-1,0,0,0.842,-0.3274016,-0.1163451 +-1,0,0,0.842,-0.3274799,-0.1163023 +-1,0,0,0.842,-0.327549,-0.1162645 +-1,0,0,0.842,-0.3276098,-0.1162312 +-1,0,0,0.842,-0.3276634,-0.1162019 +-1,0,0,0.842,-0.3277107,-0.116176 +-1,0,0,0.842,-0.3277524,-0.1161532 +-1,0,0,0.842,-0.3277891,-0.1161331 +-1,0,0,0.842,-0.3137277,-0.1214813 +-1,0,0,0.842,-0.3152304,-0.1205275 +-1,0,0,0.842,-0.3165549,-0.1196867 +-1,0,0,0.842,-0.3177224,-0.1189456 +-1,0,0,0.842,-0.3187515,-0.1182924 +-1,0,0,0.842,-0.3196586,-0.1177166 +-1,0,0,0.842,-0.3204582,-0.1172091 +-1,0,0,0.842,-0.3211629,-0.1167618 +-1,0,0,0.842,-0.3217842,-0.1163675 +-1,0,0,0.842,-0.3223317,-0.1160199 +-1,0,0,0.842,-0.3228143,-0.1157136 +-1,0,0,0.842,-0.3232398,-0.1154435 +-1,0,0,0.842,-0.3236147,-0.1152055 +-1,0,0,0.842,-0.3239453,-0.1149957 +-1,0,0,0.842,-0.3242366,-0.1148108 +-1,0,0,0.842,-0.3244934,-0.1146478 +-1,0,0,0.842,-0.3247198,-0.1145041 +-1,0,0,0.842,-0.3249193,-0.1143774 +-1,0,0,0.842,-0.3250952,-0.1142658 +-1,0,0,0.842,-0.3252502,-0.1141674 +-1,0,0,0.842,-0.3253868,-0.1140807 +-1,0,0,0.842,-0.3255073,-0.1140042 +-1,0,0,0.842,-0.3256134,-0.1139368 +-1,0,0,0.842,-0.325707,-0.1138774 +-1,0,0,0.842,-0.3257895,-0.1138251 +-1,0,0,0.842,-0.3258622,-0.1137789 +-1,0,0,0.842,-0.3259262,-0.1137383 +-1,0,0,0.842,-0.3259827,-0.1137024 +-1,0,0,0.842,-0.3260325,-0.1136708 +-1,0,0,0.842,-0.3260764,-0.113643 +-1,0,0,0.842,-0.3261151,-0.1136184 +-1,0,0,0.842,-0.3261492,-0.1135968 +-1,0,0,0.842,-0.3129608,-0.1195419 +-1,0,0,0.842,-0.3143397,-0.1185284 +-1,0,0,0.842,-0.3155552,-0.117635 +-1,0,0,0.842,-0.3166265,-0.1168476 +-1,0,0,0.842,-0.3175708,-0.1161535 +-1,0,0,0.842,-0.3184032,-0.1155417 +-1,0,0,0.842,-0.3191369,-0.1150024 +-1,0,0,0.842,-0.3197836,-0.1145271 +-1,0,0,0.842,-0.3203537,-0.1141081 +-1,0,0,0.842,-0.3208561,-0.1137388 +-1,0,0,0.842,-0.321299,-0.1134133 +-1,0,0,0.842,-0.3216894,-0.1131263 +-1,0,0,0.842,-0.3220335,-0.1128734 +-1,0,0,0.842,-0.3223368,-0.1126505 +-1,0,0,0.842,-0.3226041,-0.112454 +-1,0,0,0.842,-0.3228398,-0.1122808 +-1,0,0,0.842,-0.3230475,-0.1121281 +-1,0,0,0.842,-0.3232306,-0.1119936 +-1,0,0,0.842,-0.323392,-0.111875 +-1,0,0,0.842,-0.3235342,-0.1117704 +-1,0,0,0.842,-0.3236596,-0.1116782 +-1,0,0,0.842,-0.3237701,-0.111597 +-1,0,0,0.842,-0.3238675,-0.1115254 +-1,0,0,0.842,-0.3239534,-0.1114623 +-1,0,0,0.842,-0.3240291,-0.1114067 +-1,0,0,0.842,-0.3240958,-0.1113576 +-1,0,0,0.842,-0.3241546,-0.1113144 +-1,0,0,0.842,-0.3242064,-0.1112763 +-1,0,0,0.842,-0.3242521,-0.1112427 +-1,0,0,0.842,-0.3242924,-0.1112131 +-1,0,0,0.842,-0.3243279,-0.1111871 +-1,0,0,0.842,-0.3243592,-0.1111641 +-1,0,0,0.842,-0.3121266,-0.117634 +-1,0,0,0.842,-0.3133726,-0.1165706 +-1,0,0,0.842,-0.3144707,-0.1156333 +-1,0,0,0.842,-0.3154387,-0.1148071 +-1,0,0,0.842,-0.316292,-0.1140789 +-1,0,0,0.842,-0.3170441,-0.113437 +-1,0,0,0.842,-0.317707,-0.1128711 +-1,0,0,0.842,-0.3182913,-0.1123724 +-1,0,0,0.842,-0.3188064,-0.1119328 +-1,0,0,0.842,-0.3192604,-0.1115453 +-1,0,0,0.842,-0.3196605,-0.1112038 +-1,0,0,0.842,-0.3200133,-0.1109027 +-1,0,0,0.842,-0.3203242,-0.1106374 +-1,0,0,0.842,-0.3205982,-0.1104035 +-1,0,0,0.842,-0.3208398,-0.1101973 +-1,0,0,0.842,-0.3210527,-0.1100156 +-1,0,0,0.842,-0.3212404,-0.1098554 +-1,0,0,0.842,-0.3214058,-0.1097142 +-1,0,0,0.842,-0.3215516,-0.1095898 +-1,0,0,0.842,-0.3216802,-0.1094801 +-1,0,0,0.842,-0.3217934,-0.1093834 +-1,0,0,0.842,-0.3218933,-0.1092981 +-1,0,0,0.842,-0.3219813,-0.109223 +-1,0,0,0.842,-0.3220589,-0.1091568 +-1,0,0,0.842,-0.3221273,-0.1090984 +-1,0,0,0.842,-0.3221876,-0.109047 +-1,0,0,0.842,-0.3222407,-0.1090016 +-1,0,0,0.842,-0.3222875,-0.1089617 +-1,0,0,0.842,-0.3223288,-0.1089264 +-1,0,0,0.842,-0.3223652,-0.1088954 +-1,0,0,0.842,-0.3223973,-0.108868 +-1,0,0,0.842,-0.3224255,-0.1088439 +-1,0,0,0.842,-0.3112497,-0.1157503 +-1,0,0,0.842,-0.3123513,-0.1146487 +-1,0,0,0.842,-0.3133222,-0.1136778 +-1,0,0,0.842,-0.3141781,-0.1128219 +-1,0,0,0.842,-0.3149325,-0.1120675 +-1,0,0,0.842,-0.3155974,-0.1114026 +-1,0,0,0.842,-0.3161835,-0.1108165 +-1,0,0,0.842,-0.3167002,-0.1102998 +-1,0,0,0.842,-0.3171555,-0.1098445 +-1,0,0,0.842,-0.3175569,-0.1094431 +-1,0,0,0.842,-0.3179107,-0.1090893 +-1,0,0,0.842,-0.3182226,-0.1087774 +-1,0,0,0.842,-0.3184975,-0.1085025 +-1,0,0,0.842,-0.3187398,-0.1082602 +-1,0,0,0.842,-0.3189533,-0.1080467 +-1,0,0,0.842,-0.3191416,-0.1078584 +-1,0,0,0.842,-0.3193075,-0.1076925 +-1,0,0,0.842,-0.3194538,-0.1075462 +-1,0,0,0.842,-0.3195827,-0.1074173 +-1,0,0,0.842,-0.3196963,-0.1073037 +-1,0,0,0.842,-0.3197965,-0.1072035 +-1,0,0,0.842,-0.3198848,-0.1071152 +-1,0,0,0.842,-0.3199626,-0.1070374 +-1,0,0,0.842,-0.3200312,-0.1069688 +-1,0,0,0.842,-0.3200916,-0.1069084 +-1,0,0,0.842,-0.320145,-0.1068551 +-1,0,0,0.842,-0.3201919,-0.1068081 +-1,0,0,0.842,-0.3202333,-0.1067667 +-1,0,0,0.842,-0.3202698,-0.1067302 +-1,0,0,0.842,-0.320302,-0.106698 +-1,0,0,0.842,-0.3203304,-0.1066697 +-1,0,0,0.842,-0.3203553,-0.1066447 +-1,0,0,0.842,-0.309366,-0.1148734 +-1,0,0,0.842,-0.3104294,-0.1136275 +-1,0,0,0.842,-0.3113667,-0.1125292 +-1,0,0,0.842,-0.3121929,-0.1115612 +-1,0,0,0.842,-0.3129211,-0.110708 +-1,0,0,0.842,-0.313563,-0.1099559 +-1,0,0,0.842,-0.3141288,-0.109293 +-1,0,0,0.842,-0.3146276,-0.1087086 +-1,0,0,0.842,-0.3150672,-0.1081936 +-1,0,0,0.842,-0.3154547,-0.1077396 +-1,0,0,0.842,-0.3157962,-0.1073394 +-1,0,0,0.842,-0.3160973,-0.1069867 +-1,0,0,0.842,-0.3163626,-0.1066758 +-1,0,0,0.842,-0.3165965,-0.1064018 +-1,0,0,0.842,-0.3168027,-0.1061602 +-1,0,0,0.842,-0.3169844,-0.1059473 +-1,0,0,0.842,-0.3171446,-0.1057596 +-1,0,0,0.842,-0.3172858,-0.1055942 +-1,0,0,0.842,-0.3174102,-0.1054484 +-1,0,0,0.842,-0.3175199,-0.1053199 +-1,0,0,0.842,-0.3176166,-0.1052066 +-1,0,0,0.842,-0.3177019,-0.1051067 +-1,0,0,0.842,-0.317777,-0.1050187 +-1,0,0,0.842,-0.3178432,-0.1049411 +-1,0,0,0.842,-0.3179016,-0.1048727 +-1,0,0,0.842,-0.317953,-0.1048124 +-1,0,0,0.842,-0.3179984,-0.1047593 +-1,0,0,0.842,-0.3180383,-0.1047125 +-1,0,0,0.842,-0.3180736,-0.1046712 +-1,0,0,0.842,-0.3181046,-0.1046348 +-1,0,0,0.842,-0.318132,-0.1046027 +-1,0,0,0.842,-0.3181561,-0.1045745 +-1,0,0,0.842,-0.3074581,-0.1140392 +-1,0,0,0.842,-0.3084716,-0.1126603 +-1,0,0,0.842,-0.309365,-0.1114448 +-1,0,0,0.842,-0.3101524,-0.1103735 +-1,0,0,0.842,-0.3108465,-0.1094292 +-1,0,0,0.842,-0.3114583,-0.1085968 +-1,0,0,0.842,-0.3119976,-0.1078631 +-1,0,0,0.842,-0.3124729,-0.1072164 +-1,0,0,0.842,-0.3128919,-0.1066463 +-1,0,0,0.842,-0.3132612,-0.1061439 +-1,0,0,0.842,-0.3135867,-0.105701 +-1,0,0,0.842,-0.3138736,-0.1053106 +-1,0,0,0.842,-0.3141266,-0.1049665 +-1,0,0,0.842,-0.3143495,-0.1046632 +-1,0,0,0.842,-0.314546,-0.1043959 +-1,0,0,0.842,-0.3147192,-0.1041602 +-1,0,0,0.842,-0.3148719,-0.1039525 +-1,0,0,0.842,-0.3150064,-0.1037694 +-1,0,0,0.842,-0.315125,-0.103608 +-1,0,0,0.842,-0.3152296,-0.1034658 +-1,0,0,0.842,-0.3153217,-0.1033404 +-1,0,0,0.842,-0.315403,-0.1032299 +-1,0,0,0.842,-0.3154746,-0.1031325 +-1,0,0,0.842,-0.3155377,-0.1030466 +-1,0,0,0.842,-0.3155933,-0.1029709 +-1,0,0,0.842,-0.3156424,-0.1029042 +-1,0,0,0.842,-0.3156856,-0.1028454 +-1,0,0,0.842,-0.3157237,-0.1027936 +-1,0,0,0.842,-0.3157572,-0.1027479 +-1,0,0,0.842,-0.3157869,-0.1027076 +-1,0,0,0.842,-0.3158129,-0.1026721 +-1,0,0,0.842,-0.315836,-0.1026408 +-1,0,0,0.842,-0.3055187,-0.1132723 +-1,0,0,0.842,-0.3064725,-0.1117696 +-1,0,0,0.842,-0.3073133,-0.1104451 +-1,0,0,0.842,-0.3080544,-0.1092775 +-1,0,0,0.842,-0.3087076,-0.1082484 +-1,0,0,0.842,-0.3092833,-0.1073414 +-1,0,0,0.842,-0.3097909,-0.1065418 +-1,0,0,0.842,-0.3102382,-0.105837 +-1,0,0,0.842,-0.3106325,-0.1052158 +-1,0,0,0.842,-0.3109801,-0.1046683 +-1,0,0,0.842,-0.3112864,-0.1041856 +-1,0,0,0.842,-0.3115565,-0.1037602 +-1,0,0,0.842,-0.3117945,-0.1033852 +-1,0,0,0.842,-0.3120043,-0.1030547 +-1,0,0,0.842,-0.3121893,-0.1027634 +-1,0,0,0.842,-0.3123522,-0.1025066 +-1,0,0,0.842,-0.3124959,-0.1022802 +-1,0,0,0.842,-0.3126226,-0.1020807 +-1,0,0,0.842,-0.3127342,-0.1019048 +-1,0,0,0.842,-0.3128326,-0.1017498 +-1,0,0,0.842,-0.3129193,-0.1016132 +-1,0,0,0.842,-0.3129958,-0.1014927 +-1,0,0,0.842,-0.3130631,-0.1013866 +-1,0,0,0.842,-0.3131225,-0.101293 +-1,0,0,0.842,-0.3131749,-0.1012105 +-1,0,0,0.842,-0.313221,-0.1011378 +-1,0,0,0.842,-0.3132617,-0.1010737 +-1,0,0,0.842,-0.3132976,-0.1010173 +-1,0,0,0.842,-0.3133292,-0.1009675 +-1,0,0,0.842,-0.3133571,-0.1009236 +-1,0,0,0.842,-0.3133816,-0.1008849 +-1,0,0,0.842,-0.3134032,-0.1008508 +-1,0,0,0.842,-0.3035462,-0.1125897 +-1,0,0,0.842,-0.3044318,-0.1109712 +-1,0,0,0.842,-0.3052124,-0.1095445 +-1,0,0,0.842,-0.3059005,-0.1082871 +-1,0,0,0.842,-0.306507,-0.1071787 +-1,0,0,0.842,-0.3070416,-0.1062017 +-1,0,0,0.842,-0.3075128,-0.1053405 +-1,0,0,0.842,-0.3079282,-0.1045814 +-1,0,0,0.842,-0.3082943,-0.1039123 +-1,0,0,0.842,-0.308617,-0.1033226 +-1,0,0,0.842,-0.3089015,-0.1028028 +-1,0,0,0.842,-0.3091522,-0.1023446 +-1,0,0,0.842,-0.3093732,-0.1019407 +-1,0,0,0.842,-0.309568,-0.1015847 +-1,0,0,0.842,-0.3097397,-0.1012709 +-1,0,0,0.842,-0.309891,-0.1009943 +-1,0,0,0.842,-0.3100245,-0.1007505 +-1,0,0,0.842,-0.310142,-0.1005356 +-1,0,0,0.842,-0.3102457,-0.1003462 +-1,0,0,0.842,-0.3103371,-0.1001792 +-1,0,0,0.842,-0.3104176,-0.1000321 +-1,0,0,0.842,-0.3104886,-0.09990234 +-1,0,0,0.842,-0.3105511,-0.099788 +-1,0,0,0.842,-0.3106063,-0.09968721 +-1,0,0,0.842,-0.3106549,-0.09959838 +-1,0,0,0.842,-0.3106977,-0.09952007 +-1,0,0,0.842,-0.3107355,-0.09945105 +-1,0,0,0.842,-0.3107688,-0.09939022 +-1,0,0,0.842,-0.3107981,-0.09933659 +-1,0,0,0.842,-0.310824,-0.09928932 +-1,0,0,0.842,-0.3108468,-0.09924766 +-1,0,0,0.842,-0.3108669,-0.09921094 +-1,0,0,0.842,-0.301551,-0.1119678 +-1,0,0,0.842,-0.3023597,-0.110245 +-1,0,0,0.842,-0.3030726,-0.1087265 +-1,0,0,0.842,-0.3037009,-0.107388 +-1,0,0,0.842,-0.3042548,-0.1062082 +-1,0,0,0.842,-0.304743,-0.1051683 +-1,0,0,0.842,-0.3051733,-0.1042516 +-1,0,0,0.842,-0.3055526,-0.1034437 +-1,0,0,0.842,-0.3058869,-0.1027315 +-1,0,0,0.842,-0.3061816,-0.1021037 +-1,0,0,0.842,-0.3064414,-0.1015504 +-1,0,0,0.842,-0.3066703,-0.1010627 +-1,0,0,0.842,-0.3068721,-0.1006328 +-1,0,0,0.842,-0.30705,-0.1002539 +-1,0,0,0.842,-0.3072068,-0.09991986 +-1,0,0,0.842,-0.307345,-0.09962545 +-1,0,0,0.842,-0.3074669,-0.09936594 +-1,0,0,0.842,-0.3075742,-0.0991372 +-1,0,0,0.842,-0.3076689,-0.09893558 +-1,0,0,0.842,-0.3077523,-0.09875786 +-1,0,0,0.842,-0.3078259,-0.09860122 +-1,0,0,0.842,-0.3078907,-0.09846314 +-1,0,0,0.842,-0.3079478,-0.09834144 +-1,0,0,0.842,-0.3079982,-0.09823416 +-1,0,0,0.842,-0.3080426,-0.0981396 +-1,0,0,0.842,-0.3080817,-0.09805625 +-1,0,0,0.842,-0.3081162,-0.09798279 +-1,0,0,0.842,-0.3081466,-0.09791803 +-1,0,0,0.842,-0.3081734,-0.09786095 +-1,0,0,0.842,-0.308197,-0.09781063 +-1,0,0,0.842,-0.3082178,-0.09776629 +-1,0,0,0.842,-0.3082362,-0.0977272 +-1,0,0,0.842,-0.2995346,-0.1114076 +-1,0,0,0.842,-0.3002588,-0.1095927 +-1,0,0,0.842,-0.3008971,-0.1079929 +-1,0,0,0.842,-0.3014598,-0.1065828 +-1,0,0,0.842,-0.3019557,-0.1053398 +-1,0,0,0.842,-0.3023928,-0.1042442 +-1,0,0,0.842,-0.3027781,-0.1032786 +-1,0,0,0.842,-0.3031178,-0.1024273 +-1,0,0,0.842,-0.3034171,-0.1016771 +-1,0,0,0.842,-0.303681,-0.1010157 +-1,0,0,0.842,-0.3039136,-0.1004328 +-1,0,0,0.842,-0.3041186,-0.09991898 +-1,0,0,0.842,-0.3042993,-0.09946608 +-1,0,0,0.842,-0.3044586,-0.09906687 +-1,0,0,0.842,-0.304599,-0.09871498 +-1,0,0,0.842,-0.3047227,-0.09840482 +-1,0,0,0.842,-0.3048318,-0.09813143 +-1,0,0,0.842,-0.3049279,-0.09789046 +-1,0,0,0.842,-0.3050127,-0.09767805 +-1,0,0,0.842,-0.3050874,-0.09749082 +-1,0,0,0.842,-0.3051533,-0.09732579 +-1,0,0,0.842,-0.3052113,-0.09718033 +-1,0,0,0.842,-0.3052624,-0.09705211 +-1,0,0,0.842,-0.3053075,-0.09693909 +-1,0,0,0.842,-0.3053473,-0.09683947 +-1,0,0,0.842,-0.3053823,-0.09675167 +-1,0,0,0.842,-0.3054132,-0.09667427 +-1,0,0,0.842,-0.3054404,-0.09660605 +-1,0,0,0.842,-0.3054644,-0.09654591 +-1,0,0,0.842,-0.3054856,-0.09649291 +-1,0,0,0.842,-0.3055042,-0.09644619 +-1,0,0,0.842,-0.3055207,-0.09640501 +-1,0,0,0.842,-0.2974948,-0.1109339 +-1,0,0,0.842,-0.2981282,-0.1090364 +-1,0,0,0.842,-0.2986864,-0.1073639 +-1,0,0,0.842,-0.2991785,-0.1058897 +-1,0,0,0.842,-0.2996123,-0.1045902 +-1,0,0,0.842,-0.2999946,-0.1034448 +-1,0,0,0.842,-0.3003316,-0.1024352 +-1,0,0,0.842,-0.3006286,-0.1015453 +-1,0,0,0.842,-0.3008904,-0.1007609 +-1,0,0,0.842,-0.3011212,-0.1000695 +-1,0,0,0.842,-0.3013247,-0.0994601 +-1,0,0,0.842,-0.301504,-0.09892292 +-1,0,0,0.842,-0.301662,-0.09844942 +-1,0,0,0.842,-0.3018013,-0.09803207 +-1,0,0,0.842,-0.3019241,-0.09766419 +-1,0,0,0.842,-0.3020324,-0.09733993 +-1,0,0,0.842,-0.3021278,-0.09705411 +-1,0,0,0.842,-0.3022119,-0.09680218 +-1,0,0,0.842,-0.302286,-0.09658011 +-1,0,0,0.842,-0.3023513,-0.09638437 +-1,0,0,0.842,-0.3024089,-0.09621184 +-1,0,0,0.842,-0.3024597,-0.09605976 +-1,0,0,0.842,-0.3025044,-0.09592571 +-1,0,0,0.842,-0.3025439,-0.09580755 +-1,0,0,0.842,-0.3025786,-0.09570341 +-1,0,0,0.842,-0.3026093,-0.09561161 +-1,0,0,0.842,-0.3026363,-0.09553069 +-1,0,0,0.842,-0.3026601,-0.09545937 +-1,0,0,0.842,-0.3026811,-0.0953965 +-1,0,0,0.842,-0.3026996,-0.09534109 +-1,0,0,0.842,-0.3027159,-0.09529224 +-1,0,0,0.842,-0.3027302,-0.09524919 +-1,0,0,0.842,-0.2954385,-0.1105302 +-1,0,0,0.842,-0.2959752,-0.1085624 +-1,0,0,0.842,-0.2964483,-0.1068279 +-1,0,0,0.842,-0.2968653,-0.105299 +-1,0,0,0.842,-0.2972329,-0.1039514 +-1,0,0,0.842,-0.2975569,-0.1027635 +-1,0,0,0.842,-0.2978425,-0.1017165 +-1,0,0,0.842,-0.2980942,-0.1007936 +-1,0,0,0.842,-0.2983161,-0.09998008 +-1,0,0,0.842,-0.2985117,-0.09926304 +-1,0,0,0.842,-0.298684,-0.09863101 +-1,0,0,0.842,-0.298836,-0.09807391 +-1,0,0,0.842,-0.2989699,-0.09758286 +-1,0,0,0.842,-0.299088,-0.09715003 +-1,0,0,0.842,-0.299192,-0.09676851 +-1,0,0,0.842,-0.2992837,-0.09643222 +-1,0,0,0.842,-0.2993646,-0.0961358 +-1,0,0,0.842,-0.2994359,-0.09587453 +-1,0,0,0.842,-0.2994987,-0.09564423 +-1,0,0,0.842,-0.299554,-0.09544123 +-1,0,0,0.842,-0.2996029,-0.0952623 +-1,0,0,0.842,-0.2996459,-0.09510458 +-1,0,0,0.842,-0.2996838,-0.09496556 +-1,0,0,0.842,-0.2997172,-0.09484303 +-1,0,0,0.842,-0.2997467,-0.09473502 +-1,0,0,0.842,-0.2997727,-0.09463982 +-1,0,0,0.842,-0.2997955,-0.0945559 +-1,0,0,0.842,-0.2998157,-0.09448193 +-1,0,0,0.842,-0.2998335,-0.09441673 +-1,0,0,0.842,-0.2998492,-0.09435926 +-1,0,0,0.842,-0.299863,-0.09430861 +-1,0,0,0.842,-0.2998751,-0.09426396 +-1,0,0,0.842,-0.2933691,-0.1101906 +-1,0,0,0.842,-0.2938042,-0.1081657 +-1,0,0,0.842,-0.2941877,-0.1063809 +-1,0,0,0.842,-0.2945257,-0.1048077 +-1,0,0,0.842,-0.2948237,-0.103421 +-1,0,0,0.842,-0.2950864,-0.1021988 +-1,0,0,0.842,-0.2953179,-0.1011214 +-1,0,0,0.842,-0.295522,-0.1001717 +-1,0,0,0.842,-0.2957019,-0.09933469 +-1,0,0,0.842,-0.2958604,-0.09859687 +-1,0,0,0.842,-0.2960002,-0.09794652 +-1,0,0,0.842,-0.2961233,-0.09737328 +-1,0,0,0.842,-0.2962319,-0.09686799 +-1,0,0,0.842,-0.2963276,-0.09642262 +-1,0,0,0.842,-0.296412,-0.09603004 +-1,0,0,0.842,-0.2964863,-0.09568401 +-1,0,0,0.842,-0.2965519,-0.095379 +-1,0,0,0.842,-0.2966097,-0.09511016 +-1,0,0,0.842,-0.2966606,-0.09487318 +-1,0,0,0.842,-0.2967055,-0.0946643 +-1,0,0,0.842,-0.296745,-0.09448019 +-1,0,0,0.842,-0.2967799,-0.0943179 +-1,0,0,0.842,-0.2968107,-0.09417485 +-1,0,0,0.842,-0.2968377,-0.09404876 +-1,0,0,0.842,-0.2968616,-0.09393762 +-1,0,0,0.842,-0.2968827,-0.09383966 +-1,0,0,0.842,-0.2969012,-0.09375331 +-1,0,0,0.842,-0.2969176,-0.0936772 +-1,0,0,0.842,-0.296932,-0.09361012 +-1,0,0,0.842,-0.2969447,-0.09355098 +-1,0,0,0.842,-0.2969559,-0.09349886 +-1,0,0,0.842,-0.2969658,-0.09345291 +-1,0,0,0.842,-0.2912871,-0.1099276 +-1,0,0,0.842,-0.2916169,-0.1078579 +-1,0,0,0.842,-0.2919075,-0.1060335 +-1,0,0,0.842,-0.2921637,-0.1044255 +-1,0,0,0.842,-0.2923895,-0.103008 +-1,0,0,0.842,-0.2925885,-0.1017587 +-1,0,0,0.842,-0.292764,-0.1006574 +-1,0,0,0.842,-0.2929186,-0.09968673 +-1,0,0,0.842,-0.2930549,-0.09883112 +-1,0,0,0.842,-0.2931751,-0.09807695 +-1,0,0,0.842,-0.293281,-0.0974122 +-1,0,0,0.842,-0.2933743,-0.09682625 +-1,0,0,0.842,-0.2934566,-0.09630977 +-1,0,0,0.842,-0.2935292,-0.09585452 +-1,0,0,0.842,-0.2935931,-0.09545325 +-1,0,0,0.842,-0.2936494,-0.09509955 +-1,0,0,0.842,-0.2936991,-0.09478778 +-1,0,0,0.842,-0.2937429,-0.09451298 +-1,0,0,0.842,-0.2937815,-0.09427075 +-1,0,0,0.842,-0.2938155,-0.09405724 +-1,0,0,0.842,-0.2938455,-0.09386905 +-1,0,0,0.842,-0.2938719,-0.09370316 +-1,0,0,0.842,-0.2938952,-0.09355695 +-1,0,0,0.842,-0.2939157,-0.09342806 +-1,0,0,0.842,-0.2939338,-0.09331446 +-1,0,0,0.842,-0.2939498,-0.09321433 +-1,0,0,0.842,-0.2939638,-0.09312607 +-1,0,0,0.842,-0.2939762,-0.09304827 +-1,0,0,0.842,-0.2939872,-0.09297969 +-1,0,0,0.842,-0.2939968,-0.09291925 +-1,0,0,0.842,-0.2940053,-0.09286597 +-1,0,0,0.842,-0.2940128,-0.09281901 +-1,0,0,0.842,-0.2891958,-0.1097485 +-1,0,0,0.842,-0.2894174,-0.1076455 +-1,0,0,0.842,-0.2896126,-0.1057918 +-1,0,0,0.842,-0.2897847,-0.1041578 +-1,0,0,0.842,-0.2899364,-0.1027176 +-1,0,0,0.842,-0.2900701,-0.1014481 +-1,0,0,0.842,-0.290188,-0.1003291 +-1,0,0,0.842,-0.2902918,-0.09934282 +-1,0,0,0.842,-0.2903834,-0.09847344 +-1,0,0,0.842,-0.2904641,-0.09770713 +-1,0,0,0.842,-0.2905353,-0.09703168 +-1,0,0,0.842,-0.290598,-0.0964363 +-1,0,0,0.842,-0.2906533,-0.0959115 +-1,0,0,0.842,-0.290702,-0.09544893 +-1,0,0,0.842,-0.2907449,-0.0950412 +-1,0,0,0.842,-0.2907828,-0.09468181 +-1,0,0,0.842,-0.2908161,-0.09436502 +-1,0,0,0.842,-0.2908455,-0.09408579 +-1,0,0,0.842,-0.2908715,-0.09383967 +-1,0,0,0.842,-0.2908943,-0.09362272 +-1,0,0,0.842,-0.2909144,-0.0934315 +-1,0,0,0.842,-0.2909322,-0.09326294 +-1,0,0,0.842,-0.2909479,-0.09311438 +-1,0,0,0.842,-0.2909617,-0.09298342 +-1,0,0,0.842,-0.2909738,-0.09286799 +-1,0,0,0.842,-0.2909845,-0.09276624 +-1,0,0,0.842,-0.290994,-0.09267656 +-1,0,0,0.842,-0.2910023,-0.09259751 +-1,0,0,0.842,-0.2910096,-0.09252783 +-1,0,0,0.842,-0.2910161,-0.09246641 +-1,0,0,0.842,-0.2910218,-0.09241228 +-1,0,0,0.842,-0.2910268,-0.09236456 +-1,0,0,0.842,-0.2870995,-0.1096347 +-1,0,0,0.842,-0.2872108,-0.1075124 +-1,0,0,0.842,-0.2873088,-0.1056416 +-1,0,0,0.842,-0.2873952,-0.1039927 +-1,0,0,0.842,-0.2874714,-0.1025393 +-1,0,0,0.842,-0.2875385,-0.1012581 +-1,0,0,0.842,-0.2875977,-0.1001289 +-1,0,0,0.842,-0.2876499,-0.09913352 +-1,0,0,0.842,-0.2876958,-0.09825617 +-1,0,0,0.842,-0.2877364,-0.09748283 +-1,0,0,0.842,-0.2877721,-0.09680117 +-1,0,0,0.842,-0.2878036,-0.09620033 +-1,0,0,0.842,-0.2878313,-0.09567072 +-1,0,0,0.842,-0.2878558,-0.0952039 +-1,0,0,0.842,-0.2878774,-0.09479243 +-1,0,0,0.842,-0.2878964,-0.09442973 +-1,0,0,0.842,-0.2879131,-0.09411004 +-1,0,0,0.842,-0.2879279,-0.09382825 +-1,0,0,0.842,-0.2879409,-0.09357987 +-1,0,0,0.842,-0.2879524,-0.09336093 +-1,0,0,0.842,-0.2879625,-0.09316795 +-1,0,0,0.842,-0.2879714,-0.09299786 +-1,0,0,0.842,-0.2879793,-0.09284792 +-1,0,0,0.842,-0.2879862,-0.09271576 +-1,0,0,0.842,-0.2879923,-0.09259927 +-1,0,0,0.842,-0.2879977,-0.0924966 +-1,0,0,0.842,-0.2880024,-0.09240609 +-1,0,0,0.842,-0.2880066,-0.09232631 +-1,0,0,0.842,-0.2880103,-0.09225599 +-1,0,0,0.842,-0.2880135,-0.09219401 +-1,0,0,0.842,-0.2880164,-0.09213938 +-1,0,0,0.842,-0.2880189,-0.09209123 diff --git a/Simulation_setup_and_evluation/BaseCase/0/nuTilda b/Simulation_setup_and_evluation/BaseCase/0/nuTilda new file mode 100644 index 0000000..c3c07a0 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/0/nuTilda @@ -0,0 +1,4050 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + location "0"; + object nuTilda; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -1 0 0 0 0]; + +internalField uniform 0.00001; + +boundaryField +{ + "(INLET|Inlet|inlet)" + { + type fixedValue; + value nonuniform List<scalar> +4004 + ( +9.684725017624658e-05 +9.720736801259377e-05 +9.759834287068734e-05 +9.785787259663785e-05 +9.793707559147737e-05 +9.778945816663483e-05 +9.736830384174833e-05 +9.662486405889289e-05 +9.55169997806726e-05 +9.397056970688794e-05 +9.194457326782545e-05 +8.936951276753671e-05 +8.617204764726856e-05 +9.72073933702422e-05 +9.743905221938603e-05 +9.77150458801442e-05 +9.78958090312971e-05 +9.792236173979265e-05 +9.773679388810088e-05 +9.72849808347068e-05 +9.65224665139858e-05 +9.538863770349154e-05 +9.383639340023734e-05 +9.180405793943296e-05 +8.92350313584159e-05 +8.605498832344412e-05 +9.759834278419381e-05 +9.771504584735424e-05 +9.785648965992774e-05 +9.793292870197441e-05 +9.787654345472417e-05 +9.762396157875808e-05 +9.711689216016181e-05 +9.630235189582922e-05 +9.513666104698621e-05 +9.356258706357231e-05 +9.15248047060043e-05 +8.895726916909902e-05 +8.579586592813272e-05 +9.785787255738467e-05 +9.78958090063128e-05 +9.793292723989035e-05 +9.790826954527099e-05 +9.775060131913517e-05 +9.74140107421185e-05 +9.683651726688921e-05 +9.596413511193906e-05 +9.47502637230872e-05 +9.314655255812155e-05 +9.1091682564527e-05 +8.853552191570935e-05 +8.540275152077064e-05 +9.793707561256865e-05 +9.792236175495733e-05 +9.787654347950646e-05 +9.775059047824776e-05 +9.749788900557935e-05 +9.706688876463937e-05 +9.641144567614931e-05 +9.547743359283805e-05 +9.421669984503783e-05 +9.257952730793458e-05 +9.052253384891517e-05 +8.79836887252653e-05 +8.489663891943137e-05 +9.778945826145216e-05 +9.773679396474086e-05 +9.762396165342494e-05 +9.74140108035435e-05 +9.706688880130581e-05 +9.654921926169777e-05 +9.580958093106996e-05 +9.481226900506392e-05 +9.350676414175073e-05 +9.18433332698119e-05 +8.978626814925207e-05 +8.72676392813834e-05 +8.42361995969564e-05 +9.736830402810927e-05 +9.728498098771424e-05 +9.711689230716424e-05 +9.683651738052394e-05 +9.641144576932408e-05 +9.58095809815454e-05 +9.500415099418555e-05 +9.394218082086191e-05 +9.259554826487692e-05 +9.09153175305838e-05 +8.886296236832367e-05 +8.638270016609558e-05 +8.342470166112331e-05 +9.662482494181203e-05 +9.652246675262567e-05 +9.63023521237968e-05 +9.596413531613782e-05 +9.547743375939907e-05 +9.481226912401376e-05 +9.394212264441225e-05 +9.284137884224942e-05 +9.147283654957836e-05 +8.978585447031576e-05 +8.775072197544729e-05 +8.53317692450897e-05 +8.247182834102231e-05 +9.551700018870623e-05 +9.538863808254385e-05 +9.513666137298855e-05 +9.475026401599187e-05 +9.421670009822128e-05 +9.350676434672243e-05 +9.259554840885693e-05 +9.147283662720322e-05 +9.008803763454722e-05 +8.841676840630908e-05 +8.642985338954425e-05 +8.409807732462054e-05 +8.13599111759901e-05 +9.397057026143165e-05 +9.383639389222022e-05 +9.356258752971269e-05 +9.314655295624072e-05 +9.257952766334472e-05 +9.18432457756049e-05 +9.091531776828652e-05 +8.978585463823431e-05 +8.841676849796656e-05 +8.678679193601856e-05 +8.487233538680028e-05 +8.264877126688557e-05 +8.005267338413503e-05 +9.194457399660957e-05 +9.180405859724276e-05 +9.152480529633225e-05 +9.109168311223666e-05 +9.052253434773514e-05 +8.978632047190154e-05 +8.88629627266401e-05 +8.775060489604199e-05 +8.642985358866311e-05 +8.487233549029132e-05 +8.305386110864737e-05 +8.097299758375678e-05 +7.85673460802017e-05 +8.936951368086326e-05 +8.923503219639466e-05 +8.895726992956367e-05 +8.853552262800911e-05 +8.798368935074516e-05 +8.726763984604955e-05 +8.638270065892788e-05 +8.533176965580853e-05 +8.409807764386473e-05 +8.264877149791097e-05 +8.097299770248868e-05 +7.908258422376314e-05 +7.690452076301823e-05 +8.617204876375554e-05 +8.605498935456115e-05 +8.579586691506698e-05 +8.540275241841983e-05 +8.489679444066779e-05 +8.423620032937348e-05 +8.342470231773711e-05 +8.247182891080572e-05 +8.135991164860804e-05 +8.005284161376286e-05 +7.856734633199643e-05 +7.690452089308342e-05 +7.499300706724174e-05 +9.684725042462565e-05 +9.720737470067337e-05 +9.759834309928617e-05 +9.785787269078591e-05 +9.793707554348518e-05 +9.778945795793378e-05 +9.736830344086807e-05 +9.66248240671207e-05 +9.55169989289233e-05 +9.397056856130811e-05 +9.194457177512574e-05 +8.93695109102786e-05 +8.617204539073677e-05 +9.720736815381427e-05 +9.743905249185895e-05 +9.771504608564582e-05 +9.789580913322017e-05 +9.792236168903676e-05 +9.773679365980042e-05 +9.72849804129298e-05 +9.652246589189956e-05 +9.538863675639985e-05 +9.38363922113106e-05 +9.180405639233006e-05 +8.923502943172532e-05 +8.605498599768806e-05 +9.759834293353324e-05 +9.771504602280839e-05 +9.785648975746297e-05 +9.793292727227953e-05 +9.787654331898661e-05 +9.762396126029991e-05 +9.711689162268172e-05 +9.630235114633006e-05 +9.513666005602328e-05 +9.356258572985828e-05 +9.152480309705503e-05 +8.895726717796227e-05 +8.579586342955049e-05 +9.785787261556257e-05 +9.78958090853412e-05 +9.793292872501357e-05 +9.790826670414847e-05 +9.775059023714672e-05 +9.74140103230602e-05 +9.683651668229355e-05 +9.5964134233913e-05 +9.475026261320802e-05 +9.314655118595123e-05 +9.109168081228126e-05 +8.85355197709502e-05 +8.540274895042847e-05 +9.793707558390373e-05 +9.792236171809779e-05 +9.787654336647844e-05 +9.775060113279422e-05 +9.749788868648285e-05 +9.706688823402832e-05 +9.641144492070688e-05 +9.547743259745152e-05 +9.421669860336143e-05 +9.257952579445196e-05 +9.052253194156783e-05 +8.798368653014872e-05 +8.489679100571755e-05 +9.778945813963815e-05 +9.773679380667041e-05 +9.76239614033887e-05 +9.74140104407728e-05 +9.706688830429452e-05 +9.654921864202157e-05 +9.580958007445265e-05 +9.481226789750453e-05 +9.350676275826315e-05 +9.184333162209286e-05 +8.978631810739941e-05 +8.726750553114988e-05 +8.423619682053831e-05 +9.73683037980032e-05 +9.72849807061475e-05 +9.711689190439172e-05 +9.683651690005891e-05 +9.641144509926357e-05 +9.580958017118185e-05 +9.500415002519404e-05 +9.394212135139108e-05 +9.25955467651205e-05 +9.091531575685909e-05 +8.88629602272522e-05 +8.638269766454221e-05 +8.34246987235581e-05 +9.662486400313099e-05 +9.652246634922014e-05 +9.630235158319863e-05 +9.596413462523187e-05 +9.547743291664292e-05 +9.481226812545566e-05 +9.394217971388736e-05 +9.284137739559298e-05 +9.147283488977306e-05 +8.97858525496042e-05 +8.7750719655881e-05 +8.533176660412172e-05 +8.247182525190418e-05 +9.55169997108638e-05 +9.538863748280157e-05 +9.513666068076199e-05 +9.475026317451957e-05 +9.421669908855277e-05 +9.350676315106323e-05 +9.259554704103845e-05 +9.14728350385305e-05 +9.008803580481774e-05 +8.841676626618095e-05 +8.642985092944256e-05 +8.409807455530546e-05 +8.135990794649275e-05 +9.397056962401507e-05 +9.383639315412823e-05 +9.356258662315229e-05 +9.314655194889197e-05 +9.257952647554675e-05 +9.184333219982599e-05 +9.091531621238387e-05 +8.978585287139713e-05 +8.841676644182986e-05 +8.678678957129511e-05 +8.487233279559834e-05 +8.264876823277332e-05 +8.005267002387063e-05 +9.194457317174046e-05 +9.180405765293228e-05 +9.15248042283374e-05 +9.109168186189159e-05 +9.052253289748776e-05 +8.978626699683505e-05 +8.886296091391658e-05 +8.775072020419093e-05 +8.642994493155124e-05 +8.487233299392446e-05 +8.305385830323767e-05 +8.097299444259043e-05 +7.856734260166838e-05 +8.936951266054348e-05 +8.923503103759649e-05 +8.895729267898862e-05 +8.853552113597482e-05 +8.798368772879487e-05 +8.726763801093285e-05 +8.638269860898774e-05 +8.53317673912081e-05 +8.409807516709315e-05 +8.264876867550178e-05 +8.097299467012351e-05 +7.90825808406149e-05 +7.690451715280418e-05 +8.617204753033096e-05 +8.605498797368209e-05 +8.57958653208745e-05 +8.540275067065006e-05 +8.489663782932388e-05 +8.423619822411502e-05 +8.342469998186837e-05 +8.247173638531095e-05 +8.135990885220013e-05 +8.00526707263067e-05 +7.85673430841981e-05 +7.690451740205624e-05 +7.499300321251839e-05 +9.684725050266984e-05 +9.720736828701168e-05 +9.759834303253975e-05 +9.785787265747915e-05 +9.793707556219671e-05 +9.778945804426835e-05 +9.736830361348363e-05 +9.66248637282905e-05 +9.551699931502203e-05 +9.3970569089812e-05 +9.194457247371853e-05 +8.936951178998626e-05 +8.617204647048032e-05 +9.720736838394263e-05 +9.74390525774738e-05 +9.7715046097683e-05 +9.78958091252173e-05 +9.79223616973846e-05 +9.773679371085378e-05 +9.728498052554203e-05 +9.652246607876772e-05 +9.538863706610823e-05 +9.383639262596245e-05 +9.180405696011724e-05 +8.923503016889795e-05 +8.605498691890474e-05 +9.759834311903325e-05 +9.771504613047293e-05 +9.785648978810992e-05 +9.793292873519076e-05 +9.787654331604081e-05 +9.762396127986322e-05 +9.711689168931755e-05 +9.630235127606465e-05 +9.513666026695272e-05 +9.356258605761236e-05 +9.152480353729318e-05 +8.895741575222699e-05 +8.579586422567548e-05 +9.785787269673231e-05 +9.789580915020159e-05 +9.793292727951883e-05 +9.790826390536154e-05 +9.775059019737333e-05 +9.741398864782441e-05 +9.683651668066497e-05 +9.59641342851814e-05 +9.475026273374492e-05 +9.314655139264176e-05 +9.109168113921274e-05 +8.853552023824615e-05 +8.540274958095771e-05 +9.793707554110544e-05 +9.792236168221992e-05 +9.787654329125853e-05 +9.77505901785961e-05 +9.749790295908071e-05 +9.706688812604785e-05 +9.641144483261597e-05 +9.547743255154243e-05 +9.42166986188465e-05 +9.257952588831398e-05 +9.052253214143566e-05 +8.798368684252322e-05 +8.489679146721774e-05 +9.778945794945103e-05 +9.773679363421381e-05 +9.762396120519635e-05 +9.741401022837308e-05 +9.706688808938141e-05 +9.654921844731048e-05 +9.580957988616037e-05 +9.481226774006898e-05 +9.350676265194668e-05 +9.184333158736182e-05 +8.978626625387607e-05 +8.726763709430022e-05 +8.423619712158896e-05 +9.736830342712271e-05 +9.728498037253464e-05 +9.711689154231512e-05 +9.683651656703025e-05 +9.641144473944118e-05 +9.580957983568498e-05 +9.500414972072308e-05 +9.394212106736051e-05 +9.259554652455303e-05 +9.091531558036468e-05 +8.886296012857328e-05 +8.6382697668109e-05 +8.342469885252605e-05 +9.662482404959962e-05 +9.652246584012785e-05 +9.630235104809707e-05 +9.596413408098266e-05 +9.54774323849814e-05 +9.481226762111909e-05 +9.39421210035651e-05 +9.284131178057177e-05 +9.147283449260518e-05 +8.978585221511976e-05 +8.775060201992278e-05 +8.53317664323246e-05 +8.247173523563369e-05 +9.551699890698837e-05 +9.538863668705593e-05 +9.513665994095042e-05 +9.475026244084026e-05 +9.421669836566306e-05 +9.350676244697503e-05 +9.2595546380573e-05 +9.147283441498027e-05 +9.008803522989066e-05 +8.841676574057098e-05 +8.64299440959845e-05 +8.409807419662387e-05 +8.135990768894273e-05 +9.397056853526827e-05 +9.383639213397961e-05 +9.356258559147204e-05 +9.314655099452262e-05 +9.257956302519076e-05 +9.184333128588803e-05 +9.091531534266189e-05 +8.978585204720118e-05 +8.841676564891355e-05 +8.678678882826527e-05 +8.48723321472135e-05 +8.264876764954895e-05 +8.005266955528952e-05 +9.194457174493448e-05 +9.180405630230747e-05 +9.152480294696529e-05 +9.109168059150321e-05 +9.052253164261577e-05 +8.978631774529612e-05 +8.886295977025675e-05 +8.7750719099327e-05 +8.642985027634267e-05 +8.487233204372265e-05 +8.305385742173792e-05 +8.097299364581698e-05 +7.856734191207585e-05 +8.936951087665983e-05 +8.92350293309193e-05 +8.895726701023136e-05 +8.85355195259465e-05 +8.79836862170435e-05 +8.72675051319575e-05 +8.638269717527674e-05 +8.53317660216057e-05 +8.409807387737967e-05 +8.264876741852357e-05 +8.097312476291067e-05 +7.908257977758156e-05 +7.690451622680716e-05 +8.617204535399332e-05 +8.605498588778784e-05 +8.579586323874131e-05 +8.540274868330848e-05 +8.489679066318913e-05 +8.423619638917199e-05 +8.34246981959123e-05 +8.24717346658558e-05 +8.135990721632479e-05 +8.005266918874307e-05 +7.856734166028135e-05 +7.690451609674198e-05 +7.499300200130935e-05 +9.684725025429084e-05 +9.720738705367205e-05 +9.75983428039409e-05 +9.785787256333107e-05 +9.793707561018891e-05 +9.778945825296943e-05 +9.736830401436392e-05 +9.662482492429095e-05 +9.551700016677131e-05 +9.397057023539181e-05 +9.194457396641831e-05 +8.936951364724445e-05 +8.617204872701208e-05 +9.72073681457912e-05 +9.74390523050009e-05 +9.771504589218137e-05 +9.789580902329424e-05 +9.79223617481405e-05 +9.773679393915426e-05 +9.728498094731906e-05 +9.652246670085394e-05 +9.53886380131999e-05 +9.383639381488923e-05 +9.180405850722015e-05 +8.923503209558862e-05 +8.605498924466093e-05 +9.759834296969385e-05 +9.771504595501882e-05 +9.785648969057469e-05 +9.793292724712965e-05 +9.787654345177837e-05 +9.762396159832138e-05 +9.711689222679764e-05 +9.63023520255638e-05 +9.513666125791567e-05 +9.356258739132644e-05 +9.152480514624248e-05 +8.895726976183274e-05 +8.579586672425778e-05 +9.785787263855442e-05 +9.78958090711732e-05 +9.79329287121516e-05 +9.790826674646621e-05 +9.775059041969715e-05 +9.741401070885637e-05 +9.683651726526062e-05 +9.596413516320745e-05 +9.475026384362409e-05 +9.31465527648121e-05 +9.109168289145856e-05 +8.853552238300539e-05 +8.540275215129984e-05 +9.793707556977037e-05 +9.792236171907947e-05 +9.787654340428654e-05 +9.775059038371313e-05 +9.749790327817877e-05 +9.70668886566589e-05 +9.641144558805834e-05 +9.547743354692892e-05 +9.421669986052287e-05 +9.257956489408673e-05 +9.052253404878307e-05 +8.798368903763991e-05 +8.489679409813934e-05 +9.778945807126504e-05 +9.773679379228425e-05 +9.762396145523258e-05 +9.74139889491684e-05 +9.706688858639267e-05 +9.654921906698665e-05 +9.58095807427777e-05 +9.481226884762831e-05 +9.35067640354343e-05 +9.184324543940126e-05 +8.978632010979822e-05 +8.726763944685585e-05 +8.423619989800711e-05 +9.736830365722876e-05 +9.728498065410133e-05 +9.711689194508761e-05 +9.683651704749525e-05 +9.64114454095017e-05 +9.580958064604847e-05 +9.500415068971459e-05 +9.394212229658623e-05 +9.25955480243094e-05 +9.091531735408928e-05 +8.886296226964463e-05 +8.638270016966238e-05 +8.342470179009127e-05 +9.66248637840524e-05 +9.652246624353336e-05 +9.630235158869521e-05 +9.596413477188856e-05 +9.547743322773755e-05 +9.48122686196772e-05 +9.394212217433122e-05 +9.284131322722378e-05 +9.147283615241041e-05 +8.978585413583124e-05 +8.775060433948962e-05 +8.533176907329245e-05 +8.247173832475167e-05 +9.551699938483082e-05 +9.538863728679816e-05 +9.513666063317693e-05 +9.475026328231254e-05 +9.421669937533153e-05 +9.350676364263414e-05 +9.259554774839147e-05 +9.1472836003653e-05 +9.00880370596201e-05 +8.841676788069915e-05 +8.64298529355632e-05 +8.409807696593889e-05 +8.135991091844006e-05 +9.397056917268486e-05 +9.383639287207155e-05 +9.356258649803236e-05 +9.314655200187133e-05 +9.25795267207018e-05 +9.184333265734772e-05 +9.091531689856459e-05 +8.978585381403836e-05 +8.841676770505018e-05 +8.678679119298868e-05 +8.487233473841557e-05 +8.264877068366116e-05 +8.005284077863316e-05 +9.194457256980353e-05 +9.180405724661793e-05 +9.152480401496008e-05 +9.109168184184813e-05 +9.052253309286305e-05 +8.978626740629303e-05 +8.886296158298032e-05 +8.775060379117384e-05 +8.642985255397925e-05 +8.487233454008927e-05 +8.30538602271476e-05 +8.097312802281572e-05 +7.856734539060932e-05 +8.936951189697948e-05 +8.923503048971734e-05 +8.895739224225212e-05 +8.853552101798066e-05 +8.798368783899364e-05 +8.726763836475071e-05 +8.638269922521679e-05 +8.533176828620615e-05 +8.409807635415121e-05 +8.264877024093272e-05 +8.09729965594502e-05 +7.908258316072975e-05 +7.690451983702117e-05 +8.617204658741791e-05 +8.605498726866679e-05 +8.579586483293369e-05 +8.540275043107826e-05 +8.489679255732871e-05 +8.423619849443032e-05 +8.342470053178096e-05 +8.247182719134323e-05 +8.135991001273265e-05 +8.00526722131178e-05 +7.85673449080794e-05 +7.690451958776911e-05 +7.499300585603265e-05 +8.216008788254208e-05 +8.204976457423742e-05 +8.179890206763906e-05 +8.142162105311695e-05 +8.092306125878274e-05 +8.029230695951833e-05 +7.950499659157886e-05 +7.85869834710467e-05 +7.752659857393661e-05 +7.628574128055402e-05 +7.48849602014586e-05 +7.332833598132496e-05 +7.15526222787337e-05 +7.749430231426447e-05 +7.737864375474668e-05 +7.711365542173364e-05 +7.67188750797469e-05 +7.619780512354448e-05 +7.553938470773814e-05 +7.471975461828321e-05 +7.377229011633426e-05 +7.268128951119821e-05 +7.141082908515811e-05 +6.99835752870176e-05 +6.840664008340275e-05 +6.662265623241507e-05 +7.263156099572102e-05 +7.251194442790514e-05 +7.223910145385574e-05 +7.183618001320632e-05 +7.130556149164004e-05 +7.063293052298557e-05 +6.980241554018212e-05 +6.884547825106245e-05 +6.774707687999865e-05 +6.647163545010022e-05 +6.504548710402627e-05 +6.347633840473403e-05 +6.170715391179196e-05 +6.767872733039009e-05 +6.755808812802878e-05 +6.728263980242061e-05 +6.687590853501018e-05 +6.635021193909064e-05 +6.567343739878189e-05 +6.484908801771398e-05 +6.389742348741946e-05 +6.28041466365068e-05 +6.154319596618686e-05 +6.0140886661624266e-05 +5.860613796841414e-05 +5.688206198940058e-05 +6.271825622860866e-05 +6.260151277343366e-05 +6.233245411330315e-05 +6.192758895600772e-05 +6.140756248650933e-05 +6.074507063016999e-05 +5.993504767999689e-05 +5.899830915500785e-05 +5.7932755539449445e-05 +5.670488362198158e-05 +5.5342206100192414e-05 +5.3853858566355375e-05 +5.218870890281996e-05 +5.7826816097399604e-05 +5.771169083480859e-05 +5.744934037659886e-05 +5.706045626480159e-05 +5.655126090569654e-05 +5.590883822167179e-05 +5.512081002074074e-05 +5.42187134418715e-05 +5.318719867851648e-05 +5.200216399594486e-05 +5.0691908800877685e-05 +4.926642788982212e-05 +4.7677477387806936e-05 +5.3063207285420264e-05 +5.2953347036828886e-05 +5.269925603521713e-05 +5.232086499498089e-05 +5.1834110102844274e-05 +5.121591431777259e-05 +5.0460835894247e-05 +4.9593455859726673e-05 +4.861029325517088e-05 +4.7480848027034804e-05 +4.623333779067064e-05 +4.487961743762933e-05 +4.3374389210037695e-05 +4.8465684275174396e-05 +4.835947686677253e-05 +4.8117351219553014e-05 +4.7759494258767115e-05 +4.729631113840724e-05 +4.6705606047392e-05 +4.5990419254162134e-05 +4.516636138265451e-05 +4.4232963951362626e-05 +4.3165941429838136e-05 +4.198991566548889e-05 +4.071506972104003e-05 +3.9301504500260566e-05 +4.407030686470585e-05 +4.397047820605616e-05 +4.374283452560301e-05 +4.3405308622584454e-05 +4.2965148705930314e-05 +4.2410213357279275e-05 +4.1735038172905727e-05 +4.096090993775145e-05 +4.0082842691893886e-05 +3.908250411620862e-05 +3.7981488331181076e-05 +3.679028522341711e-05 +3.5472563630254084e-05 +3.990240493821451e-05 +3.980899851731015e-05 +3.959594648932275e-05 +3.927938407767974e-05 +3.886694635758887e-05 +3.834803370762759e-05 +3.771672790916935e-05 +3.6994138733089787e-05 +3.617583270392564e-05 +3.5245928420614794e-05 +3.4221118688120445e-05 +3.311587543308019e-05 +3.189688590523669e-05 +3.5977674701640015e-05 +3.589070188761159e-05 +3.569223937808408e-05 +3.53983636756882e-05 +3.501584203026479e-05 +3.4533091185581685e-05 +3.39486678316179e-05 +3.3277901137181056e-05 +3.252304174089359e-05 +3.1660881407537944e-05 +3.071572194945118e-05 +2.9700024325308048e-05 +2.8580151850380652e-05 +3.2307034347418844e-05 +3.22264019593007e-05 +3.2042503369265794e-05 +3.177042894929976e-05 +3.141991752086628e-05 +3.0974505971227635e-05 +3.043531166468196e-05 +2.9819700720571465e-05 +2.9125310009003006e-05 +2.833395229192022e-05 +2.7470457359999905e-05 +2.654051157963028e-05 +2.55182826728214e-05 +2.889455603093205e-05 +2.882110393182618e-05 +2.8652373586735314e-05 +2.840208747881859e-05 +2.8080082318076372e-05 +2.7674480501659037e-05 +2.718053215674043e-05 +2.6618862277612924e-05 +2.5984683688818084e-05 +2.5265632538708545e-05 +2.4477389787721993e-05 +2.3633824819310328e-05 +2.2707761620605794e-05 +2.5738608185596763e-05 +2.5671615921214203e-05 +2.551883497007208e-05 +2.5292509125700577e-05 +2.4999141952837864e-05 +2.4629399695689104e-05 +2.418268619094757e-05 +2.3672362137363885e-05 +2.3098304166555747e-05 +2.2446219351711306e-05 +2.1736025077700814e-05 +2.0973098274246424e-05 +2.0139514560772787e-05 +2.2838735984511037e-05 +2.277817417784299e-05 +2.2640110354664236e-05 +2.243411789758439e-05 +2.2169465747092288e-05 +2.1837078966475175e-05 +2.1433821312392943e-05 +2.0973575430882184e-05 +2.045783868162822e-05 +1.9871159325475413e-05 +1.9234481713126266e-05 +1.85502219364713e-05 +1.780310395054683e-05 +2.018539238612171e-05 +2.0130753256023737e-05 +2.0006129168748117e-05 +1.9821913951508227e-05 +1.9585296543368694e-05 +1.928771559790005e-05 +1.8925874017739614e-05 +1.8514522220176196e-05 +1.805346141044283e-05 +1.7529631142796267e-05 +1.6960760409950888e-05 +1.6352104375482695e-05 +1.5687307460853378e-05 +1.7768832840554988e-05 +1.7720380376655913e-05 +1.760956733655894e-05 +1.744571575182561e-05 +1.723499940334026e-05 +1.6970105452863572e-05 +1.664832942658604e-05 +1.6283297334934414e-05 +1.587305990133648e-05 +1.5409012634166833e-05 +1.4905137382763352e-05 +1.4366143360901778e-05 +1.3779234827274608e-05 +1.5578548005060864e-05 +1.5535579026647873e-05 +1.5437658474993435e-05 +1.5292726276290626e-05 +1.5106509498652534e-05 +1.4872665811857131e-05 +1.45883977589592e-05 +1.4265961929317497e-05 +1.3904556571865335e-05 +1.3496396261846038e-05 +1.3051089866849447e-05 +1.257846514140904e-05 +1.206128732389502e-05 +1.36009400565e-05 +1.3563231802616216e-05 +1.3477381248895047e-05 +1.3350238177472132e-05 +1.318621543555952e-05 +1.2980366502964136e-05 +1.2732137867772392e-05 +1.2450184087205953e-05 +1.2132862283906745e-05 +1.1774747467690002e-05 +1.1387268244974228e-05 +1.0972754733592869e-05 +1.05219517289247e-05 +1.1820405734335952e-05 +1.1787603927373758e-05 +1.1712979684078191e-05 +1.1602543843002992e-05 +1.1460421615307766e-05 +1.1281203515916248e-05 +1.106420534917017e-05 +1.081860261593474e-05 +1.0543172577082887e-05 +1.023227647997299e-05 +9.895078076827417e-06 +9.536067636648066e-06 +9.144548408043995e-06 +1.0223944759392672e-05 +1.0195617671065594e-05 +1.0130876828386936e-05 +1.0035179999365034e-05 +9.911824082474729e-06 +9.757145052424846e-06 +9.570392590591277e-06 +9.358290168890981e-06 +9.120189190145176e-06 +8.852216075904562e-06 +8.561271082740875e-06 +8.251402395672789e-06 +7.914214235173088e-06 +8.794327859998247e-06 +8.770117439734587e-06 +8.714765759020607e-06 +8.63270320335939e-06 +8.527210041753331e-06 +8.394709859839996e-06 +8.234335973195405e-06 +8.052003245721683e-06 +7.848170850081671e-06 +7.618996214740478e-06 +7.369295722172414e-06 +7.1045869243074155e-06 +6.815499007695037e-06 +7.517030195243156e-06 +7.496441324544258e-06 +7.449330360965667e-06 +7.379402982252919e-06 +7.289302654301239e-06 +7.176631511610688e-06 +7.040095536168852e-06 +6.885504099595028e-06 +6.712326934998802e-06 +6.516860123218161e-06 +6.305291025855827e-06 +6.07921237223839e-06 +5.8341271149678136e-06 +6.374223260228094e-06 +6.356945208082296e-06 +6.3173137660208275e-06 +6.258714599339617e-06 +6.182682843440419e-06 +6.087534340023986e-06 +5.972455606951203e-06 +5.842372602054427e-06 +5.6963669809082305e-06 +5.531474991793659e-06 +5.352946269390828e-06 +5.162026963379821e-06 +4.954794672132728e-06 +5.3513218098211905e-06 +5.336800060078203e-06 +5.303485806499256e-06 +5.254465394683411e-06 +5.191270180883338e-06 +5.111881539104896e-06 +5.016276643832871e-06 +4.9074281251995365e-06 +4.785785191864545e-06 +4.6488865335357516e-06 +4.500123278339897e-06 +4.3410534575694855e-06 +4.168461024166286e-06 +4.434017207484385e-06 +4.42211918670256e-06 +4.394804827052612e-06 +4.354571294447885e-06 +4.3028861311257095e-06 +4.237919994601401e-06 +4.159457765120137e-06 +4.070539674809356e-06 +3.971363644839885e-06 +3.85908457075031e-06 +3.7388415687045956e-06 +3.6116935772727416e-06 +3.4736823965406518e-06 +3.617145213025683e-06 +3.6078411352809806e-06 +3.5865813101730677e-06 +3.5550195738030944e-06 +3.5146678654516797e-06 +3.4639361664641127e-06 +3.4025568587537685e-06 +3.3335833275240215e-06 +3.2567622407747693e-06 +3.1708662064290527e-06 +3.0774158414104914e-06 +2.978536936851057e-06 +2.8712222801748103e-06 +2.9086353393597484e-06 +2.9016162662691056e-06 +2.885573621073857e-06 +2.8619838446698965e-06 +2.83157380918542e-06 +2.7934457333474444e-06 +2.7474349421847668e-06 +2.6953885363825243e-06 +2.6370492211849946e-06 +2.57189317240939e-06 +2.501397848487564e-06 +2.4280576409754933e-06 +2.3483965723446697e-06 +2.295673915945824e-06 +2.2906783143809385e-06 +2.279380515708412e-06 +2.2625806107597703e-06 +2.2411364989246407e-06 +2.2142289775157574e-06 +2.1816198389443805e-06 +2.1448169578085927e-06 +2.1037405616299693e-06 +2.057279581370857e-06 +2.0065568019670028e-06 +1.953512468028516e-06 +1.894988576589433e-06 +1.7632335909782883e-06 +1.7599120803836272e-06 +1.7524002999623477e-06 +1.740980111137532e-06 +1.726737473629044e-06 +1.7085629091258886e-06 +1.6856152392745381e-06 +1.6591747130778743e-06 +1.6300717862624597e-06 +1.5967473228786711e-06 +1.5611937321837995e-06 +1.5238475883241089e-06 +1.4831693403172905e-06 +1.26988832822101e-06 +1.2678479946231132e-06 +1.2633585020959602e-06 +1.256540231019199e-06 +1.247903098800015e-06 +1.2371192584699366e-06 +1.2240941510910704e-06 +1.2089978801195825e-06 +1.1926387893797459e-06 +1.1740943805211115e-06 +1.1542856717357624e-06 +1.1324883037128242e-06 +1.1095870587286933e-06 +8.28653468716964e-07 +8.279603603663586e-07 +8.264246355235441e-07 +8.241013462022051e-07 +8.210750446301473e-07 +8.172838684441459e-07 +8.130660081712723e-07 +8.078120443306696e-07 +8.021679780316867e-07 +7.960389750701834e-07 +7.892307782382705e-07 +7.815355451363212e-07 +7.739659048007753e-07 +7.155282039053831e-05 +7.332833576180649e-05 +7.488495984488532e-05 +7.628574079894327e-05 +7.752659797475866e-05 +7.858698276449651e-05 +7.950499578274754e-05 +8.029230603041546e-05 +8.092306025235372e-05 +8.142161993017966e-05 +8.17990861668916e-05 +8.204976329123432e-05 +8.216008650059956e-05 +6.662265614435886e-05 +6.840663982441306e-05 +6.998357486551757e-05 +7.141082851398495e-05 +7.268128879846919e-05 +7.37722892718564e-05 +7.471975365210152e-05 +7.553938361793016e-05 +7.619802876201154e-05 +7.671887373677264e-05 +7.71134304115987e-05 +7.737864221534005e-05 +7.7494525489519e-05 +6.170715380994175e-05 +6.347633810485355e-05 +6.504574362246497e-05 +6.647163480228453e-05 +6.774707605349213e-05 +6.88454772655967e-05 +6.980215298343333e-05 +7.063318778567472e-05 +7.130556007098893e-05 +7.18361784894642e-05 +7.223936148092349e-05 +7.251194261203016e-05 +7.26315590529531e-05 +5.6882061873304774e-05 +5.860637516508116e-05 +6.014088611986191e-05 +6.154319522638788e-05 +6.280414571122483e-05 +6.389742238937338e-05 +6.484908672024394e-05 +6.567332953872593e-05 +6.635021030684621e-05 +6.687584013293657e-05 +6.728263787482754e-05 +6.755808603710677e-05 +6.767872510219745e-05 +5.218870877541519e-05 +5.3853858191081744e-05 +5.534220548786369e-05 +5.670488278490915e-05 +5.793275449080088e-05 +5.899830790859296e-05 +5.993504625131085e-05 +6.074506898662685e-05 +6.140756068675256e-05 +6.192758695740891e-05 +6.233245192324889e-05 +6.260151047032476e-05 +6.271826428008907e-05 +4.7677477248340535e-05 +4.926642748044975e-05 +5.069190813304013e-05 +5.200216308236476e-05 +5.318719753215141e-05 +5.421871206618248e-05 +5.5120808414735606e-05 +5.5908836419596786e-05 +5.655125888131743e-05 +5.706045406144946e-05 +5.744933798378118e-05 +5.771168824236667e-05 +5.782681331497926e-05 +4.337438905760896e-05 +4.487930943206676e-05 +4.623333706346207e-05 +4.7480847031790315e-05 +4.861029198104408e-05 +4.959345434228078e-05 +5.046083414793392e-05 +5.121591231528685e-05 +5.1834107897002793e-05 +5.232086255739805e-05 +5.269918839795158e-05 +5.295334420829378e-05 +5.30632042507164e-05 +3.9301504335342676e-05 +4.071539789861818e-05 +4.198991488003624e-05 +4.316621362156358e-05 +4.423296257712234e-05 +4.5166359745053985e-05 +4.59904173368501e-05 +4.670560388580591e-05 +4.729630872660713e-05 +4.7759491625062344e-05 +4.8117348338894906e-05 +4.835956093628749e-05 +4.846568093037154e-05 +3.5472563455716135e-05 +3.679028471020277e-05 +3.7981487478338506e-05 +3.908250294184308e-05 +4.008284121622582e-05 +4.096090817822539e-05 +4.1735036101985455e-05 +4.241037632665606e-05 +4.296514609147567e-05 +4.3405450412943354e-05 +4.3742686958758855e-05 +4.3970523372114406e-05 +4.407030327146854e-05 +3.189688571946756e-05 +3.3115874884930965e-05 +3.422111779165143e-05 +3.5245927165892387e-05 +3.617583112617937e-05 +3.699389610786882e-05 +3.771693653059953e-05 +3.834803122123353e-05 +3.886709734610454e-05 +3.927932920164406e-05 +3.959614952965621e-05 +3.9809046839665404e-05 +3.990220867370765e-05 +2.858060459219284e-05 +2.9700023743909376e-05 +3.071572099511362e-05 +3.166055764460366e-05 +3.2523040064212554e-05 +3.327789913061942e-05 +3.394866549494082e-05 +3.4532981434607765e-05 +3.5016057402249e-05 +3.539814251293048e-05 +3.569229076737805e-05 +3.589064702479372e-05 +3.5977948327295683e-05 +2.5518282467354068e-05 +2.654051096868563e-05 +2.7470456351721412e-05 +2.8333950903504932e-05 +2.912530825967319e-05 +2.9819698596944806e-05 +3.0435309207723034e-05 +3.097455993599654e-05 +3.142002936953745e-05 +3.177065625848155e-05 +3.20424412675886e-05 +3.222657423530664e-05 +3.230691199243636e-05 +2.270776140642715e-05 +2.363382418098808e-05 +2.4477388740939056e-05 +2.5265631082282985e-05 +2.5984681844812413e-05 +2.6618860065224543e-05 +2.718023667590694e-05 +2.7674596213905428e-05 +2.8079958766726513e-05 +2.8401961828084214e-05 +2.8652677273456006e-05 +2.8820976801264167e-05 +2.8894489807996176e-05 +2.013951433715106e-05 +2.0973097612845013e-05 +2.173602399333875e-05 +2.2446217836076046e-05 +2.309830225550803e-05 +2.3672359813721278e-05 +2.4182622711429757e-05 +2.4629458625204438e-05 +2.499932721281304e-05 +2.529237879793251e-05 +2.5518958834955554e-05 +2.567186868284063e-05 +2.5738667964015137e-05 +1.780310372077882e-05 +1.8549675765701855e-05 +1.923406416711179e-05 +1.9871157759206787e-05 +2.045783669487544e-05 +2.0973634950767085e-05 +2.1433627992442258e-05 +2.18370757831313e-05 +2.2169462169778408e-05 +2.2434047606286123e-05 +2.264023904280502e-05 +2.2778102561756205e-05 +2.2838731022160296e-05 +1.568784286543882e-05 +1.6352103673141546e-05 +1.696075924496267e-05 +1.752962952958146e-05 +1.8053459350811753e-05 +1.8514711265245017e-05 +1.892627476817587e-05 +1.9287646091478177e-05 +1.9585292851166446e-05 +1.982184142559053e-05 +2.000657689263172e-05 +2.013081816988229e-05 +2.018580719513562e-05 +1.377923458664221e-05 +1.4366142638725122e-05 +1.4905136195015149e-05 +1.540901097653024e-05 +1.5873057787318484e-05 +1.628316346518337e-05 +1.664852842063542e-05 +1.6970033407546872e-05 +1.723546799938792e-05 +1.7445852343517556e-05 +1.7609386985253657e-05 +1.7720734015837525e-05 +1.7768612326813288e-05 +1.2061287076944666e-05 +1.2578464409358175e-05 +1.3051088647939098e-05 +1.3495983586128545e-05 +1.3904489269296943e-05 +1.4266228351466476e-05 +1.4588050446945634e-05 +1.48730117369639e-05 +1.510671925191419e-05 +1.529286646013892e-05 +1.543772682483344e-05 +1.5535794748446506e-05 +1.557834424798776e-05 +1.05219514779552e-05 +1.097275398325798e-05 +1.138680778960151e-05 +1.1774745742663146e-05 +1.2132593049633787e-05 +1.2450043954807431e-05 +1.273213475541807e-05 +1.29806494583509e-05 +1.3186065432974603e-05 +1.3350455280857356e-05 +1.3477376433631806e-05 +1.3563370478797397e-05 +1.3600858984353203e-05 +9.144548153208423e-06 +9.536066877546524e-06 +9.894612724431807e-06 +1.023227472076279e-05 +1.0543034829321761e-05 +1.0818739322025645e-05 +1.1063916336925095e-05 +1.1281272999207329e-05 +1.1460195791798944e-05 +1.1602764480636203e-05 +1.1712974789909018e-05 +1.1787675082912471e-05 +1.1820630065051107e-05 +7.914213976717015e-06 +8.252015691537823e-06 +8.561269802557359e-06 +8.852214296597165e-06 +9.120255634421376e-06 +9.358074591706024e-06 +9.570389367926524e-06 +9.756919101055388e-06 +9.912030574720492e-06 +1.0035010781386034e-05 +1.0130639870930084e-05 +1.0195768074150253e-05 +1.0224251721367616e-05 +6.81549874558802e-06 +7.104586142366453e-06 +7.369943444792301e-06 +7.618994414007068e-06 +7.848238159328257e-06 +8.051856703314788e-06 +8.234111113850511e-06 +8.394556065965805e-06 +8.526900004018222e-06 +8.632931407125978e-06 +8.715073324203953e-06 +8.77042691344224e-06 +8.794322026676398e-06 +5.833562236113122e-06 +6.079211576637702e-06 +6.305289714010449e-06 +6.516416772418497e-06 +6.712112966148675e-06 +6.885510186333077e-06 +7.0402418687995845e-06 +7.176627717080085e-06 +7.289143112808614e-06 +7.379240652056881e-06 +7.449643987206348e-06 +7.496674702106351e-06 +7.517104217331853e-06 +4.954794401455448e-06 +5.162026155371125e-06 +5.352944925441999e-06 +5.531473135030788e-06 +5.69636460444851e-06 +5.842369714275741e-06 +5.9723008238202046e-06 +6.0878403397770954e-06 +6.183293666237031e-06 +6.259110459784639e-06 +6.3173085840798865e-06 +6.35718233763041e-06 +6.374460885757916e-06 +4.1690772006659076e-06 +4.341052636707382e-06 +4.500121913122729e-06 +4.648884649448256e-06 +4.785491796357645e-06 +4.907575380676607e-06 +5.016427538245266e-06 +5.111484496501137e-06 +5.191185660956855e-06 +5.254216548349216e-06 +5.303644974053711e-06 +5.336711482992162e-06 +5.351398820173603e-06 +3.4736821249464744e-06 +3.611692763247309e-06 +3.7388402149166494e-06 +3.859542595616897e-06 +3.971508664613085e-06 +4.070156153503959e-06 +4.1591414348313305e-06 +4.238235347084042e-06 +4.302637607265815e-06 +4.354401206305704e-06 +4.39521692969978e-06 +4.4218610223159605e-06 +4.434179821677031e-06 +2.8712220128795043e-06 +2.9785361322930054e-06 +3.0774145034744784e-06 +3.170864339801704e-06 +3.2564717379183967e-06 +3.3340265332152973e-06 +3.4028627611967776e-06 +3.463932222902453e-06 +3.514905356618469e-06 +3.554687276870169e-06 +3.5865759693975118e-06 +3.6080854905430065e-06 +3.617390078121478e-06 +2.3483963121777537e-06 +2.428056861286181e-06 +2.5013965519458425e-06 +2.5718913132210748e-06 +2.6369033943646184e-06 +2.695533719009661e-06 +2.7475076303239726e-06 +2.7936753881301035e-06 +2.8317281076473593e-06 +2.8618985134457584e-06 +2.8855683670839715e-06 +2.901446556965773e-06 +2.9083574177086184e-06 +1.894988315172135e-06 +1.953511684621584e-06 +2.0065554993013515e-06 +2.057277764116917e-06 +2.1033877820524665e-06 +2.144598051209472e-06 +2.181986631821828e-06 +2.2139222593865474e-06 +2.241209439046033e-06 +2.262587500496008e-06 +2.2792169855283785e-06 +2.290592999048219e-06 +2.295748089275285e-06 +1.4825502040629466e-06 +1.5238467607173542e-06 +1.5611923560736436e-06 +1.5967454032250475e-06 +1.630291408887234e-06 +1.6591717291209893e-06 +1.6852078797784077e-06 +1.7085589041719028e-06 +1.726965776733492e-06 +1.7409754074338992e-06 +1.7523951653776184e-06 +1.7602271210169588e-06 +1.7636055399881455e-06 +1.1095867814058653e-06 +1.132487472726318e-06 +1.1542842900754135e-06 +1.1740924531886405e-06 +1.1928592546981276e-06 +1.2093684235493158e-06 +1.2240118153545617e-06 +1.2371152378964515e-06 +1.2477342213454656e-06 +1.2568689102161178e-06 +1.2635217501955657e-06 +1.2676721796537715e-06 +1.2700525895603756e-06 +7.733356565351741e-07 +7.809462512954759e-07 +7.892292895906459e-07 +7.960368985449844e-07 +8.020052201990502e-07 +8.08056708477687e-07 +8.125527668874305e-07 +8.172795370752908e-07 +8.211587136758162e-07 +8.242756909191805e-07 +8.258736159744827e-07 +8.283201398249103e-07 +8.284629591815282e-07 +8.216008636456529e-05 +8.20497628840396e-05 +8.179908549166939e-05 +8.142157462784758e-05 +8.092305899916743e-05 +8.029230444555322e-05 +7.950499392225154e-05 +7.85869805723194e-05 +7.752659542683547e-05 +7.628573788809345e-05 +7.488495654533842e-05 +7.332833208714675e-05 +7.155281621509175e-05 +7.749452532872265e-05 +7.737864173398614e-05 +7.711342960743974e-05 +7.671887257938446e-05 +7.619802728656724e-05 +7.553938179259207e-05 +7.471975147165462e-05 +7.37722867033681e-05 +7.268128582998515e-05 +7.141082513545849e-05 +6.998357105163101e-05 +6.840663558988557e-05 +6.66226514889522e-05 +7.263155886642572e-05 +7.251194205082457e-05 +7.223936054936202e-05 +7.183617719323282e-05 +7.130555835617723e-05 +7.06331857109104e-05 +6.980215047277253e-05 +6.884560722526715e-05 +6.77470726669691e-05 +6.647163103500642e-05 +6.504573932610991e-05 +6.347633329215318e-05 +6.170714853114761e-05 +6.76787248901397e-05 +6.75580853969128e-05 +6.72826368119397e-05 +6.687590529792564e-05 +6.63502083580441e-05 +6.567332717619914e-05 +6.48490838699997e-05 +6.389741914241537e-05 +6.280414196933164e-05 +6.154319098248016e-05 +6.0140881371768256e-05 +5.860613236132832e-05 +5.6882055951667956e-05 +6.271826404644712e-05 +6.260150977048966e-05 +6.233245072525596e-05 +6.192758528891974e-05 +6.140755855694511e-05 +6.074506632877669e-05 +5.993490314985388e-05 +5.899830426024324e-05 +5.793275029497053e-05 +5.67048780360623e-05 +5.5342200183201165e-05 +5.385385233025448e-05 +5.2188702361279206e-05 +5.782681305358928e-05 +5.771168745950095e-05 +5.7449336683474725e-05 +5.706045223475317e-05 +5.6551256503086106e-05 +5.590883352760511e-05 +5.512080494878856e-05 +5.421870807305479e-05 +5.3187192985445804e-05 +5.2002157946762e-05 +5.069190240267278e-05 +4.9266706232778854e-05 +4.767747030238974e-05 +5.3063191188723534e-05 +5.295334335853522e-05 +5.2699251924008216e-05 +5.2320860548093844e-05 +5.183410532125635e-05 +5.1215909122057044e-05 +5.0460830404168044e-05 +4.9593449968283294e-05 +4.861028696439023e-05 +4.7480841479610045e-05 +4.623333087314621e-05 +4.487961016394759e-05 +4.337438153406822e-05 +4.846568061895492e-05 +4.835956000341642e-05 +4.8117346789120614e-05 +4.7759489464543394e-05 +4.7296305924620606e-05 +4.670560045720343e-05 +4.599041324937717e-05 +4.516635505224293e-05 +4.423295719936911e-05 +4.316620755421242e-05 +4.1989908238518784e-05 +4.0715390601956445e-05 +3.930149625690464e-05 +4.407030293808093e-05 +4.3970522373421016e-05 +4.374268529905182e-05 +4.340534254729826e-05 +4.296514306701943e-05 +4.241037265690909e-05 +4.173503170774783e-05 +4.096090316080622e-05 +4.008283547136026e-05 +3.9082496467307304e-05 +3.7981480307711526e-05 +3.6790276944373906e-05 +3.547255496085746e-05 +3.990219229580812e-05 +3.980904577416286e-05 +3.959614775653085e-05 +3.92793266919865e-05 +3.886709412221842e-05 +3.834820347755175e-05 +3.771693184973373e-05 +3.699389076300729e-05 +3.61758250108402e-05 +3.524592028003451e-05 +3.4221110290441354e-05 +3.311586663271525e-05 +3.189687672673977e-05 +3.597794794905319e-05 +3.589064589164372e-05 +3.5692288884084646e-05 +3.539813987919311e-05 +3.501605397677063e-05 +3.4532977277697136e-05 +3.394866057341783e-05 +3.32778934530115e-05 +3.252303358972529e-05 +3.166055048565316e-05 +3.0715713042454135e-05 +2.970001502897711e-05 +2.8580595110217057e-05 +3.230691159149521e-05 +3.222657303413631e-05 +3.20424392711034e-05 +3.1770653475213803e-05 +3.142002576850462e-05 +3.097455553642889e-05 +3.0435304047945386e-05 +2.981969260649035e-05 +2.9125301526416347e-05 +2.833394333928592e-05 +2.747044797913951e-05 +2.6540501845049186e-05 +2.5518272607202967e-05 +2.8894489389652614e-05 +2.882097554792321e-05 +2.8652580500563576e-05 +2.8402091244633902e-05 +2.8079955006768958e-05 +2.7674591624016006e-05 +2.7180231239478914e-05 +2.66188538408382e-05 +2.5984674766701025e-05 +2.526562317051901e-05 +2.447738007501983e-05 +2.3633814679205216e-05 +2.2707751163623047e-05 +2.5738667526858292e-05 +2.567186737313667e-05 +2.551885833789516e-05 +2.5292375754583076e-05 +2.499932328525668e-05 +2.4629453834468003e-05 +2.4182617077303433e-05 +2.3672353291190356e-05 +2.3098294937633244e-05 +2.2446209623271237e-05 +2.1736015039822804e-05 +2.09730877948116e-05 +2.013950367445329e-05 +2.2838730567381412e-05 +2.2778101199235177e-05 +2.2640236778008997e-05 +2.2434044419928607e-05 +2.2169458094456957e-05 +2.1837070836845634e-05 +2.143362211293596e-05 +2.0973628214788408e-05 +2.0457829102828816e-05 +1.9871149290387815e-05 +1.923405492187739e-05 +1.8549665647680657e-05 +1.780309279335225e-05 +2.0185806722229038e-05 +2.0130880572891523e-05 +2.0006574537396338e-05 +1.9821838141621193e-05 +1.958528865118159e-05 +1.928764098670335e-05 +1.8925995975623405e-05 +1.8514704326705234e-05 +1.8053805366560915e-05 +1.7529620823221506e-05 +1.696074966634784e-05 +1.635209329404416e-05 +1.56878316619737e-05 +1.7768611842592995e-05 +1.772073256009747e-05 +1.7609275568981835e-05 +1.744584896895268e-05 +1.7235269019654772e-05 +1.69700281211009e-05 +1.664852219774478e-05 +1.6283156334671367e-05 +1.5873049735930237e-05 +1.5409002045092266e-05 +1.490512644600624e-05 +1.4366131985981773e-05 +1.3779223190338347e-05 +1.5578321409135816e-05 +1.5535793255743684e-05 +1.54377243434564e-05 +1.529286299967981e-05 +1.510671482279647e-05 +1.4873006358588774e-05 +1.4588330507545348e-05 +1.4266221051826824e-05 +1.3904481082490303e-05 +1.3495974461755217e-05 +1.305107865808235e-05 +1.2578453627979698e-05 +1.2061275401665074e-05 +1.3600858475597052e-05 +1.356330029570286e-05 +1.347737389961905e-05 +1.3350451746883488e-05 +1.3186060896237247e-05 +1.2980643948988516e-05 +1.273212829662945e-05 +1.2450036500123783e-05 +1.2132584665245305e-05 +1.1774736472858937e-05 +1.1386797594453607e-05 +1.0972742947806408e-05 +1.0521939630234673e-05 +1.1820629548799873e-05 +1.1787673534811516e-05 +1.1712972216322631e-05 +1.1602599223851152e-05 +1.1460191200513903e-05 +1.1281267378322475e-05 +1.106390974485226e-05 +1.081873176455821e-05 +1.0543026323591162e-05 +1.0232265277445077e-05 +9.894602420888548e-06 +9.536055726690103e-06 +9.144536138275974e-06 +1.0224251195184212e-05 +1.01957664975679e-05 +1.0130637249943099e-05 +1.0035007125890626e-05 +9.91202589858354e-06 +9.75691340888504e-06 +9.570382691952636e-06 +9.358066904622378e-06 +9.120247010874382e-06 +8.852204754458528e-06 +8.56125934648645e-06 +8.25200431853153e-06 +7.914201805138958e-06 +8.794321495115922e-06 +8.770425320794186e-06 +8.715070676439155e-06 +8.632927698604669e-06 +8.526895259903074e-06 +8.39455030407028e-06 +8.234104306608699e-06 +8.05184891814231e-06 +7.848229426377839e-06 +7.618984764940125e-06 +7.369932829206796e-06 +7.104574678656844e-06 +6.815486414259183e-06 +7.517103679940554e-06 +7.496673091966889e-06 +7.449641288426397e-06 +7.379236887949813e-06 +7.289355191475198e-06 +7.176621868473624e-06 +7.040234974147816e-06 +6.885502300876832e-06 +6.712104119271318e-06 +6.516848490144236e-06 +6.305279016836e-06 +6.079199922172477e-06 +5.833549700877761e-06 +6.37446033993911e-06 +6.35718070225736e-06 +6.317305865218567e-06 +6.259106634098433e-06 +6.183068324360783e-06 +6.087834395187075e-06 +5.972293851011447e-06 +5.842361700156313e-06 +5.696355612849388e-06 +5.531463199253241e-06 +5.352933973707315e-06 +5.162014327519425e-06 +4.954781687351548e-06 +5.351398261515506e-06 +5.336709809058932e-06 +5.30376754167964e-06 +5.25421266669447e-06 +5.191180694999983e-06 +5.111478464676089e-06 +5.0164204329101085e-06 +4.90756725370663e-06 +4.7854826778225265e-06 +4.648874573040167e-06 +4.500110794620737e-06 +4.340499743714838e-06 +4.169064315106569e-06 +4.434179254613762e-06 +4.4218593232211534e-06 +4.395214104870948e-06 +4.354397266204524e-06 +4.3026325664757435e-06 +4.238229224230794e-06 +4.1591342350457376e-06 +4.070147918291313e-06 +3.9714994243536265e-06 +3.859532384390484e-06 +3.7388291951581557e-06 +3.6116808610304174e-06 +3.4736693840235647e-06 +3.6173895162043043e-06 +3.60800796911135e-06 +3.58657317013364e-06 +3.554683372359816e-06 +3.5149003612831033e-06 +3.4639261551645862e-06 +3.4028556433965446e-06 +3.3336562037045243e-06 +3.256462712772718e-06 +3.170854365995647e-06 +3.0774036176480453e-06 +2.9785243744072107e-06 +2.8712094797413054e-06 +2.9083568650498823e-06 +2.901444901077792e-06 +2.8855656140236495e-06 +2.8618946733765097e-06 +2.83172319467613e-06 +2.79366942033055e-06 +2.747500629653852e-06 +2.695525711185934e-06 +2.636894408795469e-06 +2.571881382908445e-06 +2.501386007180434e-06 +2.4280454714482267e-06 +2.348384119016841e-06 +2.295747551732795e-06 +2.2905913883712785e-06 +2.2792143076469943e-06 +2.2625837652399107e-06 +2.241204660102519e-06 +2.21391645431791e-06 +2.1819798219265024e-06 +2.1445902614748898e-06 +2.103379002305896e-06 +2.057268061040487e-06 +2.0065449084523893e-06 +1.95350024473699e-06 +1.8949760681332697e-06 +1.7636050001360628e-06 +1.760225503481756e-06 +1.7523924760860456e-06 +1.7409716562113068e-06 +1.7269609773636032e-06 +1.7085527470509343e-06 +1.6852006567693257e-06 +1.6591634666990867e-06 +1.630282137292268e-06 +1.5967351563882515e-06 +1.561181171475005e-06 +1.5238346792398726e-06 +1.4825372699096428e-06 +1.2700520173401924e-06 +1.2676704650904975e-06 +1.2635188995768124e-06 +1.256864933949833e-06 +1.2477291339956915e-06 +1.2371090580548822e-06 +1.224004565624771e-06 +1.209360130442424e-06 +1.192849948498199e-06 +1.1740821679179234e-06 +1.1542730633402742e-06 +1.132475345538975e-06 +1.1095737980589801e-06 +8.284623428794791e-07 +8.283182931250836e-07 +8.258705456327719e-07 +8.242714081736063e-07 +8.211532341155129e-07 +8.172728807421335e-07 +8.125449581190024e-07 +8.080477757216758e-07 +8.019951961057441e-07 +7.960258196966213e-07 +7.89217196431316e-07 +7.80933187967149e-07 +7.733216707149019e-07 +7.155261787864452e-05 +7.332833166646968e-05 +7.488495586201459e-05 +7.628573696515224e-05 +7.752659427859311e-05 +7.858697921831305e-05 +7.950499237223746e-05 +8.029230266505516e-05 +8.092305707048462e-05 +8.142161679429738e-05 +8.179889795418896e-05 +8.204976042534034e-05 +8.216008371626215e-05 +6.662265132020473e-05 +6.840663509356707e-05 +6.998357024388405e-05 +7.141082404088357e-05 +7.268128446413782e-05 +7.377228508504215e-05 +7.471974962010049e-05 +7.553937970412445e-05 +7.61978001316696e-05 +7.671887000575893e-05 +7.711365045784304e-05 +7.737863878392464e-05 +7.749452215436966e-05 +6.170714833596567e-05 +6.347607655143514e-05 +6.504548139820435e-05 +6.647162979355679e-05 +6.774707108308294e-05 +6.88454724262709e-05 +6.980214830864487e-05 +7.063292478347373e-05 +7.130555563369435e-05 +7.183617427319032e-05 +7.22393573436236e-05 +7.251193857094936e-05 +7.263155514337765e-05 +5.688205572918642e-05 +5.860613172211143e-05 +6.0140880333554945e-05 +6.154347789812032e-05 +6.280414019615586e-05 +6.389741703816124e-05 +6.484908138357669e-05 +6.567343081513941e-05 +6.63502052300722e-05 +6.687590192994765e-05 +6.728263311797195e-05 +6.755808138994774e-05 +6.767872062011437e-05 +5.218870211712549e-05 +5.385385161109417e-05 +5.5342199009757295e-05 +5.670487643192783e-05 +5.7932748285379284e-05 +5.8998301871660325e-05 +5.9935040405378656e-05 +6.074506317915199e-05 +6.140755510795855e-05 +6.192758145887964e-05 +6.233244652831775e-05 +6.260150535689748e-05 +6.271824878379251e-05 +4.767747003512138e-05 +4.926642036670497e-05 +5.0691901122854124e-05 +5.2002156196010696e-05 +5.318719078859446e-05 +5.4218705436735693e-05 +5.512080187110027e-05 +5.590883007417575e-05 +5.655125262364167e-05 +5.706044801233144e-05 +5.7449332097968054e-05 +5.7711682491442176e-05 +5.782680772146294e-05 +4.337438124195917e-05 +4.487960931040224e-05 +4.623295512954349e-05 +4.7480839572360655e-05 +4.8610284522700685e-05 +4.9593447060306666e-05 +5.0460827057598834e-05 +5.121590528456803e-05 +5.183410109406391e-05 +5.232085587680117e-05 +5.2699246809573496e-05 +5.295333793803588e-05 +5.3063198151437224e-05 +3.930149594086188e-05 +4.0715061026496016e-05 +4.198990673330646e-05 +4.316593217031067e-05 +4.423295456582692e-05 +4.5166351914006556e-05 +4.5990409575112356e-05 +4.670559631481994e-05 +4.729630130273729e-05 +4.775948441740986e-05 +4.811734126873479e-05 +4.8359512007828424e-05 +4.846567420909914e-05 +3.547255462637937e-05 +3.679027596086906e-05 +3.798147867335585e-05 +3.908249421679703e-05 +4.008283264344497e-05 +4.0960899788916045e-05 +4.173502773911304e-05 +4.241020290979835e-05 +4.296513805677643e-05 +4.340544257503995e-05 +4.374267936420576e-05 +4.397051595163313e-05 +4.407029605213482e-05 +3.1896876370738275e-05 +3.311630928297946e-05 +3.422110857248193e-05 +3.5245917875531805e-05 +3.6175821987305694e-05 +3.699412789898438e-05 +3.771671676899267e-05 +3.834802254521009e-05 +3.8867088762196926e-05 +3.927932078505161e-05 +3.9596141395337555e-05 +3.980903890148651e-05 +3.990218492730338e-05 +2.858059473308722e-05 +2.97000139148061e-05 +3.0715711213596974e-05 +3.166087042926011e-05 +3.252303037659596e-05 +3.327788960771087e-05 +3.394865609549684e-05 +3.453297219697579e-05 +3.501604826393148e-05 +3.539813366194581e-05 +3.5692282108768044e-05 +3.5890689602170625e-05 +3.5977384645412396e-05 +2.5518272213452803e-05 +2.6540500674257353e-05 +2.747044604691262e-05 +2.8333940678578998e-05 +2.9125298174065994e-05 +2.981968853685076e-05 +3.0435299339520726e-05 +3.097455014413e-05 +3.14200197469037e-05 +3.177064688836722e-05 +3.204243207125456e-05 +3.222656524822176e-05 +3.230690324752713e-05 +2.2707750753179335e-05 +2.3633813455947894e-05 +2.4477905903789276e-05 +2.5265620379478884e-05 +2.598467123291675e-05 +2.661884960109991e-05 +2.7180226266123338e-05 +2.767458598493635e-05 +2.8079948705032163e-05 +2.8401951920335944e-05 +2.8652667576294398e-05 +2.8820967407959125e-05 +2.8894480667448682e-05 +2.0139503245912473e-05 +2.097308652732654e-05 +2.1736012961792108e-05 +2.2446206718764402e-05 +2.309829127537268e-05 +2.367234883824845e-05 +2.4182611911888743e-05 +2.4629447936412664e-05 +2.4999316689676306e-05 +2.5292368523051987e-05 +2.5518948750585495e-05 +2.5671858852906673e-05 +2.5738658398257338e-05 +1.7803092353032576e-05 +1.8550209825848344e-05 +1.923446919506141e-05 +1.9871146288849486e-05 +2.0457825295489854e-05 +2.097362360706784e-05 +2.1433616712454125e-05 +2.1837064736403288e-05 +2.2169451239025773e-05 +2.243403683639868e-05 +2.2640228566673892e-05 +2.2778092322432835e-05 +2.2838721057717384e-05 +1.5687295568829995e-05 +1.635209194810328e-05 +1.6960747433807504e-05 +1.7529617731716942e-05 +1.8053447547311627e-05 +1.851469957231934e-05 +1.892599040472849e-05 +1.928763468100499e-05 +1.9585281575582244e-05 +1.9821830314754268e-05 +2.000645990135822e-05 +2.0130807510292688e-05 +2.0185096862356946e-05 +1.3778677806781233e-05 +1.4366130602028637e-05 +1.4905124169850631e-05 +1.5408998868459935e-05 +1.5873045684704685e-05 +1.6283151441472786e-05 +1.6648516464449533e-05 +1.6970021582143972e-05 +1.7235261729708212e-05 +1.744584091638299e-05 +1.7609266773455926e-05 +1.7720723053627022e-05 +1.7768601694884113e-05 +1.2061274928419083e-05 +1.2578452225104757e-05 +1.3051076322207512e-05 +1.349638219178476e-05 +1.3904476957518588e-05 +1.426621603609907e-05 +1.4588038222119712e-05 +1.4872999698119527e-05 +1.5106707343276929e-05 +1.5292854733391732e-05 +1.543771531531164e-05 +1.5535783498644415e-05 +1.55783110040886e-05 +1.0521939149286265e-05 +1.0972741509892089e-05 +1.1387254417253396e-05 +1.1774733167082788e-05 +1.2132580435702884e-05 +1.2450031372059082e-05 +1.273212233222986e-05 +1.298063711933634e-05 +1.3186053227508153e-05 +1.335044329710723e-05 +1.3477364671828223e-05 +1.3563290323538207e-05 +1.3600847795535772e-05 +9.144535649919764e-06 +9.536054271975846e-06 +9.895064097925212e-06 +1.0232261906161063e-05 +1.0543022028418288e-05 +1.0818726560691267e-05 +1.1063903651694853e-05 +1.1281260404180067e-05 +1.14601834329778e-05 +1.1602752302538348e-05 +1.1712962837319272e-05 +1.1787663399827269e-05 +1.1820618703817097e-05 +7.914201309843848e-06 +8.252002833293118e-06 +8.561256893190895e-06 +8.852201344659875e-06 +9.120242652270941e-06 +9.358061606952767e-06 +9.570376516157397e-06 +9.756906340782557e-06 +9.911807358071105e-06 +1.0035163022620954e-05 +1.0130627691715766e-05 +1.0195756169460884e-05 +1.0224240134968417e-05 +6.815485911967808e-06 +7.10457318017427e-06 +7.369930336346926e-06 +7.618981314081675e-06 +7.848225009001137e-06 +8.05184354885633e-06 +8.234098004883612e-06 +8.394543144471305e-06 +8.52688722260124e-06 +8.632918812654156e-06 +8.715061014950124e-06 +8.770414881571132e-06 +8.794310316354794e-06 +5.834113802032519e-06 +6.079198397513001e-06 +6.305276502864629e-06 +6.516844981883127e-06 +6.7120996411260024e-06 +6.885852035259963e-06 +7.040228587524133e-06 +7.176614596775894e-06 +7.289130134792132e-06 +7.3792278638866575e-06 +7.449631435763018e-06 +7.496662533105452e-06 +7.517092373433136e-06 +4.9547811686357235e-06 +5.162012779081707e-06 +5.352931398214145e-06 +5.531459641021702e-06 +5.696351058690601e-06 +5.84235616612547e-06 +5.972287388421401e-06 +6.087827000297235e-06 +6.183060023876557e-06 +6.2590974580572194e-06 +6.317295934739244e-06 +6.357169973202534e-06 +6.374448851542357e-06 +4.168447338033457e-06 +4.341039055212064e-06 +4.500108178369518e-06 +4.6488709624449625e-06 +4.785478056935636e-06 +4.90756163891105e-06 +5.016413844285432e-06 +5.112257208494086e-06 +5.191172269198296e-06 +5.254203352521763e-06 +5.303632022454617e-06 +5.33669882305737e-06 +5.351386498260988e-06 +3.4736688635508972e-06 +3.611679301063085e-06 +3.7388266008105208e-06 +3.859068788554747e-06 +3.9714947395893804e-06 +4.0701422261791744e-06 +4.159127556030631e-06 +4.238221601022069e-06 +4.30262401042285e-06 +4.354387808404474e-06 +4.39520377975654e-06 +4.421848168450457e-06 +4.434167310925858e-06 +2.8712089675066394e-06 +2.978522832583151e-06 +3.0774010536778253e-06 +3.1708507888599678e-06 +3.256458135194907e-06 +3.3332694151158165e-06 +3.4028490380061538e-06 +3.463918597870498e-06 +3.5148918795254085e-06 +3.5546739969793947e-06 +3.586562935270248e-06 +3.6080727498447946e-06 +3.617377677441208e-06 +2.348383620442002e-06 +2.428043977281065e-06 +2.501383522536318e-06 +2.5718778200291505e-06 +2.6368898496588604e-06 +2.695520172184908e-06 +2.747494130814653e-06 +2.7936619852221595e-06 +2.831714850298856e-06 +2.8618854500977095e-06 +2.8855555454729497e-06 +2.901434023963306e-06 +2.9083701111555636e-06 +1.8949755671630094e-06 +1.953498743445056e-06 +2.006542412072684e-06 +2.0572645785228428e-06 +2.1033745461590874e-06 +2.1445848716890016e-06 +2.181973498380273e-06 +2.2139092199672928e-06 +2.241196541263156e-06 +2.2624065471318554e-06 +2.2792045116680948e-06 +2.290580805930893e-06 +2.2957362214504545e-06 +1.4831556007175067e-06 +1.523833093245185e-06 +1.5611785343493804e-06 +1.5967314776351848e-06 +1.6302774302130762e-06 +1.6591577483557295e-06 +1.6855192862894516e-06 +1.7085450721060712e-06 +1.7269528219240147e-06 +1.7409626422089344e-06 +1.7523826363598548e-06 +1.7602148739539695e-06 +1.7636179348323763e-06 +1.1095732666071555e-06 +1.1324737530686958e-06 +1.1542704155784473e-06 +1.174078474449273e-06 +1.192845222704359e-06 +1.2089808503285048e-06 +1.223997830449584e-06 +1.2371013531781858e-06 +1.2477204874919362e-06 +1.256855377357433e-06 +1.2635084677365038e-06 +1.2676591960786072e-06 +1.2700399522718074e-06 +7.739510475495258e-07 +7.815198706170526e-07 +7.892143436412421e-07 +7.960218403218468e-07 +8.019901046414769e-07 +8.080415907379246e-07 +8.133867936668209e-07 +8.17264580268817e-07 +8.211439194020422e-07 +8.242611131738793e-07 +8.258593079478544e-07 +8.283061537388348e-07 +8.28449346081413e-07 +8.216008367351825e-05 +8.204976029739396e-05 +8.179889774202517e-05 +8.142157216673517e-05 +8.092305667671562e-05 +8.029230216706886e-05 +7.950499178764308e-05 +7.858697852949973e-05 +7.752659347799932e-05 +7.628573605052174e-05 +7.488495482524991e-05 +7.332833051183917e-05 +7.155261656666233e-05 +7.749452210384514e-05 +7.737863863267638e-05 +7.711365020516409e-05 +7.671886964209105e-05 +7.61977996680653e-05 +7.553937913057722e-05 +7.471974893497299e-05 +7.377228427798651e-05 +7.26812835313978e-05 +7.141082297930238e-05 +6.99833972600153e-05 +6.840663376301813e-05 +6.662264985740956e-05 +7.263155508476811e-05 +7.251193839461056e-05 +7.223935705091372e-05 +7.183623225045472e-05 +7.130563233314972e-05 +7.063292413155489e-05 +6.980214751975945e-05 +6.884547149908234e-05 +6.774707001898921e-05 +6.64716286098243e-05 +6.504548004823128e-05 +6.347607503921909e-05 +6.170714667729329e-05 +6.767872055348279e-05 +6.755808118878967e-05 +6.728263278399744e-05 +6.687590146503622e-05 +6.63502046177308e-05 +6.567332366013813e-05 +6.484920886845545e-05 +6.389741601792073e-05 +6.280413902039966e-05 +6.154347656462116e-05 +6.01408788416362e-05 +5.860613006509361e-05 +5.688205386852368e-05 +6.27182592345191e-05 +6.260150513699935e-05 +6.233244615189128e-05 +6.192758093461653e-05 +6.140755443874268e-05 +6.074518205862211e-05 +5.993503942878442e-05 +5.899830072529682e-05 +5.7932746966989524e-05 +5.670487493977255e-05 +5.53421973429567e-05 +5.385384976953867e-05 +5.218870010171267e-05 +5.782680763933049e-05 +5.7711682245454606e-05 +5.7449331689393276e-05 +5.706044743835744e-05 +5.6551251876367454e-05 +5.5908829165470734e-05 +5.512080078205027e-05 +5.421870418203804e-05 +5.318718935995473e-05 +5.2002154582331034e-05 +5.0691899322290973e-05 +4.92660795211685e-05 +4.7677467852604725e-05 +5.306318528400021e-05 +5.295333767102962e-05 +5.2699246356355635e-05 +5.232085524544914e-05 +5.1834100284727644e-05 +5.121590428120973e-05 +5.0460825881254215e-05 +4.959344568593427e-05 +4.861028294639652e-05 +4.748083782778647e-05 +4.6232953184461605e-05 +4.4879607164858194e-05 +4.3374378877955324e-05 +4.846567411124761e-05 +4.8359553733651985e-05 +4.811734078177363e-05 +4.7759483738543994e-05 +4.729630042231317e-05 +4.670559523750427e-05 +4.599040829077008e-05 +4.516635043945837e-05 +4.423295287606018e-05 +4.316620355015468e-05 +4.198990464644679e-05 +4.071538739067457e-05 +3.930149340250163e-05 +4.40702959473797e-05 +4.3970515637829446e-05 +4.3742678842702146e-05 +4.3405336316032466e-05 +4.296513710644918e-05 +4.241036705011987e-05 +4.1735026358380945e-05 +4.096089821237136e-05 +4.0082830838326245e-05 +3.908249218240557e-05 +3.798147642024261e-05 +3.67902735207349e-05 +3.5472551957173884e-05 +3.990218481552815e-05 +3.9809038566690366e-05 +3.959614083819626e-05 +3.927931999648141e-05 +3.8867087749205945e-05 +3.834802131625818e-05 +3.7716926134473225e-05 +3.6993885476561286e-05 +3.617582006577889e-05 +3.524591571189708e-05 +3.4221106215494485e-05 +3.311593499234844e-05 +3.1896873545095126e-05 +3.5977384526563495e-05 +3.5890638207343524e-05 +3.56922815170104e-05 +3.53982514627146e-05 +3.501604718759734e-05 +3.453297089081518e-05 +3.3948654549084144e-05 +3.3277887823725494e-05 +3.2523028342219705e-05 +3.166054572651052e-05 +3.071570871475817e-05 +2.9700011176450082e-05 +2.858059175371544e-05 +3.230690312154571e-05 +3.222656487079695e-05 +3.204243144393043e-05 +3.1770646013824855e-05 +3.142001861540787e-05 +3.09745487617231e-05 +3.0435297718245045e-05 +2.9819686654564602e-05 +2.9124992778220365e-05 +2.8333938301793476e-05 +2.747044341612813e-05 +2.6540497807480696e-05 +2.551826911525292e-05 +2.8894480535999137e-05 +2.882096701414151e-05 +2.865257224481512e-05 +2.840195099702001e-05 +2.807994752359987e-05 +2.7674584542727657e-05 +2.7180224557920138e-05 +2.6618847645308932e-05 +2.598466900887338e-05 +2.5265617893490005e-05 +2.4477903180829384e-05 +2.3633810470352203e-05 +2.2707747534744166e-05 +2.573865826089644e-05 +2.567185844137899e-05 +2.5518948064747336e-05 +2.5292367566788212e-05 +2.499931545558206e-05 +2.462944643109498e-05 +2.4182610141565892e-05 +2.3672346788776243e-05 +2.3098288975992015e-05 +2.2446204138184e-05 +2.1736010148469728e-05 +2.097308344236041e-05 +2.0139499895541006e-05 +2.283872091481934e-05 +2.2778091894309254e-05 +2.2640227855042644e-05 +2.2434179354569325e-05 +2.2169449958501676e-05 +2.1837063182209787e-05 +2.1433879689392768e-05 +2.097362149052728e-05 +2.0457822909960715e-05 +1.9871143627825812e-05 +1.9234049866303113e-05 +1.8550206646616658e-05 +1.780308891947952e-05 +2.0185096713763294e-05 +2.0130807065078632e-05 +2.0006565246639552e-05 +1.9821829282884278e-05 +1.958528025588711e-05 +1.928763307701193e-05 +1.8926261239478327e-05 +1.8514697392131134e-05 +1.805379895091839e-05 +1.7529614996054693e-05 +1.6960744424070063e-05 +1.6352088686843058e-05 +1.568729204854682e-05 +1.7768601542735206e-05 +1.7720722596212785e-05 +1.7609266013089696e-05 +1.744583985604661e-05 +1.7235260371764778e-05 +1.697001992106724e-05 +1.6648514509128516e-05 +1.6283149200964243e-05 +1.5873405805249913e-05 +1.5408996062074752e-05 +1.4905121106572997e-05 +1.4366127254784758e-05 +1.377867422590537e-05 +1.557831084821934e-05 +1.5535783029615858e-05 +1.5437714535627598e-05 +1.529285364606621e-05 +1.5106705951584964e-05 +1.4872998008157553e-05 +1.4588036224046313e-05 +1.4266213742448198e-05 +1.3904474385106927e-05 +1.3495968344910895e-05 +1.3051073183252072e-05 +1.2578448837441911e-05 +1.2061271259879405e-05 +1.3600847635677338e-05 +1.3563289844567783e-05 +1.3477363875605265e-05 +1.3350442186682248e-05 +1.3186051802000657e-05 +1.2980635388216028e-05 +1.273212030278635e-05 +1.2450029029691192e-05 +1.2132577801208472e-05 +1.1774730254378112e-05 +1.1386792004014464e-05 +1.0972738042395515e-05 +1.0521935426563808e-05 +1.1820618541603647e-05 +1.1787662913391828e-05 +1.1712962028661747e-05 +1.1602589507220172e-05 +1.1460181990330597e-05 +1.1281258638017927e-05 +1.1063901580371572e-05 +1.0818724186027234e-05 +1.054301935579645e-05 +1.0232258938935662e-05 +9.895060860412173e-06 +9.536050768217802e-06 +9.144531874656486e-06 +1.0224239969634056e-05 +1.0195755674076323e-05 +1.0130626868164277e-05 +1.0034997223798932e-05 +9.911805888751776e-06 +9.756904552221416e-06 +9.570374418471387e-06 +9.358059191561457e-06 +9.12023994262951e-06 +8.85219834638402e-06 +8.561253607744256e-06 +8.251999259732266e-06 +7.914197485360373e-06 +8.794310149330888e-06 +8.770414381138422e-06 +8.715060182984656e-06 +8.632917647383878e-06 +8.526885731932642e-06 +8.394541334001674e-06 +8.23409586595119e-06 +8.05184110264412e-06 +7.848222264983504e-06 +7.618978282207445e-06 +7.369927000778544e-06 +7.10456957811319e-06 +6.815482037288044e-06 +7.517092204577146e-06 +7.4966620271766845e-06 +7.449630587767883e-06 +7.379226681150534e-06 +7.2891286217294315e-06 +7.17661275906028e-06 +7.040226421126279e-06 +6.885849557546412e-06 +6.712096861310923e-06 +6.516841901833628e-06 +6.305273141659826e-06 +6.079194735514078e-06 +5.833545251107893e-06 +6.374448680038296e-06 +6.3571694593450585e-06 +6.317295080434348e-06 +6.2590962559720605e-06 +6.183058486024028e-06 +6.0878251324222574e-06 +5.972285197465443e-06 +5.842353647974897e-06 +5.695943232758005e-06 +5.531456519058713e-06 +5.352927957022898e-06 +5.162009062602279e-06 +4.954777173682967e-06 +5.351386322722696e-06 +5.336698297083679e-06 +5.303631148000469e-06 +5.254202132850503e-06 +5.191170708823909e-06 +5.112255313205019e-06 +5.016411611687733e-06 +4.907559085301165e-06 +4.7854751917618634e-06 +4.6493216577127975e-06 +4.500104684777598e-06 +4.341035281993089e-06 +4.16844328921254e-06 +4.434167132746564e-06 +4.421847634570666e-06 +4.3952028921550195e-06 +4.35438657036853e-06 +4.3026224265346785e-06 +4.238219677134191e-06 +4.159125293755523e-06 +4.0701396385579595e-06 +3.971491836168026e-06 +3.859065580033401e-06 +3.738823138245035e-06 +3.6116755612170647e-06 +3.473664860171155e-06 +3.61737750087887e-06 +3.6080722208051106e-06 +3.586562055701572e-06 +3.554672770126553e-06 +3.514890309919845e-06 +3.4639166913006735e-06 +3.4028468014918425e-06 +3.3332668878087375e-06 +3.256455299365464e-06 +3.1708476549478147e-06 +3.0773976331959045e-06 +2.9785191380876697e-06 +2.871205029416204e-06 +2.9083699375138937e-06 +2.9014335036597166e-06 +2.8855546804221306e-06 +2.8618842434932626e-06 +2.8317133065732026e-06 +2.7936601100544506e-06 +2.7474919311042054e-06 +2.6955176560124865e-06 +2.6372917540428502e-06 +2.571874699783272e-06 +2.501380209220927e-06 +2.428040398431429e-06 +2.34837978917727e-06 +2.2957360525468972e-06 +2.290580299833201e-06 +2.279203670239579e-06 +2.262405373450357e-06 +2.2411950396509314e-06 +2.2139073959320394e-06 +2.1819713586140177e-06 +2.144582424043281e-06 +2.1033717874374695e-06 +2.057261529677608e-06 +2.0065390842769045e-06 +1.9534951488701745e-06 +1.8949717189687005e-06 +1.763593449974486e-06 +1.7602143657013306e-06 +1.7523817913460782e-06 +1.740961463521298e-06 +1.7267351397092116e-06 +1.708543137450828e-06 +1.6851916783637419e-06 +1.6591551521848665e-06 +1.6302745169459223e-06 +1.5967282579331474e-06 +1.5611750199892685e-06 +1.5238292970729261e-06 +1.4831515366161102e-06 +1.2700397724720764e-06 +1.2676586573383444e-06 +1.2635075720315041e-06 +1.2568541279578606e-06 +1.2477188889741646e-06 +1.2370994113838299e-06 +1.223995552481144e-06 +1.2093517836825903e-06 +1.1928422985634143e-06 +1.1740752426701772e-06 +1.1542668879784147e-06 +1.1324699425333984e-06 +1.1095691870547773e-06 +8.284491524305947e-07 +8.283055734793567e-07 +8.259966367767472e-07 +8.242597674741489e-07 +8.213890073956401e-07 +8.172624887541993e-07 +8.133843400360677e-07 +8.080387839385567e-07 +8.019869549281446e-07 +7.960183591899564e-07 +7.892105437981304e-07 +7.809273674640604e-07 +7.733167035607176e-07 +7.155261664369354e-05 +7.332833073135769e-05 +7.488495518182323e-05 +7.628573653213268e-05 +7.752659407717727e-05 +7.85869792360497e-05 +7.950499259647427e-05 +8.029230309617165e-05 +8.092305768314453e-05 +8.142157328966677e-05 +8.17988989209697e-05 +8.204976158039695e-05 +8.216008505546079e-05 +6.662242868927992e-05 +6.840663402200793e-05 +6.998334231381912e-05 +7.141082355047549e-05 +7.26812842441269e-05 +7.377228512246439e-05 +7.471974990115433e-05 +7.553938022038526e-05 +7.619780087382569e-05 +7.671887098506518e-05 +7.71136516315055e-05 +7.737864017208295e-05 +7.749452376029188e-05 +6.170714677914363e-05 +6.347633150513477e-05 +6.504548053153039e-05 +6.647162925763982e-05 +6.774707084549551e-05 +6.884560539503232e-05 +6.980214864904871e-05 +7.063292538817243e-05 +7.130555651552713e-05 +7.18361753896379e-05 +7.223935872373804e-05 +7.251194021048558e-05 +7.263155702753598e-05 +5.688205398461938e-05 +5.860613039865089e-05 +6.0141164412416406e-05 +6.154318897105956e-05 +6.28041399456815e-05 +6.389741711596658e-05 +6.484908178545917e-05 +6.567332510752652e-05 +6.635020624997498e-05 +6.687590322252074e-05 +6.728263471159047e-05 +6.755808327971157e-05 +6.767872278167523e-05 +5.21887002291172e-05 +5.385385014481219e-05 +5.534219795528532e-05 +5.670487577684504e-05 +5.7932748015638213e-05 +5.899830197171148e-05 +5.9934900864067384e-05 +6.0745063987560315e-05 +6.140755623849921e-05 +6.192758293321521e-05 +6.233244834194531e-05 +6.26015074401082e-05 +6.271826170717948e-05 +4.767746799207107e-05 +4.926636501159624e-05 +5.069189999012842e-05 +5.200215549591142e-05 +5.318719050631986e-05 +5.421906612531051e-05 +5.5120802388055264e-05 +5.590883096754561e-05 +5.655125390074636e-05 +5.706044964170932e-05 +5.744933408221069e-05 +5.7711684837896275e-05 +5.782681042175055e-05 +4.337437903038428e-05 +4.4879607610256856e-05 +4.623295391167677e-05 +4.7480838823030986e-05 +4.861028422052353e-05 +4.9593447203379984e-05 +5.046082762756722e-05 +5.1215906283695405e-05 +5.1834102490569016e-05 +5.232085768303164e-05 +5.269924902517951e-05 +5.295334049956453e-05 +5.3063188318696307e-05 +3.930149356741946e-05 +4.0715387870002717e-05 +4.1989905431899494e-05 +4.316620464473316e-05 +4.423295425029988e-05 +4.5166352077058664e-05 +4.5990410208081816e-05 +4.670603577397265e-05 +4.729630283411281e-05 +4.775948637224859e-05 +4.811734366243151e-05 +4.835955685239483e-05 +4.8465677456050436e-05 +3.547255213171183e-05 +3.679027403394944e-05 +3.7981477273085305e-05 +3.908249335677093e-05 +4.008283231399435e-05 +4.0960899971897333e-05 +4.1735028429301305e-05 +4.241036937415902e-05 +4.2965139720903466e-05 +4.340533918351248e-05 +4.374268193963448e-05 +4.397051898885876e-05 +4.4070299540617004e-05 +3.189687373086432e-05 +3.311586353744782e-05 +3.4221107111963135e-05 +3.524591696661923e-05 +3.6175821643525256e-05 +3.699388735878033e-05 +3.7716928349328234e-05 +3.834819997015856e-05 +3.8867090546182286e-05 +3.9279323078849285e-05 +3.9596144157606084e-05 +3.980904215300317e-05 +3.990218866057507e-05 +2.8580591950510108e-05 +2.970001175784892e-05 +3.071570966909569e-05 +3.1660547036125814e-05 +3.252303001890097e-05 +3.3277889830287647e-05 +3.394865688576119e-05 +3.453297354204672e-05 +3.5015504285985145e-05 +3.539813607868309e-05 +3.569228505251868e-05 +3.5890642031383634e-05 +3.597738862534858e-05 +2.5518269320720146e-05 +2.6540498418425456e-05 +2.7470444424406516e-05 +2.8333939690208453e-05 +2.9125297807710285e-05 +2.9819688778191668e-05 +3.0435300175203862e-05 +3.097455157554253e-05 +3.142002175761087e-05 +3.177064945098519e-05 +3.2042435200968764e-05 +3.2226568933657496e-05 +3.2306907475610714e-05 +2.2707747748922586e-05 +2.3633811108674707e-05 +2.447737639283112e-05 +2.5265619349915564e-05 +2.5984670852879087e-05 +2.6618849857696927e-05 +2.71808129243266e-05 +2.7674587485322772e-05 +2.807995081198373e-05 +2.8402086988769497e-05 +2.8651960908145636e-05 +2.88209712617527e-05 +2.8894485087435794e-05 +2.0139500119162573e-05 +2.0973084103761974e-05 +2.1736011232831715e-05 +2.244620565381933e-05 +2.309829088703966e-05 +2.367234911241885e-05 +2.418261283699184e-05 +2.4629449508828693e-05 +2.4999318897300506e-05 +2.529237134035905e-05 +2.551885387365668e-05 +2.5671862887421e-05 +2.5738663024399845e-05 +1.7803089149247807e-05 +1.8550207329860017e-05 +1.923405098852775e-05 +1.987114519409413e-05 +2.04578248967133e-05 +2.097362389493654e-05 +2.143361768311888e-05 +2.183706636555415e-05 +2.216945353581552e-05 +2.2434039792451346e-05 +2.2640232139896654e-05 +2.2778096526418556e-05 +2.283872587716982e-05 +1.568782792533534e-05 +1.635208938918417e-05 +1.6960745589058643e-05 +1.752961660926906e-05 +1.8053801010562653e-05 +1.851469987307367e-05 +1.8925991409116968e-05 +1.9287636367463113e-05 +1.9585283948089477e-05 +1.98218333671146e-05 +2.0005877507368678e-05 +2.0130875708030404e-05 +2.018580183929908e-05 +1.377921938895055e-05 +1.436612797696204e-05 +1.4905122294320912e-05 +1.5408997719711304e-05 +1.5873045268861744e-05 +1.6283151754342423e-05 +1.664851750088711e-05 +1.6970023333237928e-05 +1.723526417581816e-05 +1.7445844058053248e-05 +1.760998249772922e-05 +1.7720727556896836e-05 +1.7768606838031594e-05 +1.2061271506829547e-05 +1.2578449569492818e-05 +1.3051074402162546e-05 +1.3495336296908e-05 +1.3904476537607339e-05 +1.426554376101595e-05 +1.458832570453546e-05 +1.487230268232862e-05 +1.5106709854561984e-05 +1.5292857959595884e-05 +1.5437719246711205e-05 +1.5535788121083683e-05 +1.5578316277800267e-05 +1.0521935677532878e-05 +1.0972738792730964e-05 +1.1386793249591758e-05 +1.1774731979404159e-05 +1.2132580008276254e-05 +1.2450031705627753e-05 +1.2732123415140293e-05 +1.2979922653909379e-05 +1.3186055803711064e-05 +1.335044659595999e-05 +1.347736869086817e-05 +1.3563295048261605e-05 +1.3600853208767088e-05 +9.144532129491401e-06 +9.536051527319561e-06 +9.89459802852353e-06 +1.0232260698145645e-05 +1.0543021597111593e-05 +1.0818726901518578e-05 +1.1063904759914347e-05 +1.1281262277277925e-05 +1.1460186043600673e-05 +1.1602593989059428e-05 +1.1712966922830365e-05 +1.1787668202048274e-05 +1.182062420075241e-05 +7.914197743816536e-06 +8.251385963868741e-06 +8.561254887927464e-06 +8.852200125691066e-06 +9.120242217044188e-06 +9.358061956001655e-06 +9.570377641136271e-06 +9.756908240511739e-06 +9.912020643534641e-06 +1.0035001791557694e-05 +1.0130631855855982e-05 +1.0195761063508031e-05 +1.0224245741096286e-05 +6.81548229939488e-06 +7.104570360054331e-06 +7.369928301607223e-06 +7.6189800829403664e-06 +7.848224570067227e-06 +8.051843904454967e-06 +8.234099154329342e-06 +8.394545070036494e-06 +8.526889925972525e-06 +8.632922284266825e-06 +8.715065224560796e-06 +8.77041982855318e-06 +8.794315982653001e-06 +5.833545517769263e-06 +6.079195531114402e-06 +6.3052744535053856e-06 +6.516843732521014e-06 +6.712099198105081e-06 +6.88549722090271e-06 +7.040229753805972e-06 +7.176616553591242e-06 +7.289349775217805e-06 +7.3792313901037465e-06 +7.449635729102831e-06 +7.496667537021144e-06 +7.5170981045597155e-06 +4.954777444360016e-06 +5.162009870610791e-06 +5.352929300971589e-06 +5.531458375821492e-06 +5.69635060986158e-06 +5.8423565357531255e-06 +5.97228856978571e-06 +6.087828991237574e-06 +6.183062817398044e-06 +6.259101044230908e-06 +6.31730026237565e-06 +6.357175058000712e-06 +6.374454674934486e-06 +4.168443563730611e-06 +4.3404952182945096e-06 +4.499425916166058e-06 +4.6488696803812036e-06 +4.78547760304172e-06 +4.9075620152240396e-06 +5.016415049776292e-06 +5.112259230443316e-06 +5.191175105591023e-06 +5.254206993189332e-06 +5.303761804815859e-06 +5.3367040298190616e-06 +5.351392461045938e-06 +3.474274684889504e-06 +3.6116763752418923e-06 +3.7388244920328886e-06 +3.859527425394115e-06 +3.9714942807799475e-06 +4.070903710813445e-06 +4.159128779011561e-06 +4.2382236550913e-06 +4.302626891270049e-06 +4.354391505654984e-06 +4.394373298983975e-06 +4.421853455373441e-06 +4.4341733652245515e-06 +2.8712052967110074e-06 +2.979155227352963e-06 +3.077398971131734e-06 +3.170849521575623e-06 +3.2564576880457503e-06 +3.3329075044220846e-06 +3.4028502483284663e-06 +3.4639206348617756e-06 +3.51489473588657e-06 +3.554677662404989e-06 +3.586567396477268e-06 +3.6080021528536065e-06 +3.6173836786042116e-06 +2.3483800493444974e-06 +2.428041178120297e-06 +2.5013815057623814e-06 +2.5718765589713594e-06 +2.636889405321873e-06 +2.695520546384119e-06 +2.7474953223404087e-06 +2.7936639898564936e-06 +2.8317176608511923e-06 +2.8618890564017996e-06 +2.8855599344114214e-06 +2.901439179575418e-06 +2.908351122564514e-06 +1.8949719803855517e-06 +1.9534959322772848e-06 +2.006540386942467e-06 +2.057263346931995e-06 +2.103374112752308e-06 +2.14458523655123e-06 +2.1819746583785236e-06 +2.2139111709741173e-06 +2.24119927623903e-06 +2.262578300505293e-06 +2.279208781995639e-06 +2.2905858219823175e-06 +2.295741964935914e-06 +1.4825329527257396e-06 +1.5238301246794447e-06 +1.561176396098858e-06 +1.5967301775865822e-06 +1.630276973202618e-06 +1.659158136141327e-06 +1.6851951791793668e-06 +1.7085471424045776e-06 +1.7269555695800463e-06 +1.740966167224618e-06 +1.7523869259301375e-06 +1.7594184440359087e-06 +1.7635993885847956e-06 +1.1095694643777946e-06 +1.1324707735192417e-06 +1.1542682696376266e-06 +1.173360727757593e-06 +1.1928447645860405e-06 +1.2093547794341994e-06 +1.223999067042387e-06 +1.2371034319567464e-06 +1.247723400908942e-06 +1.2560249496870952e-06 +1.2635130155936423e-06 +1.267664537755346e-06 +1.2700460682885803e-06 +7.73317002361333e-07 +7.809282628160089e-07 +7.892120324465203e-07 +7.960204357144923e-07 +8.019896117658294e-07 +8.080420113984879e-07 +8.133881263623925e-07 +8.172668201224932e-07 +8.211470582665692e-07 +8.242651396299186e-07 +8.258642072724539e-07 +8.28311908076594e-07 +8.284559344435637e-07 +8.216008519149505e-05 +8.204976198759166e-05 +8.179889959618977e-05 +8.142161859199789e-05 +8.092305893633078e-05 +8.029230468103386e-05 +7.950499445697025e-05 +7.858698142822681e-05 +7.752659662510043e-05 +7.628573944298245e-05 +7.488495848137009e-05 +7.332833440601738e-05 +7.155262081913157e-05 +7.749452392108825e-05 +7.737864065343687e-05 +7.71136524356668e-05 +7.671887214245334e-05 +7.619780234926579e-05 +7.55393820457233e-05 +7.471975208160115e-05 +7.37722876909526e-05 +7.268128721261089e-05 +7.141082692900189e-05 +6.998334612769727e-05 +6.840663825653535e-05 +6.662243334467748e-05 +7.263155721406335e-05 +7.251194077169116e-05 +7.22393596552995e-05 +7.183617668586923e-05 +7.130555823033875e-05 +7.063292746293132e-05 +6.980215115970946e-05 +6.884547543536407e-05 +6.77470742320185e-05 +6.647163302491785e-05 +6.504548482787636e-05 +6.347633631783507e-05 +6.17071520579377e-05 +6.767872299373298e-05 +6.755808391990555e-05 +6.728263577447827e-05 +6.687583805753283e-05 +6.635020819877703e-05 +6.567332747005328e-05 +6.484908463570333e-05 +6.389742036292454e-05 +6.280414368757467e-05 +6.154319321496724e-05 +6.014116916051963e-05 +5.860637320240049e-05 +5.6882059906256146e-05 +6.271826194082143e-05 +6.260150813994326e-05 +6.233244953993825e-05 +6.19275846017044e-05 +6.14075583683066e-05 +6.0745066645410465e-05 +5.9935043965522034e-05 +5.8998305620061146e-05 +5.79327522114685e-05 +5.670488052569179e-05 +5.534220325994776e-05 +5.385385600563936e-05 +5.218870664325309e-05 +5.7826810683140516e-05 +5.7711685620762004e-05 +5.7449335382517126e-05 +5.706045146840559e-05 +5.655125627897769e-05 +5.590883385953724e-05 +5.512080585400225e-05 +5.421907011844681e-05 +5.3187195053025365e-05 +5.200216063151412e-05 +5.069190572049571e-05 +4.9266086259775566e-05 +4.767747493802181e-05 +5.306320138068897e-05 +5.2953341349323054e-05 +5.26991854991239e-05 +5.2320859692335834e-05 +5.183410506631541e-05 +5.1215909476925184e-05 +5.0460831371333025e-05 +4.95934515773774e-05 +4.861028923717731e-05 +4.7480844375211155e-05 +4.623296010198094e-05 +4.487930687837977e-05 +4.3374386553924946e-05 +4.846567776746707e-05 +4.8359557785265874e-05 +4.8117345212205806e-05 +4.775948853276751e-05 +4.729630563609934e-05 +4.670603920258259e-05 +4.599041429555465e-05 +4.5166356769869636e-05 +4.423295962805305e-05 +4.3166210712084215e-05 +4.198991207341687e-05 +4.07153951666643e-05 +3.930150164585742e-05 +4.4070299874004626e-05 +4.3970519987552095e-05 +4.3742683599341476e-05 +4.340544704915588e-05 +4.29651427453597e-05 +4.241037304390594e-05 +4.173503282353885e-05 +4.0960904989316444e-05 +4.008283805885987e-05 +3.908249983130662e-05 +3.798148444371217e-05 +3.6790281799778186e-05 +3.5472560626570383e-05 +3.990220503847434e-05 +3.980904321850575e-05 +3.9596145930731385e-05 +3.9279325588506786e-05 +3.8867093770068335e-05 +3.8348027713842925e-05 +3.7716933030193975e-05 +3.699389270364178e-05 +3.61758277588643e-05 +3.524592385247699e-05 +3.422111461317315e-05 +3.311587178966343e-05 +3.1896882723592044e-05 +3.5977389003590216e-05 +3.589064316453364e-05 +3.569228693581209e-05 +3.539813871242046e-05 +3.501550771145615e-05 +3.45329776989573e-05 +3.394866180728411e-05 +3.3277895507895444e-05 +3.252303649338817e-05 +3.166055419507619e-05 +3.071571762175501e-05 +2.970002047278105e-05 +2.858060143248579e-05 +3.230690787655184e-05 +3.2226570134827796e-05 +3.2042437197453895e-05 +3.1770652234252904e-05 +3.142002535864358e-05 +3.0974555975110045e-05 +3.043530533498145e-05 +2.9819694768645986e-05 +2.9125304540967094e-05 +2.8333947254427398e-05 +2.7470452796988417e-05 +2.654050754206179e-05 +2.5518279180871138e-05 +2.8894485505779363e-05 +2.882097251509366e-05 +2.8652057680829442e-05 +2.840195757222174e-05 +2.807995457194128e-05 +2.767459207521206e-05 +2.7180818360765303e-05 +2.6618856082083198e-05 +2.598467793099033e-05 +2.526562726167947e-05 +2.4477385058750276e-05 +2.3633820610457423e-05 +2.2707757991726655e-05 +2.5738663461556652e-05 +2.5671864197124966e-05 +2.5518954370715596e-05 +2.529237438370852e-05 +2.49993228248568e-05 +2.4629454299565053e-05 +2.418261847111809e-05 +2.3672355634949695e-05 +2.3098298204914336e-05 +2.2446213866624027e-05 +2.1736020186347585e-05 +2.0973093921795275e-05 +2.0139510781860226e-05 +2.2838726331948746e-05 +2.2778097888939584e-05 +2.2640234404692715e-05 +2.2434042978808828e-05 +2.2169457611136895e-05 +2.1837071311839742e-05 +2.1433623562625064e-05 +2.0973630630915104e-05 +2.045783248875985e-05 +1.9871153662912987e-05 +1.9234060233761994e-05 +1.8550217447897433e-05 +1.7803100076674258e-05 +2.0185802312205585e-05 +2.0130813305022103e-05 +2.0005879862599123e-05 +1.982183665108394e-05 +1.9585288148074293e-05 +1.9287641472237823e-05 +1.8926270201665616e-05 +1.851470681161341e-05 +1.8053454994817838e-05 +1.7529625315628973e-05 +1.6960755167673315e-05 +1.6352099768281434e-05 +1.5687839128800334e-05 +1.7768607322251845e-05 +1.772072901263685e-05 +1.7610093914229762e-05 +1.7445847432618083e-05 +1.7235463155548544e-05 +1.697002861968382e-05 +1.664852372377767e-05 +1.6283158884854343e-05 +1.5873053320249907e-05 +1.5409006651149237e-05 +1.490513204332974e-05 +1.4366138629705264e-05 +1.3779230785254329e-05 +1.5578339116651846e-05 +1.5535789613786506e-05 +1.543772172808817e-05 +1.529286142005491e-05 +1.5106714283679663e-05 +1.4872308060693074e-05 +1.4588045643939471e-05 +1.426555106064189e-05 +1.3904484724413857e-05 +1.3495345421265437e-05 +1.3051084392019295e-05 +1.2578460350871127e-05 +1.206128318210905e-05 +1.3600853717523236e-05 +1.3563365231355093e-05 +1.3477371224880842e-05 +1.3350450129933774e-05 +1.3186060340448338e-05 +1.2979928163260905e-05 +1.2732129873928827e-05 +1.245003916031119e-05 +1.2132588392664608e-05 +1.177474124920828e-05 +1.1386803444739534e-05 +1.0972749828182452e-05 +1.052194752525323e-05 +1.1820624717003689e-05 +1.1787669750149145e-05 +1.171296949641671e-05 +1.1602759245842136e-05 +1.146019063488567e-05 +1.1281267898162735e-05 +1.1063911351987095e-05 +1.0818734458985885e-05 +1.0543030102842105e-05 +1.023227014146327e-05 +9.8946083320667e-06 +9.536062678175895e-06 +9.14454414442372e-06 +1.0224246267279688e-05 +1.0195762640090299e-05 +1.0130634476842967e-05 +1.0035005447053058e-05 +9.912025319671506e-06 +9.756913932682043e-06 +9.570384317110072e-06 +9.358069643085126e-06 +9.120250840591094e-06 +8.852209667829569e-06 +8.561265343998284e-06 +8.2513973368571e-06 +7.914209915394414e-06 +8.794316514213475e-06 +8.770421421201193e-06 +8.71506787232555e-06 +8.632925992788088e-06 +8.526894670087629e-06 +8.394550831931933e-06 +8.234105961571023e-06 +8.051851689627313e-06 +7.848233303017557e-06 +7.618989732007265e-06 +7.369938917192592e-06 +7.104581823763806e-06 +6.815494630723582e-06 +7.517098641951015e-06 +7.496669147160608e-06 +7.449638427882782e-06 +7.3792351542107704e-06 +7.2891376965540855e-06 +7.176622402197658e-06 +7.040236648457649e-06 +6.885505106358911e-06 +6.712108044982347e-06 +6.516412014800327e-06 +6.305285150679699e-06 +6.079207185579491e-06 +5.8335580530044864e-06 +6.374455220753293e-06 +6.357176693373717e-06 +6.3173029812368806e-06 +6.259104869917069e-06 +6.182498745656285e-06 +6.08706028934654e-06 +5.972295542594285e-06 +5.842364549872371e-06 +5.696359601460655e-06 +5.5314683115989e-06 +5.3529402527060874e-06 +5.16202169846226e-06 +4.954790158463823e-06 +5.351393019703943e-06 +5.336705703752245e-06 +5.303639237191639e-06 +5.25421087484394e-06 +5.191180071547801e-06 +5.112265262279862e-06 +5.016422155111496e-06 +4.907570142193923e-06 +4.785486721576699e-06 +4.648879756789107e-06 +4.499437034649811e-06 +4.341048111281099e-06 +4.168456449270868e-06 +4.434173932287774e-06 +4.421855154468248e-06 +4.3943761238070866e-06 +4.354395445756116e-06 +4.302631932060074e-06 +4.238229777944454e-06 +4.159135978797014e-06 +4.070911946040849e-06 +3.971503521039312e-06 +3.859537636620246e-06 +3.738835511791196e-06 +3.6116882774586457e-06 +3.474287425831004e-06 +3.6173842405213393e-06 +3.6080796742841473e-06 +3.586570195741092e-06 +3.554681566915342e-06 +3.5148997312217964e-06 +3.46392670259955e-06 +3.4028573661286522e-06 +3.333277833257718e-06 +3.2564667131912905e-06 +3.1708594953815415e-06 +3.077409856958029e-06 +2.9791669852568926e-06 +2.871217829849115e-06 +2.9083516752232043e-06 +2.901440835463491e-06 +2.885562687471744e-06 +2.8618928964709572e-06 +2.83172257382233e-06 +2.7936699576560014e-06 +2.7475023230104376e-06 +2.6955285542078e-06 +2.6368983908909766e-06 +2.5718864892838512e-06 +2.501392050527612e-06 +2.428052567958162e-06 +2.348392242505232e-06 +2.2957425024784043e-06 +2.2905874326593024e-06 +2.2792114598769793e-06 +2.262582035761346e-06 +2.2412040551824994e-06 +2.213916976042621e-06 +2.181981468273805e-06 +2.1445930262857234e-06 +2.1033828924988345e-06 +2.0572730500082904e-06 +2.0065509777913396e-06 +1.95350737216179e-06 +1.8949842274243276e-06 +1.763599928436879e-06 +1.7594200615678501e-06 +1.7523896152216207e-06 +1.7409699184472106e-06 +1.7269603689498904e-06 +1.7085532995254994e-06 +1.685202402188354e-06 +1.6591663985631346e-06 +1.6302862447974895e-06 +1.596740424423284e-06 +1.5611875806973553e-06 +1.523842206156785e-06 +1.4825458868789962e-06 +1.2700466405087162e-06 +1.2676662523186196e-06 +1.263515866212301e-06 +1.2560289259455655e-06 +1.247728488258574e-06 +1.2371096117982212e-06 +1.22400631677213e-06 +1.2093630725409969e-06 +1.1928540707857799e-06 +1.1733710130108817e-06 +1.154279496372719e-06 +1.1324829007064422e-06 +1.109582447724538e-06 +8.284565507456638e-07 +8.283137547764716e-07 +8.258672776141137e-07 +8.242694223754928e-07 +8.211525378267705e-07 +8.172734764555485e-07 +8.133959351451057e-07 +8.08050944154397e-07 +8.019996358589827e-07 +7.960315145626512e-07 +7.892241256056971e-07 +7.809413261442336e-07 +7.733309881816051e-07 +7.155262096675142e-05 +7.33283348266944e-05 +7.488495916469383e-05 +7.628574036592347e-05 +7.752659777334276e-05 +7.858698278223334e-05 +7.950499600698445e-05 +8.029230646153198e-05 +8.092306086501371e-05 +8.142157642555166e-05 +8.179890185547529e-05 +8.2049764446291e-05 +8.216008783979818e-05 +6.662265476961983e-05 +6.840663875285375e-05 +6.998340230314046e-05 +7.141082802357685e-05 +7.268128857845814e-05 +7.377228930927857e-05 +7.471975393315565e-05 +7.553938413419086e-05 +7.619780465994015e-05 +7.671887471607902e-05 +7.711365516905466e-05 +7.737864360349841e-05 +7.74943022637401e-05 +6.17071522531195e-05 +6.347633689251488e-05 +6.504548575405314e-05 +6.647163426636768e-05 +6.774707581590485e-05 +6.884547732387384e-05 +6.98024147512947e-05 +7.063292987106667e-05 +7.130563819109996e-05 +7.183623799047422e-05 +7.223910116114668e-05 +7.251194425156635e-05 +7.263156093711147e-05 +5.688206012873777e-05 +5.860613631139624e-05 +6.014088516970543e-05 +6.154319463269046e-05 +6.280414546075054e-05 +6.389742246717892e-05 +6.484921550259959e-05 +6.567333024377468e-05 +6.635021132674919e-05 +6.687590807009872e-05 +6.728263946844609e-05 +6.755808792687072e-05 +6.767872726375852e-05 +5.2188706887407044e-05 +5.385385672479982e-05 +5.534220443339171e-05 +5.6704882129826214e-05 +5.793275422105962e-05 +5.8998308008644285e-05 +5.9935046703402594e-05 +6.074518950964641e-05 +6.140756181729343e-05 +6.192758843174458e-05 +6.233245373687667e-05 +6.26015125535355e-05 +6.271826667933586e-05 +4.7677475205290195e-05 +4.926642590108487e-05 +5.069190700031446e-05 +5.2002162382265126e-05 +5.318719724987668e-05 +5.421871218717378e-05 +5.512080893169073e-05 +5.590883731296676e-05 +5.6551260158422286e-05 +5.706045569082753e-05 +5.744933996802406e-05 +5.771169058882099e-05 +5.7826816015267136e-05 +4.33743868460338e-05 +4.487961529208518e-05 +4.6233335845585055e-05 +4.748084628246052e-05 +4.8610291678866644e-05 +4.959345448535423e-05 +5.046083471790233e-05 +5.121591331441419e-05 +5.1834109293507965e-05 +5.2320864363628836e-05 +5.269925558199927e-05 +5.295334676982261e-05 +5.306319441798252e-05 +3.9301501961900263e-05 +4.071539608523118e-05 +4.19899135786291e-05 +4.316621280969374e-05 +4.423296226159581e-05 +4.5166359908106255e-05 +4.599041796981978e-05 +4.670560497007627e-05 +4.729631025798308e-05 +4.77594935799012e-05 +4.81173507325918e-05 +4.83595185925885e-05 +4.846568417732287e-05 +3.5472560961048434e-05 +3.6790282783282825e-05 +3.798148607806772e-05 +3.908250208181705e-05 +4.008284088677514e-05 +4.096090836120671e-05 +4.173503679217352e-05 +4.241037749760869e-05 +4.2965147755603e-05 +4.340520236364331e-05 +4.374283400409902e-05 +4.39704778922525e-05 +4.407030675995069e-05 +3.1896883079593446e-05 +3.311550114306678e-05 +3.422111633113292e-05 +3.524592625697994e-05 +3.6175830782398786e-05 +3.6993896310655934e-05 +3.7716937274659485e-05 +3.834803247867559e-05 +3.886694534459848e-05 +3.9279383289109335e-05 +3.959594593218192e-05 +3.98090500911822e-05 +3.9902404826439174e-05 +2.8580148871013465e-05 +2.970002158695193e-05 +3.0715719450612244e-05 +3.1660556704775125e-05 +3.2523039706517236e-05 +3.3277899353195554e-05 +3.394866628520514e-05 +3.4533089879420505e-05 +3.501584095393151e-05 +3.5398481476564905e-05 +3.569223878632653e-05 +3.589065049278193e-05 +3.5977674582790924e-05 +2.5518279574621448e-05 +2.6540508712853482e-05 +2.7470454729215274e-05 +2.833394991513463e-05 +2.9125004613144613e-05 +2.9819698838285163e-05 +3.0435310043406173e-05 +3.0974504588820934e-05 +3.1419916389370845e-05 +3.177042807475802e-05 +3.2042502741941464e-05 +3.2226401581876056e-05 +3.230703422143733e-05 +2.2707758402170513e-05 +2.3633821833714524e-05 +2.4477387064766692e-05 +2.5265630052719557e-05 +2.5984681464774605e-05 +2.6618860321821875e-05 +2.7180530448535432e-05 +2.7674479059450834e-05 +2.8080081136643494e-05 +2.8402086555502244e-05 +2.865227825535353e-05 +2.8821103538008388e-05 +2.8894555899482538e-05 +2.013951121040116e-05 +2.097309518928022e-05 +2.173602226437832e-05 +2.2446216771130863e-05 +2.3098301867174972e-05 +2.36723600878916e-05 +2.418268442062424e-05 +2.4629398190371637e-05 +2.4999140718744338e-05 +2.52925081694363e-05 +2.5518834284234174e-05 +2.5671615509686844e-05 +2.57386080482359e-05 +1.7803100516993612e-05 +1.8550218757239493e-05 +1.923406238435221e-05 +1.987115666445166e-05 +2.045783629609897e-05 +2.0973573314341968e-05 +2.1434084289496998e-05 +2.1837077412281637e-05 +2.2169464466568075e-05 +2.2434260415791127e-05 +2.2640109643033287e-05 +2.277817374971934e-05 +2.2838735841612998e-05 +1.568730394057e-05 +1.6352101114222354e-05 +1.6960757400213446e-05 +1.7529628407133852e-05 +1.8053812814063778e-05 +1.8514520039989176e-05 +1.8926144852396118e-05 +1.9287713993906635e-05 +1.958529522367352e-05 +1.9821912919637962e-05 +2.0006234513924652e-05 +2.0130752810809718e-05 +2.0185392237527903e-05 +1.377923124639318e-05 +1.4366140013657734e-05 +1.4905134319485636e-05 +1.540900982778149e-05 +1.5873420021896213e-05 +1.6283295094424977e-05 +1.664832747126608e-05 +1.697010379178644e-05 +1.7234998045397864e-05 +1.744571469148959e-05 +1.7609566576191993e-05 +1.7720379919242116e-05 +1.7768832688405963e-05 +1.206128365535517e-05 +1.2578461753746066e-05 +1.305108672789384e-05 +1.3495982414956282e-05 +1.3904553999453174e-05 +1.4265959635668245e-05 +1.4588395760883854e-05 +1.4872664121896717e-05 +1.5106508106961308e-05 +1.5292725188965433e-05 +1.543765769530955e-05 +1.5535578557619645e-05 +1.557854784919148e-05 +1.0521948006202158e-05 +1.0972751266096166e-05 +1.1386805831718284e-05 +1.1774744554985155e-05 +1.2132859649410333e-05 +1.2450181744837126e-05 +1.2732135838328795e-05 +1.298036477184513e-05 +1.318621401005131e-05 +1.335023706704774e-05 +1.3477380452672089e-05 +1.3563231323645876e-05 +1.3600939896641567e-05 +9.14454463278063e-06 +9.536064132889805e-06 +9.895074839314292e-06 +1.0232273512747501e-05 +1.0543169904460012e-05 +1.0818600241271484e-05 +1.1064203277845257e-05 +1.1281201749754363e-05 +1.1460420172659668e-05 +1.1602381047775706e-05 +1.171297887542062e-05 +1.1787603440938446e-05 +1.1820405572122502e-05 +7.91421041068948e-06 +8.251398822117397e-06 +8.56126779729415e-06 +8.852213077628662e-06 +9.12018648050414e-06 +9.358287753498312e-06 +9.57039049290518e-06 +9.757143263862618e-06 +9.9118226131554e-06 +1.0035014200535633e-05 +1.0130876004834885e-05 +1.0195617175681119e-05 +1.0223944594058439e-05 +6.815495133015183e-06 +7.104583322246246e-06 +7.369292386609312e-06 +7.618993182866026e-06 +7.848168106064395e-06 +8.052000799508499e-06 +8.234333834261607e-06 +8.394708049369572e-06 +8.527208551083587e-06 +8.632702038089772e-06 +8.714764927055843e-06 +8.770116939302272e-06 +8.79432769297434e-06 +5.833558564024532e-06 +6.079208710239286e-06 +6.305287664650845e-06 +6.516857043168571e-06 +6.712324155182103e-06 +6.885501621883682e-06 +7.040093369771628e-06 +7.17662967389503e-06 +7.289301141237868e-06 +7.379401799516303e-06 +7.449329512971157e-06 +7.496440818615712e-06 +7.517030026387166e-06 +4.954790677179833e-06 +5.162023246900255e-06 +5.352942828199488e-06 +5.531471869830532e-06 +5.695959154959677e-06 +5.842370083903671e-06 +5.972453415994289e-06 +6.087532472150373e-06 +6.182681305589301e-06 +6.258713397255551e-06 +6.3173129117158415e-06 +6.356944694225135e-06 +6.3742230887240774e-06 +4.1684569753451815e-06 +4.341049684350464e-06 +4.500119784747836e-06 +4.649337228820559e-06 +4.785782326688638e-06 +4.907425571590486e-06 +5.016274411235914e-06 +5.1118796438175385e-06 +5.191268620508629e-06 +5.254464175011366e-06 +5.303484932045476e-06 +5.3367995341043745e-06 +5.3513216342829465e-06 +3.473678393160771e-06 +3.6116898374265814e-06 +3.738838106138924e-06 +3.859081362228823e-06 +3.971360741419424e-06 +4.070537087185651e-06 +4.159455502843195e-06 +4.237918070715024e-06 +4.302884547236553e-06 +4.354570056411379e-06 +4.394803939451889e-06 +4.422118652822487e-06 +4.434017029305138e-06 +2.8712183420841925e-06 +2.9785332423554837e-06 +3.077412420928433e-06 +3.1708630725168534e-06 +3.256759404943214e-06 +3.333580800215014e-06 +3.402554622240991e-06 +3.463934259894288e-06 +3.5146662958469993e-06 +3.55501834694923e-06 +3.5865804306043915e-06 +3.607840606241574e-06 +3.6171450364633905e-06 +2.348392741079849e-06 +2.428054062125813e-06 +2.501394535171995e-06 +2.5718900521634204e-06 +2.6374511257254255e-06 +2.695386020210926e-06 +2.747432742474686e-06 +2.793443858180741e-06 +2.831572265460361e-06 +2.861982638065221e-06 +2.885572756022946e-06 +2.901615745965242e-06 +2.908635165717941e-06 +1.8949847283949902e-06 +1.9535088734535e-06 +2.006553474171089e-06 +2.057276532525444e-06 +2.1037378029058945e-06 +2.144814510161493e-06 +2.181691717712787e-06 +2.2142271534789917e-06 +2.2412121740213733e-06 +2.2625794370777826e-06 +2.2793796742795407e-06 +2.2906778082831126e-06 +2.2956737470422666e-06 +1.4831652762157527e-06 +1.5238437921517557e-06 +1.561190217823546e-06 +1.5967441031765393e-06 +1.6300688729967215e-06 +1.6591721169069641e-06 +1.6852876312746605e-06 +1.708560974470551e-06 +1.7265973110874026e-06 +1.74105761607622e-06 +1.7523994549485262e-06 +1.7599115721313904e-06 +1.7632091061438517e-06 +1.1095829791761728e-06 +1.1324844931774794e-06 +1.1542821441355877e-06 +1.1740911487419684e-06 +1.1926358652402221e-06 +1.2093688134885865e-06 +1.224091873122062e-06 +1.2371173166755803e-06 +1.2479015002814852e-06 +1.2565389816205264e-06 +1.2633576063912447e-06 +1.2678474558826609e-06 +1.2698881484213266e-06 +7.73331560791407e-07 +7.80943041963177e-07 +7.892269783950058e-07 +7.96035493938191e-07 +8.022448788075907e-07 +8.0780923753273e-07 +8.130635545423047e-07 +8.172817769294262e-07 +8.213201325870123e-07 +8.241000005030869e-07 +8.265619645215611e-07 +8.279597801073396e-07 +8.286532750659929e-07 +); + } + + "(OUTLET|Outlet|outlet)" + { + type zeroGradient; + } + + "(WALL|Wall|wall)" + { + type nutUSpaldingWallFunction; + value uniform 0; + } + +} + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/0/nut b/Simulation_setup_and_evluation/BaseCase/0/nut new file mode 100644 index 0000000..f2aca0f --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/0/nut @@ -0,0 +1,4051 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + location "0"; + object nut; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -1 0 0 0 0]; + +internalField uniform 0.00001; + +boundaryField +{ + "(INLET|Inlet|inlet)" + { + type fixedValue; + value nonuniform List<scalar> +4004 + ( +9.684725017624658e-05 +9.720736801259377e-05 +9.759834287068734e-05 +9.785787259663785e-05 +9.793707559147737e-05 +9.778945816663483e-05 +9.736830384174833e-05 +9.662486405889289e-05 +9.55169997806726e-05 +9.397056970688794e-05 +9.194457326782545e-05 +8.936951276753671e-05 +8.617204764726856e-05 +9.72073933702422e-05 +9.743905221938603e-05 +9.77150458801442e-05 +9.78958090312971e-05 +9.792236173979265e-05 +9.773679388810088e-05 +9.72849808347068e-05 +9.65224665139858e-05 +9.538863770349154e-05 +9.383639340023734e-05 +9.180405793943296e-05 +8.92350313584159e-05 +8.605498832344412e-05 +9.759834278419381e-05 +9.771504584735424e-05 +9.785648965992774e-05 +9.793292870197441e-05 +9.787654345472417e-05 +9.762396157875808e-05 +9.711689216016181e-05 +9.630235189582922e-05 +9.513666104698621e-05 +9.356258706357231e-05 +9.15248047060043e-05 +8.895726916909902e-05 +8.579586592813272e-05 +9.785787255738467e-05 +9.78958090063128e-05 +9.793292723989035e-05 +9.790826954527099e-05 +9.775060131913517e-05 +9.74140107421185e-05 +9.683651726688921e-05 +9.596413511193906e-05 +9.47502637230872e-05 +9.314655255812155e-05 +9.1091682564527e-05 +8.853552191570935e-05 +8.540275152077064e-05 +9.793707561256865e-05 +9.792236175495733e-05 +9.787654347950646e-05 +9.775059047824776e-05 +9.749788900557935e-05 +9.706688876463937e-05 +9.641144567614931e-05 +9.547743359283805e-05 +9.421669984503783e-05 +9.257952730793458e-05 +9.052253384891517e-05 +8.79836887252653e-05 +8.489663891943137e-05 +9.778945826145216e-05 +9.773679396474086e-05 +9.762396165342494e-05 +9.74140108035435e-05 +9.706688880130581e-05 +9.654921926169777e-05 +9.580958093106996e-05 +9.481226900506392e-05 +9.350676414175073e-05 +9.18433332698119e-05 +8.978626814925207e-05 +8.72676392813834e-05 +8.42361995969564e-05 +9.736830402810927e-05 +9.728498098771424e-05 +9.711689230716424e-05 +9.683651738052394e-05 +9.641144576932408e-05 +9.58095809815454e-05 +9.500415099418555e-05 +9.394218082086191e-05 +9.259554826487692e-05 +9.09153175305838e-05 +8.886296236832367e-05 +8.638270016609558e-05 +8.342470166112331e-05 +9.662482494181203e-05 +9.652246675262567e-05 +9.63023521237968e-05 +9.596413531613782e-05 +9.547743375939907e-05 +9.481226912401376e-05 +9.394212264441225e-05 +9.284137884224942e-05 +9.147283654957836e-05 +8.978585447031576e-05 +8.775072197544729e-05 +8.53317692450897e-05 +8.247182834102231e-05 +9.551700018870623e-05 +9.538863808254385e-05 +9.513666137298855e-05 +9.475026401599187e-05 +9.421670009822128e-05 +9.350676434672243e-05 +9.259554840885693e-05 +9.147283662720322e-05 +9.008803763454722e-05 +8.841676840630908e-05 +8.642985338954425e-05 +8.409807732462054e-05 +8.13599111759901e-05 +9.397057026143165e-05 +9.383639389222022e-05 +9.356258752971269e-05 +9.314655295624072e-05 +9.257952766334472e-05 +9.18432457756049e-05 +9.091531776828652e-05 +8.978585463823431e-05 +8.841676849796656e-05 +8.678679193601856e-05 +8.487233538680028e-05 +8.264877126688557e-05 +8.005267338413503e-05 +9.194457399660957e-05 +9.180405859724276e-05 +9.152480529633225e-05 +9.109168311223666e-05 +9.052253434773514e-05 +8.978632047190154e-05 +8.88629627266401e-05 +8.775060489604199e-05 +8.642985358866311e-05 +8.487233549029132e-05 +8.305386110864737e-05 +8.097299758375678e-05 +7.85673460802017e-05 +8.936951368086326e-05 +8.923503219639466e-05 +8.895726992956367e-05 +8.853552262800911e-05 +8.798368935074516e-05 +8.726763984604955e-05 +8.638270065892788e-05 +8.533176965580853e-05 +8.409807764386473e-05 +8.264877149791097e-05 +8.097299770248868e-05 +7.908258422376314e-05 +7.690452076301823e-05 +8.617204876375554e-05 +8.605498935456115e-05 +8.579586691506698e-05 +8.540275241841983e-05 +8.489679444066779e-05 +8.423620032937348e-05 +8.342470231773711e-05 +8.247182891080572e-05 +8.135991164860804e-05 +8.005284161376286e-05 +7.856734633199643e-05 +7.690452089308342e-05 +7.499300706724174e-05 +9.684725042462565e-05 +9.720737470067337e-05 +9.759834309928617e-05 +9.785787269078591e-05 +9.793707554348518e-05 +9.778945795793378e-05 +9.736830344086807e-05 +9.66248240671207e-05 +9.55169989289233e-05 +9.397056856130811e-05 +9.194457177512574e-05 +8.93695109102786e-05 +8.617204539073677e-05 +9.720736815381427e-05 +9.743905249185895e-05 +9.771504608564582e-05 +9.789580913322017e-05 +9.792236168903676e-05 +9.773679365980042e-05 +9.72849804129298e-05 +9.652246589189956e-05 +9.538863675639985e-05 +9.38363922113106e-05 +9.180405639233006e-05 +8.923502943172532e-05 +8.605498599768806e-05 +9.759834293353324e-05 +9.771504602280839e-05 +9.785648975746297e-05 +9.793292727227953e-05 +9.787654331898661e-05 +9.762396126029991e-05 +9.711689162268172e-05 +9.630235114633006e-05 +9.513666005602328e-05 +9.356258572985828e-05 +9.152480309705503e-05 +8.895726717796227e-05 +8.579586342955049e-05 +9.785787261556257e-05 +9.78958090853412e-05 +9.793292872501357e-05 +9.790826670414847e-05 +9.775059023714672e-05 +9.74140103230602e-05 +9.683651668229355e-05 +9.5964134233913e-05 +9.475026261320802e-05 +9.314655118595123e-05 +9.109168081228126e-05 +8.85355197709502e-05 +8.540274895042847e-05 +9.793707558390373e-05 +9.792236171809779e-05 +9.787654336647844e-05 +9.775060113279422e-05 +9.749788868648285e-05 +9.706688823402832e-05 +9.641144492070688e-05 +9.547743259745152e-05 +9.421669860336143e-05 +9.257952579445196e-05 +9.052253194156783e-05 +8.798368653014872e-05 +8.489679100571755e-05 +9.778945813963815e-05 +9.773679380667041e-05 +9.76239614033887e-05 +9.74140104407728e-05 +9.706688830429452e-05 +9.654921864202157e-05 +9.580958007445265e-05 +9.481226789750453e-05 +9.350676275826315e-05 +9.184333162209286e-05 +8.978631810739941e-05 +8.726750553114988e-05 +8.423619682053831e-05 +9.73683037980032e-05 +9.72849807061475e-05 +9.711689190439172e-05 +9.683651690005891e-05 +9.641144509926357e-05 +9.580958017118185e-05 +9.500415002519404e-05 +9.394212135139108e-05 +9.25955467651205e-05 +9.091531575685909e-05 +8.88629602272522e-05 +8.638269766454221e-05 +8.34246987235581e-05 +9.662486400313099e-05 +9.652246634922014e-05 +9.630235158319863e-05 +9.596413462523187e-05 +9.547743291664292e-05 +9.481226812545566e-05 +9.394217971388736e-05 +9.284137739559298e-05 +9.147283488977306e-05 +8.97858525496042e-05 +8.7750719655881e-05 +8.533176660412172e-05 +8.247182525190418e-05 +9.55169997108638e-05 +9.538863748280157e-05 +9.513666068076199e-05 +9.475026317451957e-05 +9.421669908855277e-05 +9.350676315106323e-05 +9.259554704103845e-05 +9.14728350385305e-05 +9.008803580481774e-05 +8.841676626618095e-05 +8.642985092944256e-05 +8.409807455530546e-05 +8.135990794649275e-05 +9.397056962401507e-05 +9.383639315412823e-05 +9.356258662315229e-05 +9.314655194889197e-05 +9.257952647554675e-05 +9.184333219982599e-05 +9.091531621238387e-05 +8.978585287139713e-05 +8.841676644182986e-05 +8.678678957129511e-05 +8.487233279559834e-05 +8.264876823277332e-05 +8.005267002387063e-05 +9.194457317174046e-05 +9.180405765293228e-05 +9.15248042283374e-05 +9.109168186189159e-05 +9.052253289748776e-05 +8.978626699683505e-05 +8.886296091391658e-05 +8.775072020419093e-05 +8.642994493155124e-05 +8.487233299392446e-05 +8.305385830323767e-05 +8.097299444259043e-05 +7.856734260166838e-05 +8.936951266054348e-05 +8.923503103759649e-05 +8.895729267898862e-05 +8.853552113597482e-05 +8.798368772879487e-05 +8.726763801093285e-05 +8.638269860898774e-05 +8.53317673912081e-05 +8.409807516709315e-05 +8.264876867550178e-05 +8.097299467012351e-05 +7.90825808406149e-05 +7.690451715280418e-05 +8.617204753033096e-05 +8.605498797368209e-05 +8.57958653208745e-05 +8.540275067065006e-05 +8.489663782932388e-05 +8.423619822411502e-05 +8.342469998186837e-05 +8.247173638531095e-05 +8.135990885220013e-05 +8.00526707263067e-05 +7.85673430841981e-05 +7.690451740205624e-05 +7.499300321251839e-05 +9.684725050266984e-05 +9.720736828701168e-05 +9.759834303253975e-05 +9.785787265747915e-05 +9.793707556219671e-05 +9.778945804426835e-05 +9.736830361348363e-05 +9.66248637282905e-05 +9.551699931502203e-05 +9.3970569089812e-05 +9.194457247371853e-05 +8.936951178998626e-05 +8.617204647048032e-05 +9.720736838394263e-05 +9.74390525774738e-05 +9.7715046097683e-05 +9.78958091252173e-05 +9.79223616973846e-05 +9.773679371085378e-05 +9.728498052554203e-05 +9.652246607876772e-05 +9.538863706610823e-05 +9.383639262596245e-05 +9.180405696011724e-05 +8.923503016889795e-05 +8.605498691890474e-05 +9.759834311903325e-05 +9.771504613047293e-05 +9.785648978810992e-05 +9.793292873519076e-05 +9.787654331604081e-05 +9.762396127986322e-05 +9.711689168931755e-05 +9.630235127606465e-05 +9.513666026695272e-05 +9.356258605761236e-05 +9.152480353729318e-05 +8.895741575222699e-05 +8.579586422567548e-05 +9.785787269673231e-05 +9.789580915020159e-05 +9.793292727951883e-05 +9.790826390536154e-05 +9.775059019737333e-05 +9.741398864782441e-05 +9.683651668066497e-05 +9.59641342851814e-05 +9.475026273374492e-05 +9.314655139264176e-05 +9.109168113921274e-05 +8.853552023824615e-05 +8.540274958095771e-05 +9.793707554110544e-05 +9.792236168221992e-05 +9.787654329125853e-05 +9.77505901785961e-05 +9.749790295908071e-05 +9.706688812604785e-05 +9.641144483261597e-05 +9.547743255154243e-05 +9.42166986188465e-05 +9.257952588831398e-05 +9.052253214143566e-05 +8.798368684252322e-05 +8.489679146721774e-05 +9.778945794945103e-05 +9.773679363421381e-05 +9.762396120519635e-05 +9.741401022837308e-05 +9.706688808938141e-05 +9.654921844731048e-05 +9.580957988616037e-05 +9.481226774006898e-05 +9.350676265194668e-05 +9.184333158736182e-05 +8.978626625387607e-05 +8.726763709430022e-05 +8.423619712158896e-05 +9.736830342712271e-05 +9.728498037253464e-05 +9.711689154231512e-05 +9.683651656703025e-05 +9.641144473944118e-05 +9.580957983568498e-05 +9.500414972072308e-05 +9.394212106736051e-05 +9.259554652455303e-05 +9.091531558036468e-05 +8.886296012857328e-05 +8.6382697668109e-05 +8.342469885252605e-05 +9.662482404959962e-05 +9.652246584012785e-05 +9.630235104809707e-05 +9.596413408098266e-05 +9.54774323849814e-05 +9.481226762111909e-05 +9.39421210035651e-05 +9.284131178057177e-05 +9.147283449260518e-05 +8.978585221511976e-05 +8.775060201992278e-05 +8.53317664323246e-05 +8.247173523563369e-05 +9.551699890698837e-05 +9.538863668705593e-05 +9.513665994095042e-05 +9.475026244084026e-05 +9.421669836566306e-05 +9.350676244697503e-05 +9.2595546380573e-05 +9.147283441498027e-05 +9.008803522989066e-05 +8.841676574057098e-05 +8.64299440959845e-05 +8.409807419662387e-05 +8.135990768894273e-05 +9.397056853526827e-05 +9.383639213397961e-05 +9.356258559147204e-05 +9.314655099452262e-05 +9.257956302519076e-05 +9.184333128588803e-05 +9.091531534266189e-05 +8.978585204720118e-05 +8.841676564891355e-05 +8.678678882826527e-05 +8.48723321472135e-05 +8.264876764954895e-05 +8.005266955528952e-05 +9.194457174493448e-05 +9.180405630230747e-05 +9.152480294696529e-05 +9.109168059150321e-05 +9.052253164261577e-05 +8.978631774529612e-05 +8.886295977025675e-05 +8.7750719099327e-05 +8.642985027634267e-05 +8.487233204372265e-05 +8.305385742173792e-05 +8.097299364581698e-05 +7.856734191207585e-05 +8.936951087665983e-05 +8.92350293309193e-05 +8.895726701023136e-05 +8.85355195259465e-05 +8.79836862170435e-05 +8.72675051319575e-05 +8.638269717527674e-05 +8.53317660216057e-05 +8.409807387737967e-05 +8.264876741852357e-05 +8.097312476291067e-05 +7.908257977758156e-05 +7.690451622680716e-05 +8.617204535399332e-05 +8.605498588778784e-05 +8.579586323874131e-05 +8.540274868330848e-05 +8.489679066318913e-05 +8.423619638917199e-05 +8.34246981959123e-05 +8.24717346658558e-05 +8.135990721632479e-05 +8.005266918874307e-05 +7.856734166028135e-05 +7.690451609674198e-05 +7.499300200130935e-05 +9.684725025429084e-05 +9.720738705367205e-05 +9.75983428039409e-05 +9.785787256333107e-05 +9.793707561018891e-05 +9.778945825296943e-05 +9.736830401436392e-05 +9.662482492429095e-05 +9.551700016677131e-05 +9.397057023539181e-05 +9.194457396641831e-05 +8.936951364724445e-05 +8.617204872701208e-05 +9.72073681457912e-05 +9.74390523050009e-05 +9.771504589218137e-05 +9.789580902329424e-05 +9.79223617481405e-05 +9.773679393915426e-05 +9.728498094731906e-05 +9.652246670085394e-05 +9.53886380131999e-05 +9.383639381488923e-05 +9.180405850722015e-05 +8.923503209558862e-05 +8.605498924466093e-05 +9.759834296969385e-05 +9.771504595501882e-05 +9.785648969057469e-05 +9.793292724712965e-05 +9.787654345177837e-05 +9.762396159832138e-05 +9.711689222679764e-05 +9.63023520255638e-05 +9.513666125791567e-05 +9.356258739132644e-05 +9.152480514624248e-05 +8.895726976183274e-05 +8.579586672425778e-05 +9.785787263855442e-05 +9.78958090711732e-05 +9.79329287121516e-05 +9.790826674646621e-05 +9.775059041969715e-05 +9.741401070885637e-05 +9.683651726526062e-05 +9.596413516320745e-05 +9.475026384362409e-05 +9.31465527648121e-05 +9.109168289145856e-05 +8.853552238300539e-05 +8.540275215129984e-05 +9.793707556977037e-05 +9.792236171907947e-05 +9.787654340428654e-05 +9.775059038371313e-05 +9.749790327817877e-05 +9.70668886566589e-05 +9.641144558805834e-05 +9.547743354692892e-05 +9.421669986052287e-05 +9.257956489408673e-05 +9.052253404878307e-05 +8.798368903763991e-05 +8.489679409813934e-05 +9.778945807126504e-05 +9.773679379228425e-05 +9.762396145523258e-05 +9.74139889491684e-05 +9.706688858639267e-05 +9.654921906698665e-05 +9.58095807427777e-05 +9.481226884762831e-05 +9.35067640354343e-05 +9.184324543940126e-05 +8.978632010979822e-05 +8.726763944685585e-05 +8.423619989800711e-05 +9.736830365722876e-05 +9.728498065410133e-05 +9.711689194508761e-05 +9.683651704749525e-05 +9.64114454095017e-05 +9.580958064604847e-05 +9.500415068971459e-05 +9.394212229658623e-05 +9.25955480243094e-05 +9.091531735408928e-05 +8.886296226964463e-05 +8.638270016966238e-05 +8.342470179009127e-05 +9.66248637840524e-05 +9.652246624353336e-05 +9.630235158869521e-05 +9.596413477188856e-05 +9.547743322773755e-05 +9.48122686196772e-05 +9.394212217433122e-05 +9.284131322722378e-05 +9.147283615241041e-05 +8.978585413583124e-05 +8.775060433948962e-05 +8.533176907329245e-05 +8.247173832475167e-05 +9.551699938483082e-05 +9.538863728679816e-05 +9.513666063317693e-05 +9.475026328231254e-05 +9.421669937533153e-05 +9.350676364263414e-05 +9.259554774839147e-05 +9.1472836003653e-05 +9.00880370596201e-05 +8.841676788069915e-05 +8.64298529355632e-05 +8.409807696593889e-05 +8.135991091844006e-05 +9.397056917268486e-05 +9.383639287207155e-05 +9.356258649803236e-05 +9.314655200187133e-05 +9.25795267207018e-05 +9.184333265734772e-05 +9.091531689856459e-05 +8.978585381403836e-05 +8.841676770505018e-05 +8.678679119298868e-05 +8.487233473841557e-05 +8.264877068366116e-05 +8.005284077863316e-05 +9.194457256980353e-05 +9.180405724661793e-05 +9.152480401496008e-05 +9.109168184184813e-05 +9.052253309286305e-05 +8.978626740629303e-05 +8.886296158298032e-05 +8.775060379117384e-05 +8.642985255397925e-05 +8.487233454008927e-05 +8.30538602271476e-05 +8.097312802281572e-05 +7.856734539060932e-05 +8.936951189697948e-05 +8.923503048971734e-05 +8.895739224225212e-05 +8.853552101798066e-05 +8.798368783899364e-05 +8.726763836475071e-05 +8.638269922521679e-05 +8.533176828620615e-05 +8.409807635415121e-05 +8.264877024093272e-05 +8.09729965594502e-05 +7.908258316072975e-05 +7.690451983702117e-05 +8.617204658741791e-05 +8.605498726866679e-05 +8.579586483293369e-05 +8.540275043107826e-05 +8.489679255732871e-05 +8.423619849443032e-05 +8.342470053178096e-05 +8.247182719134323e-05 +8.135991001273265e-05 +8.00526722131178e-05 +7.85673449080794e-05 +7.690451958776911e-05 +7.499300585603265e-05 +8.216008788254208e-05 +8.204976457423742e-05 +8.179890206763906e-05 +8.142162105311695e-05 +8.092306125878274e-05 +8.029230695951833e-05 +7.950499659157886e-05 +7.85869834710467e-05 +7.752659857393661e-05 +7.628574128055402e-05 +7.48849602014586e-05 +7.332833598132496e-05 +7.15526222787337e-05 +7.749430231426447e-05 +7.737864375474668e-05 +7.711365542173364e-05 +7.67188750797469e-05 +7.619780512354448e-05 +7.553938470773814e-05 +7.471975461828321e-05 +7.377229011633426e-05 +7.268128951119821e-05 +7.141082908515811e-05 +6.99835752870176e-05 +6.840664008340275e-05 +6.662265623241507e-05 +7.263156099572102e-05 +7.251194442790514e-05 +7.223910145385574e-05 +7.183618001320632e-05 +7.130556149164004e-05 +7.063293052298557e-05 +6.980241554018212e-05 +6.884547825106245e-05 +6.774707687999865e-05 +6.647163545010022e-05 +6.504548710402627e-05 +6.347633840473403e-05 +6.170715391179196e-05 +6.767872733039009e-05 +6.755808812802878e-05 +6.728263980242061e-05 +6.687590853501018e-05 +6.635021193909064e-05 +6.567343739878189e-05 +6.484908801771398e-05 +6.389742348741946e-05 +6.28041466365068e-05 +6.154319596618686e-05 +6.0140886661624266e-05 +5.860613796841414e-05 +5.688206198940058e-05 +6.271825622860866e-05 +6.260151277343366e-05 +6.233245411330315e-05 +6.192758895600772e-05 +6.140756248650933e-05 +6.074507063016999e-05 +5.993504767999689e-05 +5.899830915500785e-05 +5.7932755539449445e-05 +5.670488362198158e-05 +5.5342206100192414e-05 +5.3853858566355375e-05 +5.218870890281996e-05 +5.7826816097399604e-05 +5.771169083480859e-05 +5.744934037659886e-05 +5.706045626480159e-05 +5.655126090569654e-05 +5.590883822167179e-05 +5.512081002074074e-05 +5.42187134418715e-05 +5.318719867851648e-05 +5.200216399594486e-05 +5.0691908800877685e-05 +4.926642788982212e-05 +4.7677477387806936e-05 +5.3063207285420264e-05 +5.2953347036828886e-05 +5.269925603521713e-05 +5.232086499498089e-05 +5.1834110102844274e-05 +5.121591431777259e-05 +5.0460835894247e-05 +4.9593455859726673e-05 +4.861029325517088e-05 +4.7480848027034804e-05 +4.623333779067064e-05 +4.487961743762933e-05 +4.3374389210037695e-05 +4.8465684275174396e-05 +4.835947686677253e-05 +4.8117351219553014e-05 +4.7759494258767115e-05 +4.729631113840724e-05 +4.6705606047392e-05 +4.5990419254162134e-05 +4.516636138265451e-05 +4.4232963951362626e-05 +4.3165941429838136e-05 +4.198991566548889e-05 +4.071506972104003e-05 +3.9301504500260566e-05 +4.407030686470585e-05 +4.397047820605616e-05 +4.374283452560301e-05 +4.3405308622584454e-05 +4.2965148705930314e-05 +4.2410213357279275e-05 +4.1735038172905727e-05 +4.096090993775145e-05 +4.0082842691893886e-05 +3.908250411620862e-05 +3.7981488331181076e-05 +3.679028522341711e-05 +3.5472563630254084e-05 +3.990240493821451e-05 +3.980899851731015e-05 +3.959594648932275e-05 +3.927938407767974e-05 +3.886694635758887e-05 +3.834803370762759e-05 +3.771672790916935e-05 +3.6994138733089787e-05 +3.617583270392564e-05 +3.5245928420614794e-05 +3.4221118688120445e-05 +3.311587543308019e-05 +3.189688590523669e-05 +3.5977674701640015e-05 +3.589070188761159e-05 +3.569223937808408e-05 +3.53983636756882e-05 +3.501584203026479e-05 +3.4533091185581685e-05 +3.39486678316179e-05 +3.3277901137181056e-05 +3.252304174089359e-05 +3.1660881407537944e-05 +3.071572194945118e-05 +2.9700024325308048e-05 +2.8580151850380652e-05 +3.2307034347418844e-05 +3.22264019593007e-05 +3.2042503369265794e-05 +3.177042894929976e-05 +3.141991752086628e-05 +3.0974505971227635e-05 +3.043531166468196e-05 +2.9819700720571465e-05 +2.9125310009003006e-05 +2.833395229192022e-05 +2.7470457359999905e-05 +2.654051157963028e-05 +2.55182826728214e-05 +2.889455603093205e-05 +2.882110393182618e-05 +2.8652373586735314e-05 +2.840208747881859e-05 +2.8080082318076372e-05 +2.7674480501659037e-05 +2.718053215674043e-05 +2.6618862277612924e-05 +2.5984683688818084e-05 +2.5265632538708545e-05 +2.4477389787721993e-05 +2.3633824819310328e-05 +2.2707761620605794e-05 +2.5738608185596763e-05 +2.5671615921214203e-05 +2.551883497007208e-05 +2.5292509125700577e-05 +2.4999141952837864e-05 +2.4629399695689104e-05 +2.418268619094757e-05 +2.3672362137363885e-05 +2.3098304166555747e-05 +2.2446219351711306e-05 +2.1736025077700814e-05 +2.0973098274246424e-05 +2.0139514560772787e-05 +2.2838735984511037e-05 +2.277817417784299e-05 +2.2640110354664236e-05 +2.243411789758439e-05 +2.2169465747092288e-05 +2.1837078966475175e-05 +2.1433821312392943e-05 +2.0973575430882184e-05 +2.045783868162822e-05 +1.9871159325475413e-05 +1.9234481713126266e-05 +1.85502219364713e-05 +1.780310395054683e-05 +2.018539238612171e-05 +2.0130753256023737e-05 +2.0006129168748117e-05 +1.9821913951508227e-05 +1.9585296543368694e-05 +1.928771559790005e-05 +1.8925874017739614e-05 +1.8514522220176196e-05 +1.805346141044283e-05 +1.7529631142796267e-05 +1.6960760409950888e-05 +1.6352104375482695e-05 +1.5687307460853378e-05 +1.7768832840554988e-05 +1.7720380376655913e-05 +1.760956733655894e-05 +1.744571575182561e-05 +1.723499940334026e-05 +1.6970105452863572e-05 +1.664832942658604e-05 +1.6283297334934414e-05 +1.587305990133648e-05 +1.5409012634166833e-05 +1.4905137382763352e-05 +1.4366143360901778e-05 +1.3779234827274608e-05 +1.5578548005060864e-05 +1.5535579026647873e-05 +1.5437658474993435e-05 +1.5292726276290626e-05 +1.5106509498652534e-05 +1.4872665811857131e-05 +1.45883977589592e-05 +1.4265961929317497e-05 +1.3904556571865335e-05 +1.3496396261846038e-05 +1.3051089866849447e-05 +1.257846514140904e-05 +1.206128732389502e-05 +1.36009400565e-05 +1.3563231802616216e-05 +1.3477381248895047e-05 +1.3350238177472132e-05 +1.318621543555952e-05 +1.2980366502964136e-05 +1.2732137867772392e-05 +1.2450184087205953e-05 +1.2132862283906745e-05 +1.1774747467690002e-05 +1.1387268244974228e-05 +1.0972754733592869e-05 +1.05219517289247e-05 +1.1820405734335952e-05 +1.1787603927373758e-05 +1.1712979684078191e-05 +1.1602543843002992e-05 +1.1460421615307766e-05 +1.1281203515916248e-05 +1.106420534917017e-05 +1.081860261593474e-05 +1.0543172577082887e-05 +1.023227647997299e-05 +9.895078076827417e-06 +9.536067636648066e-06 +9.144548408043995e-06 +1.0223944759392672e-05 +1.0195617671065594e-05 +1.0130876828386936e-05 +1.0035179999365034e-05 +9.911824082474729e-06 +9.757145052424846e-06 +9.570392590591277e-06 +9.358290168890981e-06 +9.120189190145176e-06 +8.852216075904562e-06 +8.561271082740875e-06 +8.251402395672789e-06 +7.914214235173088e-06 +8.794327859998247e-06 +8.770117439734587e-06 +8.714765759020607e-06 +8.63270320335939e-06 +8.527210041753331e-06 +8.394709859839996e-06 +8.234335973195405e-06 +8.052003245721683e-06 +7.848170850081671e-06 +7.618996214740478e-06 +7.369295722172414e-06 +7.1045869243074155e-06 +6.815499007695037e-06 +7.517030195243156e-06 +7.496441324544258e-06 +7.449330360965667e-06 +7.379402982252919e-06 +7.289302654301239e-06 +7.176631511610688e-06 +7.040095536168852e-06 +6.885504099595028e-06 +6.712326934998802e-06 +6.516860123218161e-06 +6.305291025855827e-06 +6.07921237223839e-06 +5.8341271149678136e-06 +6.374223260228094e-06 +6.356945208082296e-06 +6.3173137660208275e-06 +6.258714599339617e-06 +6.182682843440419e-06 +6.087534340023986e-06 +5.972455606951203e-06 +5.842372602054427e-06 +5.6963669809082305e-06 +5.531474991793659e-06 +5.352946269390828e-06 +5.162026963379821e-06 +4.954794672132728e-06 +5.3513218098211905e-06 +5.336800060078203e-06 +5.303485806499256e-06 +5.254465394683411e-06 +5.191270180883338e-06 +5.111881539104896e-06 +5.016276643832871e-06 +4.9074281251995365e-06 +4.785785191864545e-06 +4.6488865335357516e-06 +4.500123278339897e-06 +4.3410534575694855e-06 +4.168461024166286e-06 +4.434017207484385e-06 +4.42211918670256e-06 +4.394804827052612e-06 +4.354571294447885e-06 +4.3028861311257095e-06 +4.237919994601401e-06 +4.159457765120137e-06 +4.070539674809356e-06 +3.971363644839885e-06 +3.85908457075031e-06 +3.7388415687045956e-06 +3.6116935772727416e-06 +3.4736823965406518e-06 +3.617145213025683e-06 +3.6078411352809806e-06 +3.5865813101730677e-06 +3.5550195738030944e-06 +3.5146678654516797e-06 +3.4639361664641127e-06 +3.4025568587537685e-06 +3.3335833275240215e-06 +3.2567622407747693e-06 +3.1708662064290527e-06 +3.0774158414104914e-06 +2.978536936851057e-06 +2.8712222801748103e-06 +2.9086353393597484e-06 +2.9016162662691056e-06 +2.885573621073857e-06 +2.8619838446698965e-06 +2.83157380918542e-06 +2.7934457333474444e-06 +2.7474349421847668e-06 +2.6953885363825243e-06 +2.6370492211849946e-06 +2.57189317240939e-06 +2.501397848487564e-06 +2.4280576409754933e-06 +2.3483965723446697e-06 +2.295673915945824e-06 +2.2906783143809385e-06 +2.279380515708412e-06 +2.2625806107597703e-06 +2.2411364989246407e-06 +2.2142289775157574e-06 +2.1816198389443805e-06 +2.1448169578085927e-06 +2.1037405616299693e-06 +2.057279581370857e-06 +2.0065568019670028e-06 +1.953512468028516e-06 +1.894988576589433e-06 +1.7632335909782883e-06 +1.7599120803836272e-06 +1.7524002999623477e-06 +1.740980111137532e-06 +1.726737473629044e-06 +1.7085629091258886e-06 +1.6856152392745381e-06 +1.6591747130778743e-06 +1.6300717862624597e-06 +1.5967473228786711e-06 +1.5611937321837995e-06 +1.5238475883241089e-06 +1.4831693403172905e-06 +1.26988832822101e-06 +1.2678479946231132e-06 +1.2633585020959602e-06 +1.256540231019199e-06 +1.247903098800015e-06 +1.2371192584699366e-06 +1.2240941510910704e-06 +1.2089978801195825e-06 +1.1926387893797459e-06 +1.1740943805211115e-06 +1.1542856717357624e-06 +1.1324883037128242e-06 +1.1095870587286933e-06 +8.28653468716964e-07 +8.279603603663586e-07 +8.264246355235441e-07 +8.241013462022051e-07 +8.210750446301473e-07 +8.172838684441459e-07 +8.130660081712723e-07 +8.078120443306696e-07 +8.021679780316867e-07 +7.960389750701834e-07 +7.892307782382705e-07 +7.815355451363212e-07 +7.739659048007753e-07 +7.155282039053831e-05 +7.332833576180649e-05 +7.488495984488532e-05 +7.628574079894327e-05 +7.752659797475866e-05 +7.858698276449651e-05 +7.950499578274754e-05 +8.029230603041546e-05 +8.092306025235372e-05 +8.142161993017966e-05 +8.17990861668916e-05 +8.204976329123432e-05 +8.216008650059956e-05 +6.662265614435886e-05 +6.840663982441306e-05 +6.998357486551757e-05 +7.141082851398495e-05 +7.268128879846919e-05 +7.37722892718564e-05 +7.471975365210152e-05 +7.553938361793016e-05 +7.619802876201154e-05 +7.671887373677264e-05 +7.71134304115987e-05 +7.737864221534005e-05 +7.7494525489519e-05 +6.170715380994175e-05 +6.347633810485355e-05 +6.504574362246497e-05 +6.647163480228453e-05 +6.774707605349213e-05 +6.88454772655967e-05 +6.980215298343333e-05 +7.063318778567472e-05 +7.130556007098893e-05 +7.18361784894642e-05 +7.223936148092349e-05 +7.251194261203016e-05 +7.26315590529531e-05 +5.6882061873304774e-05 +5.860637516508116e-05 +6.014088611986191e-05 +6.154319522638788e-05 +6.280414571122483e-05 +6.389742238937338e-05 +6.484908672024394e-05 +6.567332953872593e-05 +6.635021030684621e-05 +6.687584013293657e-05 +6.728263787482754e-05 +6.755808603710677e-05 +6.767872510219745e-05 +5.218870877541519e-05 +5.3853858191081744e-05 +5.534220548786369e-05 +5.670488278490915e-05 +5.793275449080088e-05 +5.899830790859296e-05 +5.993504625131085e-05 +6.074506898662685e-05 +6.140756068675256e-05 +6.192758695740891e-05 +6.233245192324889e-05 +6.260151047032476e-05 +6.271826428008907e-05 +4.7677477248340535e-05 +4.926642748044975e-05 +5.069190813304013e-05 +5.200216308236476e-05 +5.318719753215141e-05 +5.421871206618248e-05 +5.5120808414735606e-05 +5.5908836419596786e-05 +5.655125888131743e-05 +5.706045406144946e-05 +5.744933798378118e-05 +5.771168824236667e-05 +5.782681331497926e-05 +4.337438905760896e-05 +4.487930943206676e-05 +4.623333706346207e-05 +4.7480847031790315e-05 +4.861029198104408e-05 +4.959345434228078e-05 +5.046083414793392e-05 +5.121591231528685e-05 +5.1834107897002793e-05 +5.232086255739805e-05 +5.269918839795158e-05 +5.295334420829378e-05 +5.30632042507164e-05 +3.9301504335342676e-05 +4.071539789861818e-05 +4.198991488003624e-05 +4.316621362156358e-05 +4.423296257712234e-05 +4.5166359745053985e-05 +4.59904173368501e-05 +4.670560388580591e-05 +4.729630872660713e-05 +4.7759491625062344e-05 +4.8117348338894906e-05 +4.835956093628749e-05 +4.846568093037154e-05 +3.5472563455716135e-05 +3.679028471020277e-05 +3.7981487478338506e-05 +3.908250294184308e-05 +4.008284121622582e-05 +4.096090817822539e-05 +4.1735036101985455e-05 +4.241037632665606e-05 +4.296514609147567e-05 +4.3405450412943354e-05 +4.3742686958758855e-05 +4.3970523372114406e-05 +4.407030327146854e-05 +3.189688571946756e-05 +3.3115874884930965e-05 +3.422111779165143e-05 +3.5245927165892387e-05 +3.617583112617937e-05 +3.699389610786882e-05 +3.771693653059953e-05 +3.834803122123353e-05 +3.886709734610454e-05 +3.927932920164406e-05 +3.959614952965621e-05 +3.9809046839665404e-05 +3.990220867370765e-05 +2.858060459219284e-05 +2.9700023743909376e-05 +3.071572099511362e-05 +3.166055764460366e-05 +3.2523040064212554e-05 +3.327789913061942e-05 +3.394866549494082e-05 +3.4532981434607765e-05 +3.5016057402249e-05 +3.539814251293048e-05 +3.569229076737805e-05 +3.589064702479372e-05 +3.5977948327295683e-05 +2.5518282467354068e-05 +2.654051096868563e-05 +2.7470456351721412e-05 +2.8333950903504932e-05 +2.912530825967319e-05 +2.9819698596944806e-05 +3.0435309207723034e-05 +3.097455993599654e-05 +3.142002936953745e-05 +3.177065625848155e-05 +3.20424412675886e-05 +3.222657423530664e-05 +3.230691199243636e-05 +2.270776140642715e-05 +2.363382418098808e-05 +2.4477388740939056e-05 +2.5265631082282985e-05 +2.5984681844812413e-05 +2.6618860065224543e-05 +2.718023667590694e-05 +2.7674596213905428e-05 +2.8079958766726513e-05 +2.8401961828084214e-05 +2.8652677273456006e-05 +2.8820976801264167e-05 +2.8894489807996176e-05 +2.013951433715106e-05 +2.0973097612845013e-05 +2.173602399333875e-05 +2.2446217836076046e-05 +2.309830225550803e-05 +2.3672359813721278e-05 +2.4182622711429757e-05 +2.4629458625204438e-05 +2.499932721281304e-05 +2.529237879793251e-05 +2.5518958834955554e-05 +2.567186868284063e-05 +2.5738667964015137e-05 +1.780310372077882e-05 +1.8549675765701855e-05 +1.923406416711179e-05 +1.9871157759206787e-05 +2.045783669487544e-05 +2.0973634950767085e-05 +2.1433627992442258e-05 +2.18370757831313e-05 +2.2169462169778408e-05 +2.2434047606286123e-05 +2.264023904280502e-05 +2.2778102561756205e-05 +2.2838731022160296e-05 +1.568784286543882e-05 +1.6352103673141546e-05 +1.696075924496267e-05 +1.752962952958146e-05 +1.8053459350811753e-05 +1.8514711265245017e-05 +1.892627476817587e-05 +1.9287646091478177e-05 +1.9585292851166446e-05 +1.982184142559053e-05 +2.000657689263172e-05 +2.013081816988229e-05 +2.018580719513562e-05 +1.377923458664221e-05 +1.4366142638725122e-05 +1.4905136195015149e-05 +1.540901097653024e-05 +1.5873057787318484e-05 +1.628316346518337e-05 +1.664852842063542e-05 +1.6970033407546872e-05 +1.723546799938792e-05 +1.7445852343517556e-05 +1.7609386985253657e-05 +1.7720734015837525e-05 +1.7768612326813288e-05 +1.2061287076944666e-05 +1.2578464409358175e-05 +1.3051088647939098e-05 +1.3495983586128545e-05 +1.3904489269296943e-05 +1.4266228351466476e-05 +1.4588050446945634e-05 +1.48730117369639e-05 +1.510671925191419e-05 +1.529286646013892e-05 +1.543772682483344e-05 +1.5535794748446506e-05 +1.557834424798776e-05 +1.05219514779552e-05 +1.097275398325798e-05 +1.138680778960151e-05 +1.1774745742663146e-05 +1.2132593049633787e-05 +1.2450043954807431e-05 +1.273213475541807e-05 +1.29806494583509e-05 +1.3186065432974603e-05 +1.3350455280857356e-05 +1.3477376433631806e-05 +1.3563370478797397e-05 +1.3600858984353203e-05 +9.144548153208423e-06 +9.536066877546524e-06 +9.894612724431807e-06 +1.023227472076279e-05 +1.0543034829321761e-05 +1.0818739322025645e-05 +1.1063916336925095e-05 +1.1281272999207329e-05 +1.1460195791798944e-05 +1.1602764480636203e-05 +1.1712974789909018e-05 +1.1787675082912471e-05 +1.1820630065051107e-05 +7.914213976717015e-06 +8.252015691537823e-06 +8.561269802557359e-06 +8.852214296597165e-06 +9.120255634421376e-06 +9.358074591706024e-06 +9.570389367926524e-06 +9.756919101055388e-06 +9.912030574720492e-06 +1.0035010781386034e-05 +1.0130639870930084e-05 +1.0195768074150253e-05 +1.0224251721367616e-05 +6.81549874558802e-06 +7.104586142366453e-06 +7.369943444792301e-06 +7.618994414007068e-06 +7.848238159328257e-06 +8.051856703314788e-06 +8.234111113850511e-06 +8.394556065965805e-06 +8.526900004018222e-06 +8.632931407125978e-06 +8.715073324203953e-06 +8.77042691344224e-06 +8.794322026676398e-06 +5.833562236113122e-06 +6.079211576637702e-06 +6.305289714010449e-06 +6.516416772418497e-06 +6.712112966148675e-06 +6.885510186333077e-06 +7.0402418687995845e-06 +7.176627717080085e-06 +7.289143112808614e-06 +7.379240652056881e-06 +7.449643987206348e-06 +7.496674702106351e-06 +7.517104217331853e-06 +4.954794401455448e-06 +5.162026155371125e-06 +5.352944925441999e-06 +5.531473135030788e-06 +5.69636460444851e-06 +5.842369714275741e-06 +5.9723008238202046e-06 +6.0878403397770954e-06 +6.183293666237031e-06 +6.259110459784639e-06 +6.3173085840798865e-06 +6.35718233763041e-06 +6.374460885757916e-06 +4.1690772006659076e-06 +4.341052636707382e-06 +4.500121913122729e-06 +4.648884649448256e-06 +4.785491796357645e-06 +4.907575380676607e-06 +5.016427538245266e-06 +5.111484496501137e-06 +5.191185660956855e-06 +5.254216548349216e-06 +5.303644974053711e-06 +5.336711482992162e-06 +5.351398820173603e-06 +3.4736821249464744e-06 +3.611692763247309e-06 +3.7388402149166494e-06 +3.859542595616897e-06 +3.971508664613085e-06 +4.070156153503959e-06 +4.1591414348313305e-06 +4.238235347084042e-06 +4.302637607265815e-06 +4.354401206305704e-06 +4.39521692969978e-06 +4.4218610223159605e-06 +4.434179821677031e-06 +2.8712220128795043e-06 +2.9785361322930054e-06 +3.0774145034744784e-06 +3.170864339801704e-06 +3.2564717379183967e-06 +3.3340265332152973e-06 +3.4028627611967776e-06 +3.463932222902453e-06 +3.514905356618469e-06 +3.554687276870169e-06 +3.5865759693975118e-06 +3.6080854905430065e-06 +3.617390078121478e-06 +2.3483963121777537e-06 +2.428056861286181e-06 +2.5013965519458425e-06 +2.5718913132210748e-06 +2.6369033943646184e-06 +2.695533719009661e-06 +2.7475076303239726e-06 +2.7936753881301035e-06 +2.8317281076473593e-06 +2.8618985134457584e-06 +2.8855683670839715e-06 +2.901446556965773e-06 +2.9083574177086184e-06 +1.894988315172135e-06 +1.953511684621584e-06 +2.0065554993013515e-06 +2.057277764116917e-06 +2.1033877820524665e-06 +2.144598051209472e-06 +2.181986631821828e-06 +2.2139222593865474e-06 +2.241209439046033e-06 +2.262587500496008e-06 +2.2792169855283785e-06 +2.290592999048219e-06 +2.295748089275285e-06 +1.4825502040629466e-06 +1.5238467607173542e-06 +1.5611923560736436e-06 +1.5967454032250475e-06 +1.630291408887234e-06 +1.6591717291209893e-06 +1.6852078797784077e-06 +1.7085589041719028e-06 +1.726965776733492e-06 +1.7409754074338992e-06 +1.7523951653776184e-06 +1.7602271210169588e-06 +1.7636055399881455e-06 +1.1095867814058653e-06 +1.132487472726318e-06 +1.1542842900754135e-06 +1.1740924531886405e-06 +1.1928592546981276e-06 +1.2093684235493158e-06 +1.2240118153545617e-06 +1.2371152378964515e-06 +1.2477342213454656e-06 +1.2568689102161178e-06 +1.2635217501955657e-06 +1.2676721796537715e-06 +1.2700525895603756e-06 +7.733356565351741e-07 +7.809462512954759e-07 +7.892292895906459e-07 +7.960368985449844e-07 +8.020052201990502e-07 +8.08056708477687e-07 +8.125527668874305e-07 +8.172795370752908e-07 +8.211587136758162e-07 +8.242756909191805e-07 +8.258736159744827e-07 +8.283201398249103e-07 +8.284629591815282e-07 +8.216008636456529e-05 +8.20497628840396e-05 +8.179908549166939e-05 +8.142157462784758e-05 +8.092305899916743e-05 +8.029230444555322e-05 +7.950499392225154e-05 +7.85869805723194e-05 +7.752659542683547e-05 +7.628573788809345e-05 +7.488495654533842e-05 +7.332833208714675e-05 +7.155281621509175e-05 +7.749452532872265e-05 +7.737864173398614e-05 +7.711342960743974e-05 +7.671887257938446e-05 +7.619802728656724e-05 +7.553938179259207e-05 +7.471975147165462e-05 +7.37722867033681e-05 +7.268128582998515e-05 +7.141082513545849e-05 +6.998357105163101e-05 +6.840663558988557e-05 +6.66226514889522e-05 +7.263155886642572e-05 +7.251194205082457e-05 +7.223936054936202e-05 +7.183617719323282e-05 +7.130555835617723e-05 +7.06331857109104e-05 +6.980215047277253e-05 +6.884560722526715e-05 +6.77470726669691e-05 +6.647163103500642e-05 +6.504573932610991e-05 +6.347633329215318e-05 +6.170714853114761e-05 +6.76787248901397e-05 +6.75580853969128e-05 +6.72826368119397e-05 +6.687590529792564e-05 +6.63502083580441e-05 +6.567332717619914e-05 +6.48490838699997e-05 +6.389741914241537e-05 +6.280414196933164e-05 +6.154319098248016e-05 +6.0140881371768256e-05 +5.860613236132832e-05 +5.6882055951667956e-05 +6.271826404644712e-05 +6.260150977048966e-05 +6.233245072525596e-05 +6.192758528891974e-05 +6.140755855694511e-05 +6.074506632877669e-05 +5.993490314985388e-05 +5.899830426024324e-05 +5.793275029497053e-05 +5.67048780360623e-05 +5.5342200183201165e-05 +5.385385233025448e-05 +5.2188702361279206e-05 +5.782681305358928e-05 +5.771168745950095e-05 +5.7449336683474725e-05 +5.706045223475317e-05 +5.6551256503086106e-05 +5.590883352760511e-05 +5.512080494878856e-05 +5.421870807305479e-05 +5.3187192985445804e-05 +5.2002157946762e-05 +5.069190240267278e-05 +4.9266706232778854e-05 +4.767747030238974e-05 +5.3063191188723534e-05 +5.295334335853522e-05 +5.2699251924008216e-05 +5.2320860548093844e-05 +5.183410532125635e-05 +5.1215909122057044e-05 +5.0460830404168044e-05 +4.9593449968283294e-05 +4.861028696439023e-05 +4.7480841479610045e-05 +4.623333087314621e-05 +4.487961016394759e-05 +4.337438153406822e-05 +4.846568061895492e-05 +4.835956000341642e-05 +4.8117346789120614e-05 +4.7759489464543394e-05 +4.7296305924620606e-05 +4.670560045720343e-05 +4.599041324937717e-05 +4.516635505224293e-05 +4.423295719936911e-05 +4.316620755421242e-05 +4.1989908238518784e-05 +4.0715390601956445e-05 +3.930149625690464e-05 +4.407030293808093e-05 +4.3970522373421016e-05 +4.374268529905182e-05 +4.340534254729826e-05 +4.296514306701943e-05 +4.241037265690909e-05 +4.173503170774783e-05 +4.096090316080622e-05 +4.008283547136026e-05 +3.9082496467307304e-05 +3.7981480307711526e-05 +3.6790276944373906e-05 +3.547255496085746e-05 +3.990219229580812e-05 +3.980904577416286e-05 +3.959614775653085e-05 +3.92793266919865e-05 +3.886709412221842e-05 +3.834820347755175e-05 +3.771693184973373e-05 +3.699389076300729e-05 +3.61758250108402e-05 +3.524592028003451e-05 +3.4221110290441354e-05 +3.311586663271525e-05 +3.189687672673977e-05 +3.597794794905319e-05 +3.589064589164372e-05 +3.5692288884084646e-05 +3.539813987919311e-05 +3.501605397677063e-05 +3.4532977277697136e-05 +3.394866057341783e-05 +3.32778934530115e-05 +3.252303358972529e-05 +3.166055048565316e-05 +3.0715713042454135e-05 +2.970001502897711e-05 +2.8580595110217057e-05 +3.230691159149521e-05 +3.222657303413631e-05 +3.20424392711034e-05 +3.1770653475213803e-05 +3.142002576850462e-05 +3.097455553642889e-05 +3.0435304047945386e-05 +2.981969260649035e-05 +2.9125301526416347e-05 +2.833394333928592e-05 +2.747044797913951e-05 +2.6540501845049186e-05 +2.5518272607202967e-05 +2.8894489389652614e-05 +2.882097554792321e-05 +2.8652580500563576e-05 +2.8402091244633902e-05 +2.8079955006768958e-05 +2.7674591624016006e-05 +2.7180231239478914e-05 +2.66188538408382e-05 +2.5984674766701025e-05 +2.526562317051901e-05 +2.447738007501983e-05 +2.3633814679205216e-05 +2.2707751163623047e-05 +2.5738667526858292e-05 +2.567186737313667e-05 +2.551885833789516e-05 +2.5292375754583076e-05 +2.499932328525668e-05 +2.4629453834468003e-05 +2.4182617077303433e-05 +2.3672353291190356e-05 +2.3098294937633244e-05 +2.2446209623271237e-05 +2.1736015039822804e-05 +2.09730877948116e-05 +2.013950367445329e-05 +2.2838730567381412e-05 +2.2778101199235177e-05 +2.2640236778008997e-05 +2.2434044419928607e-05 +2.2169458094456957e-05 +2.1837070836845634e-05 +2.143362211293596e-05 +2.0973628214788408e-05 +2.0457829102828816e-05 +1.9871149290387815e-05 +1.923405492187739e-05 +1.8549665647680657e-05 +1.780309279335225e-05 +2.0185806722229038e-05 +2.0130880572891523e-05 +2.0006574537396338e-05 +1.9821838141621193e-05 +1.958528865118159e-05 +1.928764098670335e-05 +1.8925995975623405e-05 +1.8514704326705234e-05 +1.8053805366560915e-05 +1.7529620823221506e-05 +1.696074966634784e-05 +1.635209329404416e-05 +1.56878316619737e-05 +1.7768611842592995e-05 +1.772073256009747e-05 +1.7609275568981835e-05 +1.744584896895268e-05 +1.7235269019654772e-05 +1.69700281211009e-05 +1.664852219774478e-05 +1.6283156334671367e-05 +1.5873049735930237e-05 +1.5409002045092266e-05 +1.490512644600624e-05 +1.4366131985981773e-05 +1.3779223190338347e-05 +1.5578321409135816e-05 +1.5535793255743684e-05 +1.54377243434564e-05 +1.529286299967981e-05 +1.510671482279647e-05 +1.4873006358588774e-05 +1.4588330507545348e-05 +1.4266221051826824e-05 +1.3904481082490303e-05 +1.3495974461755217e-05 +1.305107865808235e-05 +1.2578453627979698e-05 +1.2061275401665074e-05 +1.3600858475597052e-05 +1.356330029570286e-05 +1.347737389961905e-05 +1.3350451746883488e-05 +1.3186060896237247e-05 +1.2980643948988516e-05 +1.273212829662945e-05 +1.2450036500123783e-05 +1.2132584665245305e-05 +1.1774736472858937e-05 +1.1386797594453607e-05 +1.0972742947806408e-05 +1.0521939630234673e-05 +1.1820629548799873e-05 +1.1787673534811516e-05 +1.1712972216322631e-05 +1.1602599223851152e-05 +1.1460191200513903e-05 +1.1281267378322475e-05 +1.106390974485226e-05 +1.081873176455821e-05 +1.0543026323591162e-05 +1.0232265277445077e-05 +9.894602420888548e-06 +9.536055726690103e-06 +9.144536138275974e-06 +1.0224251195184212e-05 +1.01957664975679e-05 +1.0130637249943099e-05 +1.0035007125890626e-05 +9.91202589858354e-06 +9.75691340888504e-06 +9.570382691952636e-06 +9.358066904622378e-06 +9.120247010874382e-06 +8.852204754458528e-06 +8.56125934648645e-06 +8.25200431853153e-06 +7.914201805138958e-06 +8.794321495115922e-06 +8.770425320794186e-06 +8.715070676439155e-06 +8.632927698604669e-06 +8.526895259903074e-06 +8.39455030407028e-06 +8.234104306608699e-06 +8.05184891814231e-06 +7.848229426377839e-06 +7.618984764940125e-06 +7.369932829206796e-06 +7.104574678656844e-06 +6.815486414259183e-06 +7.517103679940554e-06 +7.496673091966889e-06 +7.449641288426397e-06 +7.379236887949813e-06 +7.289355191475198e-06 +7.176621868473624e-06 +7.040234974147816e-06 +6.885502300876832e-06 +6.712104119271318e-06 +6.516848490144236e-06 +6.305279016836e-06 +6.079199922172477e-06 +5.833549700877761e-06 +6.37446033993911e-06 +6.35718070225736e-06 +6.317305865218567e-06 +6.259106634098433e-06 +6.183068324360783e-06 +6.087834395187075e-06 +5.972293851011447e-06 +5.842361700156313e-06 +5.696355612849388e-06 +5.531463199253241e-06 +5.352933973707315e-06 +5.162014327519425e-06 +4.954781687351548e-06 +5.351398261515506e-06 +5.336709809058932e-06 +5.30376754167964e-06 +5.25421266669447e-06 +5.191180694999983e-06 +5.111478464676089e-06 +5.0164204329101085e-06 +4.90756725370663e-06 +4.7854826778225265e-06 +4.648874573040167e-06 +4.500110794620737e-06 +4.340499743714838e-06 +4.169064315106569e-06 +4.434179254613762e-06 +4.4218593232211534e-06 +4.395214104870948e-06 +4.354397266204524e-06 +4.3026325664757435e-06 +4.238229224230794e-06 +4.1591342350457376e-06 +4.070147918291313e-06 +3.9714994243536265e-06 +3.859532384390484e-06 +3.7388291951581557e-06 +3.6116808610304174e-06 +3.4736693840235647e-06 +3.6173895162043043e-06 +3.60800796911135e-06 +3.58657317013364e-06 +3.554683372359816e-06 +3.5149003612831033e-06 +3.4639261551645862e-06 +3.4028556433965446e-06 +3.3336562037045243e-06 +3.256462712772718e-06 +3.170854365995647e-06 +3.0774036176480453e-06 +2.9785243744072107e-06 +2.8712094797413054e-06 +2.9083568650498823e-06 +2.901444901077792e-06 +2.8855656140236495e-06 +2.8618946733765097e-06 +2.83172319467613e-06 +2.79366942033055e-06 +2.747500629653852e-06 +2.695525711185934e-06 +2.636894408795469e-06 +2.571881382908445e-06 +2.501386007180434e-06 +2.4280454714482267e-06 +2.348384119016841e-06 +2.295747551732795e-06 +2.2905913883712785e-06 +2.2792143076469943e-06 +2.2625837652399107e-06 +2.241204660102519e-06 +2.21391645431791e-06 +2.1819798219265024e-06 +2.1445902614748898e-06 +2.103379002305896e-06 +2.057268061040487e-06 +2.0065449084523893e-06 +1.95350024473699e-06 +1.8949760681332697e-06 +1.7636050001360628e-06 +1.760225503481756e-06 +1.7523924760860456e-06 +1.7409716562113068e-06 +1.7269609773636032e-06 +1.7085527470509343e-06 +1.6852006567693257e-06 +1.6591634666990867e-06 +1.630282137292268e-06 +1.5967351563882515e-06 +1.561181171475005e-06 +1.5238346792398726e-06 +1.4825372699096428e-06 +1.2700520173401924e-06 +1.2676704650904975e-06 +1.2635188995768124e-06 +1.256864933949833e-06 +1.2477291339956915e-06 +1.2371090580548822e-06 +1.224004565624771e-06 +1.209360130442424e-06 +1.192849948498199e-06 +1.1740821679179234e-06 +1.1542730633402742e-06 +1.132475345538975e-06 +1.1095737980589801e-06 +8.284623428794791e-07 +8.283182931250836e-07 +8.258705456327719e-07 +8.242714081736063e-07 +8.211532341155129e-07 +8.172728807421335e-07 +8.125449581190024e-07 +8.080477757216758e-07 +8.019951961057441e-07 +7.960258196966213e-07 +7.89217196431316e-07 +7.80933187967149e-07 +7.733216707149019e-07 +7.155261787864452e-05 +7.332833166646968e-05 +7.488495586201459e-05 +7.628573696515224e-05 +7.752659427859311e-05 +7.858697921831305e-05 +7.950499237223746e-05 +8.029230266505516e-05 +8.092305707048462e-05 +8.142161679429738e-05 +8.179889795418896e-05 +8.204976042534034e-05 +8.216008371626215e-05 +6.662265132020473e-05 +6.840663509356707e-05 +6.998357024388405e-05 +7.141082404088357e-05 +7.268128446413782e-05 +7.377228508504215e-05 +7.471974962010049e-05 +7.553937970412445e-05 +7.61978001316696e-05 +7.671887000575893e-05 +7.711365045784304e-05 +7.737863878392464e-05 +7.749452215436966e-05 +6.170714833596567e-05 +6.347607655143514e-05 +6.504548139820435e-05 +6.647162979355679e-05 +6.774707108308294e-05 +6.88454724262709e-05 +6.980214830864487e-05 +7.063292478347373e-05 +7.130555563369435e-05 +7.183617427319032e-05 +7.22393573436236e-05 +7.251193857094936e-05 +7.263155514337765e-05 +5.688205572918642e-05 +5.860613172211143e-05 +6.0140880333554945e-05 +6.154347789812032e-05 +6.280414019615586e-05 +6.389741703816124e-05 +6.484908138357669e-05 +6.567343081513941e-05 +6.63502052300722e-05 +6.687590192994765e-05 +6.728263311797195e-05 +6.755808138994774e-05 +6.767872062011437e-05 +5.218870211712549e-05 +5.385385161109417e-05 +5.5342199009757295e-05 +5.670487643192783e-05 +5.7932748285379284e-05 +5.8998301871660325e-05 +5.9935040405378656e-05 +6.074506317915199e-05 +6.140755510795855e-05 +6.192758145887964e-05 +6.233244652831775e-05 +6.260150535689748e-05 +6.271824878379251e-05 +4.767747003512138e-05 +4.926642036670497e-05 +5.0691901122854124e-05 +5.2002156196010696e-05 +5.318719078859446e-05 +5.4218705436735693e-05 +5.512080187110027e-05 +5.590883007417575e-05 +5.655125262364167e-05 +5.706044801233144e-05 +5.7449332097968054e-05 +5.7711682491442176e-05 +5.782680772146294e-05 +4.337438124195917e-05 +4.487960931040224e-05 +4.623295512954349e-05 +4.7480839572360655e-05 +4.8610284522700685e-05 +4.9593447060306666e-05 +5.0460827057598834e-05 +5.121590528456803e-05 +5.183410109406391e-05 +5.232085587680117e-05 +5.2699246809573496e-05 +5.295333793803588e-05 +5.3063198151437224e-05 +3.930149594086188e-05 +4.0715061026496016e-05 +4.198990673330646e-05 +4.316593217031067e-05 +4.423295456582692e-05 +4.5166351914006556e-05 +4.5990409575112356e-05 +4.670559631481994e-05 +4.729630130273729e-05 +4.775948441740986e-05 +4.811734126873479e-05 +4.8359512007828424e-05 +4.846567420909914e-05 +3.547255462637937e-05 +3.679027596086906e-05 +3.798147867335585e-05 +3.908249421679703e-05 +4.008283264344497e-05 +4.0960899788916045e-05 +4.173502773911304e-05 +4.241020290979835e-05 +4.296513805677643e-05 +4.340544257503995e-05 +4.374267936420576e-05 +4.397051595163313e-05 +4.407029605213482e-05 +3.1896876370738275e-05 +3.311630928297946e-05 +3.422110857248193e-05 +3.5245917875531805e-05 +3.6175821987305694e-05 +3.699412789898438e-05 +3.771671676899267e-05 +3.834802254521009e-05 +3.8867088762196926e-05 +3.927932078505161e-05 +3.9596141395337555e-05 +3.980903890148651e-05 +3.990218492730338e-05 +2.858059473308722e-05 +2.97000139148061e-05 +3.0715711213596974e-05 +3.166087042926011e-05 +3.252303037659596e-05 +3.327788960771087e-05 +3.394865609549684e-05 +3.453297219697579e-05 +3.501604826393148e-05 +3.539813366194581e-05 +3.5692282108768044e-05 +3.5890689602170625e-05 +3.5977384645412396e-05 +2.5518272213452803e-05 +2.6540500674257353e-05 +2.747044604691262e-05 +2.8333940678578998e-05 +2.9125298174065994e-05 +2.981968853685076e-05 +3.0435299339520726e-05 +3.097455014413e-05 +3.14200197469037e-05 +3.177064688836722e-05 +3.204243207125456e-05 +3.222656524822176e-05 +3.230690324752713e-05 +2.2707750753179335e-05 +2.3633813455947894e-05 +2.4477905903789276e-05 +2.5265620379478884e-05 +2.598467123291675e-05 +2.661884960109991e-05 +2.7180226266123338e-05 +2.767458598493635e-05 +2.8079948705032163e-05 +2.8401951920335944e-05 +2.8652667576294398e-05 +2.8820967407959125e-05 +2.8894480667448682e-05 +2.0139503245912473e-05 +2.097308652732654e-05 +2.1736012961792108e-05 +2.2446206718764402e-05 +2.309829127537268e-05 +2.367234883824845e-05 +2.4182611911888743e-05 +2.4629447936412664e-05 +2.4999316689676306e-05 +2.5292368523051987e-05 +2.5518948750585495e-05 +2.5671858852906673e-05 +2.5738658398257338e-05 +1.7803092353032576e-05 +1.8550209825848344e-05 +1.923446919506141e-05 +1.9871146288849486e-05 +2.0457825295489854e-05 +2.097362360706784e-05 +2.1433616712454125e-05 +2.1837064736403288e-05 +2.2169451239025773e-05 +2.243403683639868e-05 +2.2640228566673892e-05 +2.2778092322432835e-05 +2.2838721057717384e-05 +1.5687295568829995e-05 +1.635209194810328e-05 +1.6960747433807504e-05 +1.7529617731716942e-05 +1.8053447547311627e-05 +1.851469957231934e-05 +1.892599040472849e-05 +1.928763468100499e-05 +1.9585281575582244e-05 +1.9821830314754268e-05 +2.000645990135822e-05 +2.0130807510292688e-05 +2.0185096862356946e-05 +1.3778677806781233e-05 +1.4366130602028637e-05 +1.4905124169850631e-05 +1.5408998868459935e-05 +1.5873045684704685e-05 +1.6283151441472786e-05 +1.6648516464449533e-05 +1.6970021582143972e-05 +1.7235261729708212e-05 +1.744584091638299e-05 +1.7609266773455926e-05 +1.7720723053627022e-05 +1.7768601694884113e-05 +1.2061274928419083e-05 +1.2578452225104757e-05 +1.3051076322207512e-05 +1.349638219178476e-05 +1.3904476957518588e-05 +1.426621603609907e-05 +1.4588038222119712e-05 +1.4872999698119527e-05 +1.5106707343276929e-05 +1.5292854733391732e-05 +1.543771531531164e-05 +1.5535783498644415e-05 +1.55783110040886e-05 +1.0521939149286265e-05 +1.0972741509892089e-05 +1.1387254417253396e-05 +1.1774733167082788e-05 +1.2132580435702884e-05 +1.2450031372059082e-05 +1.273212233222986e-05 +1.298063711933634e-05 +1.3186053227508153e-05 +1.335044329710723e-05 +1.3477364671828223e-05 +1.3563290323538207e-05 +1.3600847795535772e-05 +9.144535649919764e-06 +9.536054271975846e-06 +9.895064097925212e-06 +1.0232261906161063e-05 +1.0543022028418288e-05 +1.0818726560691267e-05 +1.1063903651694853e-05 +1.1281260404180067e-05 +1.14601834329778e-05 +1.1602752302538348e-05 +1.1712962837319272e-05 +1.1787663399827269e-05 +1.1820618703817097e-05 +7.914201309843848e-06 +8.252002833293118e-06 +8.561256893190895e-06 +8.852201344659875e-06 +9.120242652270941e-06 +9.358061606952767e-06 +9.570376516157397e-06 +9.756906340782557e-06 +9.911807358071105e-06 +1.0035163022620954e-05 +1.0130627691715766e-05 +1.0195756169460884e-05 +1.0224240134968417e-05 +6.815485911967808e-06 +7.10457318017427e-06 +7.369930336346926e-06 +7.618981314081675e-06 +7.848225009001137e-06 +8.05184354885633e-06 +8.234098004883612e-06 +8.394543144471305e-06 +8.52688722260124e-06 +8.632918812654156e-06 +8.715061014950124e-06 +8.770414881571132e-06 +8.794310316354794e-06 +5.834113802032519e-06 +6.079198397513001e-06 +6.305276502864629e-06 +6.516844981883127e-06 +6.7120996411260024e-06 +6.885852035259963e-06 +7.040228587524133e-06 +7.176614596775894e-06 +7.289130134792132e-06 +7.3792278638866575e-06 +7.449631435763018e-06 +7.496662533105452e-06 +7.517092373433136e-06 +4.9547811686357235e-06 +5.162012779081707e-06 +5.352931398214145e-06 +5.531459641021702e-06 +5.696351058690601e-06 +5.84235616612547e-06 +5.972287388421401e-06 +6.087827000297235e-06 +6.183060023876557e-06 +6.2590974580572194e-06 +6.317295934739244e-06 +6.357169973202534e-06 +6.374448851542357e-06 +4.168447338033457e-06 +4.341039055212064e-06 +4.500108178369518e-06 +4.6488709624449625e-06 +4.785478056935636e-06 +4.90756163891105e-06 +5.016413844285432e-06 +5.112257208494086e-06 +5.191172269198296e-06 +5.254203352521763e-06 +5.303632022454617e-06 +5.33669882305737e-06 +5.351386498260988e-06 +3.4736688635508972e-06 +3.611679301063085e-06 +3.7388266008105208e-06 +3.859068788554747e-06 +3.9714947395893804e-06 +4.0701422261791744e-06 +4.159127556030631e-06 +4.238221601022069e-06 +4.30262401042285e-06 +4.354387808404474e-06 +4.39520377975654e-06 +4.421848168450457e-06 +4.434167310925858e-06 +2.8712089675066394e-06 +2.978522832583151e-06 +3.0774010536778253e-06 +3.1708507888599678e-06 +3.256458135194907e-06 +3.3332694151158165e-06 +3.4028490380061538e-06 +3.463918597870498e-06 +3.5148918795254085e-06 +3.5546739969793947e-06 +3.586562935270248e-06 +3.6080727498447946e-06 +3.617377677441208e-06 +2.348383620442002e-06 +2.428043977281065e-06 +2.501383522536318e-06 +2.5718778200291505e-06 +2.6368898496588604e-06 +2.695520172184908e-06 +2.747494130814653e-06 +2.7936619852221595e-06 +2.831714850298856e-06 +2.8618854500977095e-06 +2.8855555454729497e-06 +2.901434023963306e-06 +2.9083701111555636e-06 +1.8949755671630094e-06 +1.953498743445056e-06 +2.006542412072684e-06 +2.0572645785228428e-06 +2.1033745461590874e-06 +2.1445848716890016e-06 +2.181973498380273e-06 +2.2139092199672928e-06 +2.241196541263156e-06 +2.2624065471318554e-06 +2.2792045116680948e-06 +2.290580805930893e-06 +2.2957362214504545e-06 +1.4831556007175067e-06 +1.523833093245185e-06 +1.5611785343493804e-06 +1.5967314776351848e-06 +1.6302774302130762e-06 +1.6591577483557295e-06 +1.6855192862894516e-06 +1.7085450721060712e-06 +1.7269528219240147e-06 +1.7409626422089344e-06 +1.7523826363598548e-06 +1.7602148739539695e-06 +1.7636179348323763e-06 +1.1095732666071555e-06 +1.1324737530686958e-06 +1.1542704155784473e-06 +1.174078474449273e-06 +1.192845222704359e-06 +1.2089808503285048e-06 +1.223997830449584e-06 +1.2371013531781858e-06 +1.2477204874919362e-06 +1.256855377357433e-06 +1.2635084677365038e-06 +1.2676591960786072e-06 +1.2700399522718074e-06 +7.739510475495258e-07 +7.815198706170526e-07 +7.892143436412421e-07 +7.960218403218468e-07 +8.019901046414769e-07 +8.080415907379246e-07 +8.133867936668209e-07 +8.17264580268817e-07 +8.211439194020422e-07 +8.242611131738793e-07 +8.258593079478544e-07 +8.283061537388348e-07 +8.28449346081413e-07 +8.216008367351825e-05 +8.204976029739396e-05 +8.179889774202517e-05 +8.142157216673517e-05 +8.092305667671562e-05 +8.029230216706886e-05 +7.950499178764308e-05 +7.858697852949973e-05 +7.752659347799932e-05 +7.628573605052174e-05 +7.488495482524991e-05 +7.332833051183917e-05 +7.155261656666233e-05 +7.749452210384514e-05 +7.737863863267638e-05 +7.711365020516409e-05 +7.671886964209105e-05 +7.61977996680653e-05 +7.553937913057722e-05 +7.471974893497299e-05 +7.377228427798651e-05 +7.26812835313978e-05 +7.141082297930238e-05 +6.99833972600153e-05 +6.840663376301813e-05 +6.662264985740956e-05 +7.263155508476811e-05 +7.251193839461056e-05 +7.223935705091372e-05 +7.183623225045472e-05 +7.130563233314972e-05 +7.063292413155489e-05 +6.980214751975945e-05 +6.884547149908234e-05 +6.774707001898921e-05 +6.64716286098243e-05 +6.504548004823128e-05 +6.347607503921909e-05 +6.170714667729329e-05 +6.767872055348279e-05 +6.755808118878967e-05 +6.728263278399744e-05 +6.687590146503622e-05 +6.63502046177308e-05 +6.567332366013813e-05 +6.484920886845545e-05 +6.389741601792073e-05 +6.280413902039966e-05 +6.154347656462116e-05 +6.01408788416362e-05 +5.860613006509361e-05 +5.688205386852368e-05 +6.27182592345191e-05 +6.260150513699935e-05 +6.233244615189128e-05 +6.192758093461653e-05 +6.140755443874268e-05 +6.074518205862211e-05 +5.993503942878442e-05 +5.899830072529682e-05 +5.7932746966989524e-05 +5.670487493977255e-05 +5.53421973429567e-05 +5.385384976953867e-05 +5.218870010171267e-05 +5.782680763933049e-05 +5.7711682245454606e-05 +5.7449331689393276e-05 +5.706044743835744e-05 +5.6551251876367454e-05 +5.5908829165470734e-05 +5.512080078205027e-05 +5.421870418203804e-05 +5.318718935995473e-05 +5.2002154582331034e-05 +5.0691899322290973e-05 +4.92660795211685e-05 +4.7677467852604725e-05 +5.306318528400021e-05 +5.295333767102962e-05 +5.2699246356355635e-05 +5.232085524544914e-05 +5.1834100284727644e-05 +5.121590428120973e-05 +5.0460825881254215e-05 +4.959344568593427e-05 +4.861028294639652e-05 +4.748083782778647e-05 +4.6232953184461605e-05 +4.4879607164858194e-05 +4.3374378877955324e-05 +4.846567411124761e-05 +4.8359553733651985e-05 +4.811734078177363e-05 +4.7759483738543994e-05 +4.729630042231317e-05 +4.670559523750427e-05 +4.599040829077008e-05 +4.516635043945837e-05 +4.423295287606018e-05 +4.316620355015468e-05 +4.198990464644679e-05 +4.071538739067457e-05 +3.930149340250163e-05 +4.40702959473797e-05 +4.3970515637829446e-05 +4.3742678842702146e-05 +4.3405336316032466e-05 +4.296513710644918e-05 +4.241036705011987e-05 +4.1735026358380945e-05 +4.096089821237136e-05 +4.0082830838326245e-05 +3.908249218240557e-05 +3.798147642024261e-05 +3.67902735207349e-05 +3.5472551957173884e-05 +3.990218481552815e-05 +3.9809038566690366e-05 +3.959614083819626e-05 +3.927931999648141e-05 +3.8867087749205945e-05 +3.834802131625818e-05 +3.7716926134473225e-05 +3.6993885476561286e-05 +3.617582006577889e-05 +3.524591571189708e-05 +3.4221106215494485e-05 +3.311593499234844e-05 +3.1896873545095126e-05 +3.5977384526563495e-05 +3.5890638207343524e-05 +3.56922815170104e-05 +3.53982514627146e-05 +3.501604718759734e-05 +3.453297089081518e-05 +3.3948654549084144e-05 +3.3277887823725494e-05 +3.2523028342219705e-05 +3.166054572651052e-05 +3.071570871475817e-05 +2.9700011176450082e-05 +2.858059175371544e-05 +3.230690312154571e-05 +3.222656487079695e-05 +3.204243144393043e-05 +3.1770646013824855e-05 +3.142001861540787e-05 +3.09745487617231e-05 +3.0435297718245045e-05 +2.9819686654564602e-05 +2.9124992778220365e-05 +2.8333938301793476e-05 +2.747044341612813e-05 +2.6540497807480696e-05 +2.551826911525292e-05 +2.8894480535999137e-05 +2.882096701414151e-05 +2.865257224481512e-05 +2.840195099702001e-05 +2.807994752359987e-05 +2.7674584542727657e-05 +2.7180224557920138e-05 +2.6618847645308932e-05 +2.598466900887338e-05 +2.5265617893490005e-05 +2.4477903180829384e-05 +2.3633810470352203e-05 +2.2707747534744166e-05 +2.573865826089644e-05 +2.567185844137899e-05 +2.5518948064747336e-05 +2.5292367566788212e-05 +2.499931545558206e-05 +2.462944643109498e-05 +2.4182610141565892e-05 +2.3672346788776243e-05 +2.3098288975992015e-05 +2.2446204138184e-05 +2.1736010148469728e-05 +2.097308344236041e-05 +2.0139499895541006e-05 +2.283872091481934e-05 +2.2778091894309254e-05 +2.2640227855042644e-05 +2.2434179354569325e-05 +2.2169449958501676e-05 +2.1837063182209787e-05 +2.1433879689392768e-05 +2.097362149052728e-05 +2.0457822909960715e-05 +1.9871143627825812e-05 +1.9234049866303113e-05 +1.8550206646616658e-05 +1.780308891947952e-05 +2.0185096713763294e-05 +2.0130807065078632e-05 +2.0006565246639552e-05 +1.9821829282884278e-05 +1.958528025588711e-05 +1.928763307701193e-05 +1.8926261239478327e-05 +1.8514697392131134e-05 +1.805379895091839e-05 +1.7529614996054693e-05 +1.6960744424070063e-05 +1.6352088686843058e-05 +1.568729204854682e-05 +1.7768601542735206e-05 +1.7720722596212785e-05 +1.7609266013089696e-05 +1.744583985604661e-05 +1.7235260371764778e-05 +1.697001992106724e-05 +1.6648514509128516e-05 +1.6283149200964243e-05 +1.5873405805249913e-05 +1.5408996062074752e-05 +1.4905121106572997e-05 +1.4366127254784758e-05 +1.377867422590537e-05 +1.557831084821934e-05 +1.5535783029615858e-05 +1.5437714535627598e-05 +1.529285364606621e-05 +1.5106705951584964e-05 +1.4872998008157553e-05 +1.4588036224046313e-05 +1.4266213742448198e-05 +1.3904474385106927e-05 +1.3495968344910895e-05 +1.3051073183252072e-05 +1.2578448837441911e-05 +1.2061271259879405e-05 +1.3600847635677338e-05 +1.3563289844567783e-05 +1.3477363875605265e-05 +1.3350442186682248e-05 +1.3186051802000657e-05 +1.2980635388216028e-05 +1.273212030278635e-05 +1.2450029029691192e-05 +1.2132577801208472e-05 +1.1774730254378112e-05 +1.1386792004014464e-05 +1.0972738042395515e-05 +1.0521935426563808e-05 +1.1820618541603647e-05 +1.1787662913391828e-05 +1.1712962028661747e-05 +1.1602589507220172e-05 +1.1460181990330597e-05 +1.1281258638017927e-05 +1.1063901580371572e-05 +1.0818724186027234e-05 +1.054301935579645e-05 +1.0232258938935662e-05 +9.895060860412173e-06 +9.536050768217802e-06 +9.144531874656486e-06 +1.0224239969634056e-05 +1.0195755674076323e-05 +1.0130626868164277e-05 +1.0034997223798932e-05 +9.911805888751776e-06 +9.756904552221416e-06 +9.570374418471387e-06 +9.358059191561457e-06 +9.12023994262951e-06 +8.85219834638402e-06 +8.561253607744256e-06 +8.251999259732266e-06 +7.914197485360373e-06 +8.794310149330888e-06 +8.770414381138422e-06 +8.715060182984656e-06 +8.632917647383878e-06 +8.526885731932642e-06 +8.394541334001674e-06 +8.23409586595119e-06 +8.05184110264412e-06 +7.848222264983504e-06 +7.618978282207445e-06 +7.369927000778544e-06 +7.10456957811319e-06 +6.815482037288044e-06 +7.517092204577146e-06 +7.4966620271766845e-06 +7.449630587767883e-06 +7.379226681150534e-06 +7.2891286217294315e-06 +7.17661275906028e-06 +7.040226421126279e-06 +6.885849557546412e-06 +6.712096861310923e-06 +6.516841901833628e-06 +6.305273141659826e-06 +6.079194735514078e-06 +5.833545251107893e-06 +6.374448680038296e-06 +6.3571694593450585e-06 +6.317295080434348e-06 +6.2590962559720605e-06 +6.183058486024028e-06 +6.0878251324222574e-06 +5.972285197465443e-06 +5.842353647974897e-06 +5.695943232758005e-06 +5.531456519058713e-06 +5.352927957022898e-06 +5.162009062602279e-06 +4.954777173682967e-06 +5.351386322722696e-06 +5.336698297083679e-06 +5.303631148000469e-06 +5.254202132850503e-06 +5.191170708823909e-06 +5.112255313205019e-06 +5.016411611687733e-06 +4.907559085301165e-06 +4.7854751917618634e-06 +4.6493216577127975e-06 +4.500104684777598e-06 +4.341035281993089e-06 +4.16844328921254e-06 +4.434167132746564e-06 +4.421847634570666e-06 +4.3952028921550195e-06 +4.35438657036853e-06 +4.3026224265346785e-06 +4.238219677134191e-06 +4.159125293755523e-06 +4.0701396385579595e-06 +3.971491836168026e-06 +3.859065580033401e-06 +3.738823138245035e-06 +3.6116755612170647e-06 +3.473664860171155e-06 +3.61737750087887e-06 +3.6080722208051106e-06 +3.586562055701572e-06 +3.554672770126553e-06 +3.514890309919845e-06 +3.4639166913006735e-06 +3.4028468014918425e-06 +3.3332668878087375e-06 +3.256455299365464e-06 +3.1708476549478147e-06 +3.0773976331959045e-06 +2.9785191380876697e-06 +2.871205029416204e-06 +2.9083699375138937e-06 +2.9014335036597166e-06 +2.8855546804221306e-06 +2.8618842434932626e-06 +2.8317133065732026e-06 +2.7936601100544506e-06 +2.7474919311042054e-06 +2.6955176560124865e-06 +2.6372917540428502e-06 +2.571874699783272e-06 +2.501380209220927e-06 +2.428040398431429e-06 +2.34837978917727e-06 +2.2957360525468972e-06 +2.290580299833201e-06 +2.279203670239579e-06 +2.262405373450357e-06 +2.2411950396509314e-06 +2.2139073959320394e-06 +2.1819713586140177e-06 +2.144582424043281e-06 +2.1033717874374695e-06 +2.057261529677608e-06 +2.0065390842769045e-06 +1.9534951488701745e-06 +1.8949717189687005e-06 +1.763593449974486e-06 +1.7602143657013306e-06 +1.7523817913460782e-06 +1.740961463521298e-06 +1.7267351397092116e-06 +1.708543137450828e-06 +1.6851916783637419e-06 +1.6591551521848665e-06 +1.6302745169459223e-06 +1.5967282579331474e-06 +1.5611750199892685e-06 +1.5238292970729261e-06 +1.4831515366161102e-06 +1.2700397724720764e-06 +1.2676586573383444e-06 +1.2635075720315041e-06 +1.2568541279578606e-06 +1.2477188889741646e-06 +1.2370994113838299e-06 +1.223995552481144e-06 +1.2093517836825903e-06 +1.1928422985634143e-06 +1.1740752426701772e-06 +1.1542668879784147e-06 +1.1324699425333984e-06 +1.1095691870547773e-06 +8.284491524305947e-07 +8.283055734793567e-07 +8.259966367767472e-07 +8.242597674741489e-07 +8.213890073956401e-07 +8.172624887541993e-07 +8.133843400360677e-07 +8.080387839385567e-07 +8.019869549281446e-07 +7.960183591899564e-07 +7.892105437981304e-07 +7.809273674640604e-07 +7.733167035607176e-07 +7.155261664369354e-05 +7.332833073135769e-05 +7.488495518182323e-05 +7.628573653213268e-05 +7.752659407717727e-05 +7.85869792360497e-05 +7.950499259647427e-05 +8.029230309617165e-05 +8.092305768314453e-05 +8.142157328966677e-05 +8.17988989209697e-05 +8.204976158039695e-05 +8.216008505546079e-05 +6.662242868927992e-05 +6.840663402200793e-05 +6.998334231381912e-05 +7.141082355047549e-05 +7.26812842441269e-05 +7.377228512246439e-05 +7.471974990115433e-05 +7.553938022038526e-05 +7.619780087382569e-05 +7.671887098506518e-05 +7.71136516315055e-05 +7.737864017208295e-05 +7.749452376029188e-05 +6.170714677914363e-05 +6.347633150513477e-05 +6.504548053153039e-05 +6.647162925763982e-05 +6.774707084549551e-05 +6.884560539503232e-05 +6.980214864904871e-05 +7.063292538817243e-05 +7.130555651552713e-05 +7.18361753896379e-05 +7.223935872373804e-05 +7.251194021048558e-05 +7.263155702753598e-05 +5.688205398461938e-05 +5.860613039865089e-05 +6.0141164412416406e-05 +6.154318897105956e-05 +6.28041399456815e-05 +6.389741711596658e-05 +6.484908178545917e-05 +6.567332510752652e-05 +6.635020624997498e-05 +6.687590322252074e-05 +6.728263471159047e-05 +6.755808327971157e-05 +6.767872278167523e-05 +5.21887002291172e-05 +5.385385014481219e-05 +5.534219795528532e-05 +5.670487577684504e-05 +5.7932748015638213e-05 +5.899830197171148e-05 +5.9934900864067384e-05 +6.0745063987560315e-05 +6.140755623849921e-05 +6.192758293321521e-05 +6.233244834194531e-05 +6.26015074401082e-05 +6.271826170717948e-05 +4.767746799207107e-05 +4.926636501159624e-05 +5.069189999012842e-05 +5.200215549591142e-05 +5.318719050631986e-05 +5.421906612531051e-05 +5.5120802388055264e-05 +5.590883096754561e-05 +5.655125390074636e-05 +5.706044964170932e-05 +5.744933408221069e-05 +5.7711684837896275e-05 +5.782681042175055e-05 +4.337437903038428e-05 +4.4879607610256856e-05 +4.623295391167677e-05 +4.7480838823030986e-05 +4.861028422052353e-05 +4.9593447203379984e-05 +5.046082762756722e-05 +5.1215906283695405e-05 +5.1834102490569016e-05 +5.232085768303164e-05 +5.269924902517951e-05 +5.295334049956453e-05 +5.3063188318696307e-05 +3.930149356741946e-05 +4.0715387870002717e-05 +4.1989905431899494e-05 +4.316620464473316e-05 +4.423295425029988e-05 +4.5166352077058664e-05 +4.5990410208081816e-05 +4.670603577397265e-05 +4.729630283411281e-05 +4.775948637224859e-05 +4.811734366243151e-05 +4.835955685239483e-05 +4.8465677456050436e-05 +3.547255213171183e-05 +3.679027403394944e-05 +3.7981477273085305e-05 +3.908249335677093e-05 +4.008283231399435e-05 +4.0960899971897333e-05 +4.1735028429301305e-05 +4.241036937415902e-05 +4.2965139720903466e-05 +4.340533918351248e-05 +4.374268193963448e-05 +4.397051898885876e-05 +4.4070299540617004e-05 +3.189687373086432e-05 +3.311586353744782e-05 +3.4221107111963135e-05 +3.524591696661923e-05 +3.6175821643525256e-05 +3.699388735878033e-05 +3.7716928349328234e-05 +3.834819997015856e-05 +3.8867090546182286e-05 +3.9279323078849285e-05 +3.9596144157606084e-05 +3.980904215300317e-05 +3.990218866057507e-05 +2.8580591950510108e-05 +2.970001175784892e-05 +3.071570966909569e-05 +3.1660547036125814e-05 +3.252303001890097e-05 +3.3277889830287647e-05 +3.394865688576119e-05 +3.453297354204672e-05 +3.5015504285985145e-05 +3.539813607868309e-05 +3.569228505251868e-05 +3.5890642031383634e-05 +3.597738862534858e-05 +2.5518269320720146e-05 +2.6540498418425456e-05 +2.7470444424406516e-05 +2.8333939690208453e-05 +2.9125297807710285e-05 +2.9819688778191668e-05 +3.0435300175203862e-05 +3.097455157554253e-05 +3.142002175761087e-05 +3.177064945098519e-05 +3.2042435200968764e-05 +3.2226568933657496e-05 +3.2306907475610714e-05 +2.2707747748922586e-05 +2.3633811108674707e-05 +2.447737639283112e-05 +2.5265619349915564e-05 +2.5984670852879087e-05 +2.6618849857696927e-05 +2.71808129243266e-05 +2.7674587485322772e-05 +2.807995081198373e-05 +2.8402086988769497e-05 +2.8651960908145636e-05 +2.88209712617527e-05 +2.8894485087435794e-05 +2.0139500119162573e-05 +2.0973084103761974e-05 +2.1736011232831715e-05 +2.244620565381933e-05 +2.309829088703966e-05 +2.367234911241885e-05 +2.418261283699184e-05 +2.4629449508828693e-05 +2.4999318897300506e-05 +2.529237134035905e-05 +2.551885387365668e-05 +2.5671862887421e-05 +2.5738663024399845e-05 +1.7803089149247807e-05 +1.8550207329860017e-05 +1.923405098852775e-05 +1.987114519409413e-05 +2.04578248967133e-05 +2.097362389493654e-05 +2.143361768311888e-05 +2.183706636555415e-05 +2.216945353581552e-05 +2.2434039792451346e-05 +2.2640232139896654e-05 +2.2778096526418556e-05 +2.283872587716982e-05 +1.568782792533534e-05 +1.635208938918417e-05 +1.6960745589058643e-05 +1.752961660926906e-05 +1.8053801010562653e-05 +1.851469987307367e-05 +1.8925991409116968e-05 +1.9287636367463113e-05 +1.9585283948089477e-05 +1.98218333671146e-05 +2.0005877507368678e-05 +2.0130875708030404e-05 +2.018580183929908e-05 +1.377921938895055e-05 +1.436612797696204e-05 +1.4905122294320912e-05 +1.5408997719711304e-05 +1.5873045268861744e-05 +1.6283151754342423e-05 +1.664851750088711e-05 +1.6970023333237928e-05 +1.723526417581816e-05 +1.7445844058053248e-05 +1.760998249772922e-05 +1.7720727556896836e-05 +1.7768606838031594e-05 +1.2061271506829547e-05 +1.2578449569492818e-05 +1.3051074402162546e-05 +1.3495336296908e-05 +1.3904476537607339e-05 +1.426554376101595e-05 +1.458832570453546e-05 +1.487230268232862e-05 +1.5106709854561984e-05 +1.5292857959595884e-05 +1.5437719246711205e-05 +1.5535788121083683e-05 +1.5578316277800267e-05 +1.0521935677532878e-05 +1.0972738792730964e-05 +1.1386793249591758e-05 +1.1774731979404159e-05 +1.2132580008276254e-05 +1.2450031705627753e-05 +1.2732123415140293e-05 +1.2979922653909379e-05 +1.3186055803711064e-05 +1.335044659595999e-05 +1.347736869086817e-05 +1.3563295048261605e-05 +1.3600853208767088e-05 +9.144532129491401e-06 +9.536051527319561e-06 +9.89459802852353e-06 +1.0232260698145645e-05 +1.0543021597111593e-05 +1.0818726901518578e-05 +1.1063904759914347e-05 +1.1281262277277925e-05 +1.1460186043600673e-05 +1.1602593989059428e-05 +1.1712966922830365e-05 +1.1787668202048274e-05 +1.182062420075241e-05 +7.914197743816536e-06 +8.251385963868741e-06 +8.561254887927464e-06 +8.852200125691066e-06 +9.120242217044188e-06 +9.358061956001655e-06 +9.570377641136271e-06 +9.756908240511739e-06 +9.912020643534641e-06 +1.0035001791557694e-05 +1.0130631855855982e-05 +1.0195761063508031e-05 +1.0224245741096286e-05 +6.81548229939488e-06 +7.104570360054331e-06 +7.369928301607223e-06 +7.6189800829403664e-06 +7.848224570067227e-06 +8.051843904454967e-06 +8.234099154329342e-06 +8.394545070036494e-06 +8.526889925972525e-06 +8.632922284266825e-06 +8.715065224560796e-06 +8.77041982855318e-06 +8.794315982653001e-06 +5.833545517769263e-06 +6.079195531114402e-06 +6.3052744535053856e-06 +6.516843732521014e-06 +6.712099198105081e-06 +6.88549722090271e-06 +7.040229753805972e-06 +7.176616553591242e-06 +7.289349775217805e-06 +7.3792313901037465e-06 +7.449635729102831e-06 +7.496667537021144e-06 +7.5170981045597155e-06 +4.954777444360016e-06 +5.162009870610791e-06 +5.352929300971589e-06 +5.531458375821492e-06 +5.69635060986158e-06 +5.8423565357531255e-06 +5.97228856978571e-06 +6.087828991237574e-06 +6.183062817398044e-06 +6.259101044230908e-06 +6.31730026237565e-06 +6.357175058000712e-06 +6.374454674934486e-06 +4.168443563730611e-06 +4.3404952182945096e-06 +4.499425916166058e-06 +4.6488696803812036e-06 +4.78547760304172e-06 +4.9075620152240396e-06 +5.016415049776292e-06 +5.112259230443316e-06 +5.191175105591023e-06 +5.254206993189332e-06 +5.303761804815859e-06 +5.3367040298190616e-06 +5.351392461045938e-06 +3.474274684889504e-06 +3.6116763752418923e-06 +3.7388244920328886e-06 +3.859527425394115e-06 +3.9714942807799475e-06 +4.070903710813445e-06 +4.159128779011561e-06 +4.2382236550913e-06 +4.302626891270049e-06 +4.354391505654984e-06 +4.394373298983975e-06 +4.421853455373441e-06 +4.4341733652245515e-06 +2.8712052967110074e-06 +2.979155227352963e-06 +3.077398971131734e-06 +3.170849521575623e-06 +3.2564576880457503e-06 +3.3329075044220846e-06 +3.4028502483284663e-06 +3.4639206348617756e-06 +3.51489473588657e-06 +3.554677662404989e-06 +3.586567396477268e-06 +3.6080021528536065e-06 +3.6173836786042116e-06 +2.3483800493444974e-06 +2.428041178120297e-06 +2.5013815057623814e-06 +2.5718765589713594e-06 +2.636889405321873e-06 +2.695520546384119e-06 +2.7474953223404087e-06 +2.7936639898564936e-06 +2.8317176608511923e-06 +2.8618890564017996e-06 +2.8855599344114214e-06 +2.901439179575418e-06 +2.908351122564514e-06 +1.8949719803855517e-06 +1.9534959322772848e-06 +2.006540386942467e-06 +2.057263346931995e-06 +2.103374112752308e-06 +2.14458523655123e-06 +2.1819746583785236e-06 +2.2139111709741173e-06 +2.24119927623903e-06 +2.262578300505293e-06 +2.279208781995639e-06 +2.2905858219823175e-06 +2.295741964935914e-06 +1.4825329527257396e-06 +1.5238301246794447e-06 +1.561176396098858e-06 +1.5967301775865822e-06 +1.630276973202618e-06 +1.659158136141327e-06 +1.6851951791793668e-06 +1.7085471424045776e-06 +1.7269555695800463e-06 +1.740966167224618e-06 +1.7523869259301375e-06 +1.7594184440359087e-06 +1.7635993885847956e-06 +1.1095694643777946e-06 +1.1324707735192417e-06 +1.1542682696376266e-06 +1.173360727757593e-06 +1.1928447645860405e-06 +1.2093547794341994e-06 +1.223999067042387e-06 +1.2371034319567464e-06 +1.247723400908942e-06 +1.2560249496870952e-06 +1.2635130155936423e-06 +1.267664537755346e-06 +1.2700460682885803e-06 +7.73317002361333e-07 +7.809282628160089e-07 +7.892120324465203e-07 +7.960204357144923e-07 +8.019896117658294e-07 +8.080420113984879e-07 +8.133881263623925e-07 +8.172668201224932e-07 +8.211470582665692e-07 +8.242651396299186e-07 +8.258642072724539e-07 +8.28311908076594e-07 +8.284559344435637e-07 +8.216008519149505e-05 +8.204976198759166e-05 +8.179889959618977e-05 +8.142161859199789e-05 +8.092305893633078e-05 +8.029230468103386e-05 +7.950499445697025e-05 +7.858698142822681e-05 +7.752659662510043e-05 +7.628573944298245e-05 +7.488495848137009e-05 +7.332833440601738e-05 +7.155262081913157e-05 +7.749452392108825e-05 +7.737864065343687e-05 +7.71136524356668e-05 +7.671887214245334e-05 +7.619780234926579e-05 +7.55393820457233e-05 +7.471975208160115e-05 +7.37722876909526e-05 +7.268128721261089e-05 +7.141082692900189e-05 +6.998334612769727e-05 +6.840663825653535e-05 +6.662243334467748e-05 +7.263155721406335e-05 +7.251194077169116e-05 +7.22393596552995e-05 +7.183617668586923e-05 +7.130555823033875e-05 +7.063292746293132e-05 +6.980215115970946e-05 +6.884547543536407e-05 +6.77470742320185e-05 +6.647163302491785e-05 +6.504548482787636e-05 +6.347633631783507e-05 +6.17071520579377e-05 +6.767872299373298e-05 +6.755808391990555e-05 +6.728263577447827e-05 +6.687583805753283e-05 +6.635020819877703e-05 +6.567332747005328e-05 +6.484908463570333e-05 +6.389742036292454e-05 +6.280414368757467e-05 +6.154319321496724e-05 +6.014116916051963e-05 +5.860637320240049e-05 +5.6882059906256146e-05 +6.271826194082143e-05 +6.260150813994326e-05 +6.233244953993825e-05 +6.19275846017044e-05 +6.14075583683066e-05 +6.0745066645410465e-05 +5.9935043965522034e-05 +5.8998305620061146e-05 +5.79327522114685e-05 +5.670488052569179e-05 +5.534220325994776e-05 +5.385385600563936e-05 +5.218870664325309e-05 +5.7826810683140516e-05 +5.7711685620762004e-05 +5.7449335382517126e-05 +5.706045146840559e-05 +5.655125627897769e-05 +5.590883385953724e-05 +5.512080585400225e-05 +5.421907011844681e-05 +5.3187195053025365e-05 +5.200216063151412e-05 +5.069190572049571e-05 +4.9266086259775566e-05 +4.767747493802181e-05 +5.306320138068897e-05 +5.2953341349323054e-05 +5.26991854991239e-05 +5.2320859692335834e-05 +5.183410506631541e-05 +5.1215909476925184e-05 +5.0460831371333025e-05 +4.95934515773774e-05 +4.861028923717731e-05 +4.7480844375211155e-05 +4.623296010198094e-05 +4.487930687837977e-05 +4.3374386553924946e-05 +4.846567776746707e-05 +4.8359557785265874e-05 +4.8117345212205806e-05 +4.775948853276751e-05 +4.729630563609934e-05 +4.670603920258259e-05 +4.599041429555465e-05 +4.5166356769869636e-05 +4.423295962805305e-05 +4.3166210712084215e-05 +4.198991207341687e-05 +4.07153951666643e-05 +3.930150164585742e-05 +4.4070299874004626e-05 +4.3970519987552095e-05 +4.3742683599341476e-05 +4.340544704915588e-05 +4.29651427453597e-05 +4.241037304390594e-05 +4.173503282353885e-05 +4.0960904989316444e-05 +4.008283805885987e-05 +3.908249983130662e-05 +3.798148444371217e-05 +3.6790281799778186e-05 +3.5472560626570383e-05 +3.990220503847434e-05 +3.980904321850575e-05 +3.9596145930731385e-05 +3.9279325588506786e-05 +3.8867093770068335e-05 +3.8348027713842925e-05 +3.7716933030193975e-05 +3.699389270364178e-05 +3.61758277588643e-05 +3.524592385247699e-05 +3.422111461317315e-05 +3.311587178966343e-05 +3.1896882723592044e-05 +3.5977389003590216e-05 +3.589064316453364e-05 +3.569228693581209e-05 +3.539813871242046e-05 +3.501550771145615e-05 +3.45329776989573e-05 +3.394866180728411e-05 +3.3277895507895444e-05 +3.252303649338817e-05 +3.166055419507619e-05 +3.071571762175501e-05 +2.970002047278105e-05 +2.858060143248579e-05 +3.230690787655184e-05 +3.2226570134827796e-05 +3.2042437197453895e-05 +3.1770652234252904e-05 +3.142002535864358e-05 +3.0974555975110045e-05 +3.043530533498145e-05 +2.9819694768645986e-05 +2.9125304540967094e-05 +2.8333947254427398e-05 +2.7470452796988417e-05 +2.654050754206179e-05 +2.5518279180871138e-05 +2.8894485505779363e-05 +2.882097251509366e-05 +2.8652057680829442e-05 +2.840195757222174e-05 +2.807995457194128e-05 +2.767459207521206e-05 +2.7180818360765303e-05 +2.6618856082083198e-05 +2.598467793099033e-05 +2.526562726167947e-05 +2.4477385058750276e-05 +2.3633820610457423e-05 +2.2707757991726655e-05 +2.5738663461556652e-05 +2.5671864197124966e-05 +2.5518954370715596e-05 +2.529237438370852e-05 +2.49993228248568e-05 +2.4629454299565053e-05 +2.418261847111809e-05 +2.3672355634949695e-05 +2.3098298204914336e-05 +2.2446213866624027e-05 +2.1736020186347585e-05 +2.0973093921795275e-05 +2.0139510781860226e-05 +2.2838726331948746e-05 +2.2778097888939584e-05 +2.2640234404692715e-05 +2.2434042978808828e-05 +2.2169457611136895e-05 +2.1837071311839742e-05 +2.1433623562625064e-05 +2.0973630630915104e-05 +2.045783248875985e-05 +1.9871153662912987e-05 +1.9234060233761994e-05 +1.8550217447897433e-05 +1.7803100076674258e-05 +2.0185802312205585e-05 +2.0130813305022103e-05 +2.0005879862599123e-05 +1.982183665108394e-05 +1.9585288148074293e-05 +1.9287641472237823e-05 +1.8926270201665616e-05 +1.851470681161341e-05 +1.8053454994817838e-05 +1.7529625315628973e-05 +1.6960755167673315e-05 +1.6352099768281434e-05 +1.5687839128800334e-05 +1.7768607322251845e-05 +1.772072901263685e-05 +1.7610093914229762e-05 +1.7445847432618083e-05 +1.7235463155548544e-05 +1.697002861968382e-05 +1.664852372377767e-05 +1.6283158884854343e-05 +1.5873053320249907e-05 +1.5409006651149237e-05 +1.490513204332974e-05 +1.4366138629705264e-05 +1.3779230785254329e-05 +1.5578339116651846e-05 +1.5535789613786506e-05 +1.543772172808817e-05 +1.529286142005491e-05 +1.5106714283679663e-05 +1.4872308060693074e-05 +1.4588045643939471e-05 +1.426555106064189e-05 +1.3904484724413857e-05 +1.3495345421265437e-05 +1.3051084392019295e-05 +1.2578460350871127e-05 +1.206128318210905e-05 +1.3600853717523236e-05 +1.3563365231355093e-05 +1.3477371224880842e-05 +1.3350450129933774e-05 +1.3186060340448338e-05 +1.2979928163260905e-05 +1.2732129873928827e-05 +1.245003916031119e-05 +1.2132588392664608e-05 +1.177474124920828e-05 +1.1386803444739534e-05 +1.0972749828182452e-05 +1.052194752525323e-05 +1.1820624717003689e-05 +1.1787669750149145e-05 +1.171296949641671e-05 +1.1602759245842136e-05 +1.146019063488567e-05 +1.1281267898162735e-05 +1.1063911351987095e-05 +1.0818734458985885e-05 +1.0543030102842105e-05 +1.023227014146327e-05 +9.8946083320667e-06 +9.536062678175895e-06 +9.14454414442372e-06 +1.0224246267279688e-05 +1.0195762640090299e-05 +1.0130634476842967e-05 +1.0035005447053058e-05 +9.912025319671506e-06 +9.756913932682043e-06 +9.570384317110072e-06 +9.358069643085126e-06 +9.120250840591094e-06 +8.852209667829569e-06 +8.561265343998284e-06 +8.2513973368571e-06 +7.914209915394414e-06 +8.794316514213475e-06 +8.770421421201193e-06 +8.71506787232555e-06 +8.632925992788088e-06 +8.526894670087629e-06 +8.394550831931933e-06 +8.234105961571023e-06 +8.051851689627313e-06 +7.848233303017557e-06 +7.618989732007265e-06 +7.369938917192592e-06 +7.104581823763806e-06 +6.815494630723582e-06 +7.517098641951015e-06 +7.496669147160608e-06 +7.449638427882782e-06 +7.3792351542107704e-06 +7.2891376965540855e-06 +7.176622402197658e-06 +7.040236648457649e-06 +6.885505106358911e-06 +6.712108044982347e-06 +6.516412014800327e-06 +6.305285150679699e-06 +6.079207185579491e-06 +5.8335580530044864e-06 +6.374455220753293e-06 +6.357176693373717e-06 +6.3173029812368806e-06 +6.259104869917069e-06 +6.182498745656285e-06 +6.08706028934654e-06 +5.972295542594285e-06 +5.842364549872371e-06 +5.696359601460655e-06 +5.5314683115989e-06 +5.3529402527060874e-06 +5.16202169846226e-06 +4.954790158463823e-06 +5.351393019703943e-06 +5.336705703752245e-06 +5.303639237191639e-06 +5.25421087484394e-06 +5.191180071547801e-06 +5.112265262279862e-06 +5.016422155111496e-06 +4.907570142193923e-06 +4.785486721576699e-06 +4.648879756789107e-06 +4.499437034649811e-06 +4.341048111281099e-06 +4.168456449270868e-06 +4.434173932287774e-06 +4.421855154468248e-06 +4.3943761238070866e-06 +4.354395445756116e-06 +4.302631932060074e-06 +4.238229777944454e-06 +4.159135978797014e-06 +4.070911946040849e-06 +3.971503521039312e-06 +3.859537636620246e-06 +3.738835511791196e-06 +3.6116882774586457e-06 +3.474287425831004e-06 +3.6173842405213393e-06 +3.6080796742841473e-06 +3.586570195741092e-06 +3.554681566915342e-06 +3.5148997312217964e-06 +3.46392670259955e-06 +3.4028573661286522e-06 +3.333277833257718e-06 +3.2564667131912905e-06 +3.1708594953815415e-06 +3.077409856958029e-06 +2.9791669852568926e-06 +2.871217829849115e-06 +2.9083516752232043e-06 +2.901440835463491e-06 +2.885562687471744e-06 +2.8618928964709572e-06 +2.83172257382233e-06 +2.7936699576560014e-06 +2.7475023230104376e-06 +2.6955285542078e-06 +2.6368983908909766e-06 +2.5718864892838512e-06 +2.501392050527612e-06 +2.428052567958162e-06 +2.348392242505232e-06 +2.2957425024784043e-06 +2.2905874326593024e-06 +2.2792114598769793e-06 +2.262582035761346e-06 +2.2412040551824994e-06 +2.213916976042621e-06 +2.181981468273805e-06 +2.1445930262857234e-06 +2.1033828924988345e-06 +2.0572730500082904e-06 +2.0065509777913396e-06 +1.95350737216179e-06 +1.8949842274243276e-06 +1.763599928436879e-06 +1.7594200615678501e-06 +1.7523896152216207e-06 +1.7409699184472106e-06 +1.7269603689498904e-06 +1.7085532995254994e-06 +1.685202402188354e-06 +1.6591663985631346e-06 +1.6302862447974895e-06 +1.596740424423284e-06 +1.5611875806973553e-06 +1.523842206156785e-06 +1.4825458868789962e-06 +1.2700466405087162e-06 +1.2676662523186196e-06 +1.263515866212301e-06 +1.2560289259455655e-06 +1.247728488258574e-06 +1.2371096117982212e-06 +1.22400631677213e-06 +1.2093630725409969e-06 +1.1928540707857799e-06 +1.1733710130108817e-06 +1.154279496372719e-06 +1.1324829007064422e-06 +1.109582447724538e-06 +8.284565507456638e-07 +8.283137547764716e-07 +8.258672776141137e-07 +8.242694223754928e-07 +8.211525378267705e-07 +8.172734764555485e-07 +8.133959351451057e-07 +8.08050944154397e-07 +8.019996358589827e-07 +7.960315145626512e-07 +7.892241256056971e-07 +7.809413261442336e-07 +7.733309881816051e-07 +7.155262096675142e-05 +7.33283348266944e-05 +7.488495916469383e-05 +7.628574036592347e-05 +7.752659777334276e-05 +7.858698278223334e-05 +7.950499600698445e-05 +8.029230646153198e-05 +8.092306086501371e-05 +8.142157642555166e-05 +8.179890185547529e-05 +8.2049764446291e-05 +8.216008783979818e-05 +6.662265476961983e-05 +6.840663875285375e-05 +6.998340230314046e-05 +7.141082802357685e-05 +7.268128857845814e-05 +7.377228930927857e-05 +7.471975393315565e-05 +7.553938413419086e-05 +7.619780465994015e-05 +7.671887471607902e-05 +7.711365516905466e-05 +7.737864360349841e-05 +7.74943022637401e-05 +6.17071522531195e-05 +6.347633689251488e-05 +6.504548575405314e-05 +6.647163426636768e-05 +6.774707581590485e-05 +6.884547732387384e-05 +6.98024147512947e-05 +7.063292987106667e-05 +7.130563819109996e-05 +7.183623799047422e-05 +7.223910116114668e-05 +7.251194425156635e-05 +7.263156093711147e-05 +5.688206012873777e-05 +5.860613631139624e-05 +6.014088516970543e-05 +6.154319463269046e-05 +6.280414546075054e-05 +6.389742246717892e-05 +6.484921550259959e-05 +6.567333024377468e-05 +6.635021132674919e-05 +6.687590807009872e-05 +6.728263946844609e-05 +6.755808792687072e-05 +6.767872726375852e-05 +5.2188706887407044e-05 +5.385385672479982e-05 +5.534220443339171e-05 +5.6704882129826214e-05 +5.793275422105962e-05 +5.8998308008644285e-05 +5.9935046703402594e-05 +6.074518950964641e-05 +6.140756181729343e-05 +6.192758843174458e-05 +6.233245373687667e-05 +6.26015125535355e-05 +6.271826667933586e-05 +4.7677475205290195e-05 +4.926642590108487e-05 +5.069190700031446e-05 +5.2002162382265126e-05 +5.318719724987668e-05 +5.421871218717378e-05 +5.512080893169073e-05 +5.590883731296676e-05 +5.6551260158422286e-05 +5.706045569082753e-05 +5.744933996802406e-05 +5.771169058882099e-05 +5.7826816015267136e-05 +4.33743868460338e-05 +4.487961529208518e-05 +4.6233335845585055e-05 +4.748084628246052e-05 +4.8610291678866644e-05 +4.959345448535423e-05 +5.046083471790233e-05 +5.121591331441419e-05 +5.1834109293507965e-05 +5.2320864363628836e-05 +5.269925558199927e-05 +5.295334676982261e-05 +5.306319441798252e-05 +3.9301501961900263e-05 +4.071539608523118e-05 +4.19899135786291e-05 +4.316621280969374e-05 +4.423296226159581e-05 +4.5166359908106255e-05 +4.599041796981978e-05 +4.670560497007627e-05 +4.729631025798308e-05 +4.77594935799012e-05 +4.81173507325918e-05 +4.83595185925885e-05 +4.846568417732287e-05 +3.5472560961048434e-05 +3.6790282783282825e-05 +3.798148607806772e-05 +3.908250208181705e-05 +4.008284088677514e-05 +4.096090836120671e-05 +4.173503679217352e-05 +4.241037749760869e-05 +4.2965147755603e-05 +4.340520236364331e-05 +4.374283400409902e-05 +4.39704778922525e-05 +4.407030675995069e-05 +3.1896883079593446e-05 +3.311550114306678e-05 +3.422111633113292e-05 +3.524592625697994e-05 +3.6175830782398786e-05 +3.6993896310655934e-05 +3.7716937274659485e-05 +3.834803247867559e-05 +3.886694534459848e-05 +3.9279383289109335e-05 +3.959594593218192e-05 +3.98090500911822e-05 +3.9902404826439174e-05 +2.8580148871013465e-05 +2.970002158695193e-05 +3.0715719450612244e-05 +3.1660556704775125e-05 +3.2523039706517236e-05 +3.3277899353195554e-05 +3.394866628520514e-05 +3.4533089879420505e-05 +3.501584095393151e-05 +3.5398481476564905e-05 +3.569223878632653e-05 +3.589065049278193e-05 +3.5977674582790924e-05 +2.5518279574621448e-05 +2.6540508712853482e-05 +2.7470454729215274e-05 +2.833394991513463e-05 +2.9125004613144613e-05 +2.9819698838285163e-05 +3.0435310043406173e-05 +3.0974504588820934e-05 +3.1419916389370845e-05 +3.177042807475802e-05 +3.2042502741941464e-05 +3.2226401581876056e-05 +3.230703422143733e-05 +2.2707758402170513e-05 +2.3633821833714524e-05 +2.4477387064766692e-05 +2.5265630052719557e-05 +2.5984681464774605e-05 +2.6618860321821875e-05 +2.7180530448535432e-05 +2.7674479059450834e-05 +2.8080081136643494e-05 +2.8402086555502244e-05 +2.865227825535353e-05 +2.8821103538008388e-05 +2.8894555899482538e-05 +2.013951121040116e-05 +2.097309518928022e-05 +2.173602226437832e-05 +2.2446216771130863e-05 +2.3098301867174972e-05 +2.36723600878916e-05 +2.418268442062424e-05 +2.4629398190371637e-05 +2.4999140718744338e-05 +2.52925081694363e-05 +2.5518834284234174e-05 +2.5671615509686844e-05 +2.57386080482359e-05 +1.7803100516993612e-05 +1.8550218757239493e-05 +1.923406238435221e-05 +1.987115666445166e-05 +2.045783629609897e-05 +2.0973573314341968e-05 +2.1434084289496998e-05 +2.1837077412281637e-05 +2.2169464466568075e-05 +2.2434260415791127e-05 +2.2640109643033287e-05 +2.277817374971934e-05 +2.2838735841612998e-05 +1.568730394057e-05 +1.6352101114222354e-05 +1.6960757400213446e-05 +1.7529628407133852e-05 +1.8053812814063778e-05 +1.8514520039989176e-05 +1.8926144852396118e-05 +1.9287713993906635e-05 +1.958529522367352e-05 +1.9821912919637962e-05 +2.0006234513924652e-05 +2.0130752810809718e-05 +2.0185392237527903e-05 +1.377923124639318e-05 +1.4366140013657734e-05 +1.4905134319485636e-05 +1.540900982778149e-05 +1.5873420021896213e-05 +1.6283295094424977e-05 +1.664832747126608e-05 +1.697010379178644e-05 +1.7234998045397864e-05 +1.744571469148959e-05 +1.7609566576191993e-05 +1.7720379919242116e-05 +1.7768832688405963e-05 +1.206128365535517e-05 +1.2578461753746066e-05 +1.305108672789384e-05 +1.3495982414956282e-05 +1.3904553999453174e-05 +1.4265959635668245e-05 +1.4588395760883854e-05 +1.4872664121896717e-05 +1.5106508106961308e-05 +1.5292725188965433e-05 +1.543765769530955e-05 +1.5535578557619645e-05 +1.557854784919148e-05 +1.0521948006202158e-05 +1.0972751266096166e-05 +1.1386805831718284e-05 +1.1774744554985155e-05 +1.2132859649410333e-05 +1.2450181744837126e-05 +1.2732135838328795e-05 +1.298036477184513e-05 +1.318621401005131e-05 +1.335023706704774e-05 +1.3477380452672089e-05 +1.3563231323645876e-05 +1.3600939896641567e-05 +9.14454463278063e-06 +9.536064132889805e-06 +9.895074839314292e-06 +1.0232273512747501e-05 +1.0543169904460012e-05 +1.0818600241271484e-05 +1.1064203277845257e-05 +1.1281201749754363e-05 +1.1460420172659668e-05 +1.1602381047775706e-05 +1.171297887542062e-05 +1.1787603440938446e-05 +1.1820405572122502e-05 +7.91421041068948e-06 +8.251398822117397e-06 +8.56126779729415e-06 +8.852213077628662e-06 +9.12018648050414e-06 +9.358287753498312e-06 +9.57039049290518e-06 +9.757143263862618e-06 +9.9118226131554e-06 +1.0035014200535633e-05 +1.0130876004834885e-05 +1.0195617175681119e-05 +1.0223944594058439e-05 +6.815495133015183e-06 +7.104583322246246e-06 +7.369292386609312e-06 +7.618993182866026e-06 +7.848168106064395e-06 +8.052000799508499e-06 +8.234333834261607e-06 +8.394708049369572e-06 +8.527208551083587e-06 +8.632702038089772e-06 +8.714764927055843e-06 +8.770116939302272e-06 +8.79432769297434e-06 +5.833558564024532e-06 +6.079208710239286e-06 +6.305287664650845e-06 +6.516857043168571e-06 +6.712324155182103e-06 +6.885501621883682e-06 +7.040093369771628e-06 +7.17662967389503e-06 +7.289301141237868e-06 +7.379401799516303e-06 +7.449329512971157e-06 +7.496440818615712e-06 +7.517030026387166e-06 +4.954790677179833e-06 +5.162023246900255e-06 +5.352942828199488e-06 +5.531471869830532e-06 +5.695959154959677e-06 +5.842370083903671e-06 +5.972453415994289e-06 +6.087532472150373e-06 +6.182681305589301e-06 +6.258713397255551e-06 +6.3173129117158415e-06 +6.356944694225135e-06 +6.3742230887240774e-06 +4.1684569753451815e-06 +4.341049684350464e-06 +4.500119784747836e-06 +4.649337228820559e-06 +4.785782326688638e-06 +4.907425571590486e-06 +5.016274411235914e-06 +5.1118796438175385e-06 +5.191268620508629e-06 +5.254464175011366e-06 +5.303484932045476e-06 +5.3367995341043745e-06 +5.3513216342829465e-06 +3.473678393160771e-06 +3.6116898374265814e-06 +3.738838106138924e-06 +3.859081362228823e-06 +3.971360741419424e-06 +4.070537087185651e-06 +4.159455502843195e-06 +4.237918070715024e-06 +4.302884547236553e-06 +4.354570056411379e-06 +4.394803939451889e-06 +4.422118652822487e-06 +4.434017029305138e-06 +2.8712183420841925e-06 +2.9785332423554837e-06 +3.077412420928433e-06 +3.1708630725168534e-06 +3.256759404943214e-06 +3.333580800215014e-06 +3.402554622240991e-06 +3.463934259894288e-06 +3.5146662958469993e-06 +3.55501834694923e-06 +3.5865804306043915e-06 +3.607840606241574e-06 +3.6171450364633905e-06 +2.348392741079849e-06 +2.428054062125813e-06 +2.501394535171995e-06 +2.5718900521634204e-06 +2.6374511257254255e-06 +2.695386020210926e-06 +2.747432742474686e-06 +2.793443858180741e-06 +2.831572265460361e-06 +2.861982638065221e-06 +2.885572756022946e-06 +2.901615745965242e-06 +2.908635165717941e-06 +1.8949847283949902e-06 +1.9535088734535e-06 +2.006553474171089e-06 +2.057276532525444e-06 +2.1037378029058945e-06 +2.144814510161493e-06 +2.181691717712787e-06 +2.2142271534789917e-06 +2.2412121740213733e-06 +2.2625794370777826e-06 +2.2793796742795407e-06 +2.2906778082831126e-06 +2.2956737470422666e-06 +1.4831652762157527e-06 +1.5238437921517557e-06 +1.561190217823546e-06 +1.5967441031765393e-06 +1.6300688729967215e-06 +1.6591721169069641e-06 +1.6852876312746605e-06 +1.708560974470551e-06 +1.7265973110874026e-06 +1.74105761607622e-06 +1.7523994549485262e-06 +1.7599115721313904e-06 +1.7632091061438517e-06 +1.1095829791761728e-06 +1.1324844931774794e-06 +1.1542821441355877e-06 +1.1740911487419684e-06 +1.1926358652402221e-06 +1.2093688134885865e-06 +1.224091873122062e-06 +1.2371173166755803e-06 +1.2479015002814852e-06 +1.2565389816205264e-06 +1.2633576063912447e-06 +1.2678474558826609e-06 +1.2698881484213266e-06 +7.73331560791407e-07 +7.80943041963177e-07 +7.892269783950058e-07 +7.96035493938191e-07 +8.022448788075907e-07 +8.0780923753273e-07 +8.130635545423047e-07 +8.172817769294262e-07 +8.213201325870123e-07 +8.241000005030869e-07 +8.265619645215611e-07 +8.279597801073396e-07 +8.286532750659929e-07 +); + } + + "(OUTLET|Outlet|outlet)" + { + type calculated; + value uniform 0; + } + + "(WALL|Wall|wall)" + { + type nutUSpaldingWallFunction; + value uniform 0; + } + +} + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/0/omega b/Simulation_setup_and_evluation/BaseCase/0/omega new file mode 100644 index 0000000..f4f97be --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/0/omega @@ -0,0 +1,4051 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + location "0"; + object omega; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 0 -1 0 0 0 0]; + +internalField uniform 0.01; + +boundaryField +{ + "(INLET|Inlet|inlet)" + { + type fixedValue; + value nonuniform List<scalar> +4004 + ( +8.689430398066413 +8.79565098661845 +9.009978163868576 +9.33573183811643 +9.778503343306392 +10.345798099748578 +11.048767378812396 +11.902473309893551 +12.927864485988568 +14.154982913716138 +15.624582481973746 +17.39606145566386 +19.561275846603326 +8.79566030055338 +8.902144993627545 +9.117006362991392 +9.443186886047657 +9.885988642839868 +10.45324124668932 +11.15608372553856 +12.008769431101097 +13.033041448071653 +14.256948434167132 +15.722735838863672 +17.488678874677127 +19.640623786223685 +9.00997809280475 +9.11700632682102 +9.332046070407362 +9.65813247344372 +10.100276743872314 +10.666731266416932 +11.368783082753131 +12.219778611580923 +13.241389255397804 +14.4622463829499 +15.921259359906152 +17.678310490707165 +19.81625349315801 +9.335731730983971 +9.44318681357281 +9.658115805833464 +9.98376384165103 +10.424517181803743 +10.98942396761634 +11.688689777853241 +12.53617467599147 +13.552658832035235 +14.76704380865308 +16.21747894519887 +17.96138641611238 +20.08510430776902 +9.778503194498237 +9.885988531382667 +10.100276667413572 +10.424539671223336 +10.863393345146124 +11.423976333477338 +12.119120665752869 +12.960857553281622 +13.968359304413928 +15.174468430808513 +16.612539143659987 +18.33591500707775 +20.430670907249635 +10.345797908079454 +10.453241091372709 +10.666731151117045 +10.989423887148858 +11.423976292306739 +11.980322464993673 +12.669727471740622 +13.503880540830608 +14.502618461721417 +15.695266234344452 +17.117110518962914 +18.819407859024416 +20.884837015441434 +11.048767143532089 +11.156083525045945 +11.368782921462541 +11.688689653498962 +12.119120580995075 +12.669727427022638 +13.351528728423807 +14.176545779913758 +15.162884307305774 +16.33962428448196 +17.74220521424414 +19.418703392668515 +21.442887241019324 +11.902513394498927 +12.008769177322899 +12.21977839637484 +12.536174502599332 +12.96085741805606 +13.503880447404049 +14.176589968016058 +14.98720122186044 +15.958281871915327 +17.11739521022016 +18.491805015892172 +20.133590541069434 +22.108730657628726 +12.927864133008075 +13.033041139841139 +13.241388984226994 +13.552658601196256 +13.96835911726688 +14.502618313796578 +15.162884203286849 +15.958281816934239 +16.908097098080045 +18.042475509573226 +19.38680083808027 +20.980475158205575 +22.89931673901111 +14.154982492510758 +14.256948059751679 +14.46224604307267 +14.767043508040956 +15.174468173611356 +15.695327428059562 +16.339624114950784 +17.11739509465966 +18.042475447202282 +19.14415370897634 +20.44711937790679 +21.98962828378069 +23.840977918793932 +15.624581973094076 +15.722735378766226 +15.921258932204099 +16.217478573228505 +16.61253881245591 +17.117074510842716 +17.742204977004917 +18.491884686615315 +19.386800703365964 +20.447119307864746 +21.704641618045574 +23.16688986344998 +24.936071731689857 +17.396060826141824 +17.488678299283404 +17.67830997124723 +17.96138592968869 +18.335914583559866 +18.819407477871568 +19.418703059230634 +20.133590260517586 +20.980474937146806 +21.989628128267892 +23.16688978133024 +24.55232945679449 +26.199975808890812 +19.56127508979952 +19.64062308728737 +19.81625281414899 +20.08510369460711 +20.430565651502146 +20.88483650832406 +21.442886777566212 +22.1087302741136 +22.89931641216869 +23.840857655879486 +24.93607154398877 +26.19997570801972 +27.701066714579934 +8.689430446617543 +8.795653443168725 +9.009978351687359 +9.335732095071728 +9.778503681912113 +10.34579852162875 +11.048767884922952 +11.902514290824932 +12.927865222817257 +14.154983783844841 +15.624583524263901 +17.39606273580283 +19.561277376179465 +8.795651038489135 +8.90214514602077 +9.117006589678752 +9.443187181707811 +9.885989015884798 +10.45324170935711 +11.1560842782122 +12.008770092649897 +13.03304221820957 +14.256949338980233 +15.722736920966891 +17.48868019762912 +19.64062536272307 +9.009978215503317 +9.117006520363224 +9.332046330295848 +9.658116175066858 +10.100277162652498 +10.666731758177118 +11.368783672474462 +12.219779319123555 +13.241390079687026 +14.462247355401644 +15.921260525615693 +17.678311850817433 +19.816255212178152 +9.335731889767086 +9.443187042819723 +9.658132736087813 +9.983781076948413 +10.424540171387422 +10.989424516587757 +11.688690417595858 +12.536175421553377 +13.552659706734055 +14.767044844752457 +16.217480135215315 +17.96138788075088 +20.085106063506053 +9.778503396741737 +9.885988802292427 +10.100277016129821 +10.424517568368001 +10.863393851504188 +11.423976929269145 +12.119121352952105 +12.96085836140409 +13.968360222230908 +15.174469526059859 +16.61254041009128 +18.33591649341038 +20.43056797625382 +10.34579815432121 +10.453241411714206 +10.666731537220729 +10.989424362382849 +11.423976850371364 +11.980323123854584 +12.66972823064833 +13.503881410738984 +14.502619460162562 +15.69526738676418 +17.117076138078286 +18.819498141188106 +20.884838937802243 +11.04876743404055 +11.156083893995676 +11.368783363383193 +11.688690179287928 +12.119121190525414 +12.669728144952499 +13.351529533681708 +14.176590950134285 +15.162885390810823 +16.339625549514338 +17.74220663183506 +19.418705085156308 +21.44288931442038 +11.902473367034656 +12.008769606318797 +12.219778906710628 +12.536175089271167 +12.960858102262815 +13.503881231699738 +14.176546620719709 +14.987202222034442 +15.958283047542698 +17.117396532041838 +18.491806594321126 +20.133592345049205 +22.108732736881116 +12.927864546378544 +13.033041627528098 +13.241389560025421 +13.552659264362893 +13.968359863589274 +14.502619176684941 +15.162885191472798 +15.958282942178942 +16.90809837835025 +18.042476965884337 +19.386802502467443 +20.980477075801645 +22.89931897239381 +14.154982976662488 +14.256948621464415 +14.462246704073621 +14.767044268670602 +15.174469033176777 +15.695266982695864 +16.33962522463101 +17.117396310585956 +18.04247684635903 +19.144155323956674 +20.44712113161519 +21.989630326167976 +23.84098032095814 +15.624582549065902 +15.722736039253261 +15.921259705983482 +16.217479422385193 +16.612539775384178 +17.11711131204909 +17.74220617719857 +18.49180622120471 +19.38673890513549 +20.447120997389373 +21.70464359812797 +23.166892036006516 +24.9360743247723 +17.396061529410318 +17.48867909496609 +17.678294431517784 +17.961386948586718 +18.335915681796596 +18.819408716585706 +19.418704446168316 +20.133591807410003 +20.980476652172825 +21.989630028149016 +23.16689187863553 +24.55233197305767 +26.19997860876564 +19.561275925868756 +19.640624023307726 +19.81625391095059 +20.085104888465317 +20.430671645027193 +20.884837965981447 +21.442888426276067 +22.108792552035084 +22.8993183460452 +23.840979818805152 +24.936073965069156 +26.199978415460052 +27.7010697564628 +8.68943046187299 +8.795651087412915 +9.00997829684792 +9.335732004168653 +9.77850354989413 +10.345798347107149 +11.048767666996142 +11.902473648673071 +12.92786488881214 +14.154983382418084 +15.624583036465594 +17.396062129453053 +19.561276644281964 +8.795651123015922 +8.902145193904882 +9.117006602956867 +9.443187158492986 +9.885988954529891 +10.453241605893702 +11.156084130651257 +12.0087698939276 +13.033041966366838 +14.256949023416276 +15.72273652383471 +17.4886796914534 +19.640624738282032 +9.009978367911728 +9.11700663912722 +9.332046411956505 +9.658132852106691 +10.100277171740949 +10.666731727967658 +11.36878359936185 +12.219779196651434 +13.241389904234591 +14.46224711642611 +15.921260206656102 +17.678210362367437 +19.81625466444557 +9.335732111301098 +9.443187230967823 +9.65811625759405 +9.983798055422573 +10.4245402538973 +10.98945291140726 +11.68869041937807 +12.536175378019637 +13.552659611738607 +14.767044688684425 +16.21747991318377 +17.96138756163829 +20.085105632807156 +9.77850369870226 +9.88598906598706 +10.100277248199683 +10.42454029285067 +10.863371203042067 +11.423977050514031 +12.119121433085297 +12.960858398676217 +13.968360210784729 +15.174469458135386 +16.612540277384 +18.33591628189887 +20.430567663913532 +10.345798538776245 +10.453241761210279 +10.666731843267527 +10.98942464062902 +11.423977091684613 +11.980323330878074 +12.669728397463148 +13.503881534393308 +14.50261953688948 +15.695267411055164 +17.11711182334882 +18.819409335317907 +20.88483872935814 +11.048767902276424 +11.156084331143825 +11.368783760652418 +11.688690543732353 +12.119121517843114 +12.6697284421811 +13.351529786705221 +14.176591165870585 +15.162885564609763 +16.339625675391346 +17.7422066971698 +19.418705082743113 +21.442889223391834 +11.902514308779377 +12.008770147705793 +12.219779411857512 +12.536175551411745 +12.96085853390179 +13.503881627819899 +14.176591214326589 +14.9872475862523 +15.958283328853671 +17.11739676223194 +18.491886643769924 +20.133592462399562 +22.10879332587056 +12.927865241792647 +13.033042274597335 +13.241390175405364 +13.552659842577567 +13.968360397931772 +14.502619684814274 +15.162885668628705 +15.958283383834786 +16.908098780629402 +18.04247732355059 +19.38673947044 +20.980477324168618 +22.89931915050443 +14.154983803623484 +14.256949397831708 +14.462247456303292 +14.76704498929651 +15.174442583552494 +15.695267621906856 +16.33962584492257 +17.117396877792462 +18.042477385921497 +19.144155831406533 +20.447121570437776 +21.98963071876058 +23.840980655934377 +15.624583545345208 +15.72273698393215 +15.921260634358124 +16.21748028515406 +16.61254060858803 +17.117076387275514 +17.742206934409072 +18.49180697304751 +19.3868029443236 +20.447121640479704 +21.704644220298086 +23.166892587086974 +24.93607483883099 +17.396062758975017 +17.488680266847048 +17.678311965391444 +17.961388048061906 +18.33591670541666 +18.81949841064521 +19.418705416180963 +20.133592742951464 +20.980477545227405 +21.989630874273384 +23.166801901250523 +24.552332763703383 +26.199979326915788 +19.56127740108579 +19.640625437218254 +19.816255343454518 +20.085106245969094 +20.43056820807479 +20.884839236475457 +21.442889686844925 +22.108793709381963 +22.899319477346843 +23.840980917968754 +24.936075026531913 +26.19997942778687 +27.70107071226578 +8.689430413321874 +8.795657980459563 +9.009978109029126 +9.335731747213346 +9.778503211288385 +10.345797925226954 +11.048767160885564 +11.902513412453375 +12.927864151983465 +14.1549825122894 +15.62458199417539 +17.396060849314015 +19.56127511470585 +8.795651035542242 +8.902145041511673 +9.117006376269503 +9.443186862832833 +9.88598858148494 +10.453241143225886 +11.15608357797758 +12.008769232378802 +13.033041196228917 +14.256948118603159 +15.722735441731489 +17.48867836850134 +19.640623161782568 +9.009978245213189 +9.117006445585046 +9.332046152068036 +9.65811588836067 +10.100276752960768 +10.666731236207465 +11.368783009640508 +12.219778489108808 +13.24138907994534 +14.462246143974332 +15.921259040946538 +17.678310085821252 +19.816252945425372 +9.335731952518001 +9.443187001720933 +9.658132589462614 +9.983780820233418 +10.424539792686598 +10.989424011190133 +11.688689779635473 +12.536174632457712 +13.552658737039781 +14.76704365258502 +16.217478723167268 +17.96138609699973 +20.085103877070154 +9.778503496458788 +9.885988795077342 +10.100276899483458 +10.424539867335412 +10.863370696681548 +11.423976454722224 +12.119120745886102 +12.960857590553779 +13.96835929296776 +15.174441231101671 +16.612539010952666 +18.33591479556617 +20.43056588332313 +10.345798292534523 +10.45324144086882 +10.666731457163875 +10.989452516643016 +11.423976533620023 +11.98032267201718 +12.669727638555422 +13.50388066448498 +14.50261853844831 +15.695327663201413 +17.117074760039962 +18.819407747329567 +20.884836806997303 +11.048767611767989 +11.156083962194147 +11.3687833187318 +11.688690017943399 +12.119120908312768 +12.669727724251288 +13.351528981447336 +14.176590232208383 +15.162884481104753 +16.33962441035904 +17.74220527957895 +19.418703390255317 +21.44288714999077 +11.902473591531967 +12.008769718709907 +12.21977890152174 +12.536174964739951 +12.960857849695037 +13.5038808435242 +14.176590325067561 +14.98724658608136 +15.95828215322635 +17.117395440410302 +18.491885065340604 +20.133590658419877 +22.10879124661827 +12.927864828422166 +13.0330417869104 +13.241389599606983 +13.552659179410963 +13.968359651609397 +14.50261882192597 +15.16288468044276 +15.958282258590074 +16.908097500359226 +18.042475867239464 +19.386801145222137 +20.98047540657259 +22.899316917121737 +14.154983319471736 +14.256948836119 +14.462246795302395 +14.767044228666915 +15.17446885576714 +15.69526666270377 +16.33962473524231 +17.117395661866162 +18.04247598676481 +19.144154216426223 +20.447119816729295 +21.989628676373325 +23.84085825289164 +15.624582969373442 +15.722736323445128 +15.92125986057878 +16.21747943599746 +16.61253964565983 +17.117111030262667 +17.742205734215386 +18.491885438461004 +19.386801403383597 +20.44711995095523 +21.70464224021573 +23.166799646569544 +24.936072245748424 +17.396062055706597 +17.488679471164442 +17.67822642161508 +17.961387029163962 +18.335915607180038 +18.819408477756646 +19.418704029243337 +20.13359119605902 +20.9804758302014 +21.989628974392282 +23.16689057190147 +24.552330247440246 +26.19997652704098 +19.56127656501654 +19.64062450119799 +19.816254246652996 +20.08510505211088 +20.43056692613362 +20.88483777881815 +21.44288803813512 +22.108731431465422 +22.899317543470374 +23.840978755923206 +24.936072605451724 +26.19997672034658 +27.70106767038294 +22.32635052039023 +22.40620122056625 +22.587964972637536 +22.85664081853302 +23.202600054964076 +23.669679001109277 +24.23341200421177 +24.921432983439328 +25.716277171459403 +26.667439053224925 +27.78632987886135 +29.064894980111628 +30.577913437146695 +25.741501409203654 +25.83182881449985 +26.03777664103864 +26.342205745124133 +26.73349307657474 +27.266651900786233 +27.91666186035425 +28.6914458282234 +29.600931023171594 +30.70260356123365 +31.94945866621349 +33.429715931392 +35.17678848435 +29.641524501845556 +29.73886268419335 +29.963888744917718 +30.325955693221026 +30.79482343883358 +31.38328068548672 +32.12192744534158 +33.02513961045497 +34.040291980516386 +35.329788184433646 +36.75393649940852 +38.47108145937391 +40.46817455104206 +34.105603015808406 +34.22686333067824 +34.506103785455856 +34.91937518728512 +35.45022508927208 +36.11615084185333 +36.970197368740365 +38.01713134904623 +39.18975489374409 +40.66731985771852 +42.338746787936 +44.29836904961694 +46.59864644464938 +39.281591882962154 +39.406406391626504 +39.708696748057555 +40.200441083479745 +40.83205780081084 +41.624380340789514 +42.582316592616124 +43.76218275984765 +45.20406105467379 +46.828888418642144 +48.82526925269439 +51.0994612592845 +53.74717081236034 +45.34513839841948 +45.49844224467408 +45.847804102621716 +46.36418280417874 +47.028651412258725 +47.94389913044951 +49.16517776710696 +50.55071659854535 +52.09969656122098 +54.088511072438244 +56.44693896628506 +58.959837467385924 +62.25522532359361 +52.285137845901026 +52.44926127584006 +52.83316712090936 +53.50533107411443 +54.395644092170826 +55.51200089980242 +56.860063993740546 +58.388562100130144 +60.19784350284846 +62.68739387672463 +65.37899762693263 +68.24929411527971 +72.2480314816128 +60.51615217158147 +60.75012413742191 +61.2846566950051 +62.074498857653644 +63.08863653471558 +64.36234261953685 +65.89882898654754 +67.64362091621001 +69.8550417989832 +72.82357328471942 +76.03907985678526 +79.45912896686153 +83.94316074094971 +70.30833228421302 +70.58653409715363 +71.22106576694159 +72.16257229129612 +73.37317580739331 +74.89201283611507 +76.72347666996409 +78.79851767490048 +81.15153664044071 +84.75638081961324 +88.83370341883924 +93.17216824335175 +97.88597373248825 +81.69536767564261 +82.03122997917637 +82.8358224810257 +84.0253199665543 +85.55304136663847 +87.4745659838589 +89.80088451388129 +92.43042327664462 +95.37303067689584 +98.69562991707872 +103.61100493498053 +109.60848937856886 +116.14833451521713 +96.07924751489654 +96.38921038594626 +97.09913846580183 +98.1516120613455 +99.50529120386169 +101.89068443337916 +105.10254677797731 +108.73284938467285 +112.80575104182232 +117.40766461311561 +122.3827080235014 +127.66694519002895 +136.24040061894922 +113.95977716844004 +114.39004002094973 +115.37133125190269 +116.82310590968652 +118.68770334061614 +121.02795955158076 +123.85040659545723 +127.04811021328463 +131.26744990008618 +138.50242838670988 +146.39766905483359 +154.79213650256605 +163.96065169990356 +133.3377263070431 +134.01966015646894 +135.5758954177395 +137.87721233183305 +140.83144513633124 +144.54191590335532 +149.0169027164488 +154.085135779866 +159.7886661234821 +166.21410748789134 +173.16402736051975 +180.53147724039908 +192.2120074090701 +161.9910934870194 +162.59061359931775 +163.9557229300044 +165.97548313662256 +168.57042329011247 +171.82622330166905 +175.75435905014547 +180.19776500047126 +185.63784182149695 +197.38046316449748 +211.37676333392716 +226.23048088920999 +242.33845079903867 +189.60780608312473 +190.81197407847893 +193.55713718266722 +197.61895519123405 +202.83467532955834 +209.38526709679147 +217.28616706664852 +226.2212256848703 +236.21320457233892 +247.46518632425347 +259.7560405321395 +272.81034937631347 +286.9737454139461 +241.46218493337457 +242.50579160544962 +244.88611004662712 +248.41603351181436 +252.98472654696798 +258.7286093585775 +265.6562202815699 +273.48980115003593 +282.25474364475735 +292.1147690379381 +302.7810733787764 +314.0926719809569 +347.5056646663878 +287.61972348366584 +288.5311821114576 +290.6130156986229 +293.69127916030226 +297.6458683843425 +302.60708143049106 +308.5970227983086 +315.7812111020639 +335.06496114118505 +366.0997248640394 +399.68859774398106 +435.3365326689918 +473.9773256096291 +354.7897904714544 +357.6590569683251 +364.1893438831872 +373.85482089225434 +386.2691348474459 +401.8525072755672 +420.66805028468053 +441.93234704229747 +465.7265146757809 +492.47869284097305 +521.4761354046204 +552.2110596398675 +585.9666730201574 +485.6565329673458 +488.1172408209492 +493.71954562214603 +502.0164547112237 +512.6887644487977 +526.0753570000335 +542.2177151075144 +560.5744486335038 +581.2808920614475 +604.7240624527337 +630.0538486377322 +656.9421412816702 +686.0944840065184 +601.7364110049879 +603.883144208204 +608.7641837179177 +615.9875963754034 +625.2835594291436 +636.9362834968067 +651.0170788793329 +666.9195802183788 +684.7256072193875 +704.7747680882452 +726.4208712749077 +749.418317517329 +774.3532718903585 +705.3096142847919 +707.1280424599719 +711.2840139827928 +717.4271730734669 +725.3458787398761 +735.2599677001784 +747.2200617448974 +760.7570159199564 +775.9027779881786 +792.9265854730211 +810.9388906941371 +829.2437225030241 +847.8733247137327 +796.6030392652111 +798.1406318476618 +801.6559914641045 +806.6934319416415 +812.9632565302284 +820.838202032902 +830.1866401352517 +840.2604997209354 +851.5222340051805 +864.1842631745014 +877.9303687474992 +892.4336615339874 +908.2061529099218 +869.8179438444082 +870.9554906805347 +873.5453018028356 +877.3765958717993 +882.3131580373995 +888.4863664241591 +895.9583537668829 +904.3886036788301 +913.8323788900882 +924.4678088291623 +935.9719630318087 +948.1775166325602 +961.3821808082126 +932.2237452455721 +933.1632462345384 +935.3182217315866 +938.5029464794735 +942.600804028028 +947.7289903805262 +953.9313495056479 +960.939917418617 +968.7712244390317 +977.6155400333607 +987.1448794169744 +997.283041240952 +1008.2724048676441 +987.2311411698458 +988.0022724500592 +989.7713198077365 +992.3743926873248 +995.7301732911421 +999.9458543249358 +1005.0211044901868 +1010.777250884519 +1017.2099937541846 +1024.449492540408 +1032.210168907806 +1040.4612536058582 +1049.3984975185804 +1035.6391461144349 +1036.256306407535 +1037.6731250966695 +1039.760072096519 +1042.4410247633323 +1045.8108726224116 +1049.8556699763735 +1054.3708018504278 +1059.4068170470234 +1065.1081858510458 +1071.2253596852952 +1077.7549029866414 +1084.8423132595992 +1077.4749403123503 +1077.9527408487882 +1079.0445154577135 +1080.6653332305516 +1082.7375502116988 +1085.3428200359392 +1088.4948859316569 +1092.0407383697047 +1096.0338471091989 +1100.498665558765 +1105.3561530671432 +1110.4958124322422 +1116.0862194459155 +1114.1330901211002 +1114.4995171865428 +1115.3370151474435 +1116.5685071736011 +1118.1560472830533 +1120.1465036809066 +1122.5484731385113 +1125.265528723865 +1128.3111023760673 +1131.7125400645402 +1135.41039551163 +1139.3463051613653 +1143.6214330805315 +1146.4508716534417 +1146.7189679279475 +1147.3252808403927 +1148.226872344495 +1149.3777020130367 +1150.8217335580287 +1152.5717507385978 +1154.5468312560147 +1156.7491164329044 +1159.2312338265988 +1161.9410322921647 +1164.7748567868562 +1167.9014195084667 +1174.9402581138406 +1175.1177054938653 +1175.5190125850477 +1176.1291213077493 +1176.890015677492 +1177.8575676830924 +1179.0182750452086 +1180.355653245849 +1181.827697319718 +1183.513269329368 +1185.3115919798386 +1187.2005830802593 +1189.2581140733994 +1200.0432695236384 +1200.1460859067504 +1200.372320177521 +1200.715906134205 +1201.1511480456993 +1201.6945667591567 +1202.3509272835918 +1203.111657774607 +1203.9360242128214 +1204.8705130864819 +1205.8687124954038 +1206.9671243157966 +1208.1211626458282 +1222.174240966153 +1222.206662036759 +1222.2784976213634 +1222.3871725883566 +1222.528731894137 +1222.706069233527 +1222.9033652920625 +1223.1491264814752 +1223.413135235407 +1223.6998275506626 +1224.018290068093 +1224.3782448940717 +1224.7323249503356 +30.577739269687825 +29.064895164750382 +27.78633016024448 +26.6674394149911 +25.716277639433315 +24.921433510139142 +24.233412594131327 +23.669679665284047 +23.202600802195764 +22.85664159510857 +22.587831446809254 +22.406202149153643 +22.3263515206587 +35.176788573855646 +33.42971617029243 +31.949459067494654 +30.70260406355294 +29.6009316049736 +28.691446540854617 +27.916662622562594 +27.266652778884474 +26.73332508855903 +26.34220675146562 +26.037951159750914 +25.831830016725498 +25.741327103394365 +40.468174674745605 +38.47108177999511 +36.753651382354455 +35.32978884021205 +34.04029277028014 +33.02514051894675 +32.122177402512875 +31.383055623573508 +30.794824681700916 +30.325957072122062 +29.963666914567554 +29.738864159195714 +29.641526087730586 +46.59864659549072 +44.298045236168015 +42.338747429003575 +40.66732075629604 +39.18975588308751 +38.017132560217995 +36.97019879531397 +36.11625702962999 +35.4502266965256 +34.919444711271154 +34.506105741080745 +34.22686544985602 +34.10560514494557 +53.747171045508665 +51.09946182248869 +48.82527019282134 +46.82888950712761 +45.20406245119451 +43.762184461605386 +42.582318283185174 +41.624382278493705 +40.83205998672951 +40.200443510933276 +39.7086994081049 +39.40640885393344 +39.281583274041346 +62.25522563012459 +58.95983818193218 +56.446940159643084 +54.08851274396164 +52.09969827961129 +50.55071869808261 +49.165180232619896 +47.94390196432073 +47.028654044656065 +46.36418571363353 +45.8478072889242 +45.498445696838345 +45.34514210356403 +72.24803190291563 +68.24994269318586 +65.37899918889028 +62.6873960641567 +60.19784630741569 +58.388564750830014 +56.860067116942204 +55.512004470725714 +54.39564811439821 +53.505335534015394 +52.83328321195198 +52.449265501471174 +52.28514237953365 +83.94316135348438 +79.45824744693263 +76.0390819944567 +72.82282825145306 +69.85504562868226 +67.64362437997143 +65.89883306547948 +64.36234727732817 +63.08864177833357 +62.07450466969843 +61.28466305400348 +60.749938536525036 +60.51615953405467 +97.88597435733999 +93.17217011064524 +88.83370653631816 +84.75638515984528 +81.15154108803596 +78.79852241178885 +76.72348221197966 +74.89156693959808 +73.37318296358323 +72.16218039221823 +71.22147711606738 +70.58640822869604 +70.30834229782181 +116.14833550646645 +109.60849234094012 +103.61100987842647 +98.69563433237748 +95.37303629984565 +92.43130621650114 +89.80012534542762 +87.47457521668696 +85.55248334175334 +84.02552378601479 +82.83505663866363 +82.03104746190297 +81.6959592077791 +136.23623498538538 +127.6669481963848 +122.38271301859683 +117.40939225061476 +112.80576000725114 +108.73286022943614 +105.10255952947583 +101.89128963323863 +99.50453332175661 +98.15240383144439 +97.0989543470325 +96.38940591183251 +96.07827233897783 +163.96065353351983 +154.79214201443182 +146.39767816499722 +138.50244112696302 +131.26746304004033 +127.0481211943511 +123.850419455474 +121.02767688499395 +118.68711361175812 +116.82189296087503 +115.37166262153723 +114.3891207381719 +113.96043006741787 +192.21201166764627 +180.53148276792297 +173.16403657302402 +166.21412036563913 +159.788682634549 +154.08515574582432 +149.01956868546873 +144.54086087666272 +140.83257795746292 +137.87836531695007 +135.57310122563587 +134.02084044450137 +133.33834112489208 +242.33845507021064 +226.23049371813192 +211.37678470374283 +197.38049303420746 +185.63786282338097 +180.197785121954 +175.75491588218046 +171.82570469444906 +168.56878521721165 +165.97664619796228 +163.95461754425702 +162.58835161160832 +161.9905585242976 +286.97374974485615 +272.82074432441294 +259.76409930510886 +247.46521656632498 +236.21324290915632 +226.22007120297536 +217.2899257846598 +209.38532983180758 +202.83474583116916 +197.6203404722102 +193.55457843897963 +190.8133980419372 +189.60790475098617 +347.46980613502114 +314.09268501098444 +302.7810950692675 +292.11479934524453 +282.2547824668588 +273.4862031660558 +265.64857568377676 +258.7299508549738 +252.9847978373215 +248.41743386801664 +244.87755852629112 +242.5045517515981 +241.4542620866202 +473.97734145215054 +435.33658021615804 +399.68867689566935 +366.0998354112367 +335.0651027267873 +315.78703780120725 +308.5933310055965 +302.6084228159865 +297.6370774188487 +293.6887130257411 +290.6164039406972 +288.5245383272479 +287.62387995952105 +585.9666891871977 +552.2111072451693 +521.4762146717605 +492.5056226050018 +465.7309456767133 +441.91480615660817 +420.6910075557974 +401.8294547833452 +386.2551568639512 +373.84547208105266 +364.1847856565607 +357.6446705579642 +354.8034370288351 +686.0945001956134 +656.9421898468189 +630.083727129257 +604.7241752836833 +581.2985179578427 +560.5835871519789 +542.2179175040607 +526.0569560861933 +512.6985192892072 +502.00228730886374 +493.7198598492675 +488.1081913017327 +485.6618234501391 +774.3532881006194 +749.4183661320874 +726.4507440912664 +704.7748810189269 +684.7344928073375 +666.9107319670865 +651.035832596689 +636.9317747951027 +625.2983301446659 +615.9731648588148 +608.7645038368502 +603.8784900505141 +601.7217247991784 +847.8733389933974 +829.2098379858865 +810.9389667798848 +792.9266984760102 +775.898551423452 +760.7707289284787 +747.2202681323963 +735.2744381901613 +725.3326231834518 +717.438035846838 +711.2992252219744 +707.1183874893085 +705.2899091778813 +908.20616720326 +892.4337043762309 +877.8948802753499 +864.1843626660483 +851.518515130959 +840.2685961699431 +830.1990635849437 +820.8473425364124 +812.9816831484602 +806.6798690000709 +801.6364581417013 +798.1209773157631 +796.6034097367811 +961.4124792289563 +948.1775595127784 +935.9720343639253 +924.491916206037 +913.8440471358844 +904.3882717540868 +895.9503738898943 +888.486574325025 +882.3218992541546 +877.3854898805371 +873.5281183422525 +870.9425964372678 +869.8138540818355 +1008.2724191816471 +997.2830841476809 +987.1449507830974 +977.6156396245957 +968.7713519052589 +960.9400723104723 +953.939691799131 +947.7124980164698 +942.5678827206308 +938.4816109244332 +935.3185035016955 +933.1503522206135 +932.2108242624436 +1049.3672089681431 +1040.4612961846624 +1032.210239722763 +1024.4495921750524 +1017.2255091466802 +1010.7694636946334 +1005.0131248654869 +999.9669380081525 +995.7346614527113 +992.3876068795304 +989.7628677215756 +988.0069760541678 +987.2270517802956 +1084.8423272070154 +1077.7549447900096 +1071.2254292075654 +1065.0849280115333 +1059.3994531529265 +1054.3902765069834 +1049.871732770398 +1045.7945150252795 +1042.4539159038864 +1039.7688947107679 +1037.6517489875519 +1036.2696976102754 +1035.630711180202 +1116.0862333999282 +1110.4958542526317 +1105.3562226121628 +1100.4987625848069 +1096.0489472534916 +1092.0177008341254 +1088.479176652846 +1085.3430225531504 +1082.7253541176844 +1080.6823979689561 +1079.0447897272861 +1077.9401922568177 +1077.4623655384353 +1143.6214470427701 +1139.3463470045342 +1135.4104650924403 +1131.712637122501 +1128.3187151894922 +1125.2579495402138 +1122.5446784919538 +1120.134514672246 +1118.1479922119806 +1116.5729618458415 +1115.3372894292568 +1114.508376772587 +1114.147598876563 +1167.9014334743454 +1164.7748986393515 +1161.9411018853814 +1159.2313309110252 +1156.7679632226316 +1154.5585791992658 +1152.552066261627 +1150.8381940356498 +1149.3737875745946 +1148.2265025967092 +1147.3340569270092 +1146.7235465002302 +1146.4468910330825 +1189.2894303688329 +1187.200624941122 +1185.3116615843433 +1183.5133664266382 +1181.8165886712532 +1180.3558041762374 +1179.0388795409697 +1177.8577702561468 +1176.8778188813114 +1176.129372596993 +1175.5192868935535 +1175.1008748581069 +1174.9203872221422 +1208.121176620666 +1206.9671661908249 +1205.8687821199594 +1204.8706102085182 +1203.924914536119 +1203.0929853696289 +1202.3550763416854 +1201.6947693636841 +1201.1596581094868 +1200.69934334944 +1200.364093787891 +1200.1549455654176 +1200.034992074884 +1224.7618056563472 +1224.4058099020606 +1224.0183597015778 +1223.6999246829077 +1223.4207484508286 +1223.1376819885927 +1222.9273728399253 +1222.7062718391016 +1222.5248181625611 +1222.3790173809152 +1222.304272298136 +1222.1898328711343 +1222.1831523046098 +22.326351619122125 +22.406202443865233 +22.587831936542933 +22.856672924270313 +23.202601732634434 +23.66968079823233 +24.23341395108048 +24.921435144303747 +25.716279629429092 +26.667441601501725 +27.78633276402024 +29.06489825553634 +30.577742940478235 +25.741327228980598 +25.831830392646975 +26.037951783459643 +26.342207618740417 +26.73332619685209 +27.266654249626292 +27.91666434268919 +28.691448708329997 +29.600934028152594 +30.702607034804217 +31.94946269843335 +33.42972007635688 +35.176793305891906 +29.641526239993222 +29.738864615052865 +29.96366770928716 +30.325958245138636 +30.794826181916875 +31.383057438645988 +32.12217979269203 +33.02502071032424 +34.040296006253556 +35.32979265379617 +36.753656157699666 +38.47108692555754 +40.46818108617571 +34.10560534757619 +34.226866098701294 +34.50610681942551 +34.91937847746343 +35.450228615490055 +36.11625935552781 +36.97020192916917 +38.01713614169232 +39.18975988404889 +40.667325911047726 +42.33875304742439 +44.298376704234606 +46.598654289373606 +39.28158352385938 +39.40640960214331 +39.70870086319119 +40.200445537443 +40.83206257351568 +41.6243854120454 +42.582487615626626 +43.76218944277768 +45.204068038923594 +46.82889568228119 +48.82527833723159 +51.09947061831729 +53.74718278325677 +45.34514245163785 +45.49844673932304 +45.847809020426666 +46.36418812572658 +47.028657137184446 +47.94390651215142 +49.16518555348537 +50.55072479227997 +52.09970509507953 +54.08852214026992 +56.446950399228626 +58.95935162873618 +62.25524089651966 +52.285161893225805 +52.449266770950246 +52.83317417729351 +53.50533921032034 +54.39565281112638 +55.51201016503775 +56.8600738124975 +58.38857239140202 +60.19785734991395 +62.68740826720566 +65.3790124849535 +68.24930943172153 +72.24805269747954 +60.516160219535024 +60.749940596031486 +61.28466647510096 +62.0745094375194 +63.08864787027579 +64.36235466528974 +65.89884176125966 +67.64363430594396 +69.85506061527275 +72.82284485878546 +76.03910006987118 +79.4582670465432 +83.94319135825539 +70.3083432269041 +70.58641101184784 +71.22148174257435 +72.16247852565394 +73.37319124201456 +74.8915769803028 +76.72349397145373 +78.79853591937764 +81.15155840279475 +84.75640908850018 +88.83373274781306 +93.17219836605551 +97.88600476921927 +81.69600857001 +82.0310514863885 +82.83506332666738 +84.02553310733407 +85.55249525662428 +87.47393557030284 +89.80014237898764 +92.43132566703994 +95.37305809437996 +98.69565856333067 +103.61105124274091 +109.60853693851541 +116.14838349095024 +96.07827368699823 +96.38940995027178 +97.09896109454034 +98.15241326031263 +99.50454537582561 +101.89131255569335 +105.10258638675676 +108.73289091491965 +112.80579462716595 +117.40943045162554 +122.38275464358864 +127.66699326045024 +136.23632222812617 +113.9604322068818 +114.38912714774236 +115.37167327462423 +116.82190781272256 +118.6871325984207 +121.02769992985812 +123.85044646236717 +127.04815217040729 +131.26751361637267 +138.50251053707822 +146.39775381432588 +154.79222432673149 +163.96074152674427 +133.33834500881977 +134.02085208059665 +135.57399162364626 +137.8771777762928 +140.8326124318687 +144.5409027257842 +149.0196177355155 +154.08521191852864 +159.78874601134476 +166.2141903216356 +173.16411283985536 +180.53156504820095 +192.21221532829583 +161.99056243645555 +162.588363332273 +163.95551439262192 +165.97667335719416 +168.56881994475404 +171.82574685516414 +175.75496530382281 +180.1978416035286 +185.63794324479383 +197.380654889836 +211.37696115309598 +226.23068415435066 +242.33865872759898 +189.6079137934868 +190.81342513333865 +193.55462347057693 +197.6204032680407 +202.8348261475005 +209.38542730959315 +217.2900400998463 +226.22020185788912 +236.21338940695293 +247.4653800852924 +259.7642777411195 +272.8209368947794 +286.973955716531 +241.45427111912983 +242.5033598549358 +244.8776035112562 +248.41749727606407 +252.98487893212229 +258.73004937877715 +265.65389384874555 +273.4863352232162 +282.24826039664316 +292.114962910765 +302.78127341000624 +314.0928775668734 +347.47055648310607 +287.6238890866164 +288.5245656760919 +290.61849710713886 +293.6887764233565 +297.6408103226511 +302.60852124239756 +308.59344645438694 +315.78734815771315 +335.0656419656466 +366.10043104567245 +399.68932657083803 +435.3372815788416 +473.978091750902 +354.8049666528074 +357.6447701057868 +364.18495113871705 +373.84570285784525 +386.2554520209079 +401.82981319893395 +420.6724955928772 +441.91528675533164 +465.7314846717136 +492.50621802947245 +521.4768643236205 +552.2118083587122 +585.967453529962 +485.66185664977365 +488.11277120332267 +493.7200252100161 +502.002517923553 +512.6988143184489 +526.0573143663579 +542.2183375193845 +560.584073297688 +581.2990668566181 +604.7247816051492 +630.0843886822723 +656.9429041123503 +686.0952644473288 +601.721758596476 +603.8785913090541 +608.764672170575 +615.9839740122676 +625.2986304524841 +636.9321395287346 +651.0362603497438 +666.9112211213776 +684.7350414799018 +704.7754872229531 +726.451405516583 +749.4190802607803 +774.3540523784862 +705.2899429556815 +707.1184886963841 +711.2993934735266 +717.4382705075898 +725.3329233632334 +735.2748027309657 +747.2206956784364 +760.7712179089966 +775.8990999730281 +792.9273044928174 +810.9395882204549 +829.2104663430115 +847.8740114715092 +796.6034434959411 +798.1210784641037 +801.6366263000178 +806.6800894103585 +812.9819651076825 +820.8476849858536 +830.1994396841726 +840.2690262997146 +851.518997631445 +864.1848957824942 +877.8954618991794 +892.4343324684523 +908.2068396608432 +869.8138837730107 +870.9426853983905 +873.5282662073637 +877.3856961145094 +882.3102795459316 +888.4868947679139 +895.9507498721526 +904.3887017673418 +913.8445295777886 +924.4684413822048 +935.9726160270602 +948.1781876495053 +961.4131515816775 +932.2108539415592 +933.1504411446765 +935.3186513408663 +938.4818171161344 +942.5800278946791 +947.7128184100053 +953.9400676102201 +960.9405021639891 +968.7718341878776 +977.6161725501354 +987.1455323400955 +997.2837122280835 +1008.273091531113 +987.2270814460551 +988.0070649430618 +989.7563591580783 +992.3878130024458 +995.7349251540384 +999.9672583090155 +1005.0135006110631 +1010.7698934664807 +1017.2259913546486 +1024.450125037427 +1032.210816448764 +1040.4899752067945 +1049.3678632781885 +1035.6307405942484 +1036.2697857437447 +1037.651895513787 +1039.7690990871126 +1042.4541773738852 +1045.7948326228004 +1049.8720983650853 +1054.3906946791571 +1059.399922359922 +1065.0854465228247 +1071.2259951149733 +1077.7555560150843 +1084.8429815029024 +1077.4623943950653 +1077.9441732834866 +1079.0449334803604 +1080.6825984807308 +1082.725610647561 +1085.3433341550615 +1088.4795421795393 +1092.036950314555 +1096.0494163745311 +1100.4992810165788 +1105.3567884501442 +1110.496465419676 +1116.086887685899 +1114.1476277278252 +1114.5084632173591 +1115.337433151341 +1116.5731623146623 +1118.148248691092 +1120.1348262181223 +1122.5450439583017 +1125.2583675844926 +1128.3191842764627 +1131.7131555293147 +1135.4110309927196 +1139.3469582568696 +1143.6221014066084 +1146.4469198810873 +1146.7236329395669 +1147.3342006394357 +1148.2267030546982 +1149.3740440435972 +1150.8385055731605 +1152.5524317246334 +1154.5589972467808 +1156.768432269164 +1159.2318492852532 +1161.9416676877013 +1164.7755098002951 +1167.9020877564553 +1174.920416063037 +1175.1009612728196 +1175.519430565455 +1176.1295730011773 +1176.8780752814005 +1177.858081687141 +1179.0392448852454 +1180.3562220946576 +1181.817057634272 +1183.5138847179935 +1185.3122273082733 +1187.20123602974 +1189.2900845863223 +1200.0350209101732 +1200.1550319655996 +1200.364237436121 +1200.6995437212408 +1201.1599144709485 +1201.6950807779347 +1202.355441669687 +1203.093403275434 +1203.925383493655 +1204.8711285033382 +1205.8693478570046 +1206.96777730341 +1208.1218308767977 +1222.1831811329628 +1222.18991925299 +1222.3044159174783 +1222.3792177120704 +1222.5250744763273 +1222.7065831979926 +1222.927738105518 +1223.1380998302088 +1223.421217341207 +1223.7004429108654 +1224.0189253752885 +1224.4064209567243 +1224.7624598618058 +30.577917305428805 +29.064898609371216 +27.78633330325246 +26.66744229477719 +25.71628052623691 +24.92143615365158 +24.23341508158025 +23.669682071032057 +23.202603164601193 +22.856643763751084 +22.587967956092523 +22.406204223375493 +22.326353535999342 +35.176793477417014 +33.429720534177044 +31.94946346743359 +30.70260799743014 +29.600935143096272 +28.691450073989973 +27.91666580335652 +27.266655932381216 +26.73349682626579 +26.34220954725552 +26.03778049105098 +25.831832696547412 +25.74132970823471 +40.46818132323655 +38.47136142330214 +36.753942841358615 +35.329793910505245 +34.04029751972723 +33.02514498027661 +32.12218185296749 +31.383285706601598 +30.79482856370157 +30.32596088761307 +29.963670444118126 +29.73886744169248 +29.641529279124214 +46.59865457844011 +44.29837757687344 +42.33875427594255 +40.66697741645794 +39.189761779989645 +38.01713846273624 +36.97020466300144 +36.116157323421966 +35.45023169557034 +34.919381900682104 +34.50611056711241 +34.22687015981463 +34.105609427775356 +53.74718323005347 +51.099471697620686 +48.82528013885575 +46.82889776821425 +45.20407071516417 +43.7621927039626 +42.58232520069665 +41.62438912538932 +40.83206676252849 +40.20045018932427 +39.70870596080665 +39.40641432081668 +39.28159984321658 +62.25524148394456 +58.959850598744154 +56.44695268613482 +54.088525343515926 +52.09970838813871 +50.55072881575482 +49.16519027830232 +47.94391194287663 +47.02866218181231 +46.36419370129709 +45.84781512653806 +45.498453354921594 +45.345149552038386 +72.24805350484942 +68.24931122906132 +65.37981953758468 +62.68741245911885 +60.19786272448299 +58.38857747110426 +56.860079797684605 +55.51201700822198 +54.395660519173084 +53.50534775710795 +52.83318295559132 +52.44927486879234 +52.28515149142472 +83.94319253209498 +79.4591523213328 +76.03910416642546 +72.8235986295604 +69.85506795436338 +67.64364094376673 +65.89884957797176 +64.36236359130845 +63.08865791894871 +62.074520575505126 +61.28467866124843 +60.75004655625003 +60.51617432870487 +97.88600596666205 +93.17220194446723 +88.83373872203336 +84.75641740595887 +81.15156692600053 +78.79854499697402 +76.72350459196677 +74.89204142121154 +73.37320495586901 +72.1622020556595 +71.2214982862211 +70.58642890804175 +70.30836241661089 +116.14838539054605 +109.60614471693752 +103.6110607161743 +98.69566702464272 +95.37306886999268 +92.43046270314544 +89.80092505272093 +87.47460743371728 +85.55251506624603 +84.02555504675202 +82.83508732028098 +82.0310774450187 +81.69603077834212 +136.23632569806122 +127.66699902171997 +122.3827642160046 +117.40772319451104 +112.80581180818106 +108.73291169742353 +105.1026108232539 +101.89134057231803 +99.50456547899074 +98.1524355182667 +97.09898536930379 +96.38925417009423 +96.08028124781735 +163.96074504062008 +154.792234889468 +146.3977712727 +138.50253495202088 +131.26753879729023 +127.04817321411699 +123.85047110682483 +121.02772817463254 +118.68716434767435 +116.82194296091879 +115.37171169244783 +114.38916869419636 +113.96047673116774 +192.21222348926742 +180.53157564094482 +173.1594851375834 +166.21421500007568 +159.78877765254285 +154.0852501805439 +149.01966260750174 +144.54095414108158 +140.83267021141233 +137.87845623155044 +135.57319044828057 +134.0209276525287 +133.3384259863027 +242.33866691272297 +226.2307087392193 +211.37700210540734 +197.38071213103314 +185.63798349202102 +180.1978801635865 +175.75501061400274 +171.82579876080194 +168.56887826302525 +165.9767378922841 +163.95470753843955 +162.58843958061738 +161.99064412916917 +286.97396401614117 +272.8105798707012 +259.7562821348352 +247.4654380400615 +236.21346287420053 +226.22029123188537 +217.29014510136466 +209.38554753265552 +202.83496125416366 +197.62055272209827 +193.55478673893828 +190.81360163337834 +189.6081028768993 +347.5064611304174 +314.09290253714136 +302.78131497686104 +292.1150209905544 +282.2550049516931 +273.486425710656 +265.65400011750313 +258.7301710807926 +252.9850155503099 +248.41764839999314 +244.87979305808875 +242.5047553496204 +241.46782943342623 +474.0139981822311 +435.3373726965052 +399.6894782541314 +366.1006428941577 +335.0659132950346 +315.7875611348477 +308.5935528200681 +302.60864298885355 +297.6409470836608 +293.6889277061842 +290.6186623478113 +288.52474427320885 +287.6240803613489 +585.9674845118453 +552.2118995877348 +521.4770162282446 +492.4796110036224 +465.7317562475829 +441.91561698428427 +420.69181561492593 +401.8302570534344 +386.25595045702227 +373.8462541336701 +364.1855532224938 +357.645420803282 +354.8056635271379 +686.0952954714946 +656.942997180824 +630.0547459047947 +604.7249978301089 +581.2993437510704 +560.5844077165268 +542.2187253845668 +526.0577585064844 +512.6993130247112 +502.00306932619463 +493.7206273831485 +488.1134219516697 +485.66255359296156 +774.3540834431506 +749.4191734243144 +726.4217686360955 +704.775703639048 +684.7353185452858 +666.9115579397455 +651.0366557286725 +636.9325920739044 +625.2991385132552 +615.9739614066142 +608.7652856345638 +603.8792542204131 +601.7224685823953 +847.8740388364998 +829.2105484022414 +810.9397340283211 +792.9275210475513 +775.8993772267 +760.7715548972941 +747.2210911917867 +735.2752553899005 +725.3469523456914 +717.4282628780174 +711.3000070540573 +707.1191516985457 +705.2906529548101 +908.2068670520231 +892.4344145697337 +877.8955984820087 +864.1850864443895 +851.5192416940246 +840.2693229520696 +830.1997878536677 +820.8481105056599 +812.9824427924149 +806.680617533226 +801.6372398967133 +798.1217414543268 +796.6041534538848 +961.3828948744439 +948.1782698235558 +935.972752725258 +924.4686321453044 +913.8447737820279 +904.3696298942941 +895.9510981503946 +888.4872931814239 +882.3226103146646 +877.3861905394441 +873.5288060309842 +870.9432687815006 +869.8145084639873 +1008.2731189619335 +997.283794452938 +987.1456691034597 +977.6163634030863 +968.7720784594021 +960.9407989929348 +953.940415922226 +947.7132169698541 +942.580475263039 +938.4823116740899 +935.319191314647 +933.1510245413194 +932.2114786277227 +1049.3991924805882 +1040.4620006681882 +1032.210952155904 +1024.4503159735536 +1017.2262357171971 +1010.7701903890824 +1005.0138490318651 +999.9259055982224 +995.7353725794079 +992.3883076019293 +989.7635554750053 +988.0076483196933 +987.2277060962301 +1084.8430082311959 +1077.7556361254672 +1071.2261283448029 +1065.1089872480843 +1059.400160245467 +1054.3909837163696 +1049.8724375158013 +1045.7952280450156 +1042.4546211835075 +1039.7695896711148 +1037.6524310861103 +1036.270364351034 +1035.6313601233333 +1116.0869144268438 +1110.4965455626602 +1105.3569217236025 +1100.4994669537 +1096.049654313966 +1092.0570553268542 +1088.4798813919963 +1085.3437222514715 +1082.7260462187685 +1080.6830799429367 +1079.0454590803556 +1077.940846541166 +1077.4630023615412 +1143.6221281633573 +1139.3470384435386 +1135.4111643347853 +1131.7133415275778 +1128.319422283822 +1125.2586567451644 +1122.545383226827 +1120.1352143640945 +1118.148684304974 +1116.5736438111421 +1115.3379587748016 +1114.509031051472 +1114.1469362217572 +1167.9021145201393 +1164.7755900048626 +1161.9418010535376 +1159.2320353342254 +1156.7686703330069 +1154.5592864975345 +1152.5527710870033 +1150.8388938151818 +1149.3744797530026 +1148.2362137240193 +1147.3347263549906 +1146.7242008617295 +1146.4475279372834 +1189.2588090308711 +1187.2013162503342 +1185.3123606957222 +1183.5140707916032 +1181.8172957212548 +1180.3565113320085 +1179.0231284066576 +1177.8584698906084 +1176.878510975145 +1176.1300545625209 +1175.5199562400187 +1175.1015291415056 +1174.9197250437232 +1208.1218576576898 +1206.9678575510884 +1205.8694812828787 +1204.8713146244156 +1203.9256216356093 +1203.1125159389414 +1202.35578106828 +1201.695469041675 +1201.16035018511 +1200.7000252965413 +1200.3647631168676 +1200.1555998330527 +1200.0356288924631 +1224.7330199181447 +1224.378978090686 +1224.0190588183616 +1223.7006290514457 +1223.4214555012616 +1223.1383891411003 +1222.888360121238 +1222.7069714637394 +1222.5255101845146 +1222.3796992744592 +1222.3049415752284 +1222.1904870890262 +1222.1837890755846 +22.32635356693795 +22.40620431597807 +22.587968109973342 +22.856674626270745 +23.202603456958283 +23.66968242702056 +24.233415507953023 +24.921436667129406 +25.716281151521958 +26.667442981809995 +27.78633412139593 +29.064899580540256 +30.577918458841165 +25.7413297476957 +25.8318328146673 +26.03778068702973 +26.34220981976563 +26.73349717450626 +27.26665639450925 +27.916666343844817 +28.691450755041643 +29.600935904493674 +30.702608931039656 +31.94962815346035 +33.429721761518216 +35.17679496429029 +29.641529326967294 +29.73886758492928 +29.963670693830345 +30.325908421445575 +30.794761462604242 +31.38328627692177 +32.12218260399587 +33.02514583504318 +34.04029853651613 +35.329795108787735 +36.7539443418369 +38.471363040107995 +40.46818333779931 +34.1056094914448 +34.226870363691056 +34.506110905943714 +34.919382373218895 +35.45023229853632 +36.11626281707525 +36.970064492855535 +38.01713958808654 +39.189763037148765 +40.66697903615788 +42.33875604133049 +44.29837983898218 +46.59865699596786 +39.28158866893893 +39.40641455591486 +39.70870641801551 +40.20045082608255 +40.832067575333575 +41.62424896889386 +42.58232635630394 +43.76219426911796 +45.204072470908365 +46.8288997085354 +48.825282697945575 +51.09947446139546 +53.74718691822099 +45.34514966140812 +45.49845368248514 +45.84781567060076 +46.36419445921109 +47.02866315352884 +47.94391337186987 +49.16519195019415 +50.55073073063853 +52.09971052965601 +54.08852829597006 +56.446955903558646 +58.96044553363006 +62.25524628086329 +52.28517071446422 +52.44927526768077 +52.833183733483985 +53.50534891225536 +54.395661994952064 +55.51201879745596 +56.860081901523536 +58.38857987188096 +60.19786619419337 +62.68741629349076 +65.37982371538956 +68.24931574700722 +72.24806003879809 +60.516174544092515 +60.74995443783731 +61.284679736205995 +62.07452207362243 +63.08865983312387 +64.36236591271108 +65.89885231030988 +67.6436440626489 +69.85507266336379 +72.82285581854632 +76.03910984597893 +79.45827567238835 +83.94320196002121 +70.30836270854176 +70.58642978254768 +71.22149973993555 +72.16249574845624 +73.37320755707012 +74.89159232090137 +76.72350828696115 +78.79854924125112 +81.15157236654476 +84.7564249246834 +88.83374695805878 +93.17221082272005 +97.88601552250735 +81.69603111522748 +82.03107870956963 +82.83508942174721 +84.0255579756435 +85.55251881006832 +87.47461199723433 +89.80016317668553 +92.43134490499823 +95.37307571814625 +98.69567463835371 +103.61107371343316 +109.60816750150656 +116.14840046795426 +96.0802816713836 +96.38943733638986 +97.09898748946696 +98.15201378755891 +99.50456926655106 +101.89134777488026 +105.10261926219454 +108.73292133924004 +112.80582268625213 +117.40945584697631 +122.38277729516952 +127.66701318149205 +136.2363531109725 +113.9604774034178 +114.38917070817459 +115.37171503979974 +116.8219476275808 +118.68717031355433 +121.0277354156575 +123.85047959277561 +127.04818294723526 +131.26983275430828 +138.5025567616692 +146.3977950427966 +154.7922607531662 +163.96077268934422 +133.33842720668844 +134.02093130875593 +135.57406758398815 +137.87846470400012 +140.8326810437623 +144.5409672906722 +149.01967801972583 +154.08526783080885 +159.78879756643437 +166.21423698124568 +173.15950910174894 +180.53160149458165 +192.2122874823488 +161.99064535842487 +162.5884432634175 +163.95471365894525 +165.9767464261019 +168.56888917491457 +171.8258120082997 +175.75502614298767 +180.19789791090253 +185.63800876157632 +197.3807629883801 +211.37705754831015 +226.23076857699542 +242.3387309047743 +189.60810571818251 +190.81361014588384 +193.55480088850908 +197.61774401440024 +202.83498649069995 +209.38557816156597 +217.28503204318136 +226.22033228552255 +236.21350890589395 +247.4654894200526 +259.7643753153363 +272.8106403791543 +286.9740287353748 +241.46783227156305 +242.5047638532031 +244.8777809645896 +248.41766832370575 +252.98504103145265 +258.7302020383769 +265.6488337532435 +273.4864672049002 +282.24838132544807 +292.11507238516964 +302.7813710140656 +314.09296304094414 +347.5066969001288 +287.6240832292122 +288.5247528666047 +290.61867663273625 +293.6889476266185 +297.64097255898 +302.60867391583577 +308.5935890957251 +315.7876586532871 +335.0417943498145 +366.1008300509915 +399.6896823913347 +435.3375930746625 +474.0142339364475 +354.8056739664262 +357.64545208263024 +364.1856052193467 +373.84632664702406 +386.25604319954823 +401.83036967271096 +420.69194768727294 +441.91576799525654 +465.7319256075159 +492.5066171931916 +521.4772203581226 +552.2121198876071 +585.9677246792637 +485.66256402476 +488.1134532075928 +493.72067934185463 +502.00314178861834 +512.6994057271012 +526.0578710832267 +542.2188573593727 +560.5845604704401 +581.2995162228923 +604.7251883449601 +630.0847514403124 +656.9432216132602 +686.0955356102636 +601.7224792019848 +603.8792860372934 +608.7653385274195 +615.9846095598808 +625.2992328742523 +636.9327066784105 +651.0367901347817 +666.9117116389987 +684.7354909460291 +704.7758941170179 +726.4219764649009 +749.4193978137295 +774.3543235901656 +705.2906635682787 +707.119183499246 +711.3000599210945 +717.4389061621381 +725.347046667128 +735.2753699338226 +747.2212255328373 +760.7717085419463 +775.8995495887987 +792.9277114666627 +810.9399292938131 +829.2107458410159 +847.8742501387168 +796.6041640614958 +798.1217732365766 +801.6372927344548 +806.6806867892815 +812.9825313880211 +820.8482181081512 +830.199906029407 +840.2694581049775 +851.5193933025619 +864.1852539571682 +877.895781236512 +892.434611925269 +908.2070783478067 +869.8145177933769 +870.9432967343532 +873.5288524923103 +877.3862553410995 +882.3226932147854 +888.4873938691525 +895.9512162893789 +904.3697650100864 +913.8449253721571 +924.4687996242266 +935.972935492112 +948.1784671930595 +961.4133902540913 +932.2114879533248 +933.151052482525 +935.3192377678173 +938.4823764624628 +942.5805581481509 +947.7133176420733 +953.9405340074302 +960.9409340590378 +968.7939530287783 +977.6165308558903 +987.1458518369634 +997.283991804744 +1008.2733302237237 +987.227715417632 +988.0076762498514 +989.7636019101085 +992.3883723686879 +995.7354554381209 +999.9260062415133 +1005.0139670964871 +1010.7703254295268 +1017.2263872338176 +1024.426482227597 +1032.21113337144 +1040.4621963882134 +1049.399398073852 +1035.6313693656423 +1036.2703920438257 +1037.6524771267439 +1039.769653889075 +1042.4547033411125 +1045.7953278386894 +1049.8725523908554 +1054.391115112028 +1059.4003076769993 +1065.1091501721523 +1071.226306160992 +1077.7558281810886 +1084.843213820298 +1077.4630114287033 +1077.9408737094088 +1079.0455042496242 +1080.6831429465963 +1082.7261268241118 +1085.3438201612385 +1088.4799962456943 +1092.0571866945866 +1096.0498017184848 +1100.499629852359 +1105.3570995179662 +1110.4967376000657 +1116.0871200128097 +1114.1469452866306 +1114.5090582136509 +1115.3380039343303 +1116.573706801301 +1118.14876489437 +1120.135312256251 +1122.5454980615687 +1125.258788100639 +1128.2984410741788 +1131.7135044183935 +1135.4113421487084 +1139.3472305077457 +1143.6223337737904 +1146.44753700174 +1146.7242280222033 +1147.3347715114842 +1148.236276711356 +1149.3745603392217 +1150.8389917047052 +1152.5528859206931 +1154.5594178540268 +1156.7688177141183 +1159.2321982148133 +1161.9419788366956 +1164.7757820403467 +1167.9023201049113 +1174.921033115385 +1175.1015562942412 +1175.5200013837798 +1176.1301175323736 +1176.8901403641214 +1177.8585677466697 +1179.0396990185639 +1180.3566426479395 +1181.8174430761128 +1183.5142336461276 +1185.3125384542343 +1187.2015082630796 +1189.2590145956383 +1200.035637952922 +1200.1556269812238 +1200.3648082531868 +1200.7000882562188 +1201.1604307375333 +1201.6955668924738 +1202.3558958595454 +1203.0938238849155 +1203.9257689887656 +1204.8714774800574 +1205.869659045514 +1206.9680495713822 +1208.1220632342781 +1222.1837981338606 +1222.19051423144 +1222.2985178354859 +1222.379762221365 +1222.5140458656413 +1222.7070692971345 +1222.8884748931002 +1223.138520432897 +1223.4216028333174 +1223.7007918860481 +1224.0192365611078 +1224.4066932185451 +1224.76269220709 +30.57791839112016 +29.064899395901467 +27.786333840012762 +26.667442620043673 +25.71628068354805 +24.921436140429748 +24.23341491803356 +23.669681762845844 +23.202602709726694 +22.856673849699114 +22.587967254893584 +22.406203387390747 +22.326352566669467 +35.17701977292298 +33.4297215226177 +31.949680463949168 +30.702608428720428 +29.600935322691587 +28.6914500424104 +27.91666558163675 +27.26665551641096 +26.733496268788674 +26.342208813424246 +26.037779580753924 +25.831831612441697 +25.741328453966748 +40.4681832140956 +38.471088836171994 +36.75394380465595 +35.32979445300951 +34.0402977467526 +33.025022397600864 +32.12218152889898 +31.383285177591166 +30.79482779222351 +30.32595987729073 +29.96366926673582 +29.738866109926896 +29.641527741082307 +46.59865684512667 +44.29837938362024 +42.33841812533096 +40.66732835416722 +39.18976204780549 +38.01713837691504 +36.970204221130025 +36.116261392127385 +35.450230691283046 +34.91938058690858 +34.50610895031886 +34.226868244513405 +34.1056073623078 +53.747186685073096 +51.09947389819143 +48.82528175781876 +46.82889862004987 +45.204071074387464 +43.76219256736055 +42.58249032040555 +41.62438817229223 +40.83206538941519 +40.200448398629156 +39.70870375796844 +39.406412093607976 +39.281586025085105 +62.25524597433243 +58.95994721930031 +56.44695471020081 +54.088526624446104 +52.099708811265636 +50.550178343160624 +49.16518948468142 +47.943910537998846 +47.02866052113175 +46.364191549756605 +45.84781248429863 +45.49845023032121 +45.345145956263934 +72.24805961749463 +68.24931480911593 +65.37982215341776 +62.68741410605863 +60.1978633896257 +58.3885772211814 +56.86007877832201 +55.5120152265328 +54.395657972724884 +53.50534445235498 +52.83317915277626 +52.44927104204997 +52.2851661808432 +83.94320134748673 +79.45827438486191 +76.03910770830734 +72.822852822506 +69.85506883366637 +67.64364059888798 +65.89884823137855 +64.36141664358254 +63.08865458950689 +62.07451626157806 +61.28467337720812 +60.74994755256542 +60.516167181619345 +97.88601489765563 +93.17220895542579 +88.8337438405794 +84.75642058445203 +81.15156791894945 +78.798544504363 +76.72350274494535 +74.89158596215478 +73.37320040088119 +72.16248782293307 +71.22149110709928 +70.58642044392245 +70.30835269493298 +116.14839947670453 +109.60855366631642 +103.6110687699893 +98.6956702230558 +95.37307009519611 +92.43133805539615 +89.8001551168805 +87.47394859444842 +85.55250847297484 +84.02554652717514 +82.83507690135475 +82.03106516378875 +81.6960195264341 +136.2363513002838 +127.66701017513532 +122.38277230007425 +117.40944885871346 +112.8058137208221 +108.73291049447398 +105.1026065106962 +101.89133315519258 +99.50647970730878 +98.15242686626614 +97.09897482236485 +96.38942370787308 +96.0802670637018 +163.96077085572895 +154.79225524129947 +146.3977859326339 +138.50254402141897 +131.2675415491425 +127.04817196616668 +123.85046673275937 +121.02772067691684 +118.68715374609964 +116.82192928648476 +115.37169499254053 +114.38914902832595 +113.96045416967175 +192.21228322377706 +180.53159596705555 +173.1641452459808 +166.21422410349786 +159.78878105536714 +154.085247864854 +149.01436949736419 +144.54094046104532 +140.83265089313485 +137.87721682857813 +135.57969243347347 +134.02089187366985 +133.3383849508679 +242.33872663360526 +226.2307557480705 +211.37703617849598 +197.38073311866864 +185.6379877596931 +180.1978777894198 +175.75500249914842 +171.82578492280754 +168.56885874316202 +165.97671275028267 +163.95555423204576 +162.58840347536693 +161.9906027293822 +286.9740244044595 +272.8106273753839 +259.7643536560382 +247.46545917798713 +236.21347056908027 +226.22028564821866 +217.29012622873879 +209.3855154265401 +202.83491598908986 +197.62049446505043 +193.554715691512 +190.81351804430898 +189.60800705032636 +347.47080674312923 +314.0929500109174 +302.7813493235678 +292.11504207787146 +282.24834250309806 +273.48641998657513 +265.6539809580832 +258.73013853160603 +252.98496974109685 +248.4175894639347 +244.8909167756914 +242.50345277371974 +241.45436438302826 +473.97834202296866 +435.3375455274553 +399.6896032396656 +366.10071950379694 +335.0659411459676 +315.7875475171542 +308.59353359179113 +302.6086103858733 +297.64090119409724 +293.6888686839368 +290.6052161069177 +288.5246596707257 +287.62398341787423 +585.9677085122372 +552.2120722823025 +521.4771410909743 +492.5478624200155 +465.7317838932905 +441.95987869611963 +420.67281307109823 +401.876706272598 +386.2557831046732 +373.8460389792575 +364.1852910388491 +357.64511253444397 +354.8053103221776 +686.0955194211967 +656.9431730480752 +630.0846706160396 +604.7250755140633 +581.2993717333082 +560.58438596336 +542.2186549628511 +526.1042210139265 +512.6991454912766 +502.00285405468077 +493.7203651147551 +488.1131136328593 +485.6622003445494 +774.3543073799468 +749.4193491989572 +726.4516874799183 +704.7757811863501 +684.7353463672522 +666.9115358798233 +651.0365838174108 +636.9324705304458 +625.2989677570396 +615.9843164107174 +608.7650184085232 +603.8789401156473 +601.7221087158327 +847.8742358590472 +829.2446303580703 +810.9398532080837 +792.9275984636959 +775.8994049117641 +760.7715326940614 +747.22101914533 +735.2751337264995 +725.3332607056694 +717.4386129395825 +711.2997397413773 +707.1188375302444 +705.2902930752223 +908.2070640544786 +892.4345690830158 +877.895709964611 +864.1851544656482 +851.519265945373 +840.2693033052911 +830.1997243469399 +820.8479960626402 +812.9822821216803 +806.6804112032409 +801.6369725462883 +798.1214272737872 +796.6037935899091 +961.4133759511689 +948.1784243128608 +935.9728641599856 +924.4687000798684 +913.8447979410446 +904.3889787907807 +895.9510345501875 +888.4871859682668 +882.310576300582 +877.3859973393719 +873.5285708005543 +870.9429923123076 +869.8141918159786 +1008.273315909733 +997.2839488980248 +987.1457804708476 +977.6164312646605 +968.7721025332553 +960.9407791672072 +953.9403522506378 +947.7131096648236 +942.5803247015666 +938.4821183913128 +935.3189559976885 +933.1507480533868 +932.211161978449 +1049.3993841342217 +1040.4902099441335 +1032.2463416672506 +1024.4503837718737 +1017.2262597200946 +1010.7701704888331 +1005.0137852828867 +999.9257982290467 +995.7352219618035 +992.3881142758705 +989.7566637959621 +988.0073718311929 +987.2273894615219 +1084.811896951979 +1077.7557863777515 +1071.2262366387265 +1065.08569833348 +1059.4001835431457 +1054.3523166292584 +1049.8723754146004 +1045.7951214987258 +1042.454471751553 +1039.7693978916373 +1037.695508818652 +1036.2700901139153 +1035.6310460817945 +1116.0871060588233 +1110.4636741052386 +1105.357029972956 +1100.4995328262933 +1096.0496775564802 +1092.0758672028012 +1088.4798192372434 +1085.343617644056 +1082.7258995335267 +1080.682891709093 +1079.0452299800445 +1077.9444719709168 +1077.462694178508 +1143.6223198115351 +1139.3471886646007 +1135.4112725679124 +1131.713407360445 +1128.3194454802033 +1125.2586372102892 +1122.5453210238438 +1120.1351097132 +1118.148537581549 +1116.57345554591 +1115.337729652548 +1114.508761905419 +1114.1479275112915 +1167.9023061390562 +1164.7757401878416 +1161.9419092434837 +1159.2321011303632 +1156.7686934871997 +1154.5592669166685 +1152.5527088339982 +1150.838789111543 +1149.3743329765166 +1148.2269963276851 +1147.3344971816086 +1146.7239316679834 +1146.4472197047244 +1189.2903029521594 +1187.201466402229 +1185.3124688497585 +1183.514136548867 +1181.8173188371268 +1180.3564917175725 +1179.03952194514 +1177.8583651736271 +1176.878364185198 +1176.1298662431464 +1175.51972707531 +1175.1440773731927 +1174.920715852859 +1208.1220492594314 +1206.9680076963875 +1205.8695894210157 +1204.9074832778676 +1203.9256447210835 +1203.0936729231585 +1202.3557187539607 +1201.6953642879753 +1201.1602033723536 +1200.74187216393 +1200.3645339414907 +1200.15533065556 +1200.0353206944687 +1224.7626782302914 +1224.4066513372595 +1224.0191669275873 +1223.7006947538343 +1223.4214785561794 +1223.1383694641397 +1222.8882977826195 +1222.7068666915861 +1222.525363359926 +1222.37951093159 +1222.3047124027642 +1222.1902179221775 +1222.1834808961285 +22.326352468206046 +22.406203092679156 +22.587966765161458 +22.856642520538042 +23.202601779288038 +23.669680629897588 +24.23341356108443 +24.92143450626516 +25.716278693552287 +26.667440433533088 +27.786331236237036 +29.06489630511555 +30.577914720337233 +25.741328328380504 +25.83183123652022 +26.03777895704338 +26.34220794614946 +26.733495160498762 +27.26665404566919 +27.916663861510195 +28.69144787493508 +29.600932899512642 +30.702605457469204 +31.949676833018472 +33.42971761655329 +35.17701504089597 +29.641527588819677 +29.738865654069773 +29.96366847201622 +30.32595870427418 +30.794826292007606 +31.383283362523432 +32.122179138719844 +33.02514220622133 +34.04029451077922 +35.329790639425475 +36.75393902932084 +38.47108369060963 +40.468176802665596 +34.10560715967719 +34.22686759566814 +34.50610787197412 +34.91944682071508 +35.45022877231864 +36.11625906622963 +36.9702010872749 +38.017134795440775 +39.18975804684412 +40.667323199415584 +42.33841250689885 +44.29804791555809 +46.59864915124383 +39.28158577526706 +39.40641134539815 +39.70870230288213 +40.20044637211944 +40.832062802629096 +41.624385038740556 +42.582320987966874 +43.76218758618831 +45.20406548665847 +46.82889244489641 +48.825273613408655 +51.099465102362984 +53.74717494732517 +45.34514560819015 +45.498449187836506 +45.84781075279619 +46.36418913766362 +47.028657428603374 +47.94390599016821 +49.16518416381606 +50.55017224895013 +52.09970199579753 +54.088517228137945 +56.44694447061539 +58.96043377160886 +62.255230707937464 +52.28514666715135 +52.449269772570915 +52.833288187432956 +53.50534077605009 +54.39565327599679 +55.51200953222081 +56.86007208276684 +58.388569580609506 +60.197852347127615 +62.6874019030099 +65.37980885737963 +68.24994807057237 +72.24803882293095 +60.51616649613901 +60.74994549305903 +61.28466995611063 +62.074511493757136 +63.088648497564655 +64.36140925560491 +65.8988395355986 +67.64363067291563 +69.85505384707605 +72.8228362151739 +76.03908963289308 +79.45825478525171 +83.94317134271608 +70.30835176585067 +70.58641766077079 +71.22148648059238 +72.16218968950206 +73.37319212244986 +74.89157592145023 +76.72349098547149 +78.79853099677436 +81.15155060419072 +84.75639665579745 +88.83371762908494 +93.17218070001599 +97.88598448577677 +81.69597016420398 +82.03106113930309 +82.8350702133512 +84.02553720585607 +85.55249655810412 +87.47458824082298 +89.8001380833207 +92.43131860485768 +95.37304830066225 +98.69564599210307 +103.61102740567522 +109.60850906874167 +116.14835149222112 +96.08026571568446 +96.38941966943379 +97.09896807485703 +98.15241743739792 +99.5064676532657 +101.89131023273822 +105.10257965341562 +108.73287980899117 +112.80577910090763 +117.40941065770336 +122.38273067508332 +127.6669651110706 +136.23626405754393 +113.96045203020799 +114.38914261875566 +115.37168433945386 +116.8219144346374 +118.68713475943774 +121.02769763205333 +123.85043972586655 +127.0481409901112 +131.2674909728104 +138.50247461130442 +146.39771028330526 +154.7921729290008 +163.96068286250545 +133.3383810669402 +134.02088023757457 +135.57880203738262 +137.87840436921755 +140.83261641872903 +144.54089861192512 +149.0143204472211 +154.08519169215035 +159.78871767857265 +166.21415414750206 +173.16406897915007 +180.53151368677885 +192.21207956312827 +161.99059881722457 +162.5883917547023 +163.95465738369398 +165.9766855910505 +168.56882401562024 +171.8257427620931 +175.7549530775067 +180.19782130784589 +185.63790733828145 +197.38057126304233 +211.37685972914431 +226.23056531185398 +242.33852297621914 +189.60799800782496 +190.81349095290756 +193.55467065991397 +197.62043166922066 +202.83483567276002 +209.38541794875613 +217.29001191355454 +226.2201549933071 +236.21332407128514 +247.4652956590219 +259.76417522003055 +272.8104348047088 +286.9738184327869 +241.45435535052022 +242.50464467036412 +244.89087179082065 +248.4175260558873 +252.98488864629684 +258.73004000780503 +265.6486627931872 +273.4862879294155 +282.2548645732318 +292.11487851235177 +302.781170982832 +314.09275745503055 +347.47005639505244 +287.62397429077964 +288.5246323218825 +290.60312293617903 +293.6888052863222 +297.6371682903467 +302.6085119594637 +308.59341814300217 +315.78723716065184 +335.0654019071136 +366.100123869364 +399.68895356450247 +435.33684416477996 +473.9775917242225 +354.8037806982299 +357.64501298662134 +364.1851255566981 +373.84580820247027 +386.25548794771925 +401.8763478577207 +420.6913250337721 +441.9593980982992 +465.7312448982984 +492.547266996582 +521.4764914391143 +552.2113711687705 +585.9669441694787 +485.6621671449148 +488.1085337313379 +493.72019975401207 +502.0026234399969 +512.6988504620402 +526.103862734468 +542.2182349475328 +560.5838998176647 +581.2988228345412 +604.724469192603 +630.0840090630327 +656.9424587825495 +686.0947551694924 +601.7220749185324 +603.8788388571129 +608.7648500748013 +615.973507257418 +625.2986674492242 +636.9321057968167 +651.0361560643615 +666.9110467255406 +684.7347976946935 +704.7751749823293 +726.4510260546072 +749.4186350702698 +774.3535431020881 +705.2902592974222 +707.1187363231742 +711.2995714898252 +717.4383782788335 +725.3329605258933 +735.2747691856977 +747.2205915992956 +760.7710437135547 +775.8988563621937 +792.9269924468972 +810.939231767519 +829.2440020019359 +847.8735633809453 +796.6037598307491 +798.1213261254493 +801.6368043879747 +806.6801907929558 +812.9820001624606 +820.8476536132042 +830.1993482477183 +840.2688731755269 +851.5187834448919 +864.1846213492048 +877.8951283407889 +892.4339409908017 +908.2063915969026 +869.8141621248031 +870.942903351185 +873.5284229354432 +877.385791105402 +882.322196008648 +888.4868655253803 +895.950658567934 +904.3885487775282 +913.8443154991452 +924.492174903426 +935.9722824968583 +948.1777961761412 +961.4127035984552 +932.2111322993333 +933.1506591293264 +935.3188081585228 +938.4819121996142 +942.6107262833474 +947.7545401277862 +953.9399764395584 +960.9403493137 +968.771620250639 +977.6158983391281 +987.1451989138593 +997.2833208176347 +1008.2726435602723 +987.2273597957673 +988.0072829423015 +989.7631723593687 +992.3879081529625 +995.7349582604812 +999.9254779275734 +1005.0134095373081 +1010.7697407169907 +1017.2257775121335 +1024.449850909509 +1032.2457649421951 +1040.4615309223102 +1049.3987298251454 +1035.6310166677506 +1036.270001980446 +1037.6953622927135 +1039.7691935152948 +1042.4542102815567 +1045.7948039012097 +1049.8720098199205 +1054.3518984563352 +1059.3997143361548 +1065.0851798222027 +1071.2256707313281 +1077.7551751526837 +1084.811242655137 +1077.4626653218804 +1077.9404909443053 +1079.0450862269724 +1080.682691197318 +1082.725643003657 +1085.3433060421494 +1088.479453710553 +1092.0566177574647 +1096.0492084354478 +1100.4990143945286 +1105.356464134982 +1110.4630629372518 +1116.0864517728573 +1114.1478986600316 +1114.5086754606423 +1115.3375859304635 +1116.573255077094 +1118.1482811024423 +1120.1347981673264 +1122.5449555575005 +1125.2582191660126 +1128.318976393235 +1131.7128889536384 +1135.4107066676424 +1139.3465774122703 +1143.6216654477062 +1146.4471908567193 +1146.7238452286438 +1147.3343534691844 +1148.2267958696984 +1149.3740765075163 +1150.8384775740399 +1152.5523433709943 +1154.5588488691583 +1156.7682244406699 +1159.2315827561422 +1161.9413434411683 +1164.775129026903 +1167.9016518569513 +1174.9206870119642 +1175.143990958654 +1175.519583403413 +1176.1296658389622 +1176.878107785111 +1177.858053742635 +1179.0391566008693 +1180.3560737991572 +1181.8168498741127 +1183.5136182575166 +1185.3119031258352 +1187.200855313618 +1189.2896487346723 +1200.0352918591816 +1200.155244255378 +1200.3643902932654 +1200.7416717925228 +1201.159947010899 +1201.6950528737298 +1202.3553534259615 +1203.093255017358 +1203.9251757635568 +1204.9069649839262 +1205.8690236839727 +1206.9673965838092 +1208.1213950033068 +1222.183452067773 +1222.1901315403193 +1222.3045687834242 +1222.3793106004346 +1222.525107046165 +1222.7065553327002 +1222.8879325163584 +1223.1379516225281 +1223.4210096658082 +1223.700176525886 +1224.018601253884 +1224.4060402826008 +1224.7620240248325 +30.577914590559136 +29.0648959512807 +27.78633069700488 +26.667439740257766 +25.71627779674449 +24.921433496917185 +24.233412430584572 +23.669679357097802 +23.202600347321198 +22.8566716810548 +22.587965126518366 +22.40620131316884 +22.326350551328837 +35.17678997122335 +33.429717158733226 +31.949623352248224 +30.702604494843243 +29.600931784569028 +28.691446509275103 +27.916662400842593 +27.266652362914314 +26.73349342481524 +26.34220601763425 +26.037776837017415 +25.831828932619757 +25.741501448664525 +40.468176565604914 +38.47108307618308 +36.75393799988687 +35.32978938271621 +34.04029299730534 +33.02514046522158 +32.121928196371876 +31.38328125580693 +30.79475633773227 +30.325903227050357 +29.963888994629247 +29.73886282743017 +29.641524549688643 +46.598648862177214 +44.29837131172579 +42.338748553324066 +40.6673214774151 +39.18975615090327 +38.017132474396576 +36.97005719858691 +36.11625633551243 +35.4502256922381 +34.91937565982192 +34.50610412428716 +34.22686353455468 +34.10560307947783 +53.747174500528025 +51.09946402305935 +48.825271811784354 +46.828890358963406 +45.20406281041807 +43.762184325003105 +42.58231774822349 +41.624240184286634 +40.832058613615956 +40.20044172023805 +39.70869720526644 +39.406406626724724 +39.281580708683855 +62.25523012051253 +58.95984093866261 +56.44694218370903 +54.0885140248925 +52.09969870273839 +50.550718513429146 +49.16517943899879 +47.94390055944278 +47.028652383975306 +46.364183562092805 +45.84780464668444 +45.49844257223768 +45.345138507789244 +72.2480380155616 +68.24929863322582 +65.37900180474547 +62.68739771109678 +60.19784697255901 +58.38856450090694 +56.86006609757957 +55.512002689036585 +54.39564556794989 +53.50533222926189 +52.83316789880203 +52.449261674728525 +52.285157068941615 +83.94317016887615 +79.45825231788325 +76.03908553633904 +72.8228304736736 +69.85504650798384 +67.64362403509237 +65.89883171888583 +64.36234494093958 +63.088638448890784 +62.0745003557711 +61.28465776996277 +60.75003201902599 +60.5161523869691 +97.88598328833412 +93.17217712160502 +88.83371165486508 +84.75638833833821 +81.15154208098505 +78.79852191917774 +76.72348036495876 +74.8915637357833 +73.37317840859458 +72.16286598390948 +71.22106722065709 +70.5865349716595 +70.30833257614397 +116.1483495926258 +109.61051215980011 +103.61101793223995 +98.69563753079014 +95.37303752504961 +92.43130547853654 +89.80012263781104 +87.47457054737626 +85.55304511045857 +84.02532289544656 +82.83582458249016 +82.03103518067257 +81.69536801252832 +136.24042803181817 +127.66695934980157 +122.38272110266702 +117.40939726565152 +112.80576191989392 +108.73285902649005 +105.10255521691832 +101.89069163594452 +99.50529499141902 +98.15119033025134 +97.09914058596468 +96.38939355225104 +96.07924793846344 +163.96067934862836 +154.7921623662655 +146.3976928249315 +138.50245019635884 +131.26974385720007 +127.04811994640359 +123.85041508140856 +121.0279667926047 +118.68770930649403 +116.82311057634523 +115.37133459925565 +114.3900420349271 +113.9597778406906 +192.2120714021537 +180.53150309403685 +173.1640513246449 +166.2141294690623 +159.78868603737456 +154.0851534301316 +149.0169181286891 +144.54192905294144 +140.83145596868664 +137.8772208042866 +135.57677255255012 +134.01966381269776 +133.33772752742854 +242.33851479109293 +226.23054072698758 +211.37681877683218 +197.3805140218452 +185.63786709105344 +180.19778274778793 +175.7543745791346 +171.82623654916486 +168.57043420199534 +165.97549167044485 +163.95572905050784 +162.590617282115 +161.9910947162748 +286.9738101331828 +272.8104098847688 +259.7641337129447 +247.46523770424608 +236.21325060403458 +226.2212667385008 +217.2810540052491 +209.3852977257026 +202.83470056609687 +197.6161464828247 +193.55715133223214 +190.81198259098593 +189.607808924408 +347.505900436113 +314.092732484762 +302.78112941598096 +292.11482043255637 +282.24812001824495 +273.4898426442574 +265.65105391909077 +258.72864031616854 +252.98475202811153 +248.4160534355323 +244.88409795512968 +242.50580010903153 +241.46218777151427 +473.9775613642122 +435.33675304716 +399.68880188118993 +366.09991202088406 +335.0408421949937 +315.78130862054206 +308.59705907394607 +302.60711235748084 +297.64589385964223 +293.69129908072995 +290.6130299835613 +288.5311907048452 +287.6197263515314 +585.9669131875869 +552.2112799397479 +521.4763395345094 +492.50569903157924 +465.7266840357467 +441.932498053163 +420.66818235715596 +401.85261989473975 +386.26922758992265 +373.85489340558655 +364.1893958800291 +357.6590882476514 +354.78980091075084 +686.094724145293 +656.9423657141149 +630.0838541743536 +604.7242529675958 +581.2810645334004 +560.5746013874782 +542.2178470823259 +526.0754695766911 +512.6888571512342 +502.016527173609 +493.7195975808522 +488.11727207686675 +485.6565433991443 +774.3535120373795 +749.418541906758 +726.4210791037186 +704.7749585662204 +684.7257796201977 +666.9197339175819 +651.0172132855479 +636.9363981012962 +625.2836537901992 +615.9982445227249 +608.7642366107762 +603.8831760250757 +601.7364216245775 +847.8735360159571 +829.2439199414968 +810.9390859596342 +792.9267758921355 +775.9029503502521 +760.7571695646951 +747.2201960859536 +735.2600822441702 +725.3459730613125 +717.4378163580614 +711.2840668498662 +707.1280742606666 +705.3096248982522 +908.2063642057105 +892.4338588895276 +877.9305515017129 +864.1844306872922 +851.5223856136985 +840.2606348738973 +830.1867583110669 +820.8383096354405 +812.9633451259028 +806.6935011976575 +801.6560443018018 +798.1406636298863 +796.6030498728221 +961.4126761888606 +948.1777140020736 +935.9721457986727 +924.4679763080892 +913.8325304803056 +904.3887387945022 +895.9584719058329 +888.4864671118901 +882.313240937557 +877.3766606734815 +873.5453482641273 +870.9555186333752 +869.817953173798 +1008.2726161294415 +997.2832385927654 +987.145062150483 +977.6157074861724 +968.7930990092634 +960.9400524847299 +953.9314675909034 +947.7290910526716 +942.6008869130641 +938.5030112677874 +935.3182681847615 +933.1632741757269 +932.2237545711715 +1049.3987031118536 +1040.4614493258862 +1032.2103501233496 +1024.4256587935536 +1017.2101452709179 +1010.7773859249194 +1005.0212225547693 +999.9459549681359 +995.7302561498725 +992.3744574541251 +989.7713662428201 +988.0023003802245 +987.2311504912452 +1084.8425188487086 +1077.75509504227 +1071.2255375014938 +1065.1083487751212 +1059.4069644785102 +1054.3709332462129 +1049.8557848515206 +1045.8109724160076 +1042.441106920988 +1039.7601363145086 +1037.6731711372615 +1036.256334100341 +1035.6391553567416 +1116.086425031891 +1110.4960044696527 +1105.3563308615142 +1100.498828457426 +1096.0339945138276 +1092.0408697375376 +1088.4950007852763 +1085.3429179457062 +1082.737630816997 +1080.6653962342634 +1079.044560626982 +1077.9527680170168 +1077.47494937951 +1143.6216386909693 +1139.346497225575 +1135.4105733255626 +1131.7127029553608 +1128.2901211582575 +1125.2656600792964 +1122.548587973234 +1120.1466015730107 +1118.1561278724184 +1116.5685701637715 +1115.337060306977 +1114.4995443487355 +1114.1330991859807 +1167.9016250932455 +1164.7750488223473 +1161.9412100753295 +1159.2313967071964 +1156.7492638141473 +1154.546962612581 +1152.567893259218 +1150.821831447633 +1149.373640798137 +1148.2269353318577 +1147.3253259969053 +1146.7189950884285 +1146.4508807178984 +1189.2583196381738 +1187.2007750930095 +1185.3117697383582 +1183.5134321838973 +1181.8278446745041 +1180.3557845617825 +1179.034845660866 +1177.857665539158 +1176.8975036788347 +1176.1249807072852 +1175.519057728811 +1175.1177326465793 +1174.9415661842495 +1208.121368222424 +1206.9673163360926 +1205.868890258046 +1204.8706759421261 +1203.9361715659063 +1203.0929657198294 +1202.3510420748858 +1201.6946646099557 +1201.1512285981607 +1200.715969093837 +1200.3723653138256 +1200.1461130549308 +1200.0432785840947 +1224.7619972402426 +1224.4059600228736 +1224.018467810847 +1223.69999038527 +1223.409538098707 +1223.1492577732045 +1222.9034800638408 +1222.706167066927 +1222.517267576982 +1222.387235535234 +1222.2720738737098 +1222.206689179151 +1222.1742500244363 +); + } + + "(OUTLET|Outlet|outlet)" + { + type fixedValue; + value $internalField; + } + + "(WALL|Wall|wall)" + { + type omegaWallFunction; + value $internalField; + } + +} + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/0/p b/Simulation_setup_and_evluation/BaseCase/0/p new file mode 100644 index 0000000..0bb0962 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/0/p @@ -0,0 +1,42 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.org | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class volScalarField; + location "0"; + object p; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 2 -2 0 0 0 0]; + +internalField uniform 0; + +boundaryField +{ + "(INLET|Inlet|inlet)" + { + type zeroGradient; + } + + "(OUTLET|Outlet|outlet)" + { + type fixedValue; + value uniform 0; + } + + "(WALL|Wall|wall)" + { + type zeroGradient; + } + +} + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/constant/cellToRegion.gz b/Simulation_setup_and_evluation/BaseCase/constant/cellToRegion.gz new file mode 100644 index 0000000000000000000000000000000000000000..0989f22204aa5795d2f102c160b998e39b9e5d30 GIT binary patch literal 2726 zcmb2|=3oE=;kOshd*4owIq<OhUzfOlbo;WEq0y=Ag<nhr&2H-LU1FFgxpCsQR|)Ux z<8yW^@-1UwcbxbAr_87B{J2RwHvc^FDyMC+dH$hii}|nh_btBt;oEmE{_Ah!!{ws4 zf8F!3qEx2cfXg**-rd>dMKk@~)!UE%e)uJOpAEPC>eZ3c+81BkT@V%ebjh!O3HPcJ zZ1v`}oUWOs*Oj$v-gnLUXJ2prE3j^I;-%_K|H7ExA8S2qV7t5Cyyl$x=cI|(Kj-D; zZCh1U|2(v6<J3^`|FgpRWBRy{E6x?09{#kd+jrmnADsK&o?I>LzPRfD;zef`%U`_9 zy)Iln=jWz-Vc!!fKkk_oyQKRn-=)ehk=3UoXP$fhx_9bJ75)3-pO3x@i%hMrJM0$b z`@Fkk*Nup~tJUs*%CXfwefrauUlZzA&bRHTb1RgwI<MBZSVQXFSN6Y-U$kB^fddo^ zalr$pl!LM@77Y*~sheyN1}3>+q8+9nipZ7&d?<WO&Xxmun1U!GTMo#f@G&`C4q%F* zibN$q6B?>85>IzRiK^!$6)GV8MJ`k^XVMoT+>wdoa;h;MxK*iU7BL20aKfGHh|y1~ znv8|Hq-vo^ea1pU*@GhENzv@!Y)y)CnyTe}i?bY}sl8YXH`&6DMRY)fE?gK8Yq43n zV4)&5;eilyaP|zRPGL%ol6}ayWXb;kB`VZpL&m>Uirh<|zgu-Jvf!KhJW8=|as19% K_4jkL6&L_(u-J+K literal 0 HcmV?d00001 diff --git a/Simulation_setup_and_evluation/BaseCase/constant/g b/Simulation_setup_and_evluation/BaseCase/constant/g new file mode 100644 index 0000000..7a46325 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/constant/g @@ -0,0 +1,21 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class uniformDimensionedVectorField; + location "constant"; + object g; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +dimensions [0 1 -2 0 0 0 0]; +value (0 -9.98 0); + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/constant/transportProperties b/Simulation_setup_and_evluation/BaseCase/constant/transportProperties new file mode 100644 index 0000000..272098a --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/constant/transportProperties @@ -0,0 +1,41 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +/* +phases (water air); + +water +{ + transportModel Newtonian; + nu 13e-06; + rho 828.93; +} + +air +{ + transportModel Newtonian; + nu 1.805e-05; + rho 11.805; +} + +sigma 0.07; +*/ + +// water at about 30 degree +transportModel Newtonian; +nu nu [ 0 2 -1 0 0 0 0 ] 0.8007e-06; + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/constant/transportProperties.org b/Simulation_setup_and_evluation/BaseCase/constant/transportProperties.org new file mode 100644 index 0000000..2e81804 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/constant/transportProperties.org @@ -0,0 +1,41 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object transportProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +phases (water air); + +water +{ + transportModel Newtonian; + nu 1.0e-06; + rho 1000; +} + +air +{ + transportModel Newtonian; + //nu 7.20e-06; // Stratified + //rho 2.50; // Stratified + //nu 6.54e-06; // Slug + //rho 2.75; // Slug + //nu 6.62e-06; // Annular + //rho 2.72; // Annular +} + +sigma 0.07; + + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties b/Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties new file mode 100644 index 0000000..cc9365d --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties @@ -0,0 +1,31 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType RAS; + +RAS +{ + RASModel SpalartAllmaras; + + turbulence on; + + printCoeffs on; + //dampingCoef 0.0000; +} + +// ************************************************************************* // + diff --git a/Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties.LES b/Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties.LES new file mode 100644 index 0000000..bd83f91 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties.LES @@ -0,0 +1,93 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType LES; + +LES +{ + LESModel kOmega; // WALE; // Smagorinsky; // kOmegaSSTDES; + + turbulence on; + dampingCoef 0.0000; + printCoeffs on; + + delta smooth; + + cubeRootVolCoeffs + { + deltaCoeff 1; + } + + PrandtlCoeffs + { + delta cubeRootVol; + cubeRootVolCoeffs + { + deltaCoeff 1; + } + + smoothCoeffs + { + delta cubeRootVol; + cubeRootVolCoeffs + { + deltaCoeff 1; + } + + maxDeltaRatio 1.1; + } + + Cdelta 0.158; + } + + vanDriestCoeffs + { + delta cubeRootVol; + cubeRootVolCoeffs + { + deltaCoeff 1; + } + + smoothCoeffs + { + delta cubeRootVol; + cubeRootVolCoeffs + { + deltaCoeff 1; + } + + maxDeltaRatio 1.1; + } + + Aplus 26; + Cdelta 0.158; + } + + smoothCoeffs + { + delta cubeRootVol; + cubeRootVolCoeffs + { + deltaCoeff 1; + } + + maxDeltaRatio 1.1; + } +} + +// ************************************************************************* // + diff --git a/Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties.RAS b/Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties.RAS new file mode 100644 index 0000000..6245b38 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/constant/turbulenceProperties.RAS @@ -0,0 +1,31 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "constant"; + object turbulenceProperties; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +simulationType RAS; + +RAS +{ + RASModel kOmega; + + turbulence on; + + printCoeffs on; + dampingCoef 0.0000; +} + + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/graphGNU_2.png b/Simulation_setup_and_evluation/BaseCase/graphGNU_2.png new file mode 100644 index 0000000000000000000000000000000000000000..23da6a73404ea1687399aaf9c8f12d5158adb7b9 GIT binary patch literal 27290 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 literal 0 HcmV?d00001 diff --git a/Simulation_setup_and_evluation/BaseCase/graphGNU_3.png b/Simulation_setup_and_evluation/BaseCase/graphGNU_3.png new file mode 100644 index 0000000000000000000000000000000000000000..72bb91e09da7aa0004367738977b83a2273ae10d GIT binary patch literal 24616 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 Rf`Ng7!PC{xWt~$(69B#KBw7Ff literal 0 HcmV?d00001 diff --git a/Simulation_setup_and_evluation/BaseCase/logERR b/Simulation_setup_and_evluation/BaseCase/logERR new file mode 100644 index 0000000..688d6c3 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/logERR @@ -0,0 +1,100 @@ +Could not load "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_032fe91fca1fedad8ce1ef570c80d7d55be92322.so" +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_032fe91fca1fedad8ce1ef570c80d7d55be92322.so: cannot open shared object file: No such file or directory + ln: ./lnInclude +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(392): remark #15009: _ZN9generator8VerticeSERN4Foam7OstreamERKNS0_10dictionaryE has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(48): remark #15009: _ZN9generator6LookuPERKN4Foam10dictionaryE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/FieldI.H(48): remark #15009: _ZN4Foam5FieldIdEC1EiRKd has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_6TensorIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LListIO.C(46): remark #15009: _ZN4FoamrsINS_10SLListBaseENS_6TensorIdEEEERNS_7IstreamES5_RNS_5LListIT_T0_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/List.C(41): remark #15009: _ZN4Foam4ListINS_6TensorIdEEE8doResizeEi has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_6TensorIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_8Vector2DIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_8Tensor2DIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_8Tensor2DIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_10SymmTensorIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/List.C(41): remark #15009: _ZN4Foam4ListINS_10SymmTensorIdEEE8doResizeEi has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_10SymmTensorIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(263): remark #15009: _ZN9generator8pointGenEN4Foam4wordE has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(254): remark #15009: _ZN9generator7tRefGENEii has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(165): remark #15009: _ZN9generator8pointSETEid has been targeted for automatic cpu dispatch +line 0: warning: Skipping data file with no valid points +line 0: warning: Skipping data file with no valid points +line 0: warning: Skipping data file with no valid points +line 0: warning: Skipping data file with no valid points +line 0: warning: Skipping data file with no valid points +line 0: warning: Skipping data file with no valid points +Could not load "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_9224d8d3f43f75a5cb501197dd3fb321cb9fb9ed.so" +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_9224d8d3f43f75a5cb501197dd3fb321cb9fb9ed.so: cannot open shared object file: No such file or directory + ln: ./lnInclude +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(438): remark #15009: _ZN9generator6BlockSERN4Foam7OstreamERKNS0_10dictionaryE has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(48): remark #15009: _ZN9generator6LookuPERKN4Foam10dictionaryE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/FieldI.H(48): remark #15009: _ZN4Foam5FieldIdEC1EiRKd has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_6TensorIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LListIO.C(46): remark #15009: _ZN4FoamrsINS_10SLListBaseENS_6TensorIdEEEERNS_7IstreamES5_RNS_5LListIT_T0_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/List.C(41): remark #15009: _ZN4Foam4ListINS_6TensorIdEEE8doResizeEi has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_6TensorIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/FieldI.H(48): remark #15009: _ZN4Foam5FieldINS_6TensorIdEEEC1EiRKS2_ has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_8Vector2DIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_8Tensor2DIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_8Tensor2DIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_10SymmTensorIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/List.C(41): remark #15009: _ZN4Foam4ListINS_10SymmTensorIdEEE8doResizeEi has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_10SymmTensorIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(263): remark #15009: _ZN9generator8pointGenEN4Foam4wordE has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(254): remark #15009: _ZN9generator7tRefGENEii has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(165): remark #15009: _ZN9generator8pointSETEid has been targeted for automatic cpu dispatch +Could not load "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_f2df4f360a8d8eb5134d51a03dc37617cb7424f6.so" +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_f2df4f360a8d8eb5134d51a03dc37617cb7424f6.so: cannot open shared object file: No such file or directory + ln: ./lnInclude +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(490): remark #15009: _ZN9generator5EdgeSERN4Foam7OstreamERKNS0_10dictionaryE has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(48): remark #15009: _ZN9generator6LookuPERKN4Foam10dictionaryE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/FieldI.H(48): remark #15009: _ZN4Foam5FieldIdEC1EiRKd has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_6TensorIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LListIO.C(46): remark #15009: _ZN4FoamrsINS_10SLListBaseENS_6TensorIdEEEERNS_7IstreamES5_RNS_5LListIT_T0_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/List.C(41): remark #15009: _ZN4Foam4ListINS_6TensorIdEEE8doResizeEi has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_6TensorIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_8Vector2DIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_8Tensor2DIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_8Tensor2DIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_10SymmTensorIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/List.C(41): remark #15009: _ZN4Foam4ListINS_10SymmTensorIdEEE8doResizeEi has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_10SymmTensorIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(263): remark #15009: _ZN9generator8pointGenEN4Foam4wordE has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(254): remark #15009: _ZN9generator7tRefGENEii has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(165): remark #15009: _ZN9generator8pointSETEid has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/dictionaryTemplates.C(127): remark #15009: _ZNK4Foam10dictionary12getOrDefaultINS_5FieldIdEEEET_RKNS_4wordERKS4_NS_7keyType6optionE has been targeted for automatic cpu dispatch +Could not load "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_8c1555223eb85b66311c8837ef2daf9d3b2be6b9.so" +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_8c1555223eb85b66311c8837ef2daf9d3b2be6b9.so: cannot open shared object file: No such file or directory + ln: ./lnInclude +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(619): remark #15009: _ZN9generator8BoundarYERN4Foam7OstreamERKNS0_10dictionaryE has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(48): remark #15009: _ZN9generator6LookuPERKN4Foam10dictionaryE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/FieldI.H(48): remark #15009: _ZN4Foam5FieldIdEC1EiRKd has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_6TensorIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LListIO.C(46): remark #15009: _ZN4FoamrsINS_10SLListBaseENS_6TensorIdEEEERNS_7IstreamES5_RNS_5LListIT_T0_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/List.C(41): remark #15009: _ZN4Foam4ListINS_6TensorIdEEE8doResizeEi has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_6TensorIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_8Vector2DIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_8Tensor2DIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_8Tensor2DIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_10SymmTensorIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/List.C(41): remark #15009: _ZN4Foam4ListINS_10SymmTensorIdEEE8doResizeEi has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_10SymmTensorIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(263): remark #15009: _ZN9generator8pointGenEN4Foam4wordE has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(254): remark #15009: _ZN9generator7tRefGENEii has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(165): remark #15009: _ZN9generator8pointSETEid has been targeted for automatic cpu dispatch +Could not load "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_9d4f00a29252c83b26d1ce8b0b30e41ceaadcf41.so" +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_9d4f00a29252c83b26d1ce8b0b30e41ceaadcf41.so: cannot open shared object file: No such file or directory + ln: ./lnInclude +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(656): remark #15009: _ZN9generator6MergePERN4Foam7OstreamERKNS0_10dictionaryE has been targeted for automatic cpu dispatch +/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/functionsPTB.H(48): remark #15009: _ZN9generator6LookuPERKN4Foam10dictionaryE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/FieldI.H(48): remark #15009: _ZN4Foam5FieldIdEC1EiRKd has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_6TensorIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LListIO.C(46): remark #15009: _ZN4FoamrsINS_10SLListBaseENS_6TensorIdEEEERNS_7IstreamES5_RNS_5LListIT_T0_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/List.C(41): remark #15009: _ZN4Foam4ListINS_6TensorIdEEE8doResizeEi has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_6TensorIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_8Vector2DIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_8Tensor2DIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_8Tensor2DIdEEED1Ev has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/ListIO.C(48): remark #15009: _ZN4FoamrsINS_10SymmTensorIdEEEERNS_7IstreamES4_RNS_4ListIT_EE has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/List.C(41): remark #15009: _ZN4Foam4ListINS_10SymmTensorIdEEE8doResizeEi has been targeted for automatic cpu dispatch +/gpfs001/install_sources/OpenFOAM-v2012/src/OpenFOAM/lnInclude/LList.C(69): remark #15009: _ZN4Foam5LListINS_10SLListBaseENS_10SymmTensorIdEEED1Ev has been targeted for automatic cpu dispatch diff --git a/Simulation_setup_and_evluation/BaseCase/logGNU_2 b/Simulation_setup_and_evluation/BaseCase/logGNU_2 new file mode 100644 index 0000000..7faf82d --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/logGNU_2 @@ -0,0 +1,73 @@ +# The list of points +Plane:0 +0.05 -1.2246468e-17 0 +0.035355339 0.035355339 0 +1.5308085e-17 0.05 0 +-0.035355339 0.035355339 0 +-0.05 1.8369702e-17 0 +-0.035355339 -0.035355339 0 +-2.1431319e-17 -0.05 0 +0.035355339 -0.035355339 0 +0.05 -1.2246468e-17 0 + + +Plane:1 +0.05 -1.2246468e-17 0.7 +0.035355339 0.035355339 0.7 +1.5308085e-17 0.05 0.7 +-0.035355339 0.035355339 0.7 +-0.05 1.8369702e-17 0.7 +-0.035355339 -0.035355339 0.7 +-2.1431319e-17 -0.05 0.7 +0.035355339 -0.035355339 0.7 +0.05 -1.2246468e-17 0.7 + + +Plane:2 +0.05 0.051 0.751 +0.035355339 0.051 0.71564466 +1.5308085e-17 0.051 0.701 +-0.035355339 0.051 0.71564466 +-0.05 0.051 0.751 +-0.035355339 0.051 0.78635534 +-2.1431319e-17 0.051 0.801 +0.035355339 0.051 0.78635534 +0.05 0.051 0.751 + + +Plane:3 +0.05 0.052 0.751 +0.035355339 0.052 0.71564466 +1.5308085e-17 0.052 0.701 +-0.035355339 0.052 0.71564466 +-0.05 0.052 0.751 +-0.035355339 0.052 0.78635534 +-2.1431319e-17 0.052 0.801 +0.035355339 0.052 0.78635534 +0.05 0.052 0.751 + + +Plane:4 +0.051 0.053 0.751 +0.051 0.067644661 0.71564466 +0.051 0.103 0.701 +0.051 0.13835534 0.71564466 +0.051 0.153 0.751 +0.051 0.13835534 0.78635534 +0.051 0.103 0.801 +0.051 0.067644661 0.78635534 +0.051 0.053 0.751 + + +Plane:5 +10.051 0.053 0.751 +10.051 0.067644661 0.71564466 +10.051 0.103 0.701 +10.051 0.13835534 0.71564466 +10.051 0.153 0.751 +10.051 0.13835534 0.78635534 +10.051 0.103 0.801 +10.051 0.067644661 0.78635534 +10.051 0.053 0.751 + + diff --git a/Simulation_setup_and_evluation/BaseCase/logGNU_3 b/Simulation_setup_and_evluation/BaseCase/logGNU_3 new file mode 100644 index 0000000..03ba14d --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/logGNU_3 @@ -0,0 +1,31 @@ +# The list of planes central point, grouped according pairs, including middle plane +"(0 1) ... " +0 0 0 +0 0 0.35 +0 0 0.7 + + +"(1 2) ... " +0 0 0.7 +0 0.014937554 0.73606245 +0 0.051 0.751 + + +"(2 3) ... " +0 0.051 0.751 +0 0.0515 0.751 +0 0.052 0.751 + + +"(3 4) ... " +0 0.052 0.751 +0.014937554 0.088062446 0.751 +0.051 0.103 0.751 + + +"(4 5) ... " +0.051 0.103 0.751 +5.051 0.103 0.751 +10.051 0.103 0.751 + + diff --git a/Simulation_setup_and_evluation/BaseCase/logMesh b/Simulation_setup_and_evluation/BaseCase/logMesh new file mode 100644 index 0000000..10cda7d --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/logMesh @@ -0,0 +1,99 @@ +/*---------------------------------------------------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +Build : v1812 OPENFOAM=1812 +Arch : "LSB;label=32;scalar=64" +Exec : checkMesh +Date : Oct 27 2021 +Time : 16:49:56 +Host : i75320 +PID : 11398 +I/O : uncollated +Case : /media/fastdata1/newhome/weisse02/BlockMeshTool_DE/DE_var +nProcs : 1 +trapFpe: Floating point exception trapping enabled (FOAM_SIGFPE). +fileModificationChecking : Monitoring run-time modified files using timeStampMaster (fileModificationSkew 10) +allowSystemOperations : Allowing user-supplied system call operations + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +Create time + +Create mesh for time = 0 + +Time = 0 + +Mesh stats + points: 5221359 + faces: 15518308 + internal faces: 15376556 + cells: 5149144 + faces per cell: 6 + boundary patches: 3 + point zones: 0 + face zones: 0 + cell zones: 12 + +Overall number of cells of each type: + hexahedra: 5149144 + prisms: 0 + wedges: 0 + pyramids: 0 + tet wedges: 0 + tetrahedra: 0 + polyhedra: 0 + +Checking topology... + Boundary definition OK. + Cell to face addressing OK. + Point usage OK. + Upper triangular ordering OK. + Face vertices OK. + Number of regions: 1 (OK). + +Checking patch topology for multiply connected surfaces... + Patch Faces Points Surface topology + INLET 4004 4057 ok (non-closed singly connected) + OUTLET 4004 4057 ok (non-closed singly connected) + WALL 133744 133848 ok (non-closed singly connected) + +Checking faceZone topology for multiply connected surfaces... + No faceZones found. + +Checking basic cellZone addressing... + CellZone Cells Points Volume BoundingBox + zone_0 217334 252252 0.0087953201 (0 0 0) (10.142 0.285 0.842) + zone_1 217334 252252 0.008829074 (-0.03 0 0) (10.142 0.315 0.842) + zone_2 217334 252252 0.0088628279 (-0.03 -0.03 0) (10.142 0.315 0.872) + zone_3 217334 252252 0.008829074 (-5.5109106e-18 -0.03 0) (10.142 0.285 0.872) + zone_4 534976 594594 0.0064710086 (0.025 -1.2246468e-17 0) (10.142 0.26 0.842) + zone_5 534976 594594 0.0064710084 (1.8369702e-18 0.025 0) (10.142 0.285 0.817) + zone_6 534976 594594 0.0064984611 (-0.035355339 0.025 0) (10.142 0.32035534 0.817) + zone_7 534976 594594 0.0065381096 (-0.05 3.6739404e-18 0) (10.142 0.335 0.842) + zone_8 534976 594594 0.0065655624 (-0.05 -0.035355339 0) (10.142 0.335 0.87735534) + zone_9 534976 594594 0.0065655622 (-0.035355339 -0.05 0) (10.142 0.32035534 0.892) + zone_10 534976 594594 0.0065381099 (-2.1431319e-17 -0.05 0) (10.142 0.285 0.892) + zone_11 534976 594594 0.0064984609 (0.025 -0.035355339 0) (10.142 0.26 0.87735534) + +Checking geometry... + Overall domain bounding box (-0.05 -0.05 0) (10.142 0.335 0.892) + Mesh has 3 geometric (non-empty/wedge) directions (1 1 1) + Mesh has 3 solution (non-empty) directions (1 1 1) + Boundary openness (-5.5557284e-17 -4.3901586e-16 2.3557592e-16) OK. + Max cell openness = 2.8538583e-15 OK. + Max aspect ratio = 639.37391 OK. + Minimum face area = 8.8368832e-09. Maximum face area = 9.3027943e-05. Face area magnitudes OK. + Min volume = 2.734132e-11. Max volume = 1.6407073e-07. Total volume = 0.087462579. Cell volumes OK. + Mesh non-orthogonality Max: 38.526048 average: 4.8641186 + Non-orthogonality check OK. + Face pyramids OK. + Max skewness = 0.55772296 OK. + Coupled point location match (average 0) OK. + +Mesh OK. + +End + diff --git a/Simulation_setup_and_evluation/BaseCase/logPTB b/Simulation_setup_and_evluation/BaseCase/logPTB new file mode 100644 index 0000000..1e3d6e2 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/logPTB @@ -0,0 +1,1008 @@ +/*---------------------------------------------------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v2012 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +Build : _7bdb509494-20201222 OPENFOAM=2012 +Arch : "LSB;label=32;scalar=64" +Exec : blockMesh +Date : Nov 01 2021 +Time : 15:07:38 +Host : e00074 +PID : 222170 +I/O : uncollated +Case : /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var +nProcs : 1 +trapFpe: Floating point exception trapping enabled (FOAM_SIGFPE). +fileModificationChecking : Monitoring run-time modified files using timeStampMaster (fileModificationSkew 5, maxFileModificationPolls 20) +allowSystemOperations : Allowing user-supplied system call operations + +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // +Create time + +Creating block mesh from "system/blockMeshDict" +Using #codeStream at line 81 in file "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/blockMeshDict" +Using #codeStream with "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_032fe91fca1fedad8ce1ef570c80d7d55be92322.so" +Creating new library in "dynamicCode/_032fe91fca1fedad8ce1ef570c80d7d55be92322/platforms/linux64IccDPInt32Opt/lib/libcodeStream_032fe91fca1fedad8ce1ef570c80d7d55be92322.so" +Invoking wmake libso /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_032fe91fca1fedad8ce1ef570c80d7d55be92322 +wmake libso /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_032fe91fca1fedad8ce1ef570c80d7d55be92322 + dep: codeStreamTemplate.C + Ctoo: codeStreamTemplate.C + ld: /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_032fe91fca1fedad8ce1ef570c80d7d55be92322/../platforms/linux64IccDPInt32Opt/lib/libcodeStream_032fe91fca1fedad8ce1ef570c80d7d55be92322.so +PTB info : MeshGenerator v.2.5.2, 10/06/2021, available on v.2012 +PTB info : vertices <ON> +PTB info: no.: specification of plane (plane) :(transformation tensor) :(M vector):(T vector) +PTB info : 0 : 0 : (0 0 0 0 0 0 0.05 0.03 0.025) :(1 0 -0 0 1 0 0 0 1) :(0 0 1):(0 1 0) +PTB info : 1 : 0 : (0 0 0.7 0 0 0 0.05 0.03 0.025) :(1 0 -0 0 1 0 0 0 1) :(0 0 1):(0 1 0) +PTB info : 2 : 0 : (0 0.051 0.751 0.5 0 0 0.05 0.03 0.025) :(1 0 -0 0 6.123234e-17 1 0 -1 6.123234e-17) :(0 1 6.123234e-17):(0 6.123234e-17 -1) +PTB info : 3 : 0 : (0 0.052 0.751 0.5 0 0 0.05 0.03 0.025) :(1 0 -0 0 6.123234e-17 1 0 -1 6.123234e-17) :(0 1 6.123234e-17):(0 6.123234e-17 -1) +PTB info : 4 : 0 : (0.051 0.103 0.751 0.5 -0.5 0 0.05 0.03 0.025) :(6.123234e-17 0 1 -1 6.123234e-17 6.123234e-17 -6.123234e-17 -1 3.7493995e-33) :(1 6.123234e-17 3.7493995e-33):(0 6.123234e-17 -1) +PTB info : 5 : 0 : (10.051 0.103 0.751 0.5 -0.5 0 0.05 0.03 0.025) :(6.123234e-17 0 1 -1 6.123234e-17 6.123234e-17 -6.123234e-17 -1 3.7493995e-33) :(1 6.123234e-17 3.7493995e-33):(0 6.123234e-17 -1) +PTB info : (0 1 0 0 0.05 0) (0 0 0.35 0 0 0 0.05 0.03 0.025) (0 0 0) Angles OK, linear +PTB info : (1 2 0 5 0 0) (0 0.014937554 0.73606245 0.25 0 0 0.05 0.03 0.025) (0.5 0.5 0.051) Angles OK, elbow +PTB info : (2 3 0 4 0 0) (0 0.0515 0.751 0.5 0 0 0.05 0.03 0.025) (0 0 0) Angles OK, linear +PTB info : (3 4 0 5 0 0) (0.014937554 0.088062446 0.751 0.5 -0.25 0 0.05 0.03 0.025) (0.5 0.5 0.051) Angles OK, elbow +PTB info : (4 5 0 0 10 0) (5.051 0.103 0.751 0.5 -0.5 0 0.05 0.03 0.025) (0 0 0) Angles OK, linear +Using #codeStream at line 89 in file "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/blockMeshDict" +Using #codeStream with "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_9224d8d3f43f75a5cb501197dd3fb321cb9fb9ed.so" +Creating new library in "dynamicCode/_9224d8d3f43f75a5cb501197dd3fb321cb9fb9ed/platforms/linux64IccDPInt32Opt/lib/libcodeStream_9224d8d3f43f75a5cb501197dd3fb321cb9fb9ed.so" +Invoking wmake libso /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_9224d8d3f43f75a5cb501197dd3fb321cb9fb9ed +wmake libso /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_9224d8d3f43f75a5cb501197dd3fb321cb9fb9ed + dep: codeStreamTemplate.C + Ctoo: codeStreamTemplate.C + ld: /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_9224d8d3f43f75a5cb501197dd3fb321cb9fb9ed/../platforms/linux64IccDPInt32Opt/lib/libcodeStream_9224d8d3f43f75a5cb501197dd3fb321cb9fb9ed.so +PTB info : block <ON> +PTB info : Pairs : (0 1 0 0 0.05 0)(1 2 0 5 0 0)(2 3 0 4 0 0)(3 4 0 5 0 0)(4 5 0 0 10 0) +Using #codeStream at line 97 in file "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/blockMeshDict" +Using #codeStream with "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_f2df4f360a8d8eb5134d51a03dc37617cb7424f6.so" +Creating new library in "dynamicCode/_f2df4f360a8d8eb5134d51a03dc37617cb7424f6/platforms/linux64IccDPInt32Opt/lib/libcodeStream_f2df4f360a8d8eb5134d51a03dc37617cb7424f6.so" +Invoking wmake libso /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_f2df4f360a8d8eb5134d51a03dc37617cb7424f6 +wmake libso /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_f2df4f360a8d8eb5134d51a03dc37617cb7424f6 + dep: codeStreamTemplate.C + Ctoo: codeStreamTemplate.C + ld: /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_f2df4f360a8d8eb5134d51a03dc37617cb7424f6/../platforms/linux64IccDPInt32Opt/lib/libcodeStream_f2df4f360a8d8eb5134d51a03dc37617cb7424f6.so +PTB info : edge circ <ON> +arc 9 10 (0.046984631 0.017101007 0) +arc 10 11 (0.021130913 0.045315389 0) +arc 11 12 (-0.017101007 0.046984631 0) +arc 12 13 (-0.045315389 0.021130913 0) +arc 13 14 (-0.046984631 -0.017101007 0) +arc 14 15 (-0.021130913 -0.045315389 0) +arc 15 16 (0.017101007 -0.046984631 0) +arc 16 9 (0.045315389 -0.021130913 0) +arc 26 27 (0.046984631 0.017101007 0.7) +arc 27 28 (0.021130913 0.045315389 0.7) +arc 28 29 (-0.017101007 0.046984631 0.7) +arc 29 30 (-0.045315389 0.021130913 0.7) +arc 30 31 (-0.046984631 -0.017101007 0.7) +arc 31 32 (-0.021130913 -0.045315389 0.7) +arc 32 33 (0.017101007 -0.046984631 0.7) +arc 33 26 (0.045315389 -0.021130913 0.7) +arc 43 44 (0.046984631 0.051 0.73389899) +arc 44 45 (0.021130913 0.051 0.70568461) +arc 45 46 (-0.017101007 0.051 0.70401537) +arc 46 47 (-0.045315389 0.051 0.72986909) +arc 47 48 (-0.046984631 0.051 0.76810101) +arc 48 49 (-0.021130913 0.051 0.79631539) +arc 49 50 (0.017101007 0.051 0.79798463) +arc 50 43 (0.045315389 0.051 0.77213091) +arc 60 61 (0.046984631 0.052 0.73389899) +arc 61 62 (0.021130913 0.052 0.70568461) +arc 62 63 (-0.017101007 0.052 0.70401537) +arc 63 64 (-0.045315389 0.052 0.72986909) +arc 64 65 (-0.046984631 0.052 0.76810101) +arc 65 66 (-0.021130913 0.052 0.79631539) +arc 66 67 (0.017101007 0.052 0.79798463) +arc 67 60 (0.045315389 0.052 0.77213091) +arc 77 78 (0.051 0.056015369 0.73389899) +arc 78 79 (0.051 0.081869087 0.70568461) +arc 79 80 (0.051 0.12010101 0.70401537) +arc 80 81 (0.051 0.14831539 0.72986909) +arc 81 82 (0.051 0.14998463 0.76810101) +arc 82 83 (0.051 0.12413091 0.79631539) +arc 83 84 (0.051 0.085898993 0.79798463) +arc 84 77 (0.051 0.057684611 0.77213091) +arc 94 95 (10.051 0.056015369 0.73389899) +arc 95 96 (10.051 0.081869087 0.70568461) +arc 96 97 (10.051 0.12010101 0.70401537) +arc 97 98 (10.051 0.14831539 0.72986909) +arc 98 99 (10.051 0.14998463 0.76810101) +arc 99 100 (10.051 0.12413091 0.79631539) +arc 100 101 (10.051 0.085898993 0.79798463) +arc 101 94 (10.051 0.057684611 0.77213091) +polyLine 1 2 ( (0.029939735 0.0027983618 0)(0.029759051 0.0055915346 0)(0.029458285 0.008374339 0)(0.029037992 0.011141615 0)(0.028498953 0.01388823 0)(0.027842168 0.016609093 0)(0.027068853 0.019299157 0)(0.026180444 0.021953435 0) ) +polyLine 2 3 ( (0.021953435 0.026180444 0)(0.019299157 0.027068853 0)(0.016609093 0.027842168 0)(0.01388823 0.028498953 0)(0.011141615 0.029037992 0)(0.008374339 0.029458285 0)(0.0055915346 0.029759051 0)(0.0027983618 0.029939735 0) ) +polyLine 3 4 ( (-0.0027983618 0.029939735 0)(-0.0055915346 0.029759051 0)(-0.008374339 0.029458285 0)(-0.011141615 0.029037992 0)(-0.01388823 0.028498953 0)(-0.016609093 0.027842168 0)(-0.019299157 0.027068853 0)(-0.021953435 0.026180444 0) ) +polyLine 4 5 ( (-0.026180444 0.021953435 0)(-0.027068853 0.019299157 0)(-0.027842168 0.016609093 0)(-0.028498953 0.01388823 0)(-0.029037992 0.011141615 0)(-0.029458285 0.008374339 0)(-0.029759051 0.0055915346 0)(-0.029939735 0.0027983618 0) ) +polyLine 5 6 ( (-0.029939735 -0.0027983618 0)(-0.029759051 -0.0055915346 0)(-0.029458285 -0.008374339 0)(-0.029037992 -0.011141615 0)(-0.028498953 -0.01388823 0)(-0.027842168 -0.016609093 0)(-0.027068853 -0.019299157 0)(-0.026180444 -0.021953435 0) ) +polyLine 6 7 ( (-0.021953435 -0.026180444 0)(-0.019299157 -0.027068853 0)(-0.016609093 -0.027842168 0)(-0.01388823 -0.028498953 0)(-0.011141615 -0.029037992 0)(-0.008374339 -0.029458285 0)(-0.0055915346 -0.029759051 0)(-0.0027983618 -0.029939735 0) ) +polyLine 7 8 ( (0.0027983618 -0.029939735 0)(0.0055915346 -0.029759051 0)(0.008374339 -0.029458285 0)(0.011141615 -0.029037992 0)(0.01388823 -0.028498953 0)(0.016609093 -0.027842168 0)(0.019299157 -0.027068853 0)(0.021953435 -0.026180444 0) ) +polyLine 8 1 ( (0.026180444 -0.021953435 0)(0.027068853 -0.019299157 0)(0.027842168 -0.016609093 0)(0.028498953 -0.01388823 0)(0.029037992 -0.011141615 0)(0.029458285 -0.008374339 0)(0.029759051 -0.0055915346 0)(0.029939735 -0.0027983618 0) ) +polyLine 18 19 ( (0.029939735 0.0027983618 0.7)(0.029759051 0.0055915346 0.7)(0.029458285 0.008374339 0.7)(0.029037992 0.011141615 0.7)(0.028498953 0.01388823 0.7)(0.027842168 0.016609093 0.7)(0.027068853 0.019299157 0.7)(0.026180444 0.021953435 0.7) ) +polyLine 19 20 ( (0.021953435 0.026180444 0.7)(0.019299157 0.027068853 0.7)(0.016609093 0.027842168 0.7)(0.01388823 0.028498953 0.7)(0.011141615 0.029037992 0.7)(0.008374339 0.029458285 0.7)(0.0055915346 0.029759051 0.7)(0.0027983618 0.029939735 0.7) ) +polyLine 20 21 ( (-0.0027983618 0.029939735 0.7)(-0.0055915346 0.029759051 0.7)(-0.008374339 0.029458285 0.7)(-0.011141615 0.029037992 0.7)(-0.01388823 0.028498953 0.7)(-0.016609093 0.027842168 0.7)(-0.019299157 0.027068853 0.7)(-0.021953435 0.026180444 0.7) ) +polyLine 21 22 ( (-0.026180444 0.021953435 0.7)(-0.027068853 0.019299157 0.7)(-0.027842168 0.016609093 0.7)(-0.028498953 0.01388823 0.7)(-0.029037992 0.011141615 0.7)(-0.029458285 0.008374339 0.7)(-0.029759051 0.0055915346 0.7)(-0.029939735 0.0027983618 0.7) ) +polyLine 22 23 ( (-0.029939735 -0.0027983618 0.7)(-0.029759051 -0.0055915346 0.7)(-0.029458285 -0.008374339 0.7)(-0.029037992 -0.011141615 0.7)(-0.028498953 -0.01388823 0.7)(-0.027842168 -0.016609093 0.7)(-0.027068853 -0.019299157 0.7)(-0.026180444 -0.021953435 0.7) ) +polyLine 23 24 ( (-0.021953435 -0.026180444 0.7)(-0.019299157 -0.027068853 0.7)(-0.016609093 -0.027842168 0.7)(-0.01388823 -0.028498953 0.7)(-0.011141615 -0.029037992 0.7)(-0.008374339 -0.029458285 0.7)(-0.0055915346 -0.029759051 0.7)(-0.0027983618 -0.029939735 0.7) ) +polyLine 24 25 ( (0.0027983618 -0.029939735 0.7)(0.0055915346 -0.029759051 0.7)(0.008374339 -0.029458285 0.7)(0.011141615 -0.029037992 0.7)(0.01388823 -0.028498953 0.7)(0.016609093 -0.027842168 0.7)(0.019299157 -0.027068853 0.7)(0.021953435 -0.026180444 0.7) ) +polyLine 25 18 ( (0.026180444 -0.021953435 0.7)(0.027068853 -0.019299157 0.7)(0.027842168 -0.016609093 0.7)(0.028498953 -0.01388823 0.7)(0.029037992 -0.011141615 0.7)(0.029458285 -0.008374339 0.7)(0.029759051 -0.0055915346 0.7)(0.029939735 -0.0027983618 0.7) ) +polyLine 35 36 ( (0.029939735 0.051 0.74820164)(0.029759051 0.051 0.74540847)(0.029458285 0.051 0.74262566)(0.029037992 0.051 0.73985839)(0.028498953 0.051 0.73711177)(0.027842168 0.051 0.73439091)(0.027068853 0.051 0.73170084)(0.026180444 0.051 0.72904657) ) +polyLine 36 37 ( (0.021953435 0.051 0.72481956)(0.019299157 0.051 0.72393115)(0.016609093 0.051 0.72315783)(0.01388823 0.051 0.72250105)(0.011141615 0.051 0.72196201)(0.008374339 0.051 0.72154172)(0.0055915346 0.051 0.72124095)(0.0027983618 0.051 0.72106027) ) +polyLine 37 38 ( (-0.0027983618 0.051 0.72106027)(-0.0055915346 0.051 0.72124095)(-0.008374339 0.051 0.72154172)(-0.011141615 0.051 0.72196201)(-0.01388823 0.051 0.72250105)(-0.016609093 0.051 0.72315783)(-0.019299157 0.051 0.72393115)(-0.021953435 0.051 0.72481956) ) +polyLine 38 39 ( (-0.026180444 0.051 0.72904657)(-0.027068853 0.051 0.73170084)(-0.027842168 0.051 0.73439091)(-0.028498953 0.051 0.73711177)(-0.029037992 0.051 0.73985839)(-0.029458285 0.051 0.74262566)(-0.029759051 0.051 0.74540847)(-0.029939735 0.051 0.74820164) ) +polyLine 39 40 ( (-0.029939735 0.051 0.75379836)(-0.029759051 0.051 0.75659153)(-0.029458285 0.051 0.75937434)(-0.029037992 0.051 0.76214161)(-0.028498953 0.051 0.76488823)(-0.027842168 0.051 0.76760909)(-0.027068853 0.051 0.77029916)(-0.026180444 0.051 0.77295343) ) +polyLine 40 41 ( (-0.021953435 0.051 0.77718044)(-0.019299157 0.051 0.77806885)(-0.016609093 0.051 0.77884217)(-0.01388823 0.051 0.77949895)(-0.011141615 0.051 0.78003799)(-0.008374339 0.051 0.78045828)(-0.0055915346 0.051 0.78075905)(-0.0027983618 0.051 0.78093973) ) +polyLine 41 42 ( (0.0027983618 0.051 0.78093973)(0.0055915346 0.051 0.78075905)(0.008374339 0.051 0.78045828)(0.011141615 0.051 0.78003799)(0.01388823 0.051 0.77949895)(0.016609093 0.051 0.77884217)(0.019299157 0.051 0.77806885)(0.021953435 0.051 0.77718044) ) +polyLine 42 35 ( (0.026180444 0.051 0.77295343)(0.027068853 0.051 0.77029916)(0.027842168 0.051 0.76760909)(0.028498953 0.051 0.76488823)(0.029037992 0.051 0.76214161)(0.029458285 0.051 0.75937434)(0.029759051 0.051 0.75659153)(0.029939735 0.051 0.75379836) ) +polyLine 52 53 ( (0.029939735 0.052 0.74820164)(0.029759051 0.052 0.74540847)(0.029458285 0.052 0.74262566)(0.029037992 0.052 0.73985839)(0.028498953 0.052 0.73711177)(0.027842168 0.052 0.73439091)(0.027068853 0.052 0.73170084)(0.026180444 0.052 0.72904657) ) +polyLine 53 54 ( (0.021953435 0.052 0.72481956)(0.019299157 0.052 0.72393115)(0.016609093 0.052 0.72315783)(0.01388823 0.052 0.72250105)(0.011141615 0.052 0.72196201)(0.008374339 0.052 0.72154172)(0.0055915346 0.052 0.72124095)(0.0027983618 0.052 0.72106027) ) +polyLine 54 55 ( (-0.0027983618 0.052 0.72106027)(-0.0055915346 0.052 0.72124095)(-0.008374339 0.052 0.72154172)(-0.011141615 0.052 0.72196201)(-0.01388823 0.052 0.72250105)(-0.016609093 0.052 0.72315783)(-0.019299157 0.052 0.72393115)(-0.021953435 0.052 0.72481956) ) +polyLine 55 56 ( (-0.026180444 0.052 0.72904657)(-0.027068853 0.052 0.73170084)(-0.027842168 0.052 0.73439091)(-0.028498953 0.052 0.73711177)(-0.029037992 0.052 0.73985839)(-0.029458285 0.052 0.74262566)(-0.029759051 0.052 0.74540847)(-0.029939735 0.052 0.74820164) ) +polyLine 56 57 ( (-0.029939735 0.052 0.75379836)(-0.029759051 0.052 0.75659153)(-0.029458285 0.052 0.75937434)(-0.029037992 0.052 0.76214161)(-0.028498953 0.052 0.76488823)(-0.027842168 0.052 0.76760909)(-0.027068853 0.052 0.77029916)(-0.026180444 0.052 0.77295343) ) +polyLine 57 58 ( (-0.021953435 0.052 0.77718044)(-0.019299157 0.052 0.77806885)(-0.016609093 0.052 0.77884217)(-0.01388823 0.052 0.77949895)(-0.011141615 0.052 0.78003799)(-0.008374339 0.052 0.78045828)(-0.0055915346 0.052 0.78075905)(-0.0027983618 0.052 0.78093973) ) +polyLine 58 59 ( (0.0027983618 0.052 0.78093973)(0.0055915346 0.052 0.78075905)(0.008374339 0.052 0.78045828)(0.011141615 0.052 0.78003799)(0.01388823 0.052 0.77949895)(0.016609093 0.052 0.77884217)(0.019299157 0.052 0.77806885)(0.021953435 0.052 0.77718044) ) +polyLine 59 52 ( (0.026180444 0.052 0.77295343)(0.027068853 0.052 0.77029916)(0.027842168 0.052 0.76760909)(0.028498953 0.052 0.76488823)(0.029037992 0.052 0.76214161)(0.029458285 0.052 0.75937434)(0.029759051 0.052 0.75659153)(0.029939735 0.052 0.75379836) ) +polyLine 69 70 ( (0.051 0.073060265 0.74820164)(0.051 0.073240949 0.74540847)(0.051 0.073541715 0.74262566)(0.051 0.073962008 0.73985839)(0.051 0.074501047 0.73711177)(0.051 0.075157832 0.73439091)(0.051 0.075931147 0.73170084)(0.051 0.076819556 0.72904657) ) +polyLine 70 71 ( (0.051 0.081046565 0.72481956)(0.051 0.083700843 0.72393115)(0.051 0.086390907 0.72315783)(0.051 0.08911177 0.72250105)(0.051 0.091858385 0.72196201)(0.051 0.094625661 0.72154172)(0.051 0.097408465 0.72124095)(0.051 0.10020164 0.72106027) ) +polyLine 71 72 ( (0.051 0.10579836 0.72106027)(0.051 0.10859153 0.72124095)(0.051 0.11137434 0.72154172)(0.051 0.11414161 0.72196201)(0.051 0.11688823 0.72250105)(0.051 0.11960909 0.72315783)(0.051 0.12229916 0.72393115)(0.051 0.12495343 0.72481956) ) +polyLine 72 73 ( (0.051 0.12918044 0.72904657)(0.051 0.13006885 0.73170084)(0.051 0.13084217 0.73439091)(0.051 0.13149895 0.73711177)(0.051 0.13203799 0.73985839)(0.051 0.13245828 0.74262566)(0.051 0.13275905 0.74540847)(0.051 0.13293973 0.74820164) ) +polyLine 73 74 ( (0.051 0.13293973 0.75379836)(0.051 0.13275905 0.75659153)(0.051 0.13245828 0.75937434)(0.051 0.13203799 0.76214161)(0.051 0.13149895 0.76488823)(0.051 0.13084217 0.76760909)(0.051 0.13006885 0.77029916)(0.051 0.12918044 0.77295343) ) +polyLine 74 75 ( (0.051 0.12495343 0.77718044)(0.051 0.12229916 0.77806885)(0.051 0.11960909 0.77884217)(0.051 0.11688823 0.77949895)(0.051 0.11414161 0.78003799)(0.051 0.11137434 0.78045828)(0.051 0.10859153 0.78075905)(0.051 0.10579836 0.78093973) ) +polyLine 75 76 ( (0.051 0.10020164 0.78093973)(0.051 0.097408465 0.78075905)(0.051 0.094625661 0.78045828)(0.051 0.091858385 0.78003799)(0.051 0.08911177 0.77949895)(0.051 0.086390907 0.77884217)(0.051 0.083700843 0.77806885)(0.051 0.081046565 0.77718044) ) +polyLine 76 69 ( (0.051 0.076819556 0.77295343)(0.051 0.075931147 0.77029916)(0.051 0.075157832 0.76760909)(0.051 0.074501047 0.76488823)(0.051 0.073962008 0.76214161)(0.051 0.073541715 0.75937434)(0.051 0.073240949 0.75659153)(0.051 0.073060265 0.75379836) ) +polyLine 86 87 ( (10.051 0.073060265 0.74820164)(10.051 0.073240949 0.74540847)(10.051 0.073541715 0.74262566)(10.051 0.073962008 0.73985839)(10.051 0.074501047 0.73711177)(10.051 0.075157832 0.73439091)(10.051 0.075931147 0.73170084)(10.051 0.076819556 0.72904657) ) +polyLine 87 88 ( (10.051 0.081046565 0.72481956)(10.051 0.083700843 0.72393115)(10.051 0.086390907 0.72315783)(10.051 0.08911177 0.72250105)(10.051 0.091858385 0.72196201)(10.051 0.094625661 0.72154172)(10.051 0.097408465 0.72124095)(10.051 0.10020164 0.72106027) ) +polyLine 88 89 ( (10.051 0.10579836 0.72106027)(10.051 0.10859153 0.72124095)(10.051 0.11137434 0.72154172)(10.051 0.11414161 0.72196201)(10.051 0.11688823 0.72250105)(10.051 0.11960909 0.72315783)(10.051 0.12229916 0.72393115)(10.051 0.12495343 0.72481956) ) +polyLine 89 90 ( (10.051 0.12918044 0.72904657)(10.051 0.13006885 0.73170084)(10.051 0.13084217 0.73439091)(10.051 0.13149895 0.73711177)(10.051 0.13203799 0.73985839)(10.051 0.13245828 0.74262566)(10.051 0.13275905 0.74540847)(10.051 0.13293973 0.74820164) ) +polyLine 90 91 ( (10.051 0.13293973 0.75379836)(10.051 0.13275905 0.75659153)(10.051 0.13245828 0.75937434)(10.051 0.13203799 0.76214161)(10.051 0.13149895 0.76488823)(10.051 0.13084217 0.76760909)(10.051 0.13006885 0.77029916)(10.051 0.12918044 0.77295343) ) +polyLine 91 92 ( (10.051 0.12495343 0.77718044)(10.051 0.12229916 0.77806885)(10.051 0.11960909 0.77884217)(10.051 0.11688823 0.77949895)(10.051 0.11414161 0.78003799)(10.051 0.11137434 0.78045828)(10.051 0.10859153 0.78075905)(10.051 0.10579836 0.78093973) ) +polyLine 92 93 ( (10.051 0.10020164 0.78093973)(10.051 0.097408465 0.78075905)(10.051 0.094625661 0.78045828)(10.051 0.091858385 0.78003799)(10.051 0.08911177 0.77949895)(10.051 0.086390907 0.77884217)(10.051 0.083700843 0.77806885)(10.051 0.081046565 0.77718044) ) +polyLine 93 86 ( (10.051 0.076819556 0.77295343)(10.051 0.075931147 0.77029916)(10.051 0.075157832 0.76760909)(10.051 0.074501047 0.76488823)(10.051 0.073962008 0.76214161)(10.051 0.073541715 0.75937434)(10.051 0.073240949 0.75659153)(10.051 0.073060265 0.75379836) ) +PTB info : edge long <ON> +PTB info : pair Middle plane (A, B, R) check for elbow +PTB info : (0 1 0 0 0.05 0) (0 0 0.35 0 0 0 0.05 0.03 0.025) (0 0 0) Angles OK, linear +PTB info : (1 2 0 5 0 0) (0 0.014937554 0.73606245 0.25 0 0 0.05 0.03 0.025) (0.5 0.5 0.051) Angles OK, elbow +PTB info : (2 3 0 4 0 0) (0 0.0515 0.751 0.5 0 0 0.05 0.03 0.025) (0 0 0) Angles OK, linear +PTB info : (3 4 0 5 0 0) (0.014937554 0.088062446 0.751 0.5 -0.25 0 0.05 0.03 0.025) (0.5 0.5 0.051) Angles OK, elbow +PTB info : (4 5 0 0 10 0) (5.051 0.103 0.751 0.5 -0.5 0 0.05 0.03 0.025) (0 0 0) Angles OK, linear +arc 17 34 (0 0.014937554 0.73606245) +arc 18 35 (0.03 0.014937554 0.73606245) +arc 19 36 (0.025 0.032615224 0.71838478) +arc 20 37 (1.8369702e-18 0.036150758 0.71484924) +arc 21 38 (-0.025 0.032615224 0.71838478) +arc 22 39 (-0.03 0.014937554 0.73606245) +arc 23 40 (-0.025 -0.0027401154 0.75374012) +arc 24 41 (-5.5109106e-18 -0.0062756493 0.75727565) +arc 25 42 (0.025 -0.0027401154 0.75374012) +arc 26 43 (0.05 0.014937554 0.73606245) +arc 27 44 (0.035355339 0.039937554 0.71106245) +arc 28 45 (1.5308085e-17 0.050292893 0.70070711) +arc 29 46 (-0.035355339 0.039937554 0.71106245) +arc 30 47 (-0.05 0.014937554 0.73606245) +arc 31 48 (-0.035355339 -0.010062446 0.76106245) +arc 32 49 (-2.1431319e-17 -0.020417785 0.77141778) +arc 33 50 (0.035355339 -0.010062446 0.76106245) +arc 51 68 (0.014937554 0.088062446 0.751) +arc 52 69 (0.036150758 0.066849242 0.751) +arc 53 70 (0.032615224 0.070384776 0.726) +arc 54 71 (0.014937554 0.088062446 0.721) +arc 55 72 (-0.0027401154 0.10574012 0.726) +arc 56 73 (-0.0062756493 0.10927565 0.751) +arc 57 74 (-0.0027401154 0.10574012 0.776) +arc 58 75 (0.014937554 0.088062446 0.781) +arc 59 76 (0.032615224 0.070384776 0.776) +arc 60 77 (0.050292893 0.052707107 0.751) +arc 61 78 (0.039937554 0.063062446 0.71564466) +arc 62 79 (0.014937554 0.088062446 0.701) +arc 63 80 (-0.010062446 0.11306245 0.71564466) +arc 64 81 (-0.020417785 0.12341778 0.751) +arc 65 82 (-0.010062446 0.11306245 0.78635534) +arc 66 83 (0.014937554 0.088062446 0.801) +arc 67 84 (0.039937554 0.063062446 0.78635534) +PTB info : There is no nozzle definition +PTB nozzle: 0() +Using #codeStream at line 105 in file "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/blockMeshDict" +Using #codeStream with "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_8c1555223eb85b66311c8837ef2daf9d3b2be6b9.so" +Creating new library in "dynamicCode/_8c1555223eb85b66311c8837ef2daf9d3b2be6b9/platforms/linux64IccDPInt32Opt/lib/libcodeStream_8c1555223eb85b66311c8837ef2daf9d3b2be6b9.so" +Invoking wmake libso /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_8c1555223eb85b66311c8837ef2daf9d3b2be6b9 +wmake libso /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_8c1555223eb85b66311c8837ef2daf9d3b2be6b9 + dep: codeStreamTemplate.C + Ctoo: codeStreamTemplate.C + ld: /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_8c1555223eb85b66311c8837ef2daf9d3b2be6b9/../platforms/linux64IccDPInt32Opt/lib/libcodeStream_8c1555223eb85b66311c8837ef2daf9d3b2be6b9.so +PTB info : boundary <ON> +PTB info: B.C. : P0 , P5 , +Using #codeStream at line 113 in file "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/system/blockMeshDict" +Using #codeStream with "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/platforms/linux64IccDPInt32Opt/lib/libcodeStream_9d4f00a29252c83b26d1ce8b0b30e41ceaadcf41.so" +Creating new library in "dynamicCode/_9d4f00a29252c83b26d1ce8b0b30e41ceaadcf41/platforms/linux64IccDPInt32Opt/lib/libcodeStream_9d4f00a29252c83b26d1ce8b0b30e41ceaadcf41.so" +Invoking wmake libso /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_9d4f00a29252c83b26d1ce8b0b30e41ceaadcf41 +wmake libso /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_9d4f00a29252c83b26d1ce8b0b30e41ceaadcf41 + dep: codeStreamTemplate.C + Ctoo: codeStreamTemplate.C + ld: /gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/dynamicCode/_9d4f00a29252c83b26d1ce8b0b30e41ceaadcf41/../platforms/linux64IccDPInt32Opt/lib/libcodeStream_9d4f00a29252c83b26d1ce8b0b30e41ceaadcf41.so +PTB info : merge <OFF> +Creating block edges +No non-planar block faces defined +Creating topology blocks +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -7.1296296e-08 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.2228704e-05 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.5305556e-05 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.2228704e-05 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -7.1296296e-08 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.5305556e-05 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -3.3433333e-05 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.225e-05 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -3.3433333e-05 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.225e-05 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -7.4466131e-06 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -4.3124458e-06 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.0485927e-05 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -6.3284305e-06 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.199373e-05 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -6.3284305e-06 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.199373e-05 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -7.4466131e-06 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -4.3124458e-06 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.0485927e-05 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -6.1822651e-06 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.1884263e-05 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.2108285e-06 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -4.8346346e-05 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.6812446e-05 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -6.7030256e-06 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -4.8346346e-05 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.6812446e-05 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -6.7030256e-06 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -6.1822651e-06 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.1884263e-05 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.2108285e-06 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.1296296e-08 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -5.6759259e-07 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.3055556e-06 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -5.6759259e-07 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.1296296e-08 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.3055556e-06 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -7.1222222e-07 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.3055556e-06 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -7.1222222e-07 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.3055556e-06 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.5113429e-07 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.2666686e-07 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.8583422e-07 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.2719797e-07 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.8583422e-07 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.2719797e-07 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.8583422e-07 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.5113429e-07 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.2666686e-07 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.8583422e-07 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.0680295e-07 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -4.6688098e-07 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.8583422e-07 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -6.6309924e-07 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.2666686e-07 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.8583422e-07 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -6.6309924e-07 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.2666686e-07 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.8583422e-07 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.0680295e-07 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -4.6688098e-07 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -8.8583422e-07 for face 4 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.3969444e-06 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.2223056e-05 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -3.5430648e-05 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -4.7006667e-05 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.564e-05 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.6567048e-06 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -4.3044597e-06 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.8504005e-05 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -5.4873008e-05 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.7146996e-05 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.0019265e-05 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.2163661e-05 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -4.2486169e-05 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -4.2718284e-05 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.6781312e-05 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -2.515858e-05 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -5.1350049e-06 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -1.3783878e-06 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -5.1356908e-06 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0010666667 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0058666667 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0054851852 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0071222222 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0071222222 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0038600837 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0018716316 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0088306463 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0077133132 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0011626019 for face 1 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0026617059 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0020217332 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0046688098 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0068217332 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0018716318 for face 2 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0064402517 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0026617056 for face 3 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0001143258 for face 0 +--> FOAM Warning : + From Foam::Vector<double> Foam::cellModel::centre(const Foam::List<int> &, const Foam::UList<Foam::Vector<double>> &) const + in file meshes/meshShapes/cellModel/cellModel.C at line 63 + zero or negative pyramid volume: -0.0046688098 for face 3 +Creating topology patches + +Creating block mesh topology +--> FOAM Warning : + From Foam::polyMesh::polyMesh(const Foam::IOobject &, Foam::Field<Foam::Vector<double>> &&, const Foam::List<Foam::cellShape> &, const Foam::List<Foam::List<Foam::face>> &, const Foam::List<Foam::word> &, const Foam::PtrList<Foam::dictionary> &, const Foam::word &, const Foam::word &, bool) + in file meshes/polyMesh/polyMeshFromShapeMesh.C at line 919 + Found 40 undefined faces in mesh; adding to default patch defaultFaces + +Check topology + + Basic statistics + Number of internal faces : 148 + Number of boundary faces : 64 + Number of defined boundary faces : 64 + Number of undefined boundary faces : 0 + Checking patch -> block consistency + +Creating block offsets +Creating merge list (topological search)... + +Creating polyMesh from blockMesh +Creating points with scale 1 + Block 0 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.030800867 .. 0.0015400433 + + Block 1 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.030800867 .. 0.0015400433 + + Block 2 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.030800867 .. 0.0015400433 + + Block 3 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.030800867 .. 0.0015400433 + + Block 4 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.030800867 .. 0.0015400433 + + Block 5 cell size : + i : 0.0017673755 .. 3.534751e-05 + j : 0.001973796 .. 0.001973796 + k : 0.030800867 .. 0.0015400433 + + Block 6 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.030800867 .. 0.0015400433 + + Block 7 cell size : + i : 0.0017673755 .. 3.534751e-05 + j : 0.001973796 .. 0.001973796 + k : 0.030800867 .. 0.0015400433 + + Block 8 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.030800867 .. 0.0015400433 + + Block 9 cell size : + i : 0.0017673755 .. 3.534751e-05 + j : 0.001973796 .. 0.001973796 + k : 0.030800867 .. 0.0015400433 + + Block 10 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.030800867 .. 0.0015400433 + + Block 11 cell size : + i : 0.0017673755 .. 3.534751e-05 + j : 0.001973796 .. 0.001973796 + k : 0.030800867 .. 0.0015400433 + + Block 12 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0020026367 .. 0.0020026367 + + Block 13 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0020026367 .. 0.0020026367 + + Block 14 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0020026367 .. 0.0020026367 + + Block 15 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0020026367 .. 0.0020026367 + + Block 16 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0020026367 .. 0.0020026367 + + Block 17 cell size : + i : 0.0017673755 .. 3.534751e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0010209521 .. 0.0010209521 + + Block 18 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.00082461503 .. 0.00082461503 + + Block 19 cell size : + i : 0.0017673755 .. 3.534751e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0010209521 .. 0.0010209521 + + Block 20 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0020026367 .. 0.0020026367 + + Block 21 cell size : + i : 0.0017673755 .. 3.534751e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0029843213 .. 0.0029843213 + + Block 22 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0031806582 .. 0.0031806582 + + Block 23 cell size : + i : 0.0017673755 .. 3.534751e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0029843213 .. 0.0029843213 + + Block 24 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.00025 .. 0.00025 + + Block 25 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.00025 .. 0.00025 + + Block 26 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.00025 .. 0.00025 + + Block 27 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.00025 .. 0.00025 + + Block 28 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.00025 .. 0.00025 + + Block 29 cell size : + i : 0.0017673756 .. 3.5347511e-05 + j : 0.001973796 .. 0.001973796 + k : 0.00025 .. 0.00025 + + Block 30 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.00025 .. 0.00025 + + Block 31 cell size : + i : 0.0017673756 .. 3.5347511e-05 + j : 0.001973796 .. 0.001973796 + k : 0.00025 .. 0.00025 + + Block 32 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.00025 .. 0.00025 + + Block 33 cell size : + i : 0.0017673756 .. 3.5347511e-05 + j : 0.001973796 .. 0.001973796 + k : 0.00025 .. 0.00025 + + Block 34 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.00025 .. 0.00025 + + Block 35 cell size : + i : 0.0017673756 .. 3.5347511e-05 + j : 0.001973796 .. 0.001973796 + k : 0.00025 .. 0.00025 + + Block 36 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0020026366 .. 0.0020026366 + + Block 37 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0020026366 .. 0.0020026366 + + Block 38 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0020026366 .. 0.0020026366 + + Block 39 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0020026366 .. 0.0020026366 + + Block 40 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.00082461507 .. 0.00082461507 + + Block 41 cell size : + i : 0.0017673756 .. 3.5347511e-05 + j : 0.001973796 .. 0.001973796 + k : 0.001020952 .. 0.001020952 + + Block 42 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0020026366 .. 0.0020026366 + + Block 43 cell size : + i : 0.0017673756 .. 3.5347511e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0029843213 .. 0.0029843213 + + Block 44 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0031806582 .. 0.0031806582 + + Block 45 cell size : + i : 0.0017673756 .. 3.5347511e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0029843213 .. 0.0029843213 + + Block 46 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0020026366 .. 0.0020026366 + + Block 47 cell size : + i : 0.0017673756 .. 3.5347511e-05 + j : 0.001973796 .. 0.001973796 + k : 0.001020952 .. 0.001020952 + + Block 48 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0025548318 .. 0.025548318 + + Block 49 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0025548318 .. 0.025548318 + + Block 50 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0025548318 .. 0.025548318 + + Block 51 cell size : + i : 0.0023076923 .. 0.0023076923 + j : 0.0023076923 .. 0.0023076923 + k : 0.0025548318 .. 0.025548318 + + Block 52 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0025548318 .. 0.025548318 + + Block 53 cell size : + i : 0.0017673756 .. 3.5347511e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0025548318 .. 0.025548318 + + Block 54 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.0019737959 .. 0.0019737959 + k : 0.0025548318 .. 0.025548318 + + Block 55 cell size : + i : 0.0017673757 .. 3.5347513e-05 + j : 0.0019737959 .. 0.0019737959 + k : 0.0025548318 .. 0.025548318 + + Block 56 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.0019737959 .. 0.0019737959 + k : 0.0025548318 .. 0.025548318 + + Block 57 cell size : + i : 0.0017673757 .. 3.5347513e-05 + j : 0.0019737959 .. 0.0019737959 + k : 0.0025548318 .. 0.025548318 + + Block 58 cell size : + i : 0.002413679 .. 4.8273579e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0025548318 .. 0.025548318 + + Block 59 cell size : + i : 0.0017673756 .. 3.5347511e-05 + j : 0.001973796 .. 0.001973796 + k : 0.0025548318 .. 0.025548318 + +Creating cells +Creating patches +Adding cell zones + 0 zone_0 + 1 zone_1 + 2 zone_2 + 3 zone_3 + 4 zone_4 + 5 zone_5 + 6 zone_6 + 7 zone_7 + 8 zone_8 + 9 zone_9 + 10 zone_10 + 11 zone_11 + +There are no merge patch pairs + +Writing polyMesh with 12 cellZones +---------------- +Mesh Information +---------------- + boundingBox: (-0.05 -0.05 0) (10.051 0.153 0.801) + nPoints: 4693949 + nCells: 4628624 + nFaces: 13949988 + nInternalFaces: 13821756 +---------------- +Cell Zones +---------------- + zone 0 (size: 195364) name: zone_0 + zone 1 (size: 195364) name: zone_1 + zone 2 (size: 195364) name: zone_2 + zone 3 (size: 195364) name: zone_3 + zone 4 (size: 480896) name: zone_4 + zone 5 (size: 480896) name: zone_5 + zone 6 (size: 480896) name: zone_6 + zone 7 (size: 480896) name: zone_7 + zone 8 (size: 480896) name: zone_8 + zone 9 (size: 480896) name: zone_9 + zone 10 (size: 480896) name: zone_10 + zone 11 (size: 480896) name: zone_11 +---------------- +Patches +---------------- + patch 0 (start: 13821756 size: 4004) name: P0 + patch 1 (start: 13825760 size: 4004) name: P5 + patch 2 (start: 13829764 size: 120224) name: defaultFaces + +End + diff --git a/Simulation_setup_and_evluation/BaseCase/log_PTB b/Simulation_setup_and_evluation/BaseCase/log_PTB new file mode 100644 index 0000000..535e68b --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/log_PTB @@ -0,0 +1 @@ +# ====== logPTB ====== diff --git a/Simulation_setup_and_evluation/BaseCase/print_figure.py b/Simulation_setup_and_evluation/BaseCase/print_figure.py new file mode 100644 index 0000000..ef3fe93 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/print_figure.py @@ -0,0 +1,84 @@ +from paraview.simple import * +import sys + +case = "a.foam" +figure = sys.argv[1] + +paraview.simple._DisableFirstRenderCameraReset() + +meshGenerator_251foam = OpenFOAMReader(registrationName=case, FileName=case) +meshGenerator_251foam.MeshRegions = ['internalMesh'] + +renderView1 = GetActiveViewOrCreate('RenderView') + +meshGenerator_251foamDisplay = Show(meshGenerator_251foam, renderView1, + 'UnstructuredGridRepresentation') + +# trace defaults for the display properties. +meshGenerator_251foamDisplay.Representation = 'Surface With Edges' +meshGenerator_251foamDisplay.ColorArrayName = [None, ''] +meshGenerator_251foamDisplay.SelectTCoordArray = 'None' +meshGenerator_251foamDisplay.SelectNormalArray = 'None' +meshGenerator_251foamDisplay.SelectTangentArray = 'None' +meshGenerator_251foamDisplay.OSPRayScaleFunction = 'PiecewiseFunction' +meshGenerator_251foamDisplay.SelectOrientationVectors = 'None' +meshGenerator_251foamDisplay.ScaleFactor = 0.5 +meshGenerator_251foamDisplay.SelectScaleArray = 'None' +meshGenerator_251foamDisplay.GlyphType = 'Arrow' +meshGenerator_251foamDisplay.GlyphTableIndexArray = 'None' +meshGenerator_251foamDisplay.GaussianRadius = 0.025 +meshGenerator_251foamDisplay.SetScaleArray = [None, ''] +meshGenerator_251foamDisplay.ScaleTransferFunction = 'PiecewiseFunction' +meshGenerator_251foamDisplay.OpacityArray = [None, ''] +meshGenerator_251foamDisplay.OpacityTransferFunction = 'PiecewiseFunction' +meshGenerator_251foamDisplay.DataAxesGrid = 'GridAxesRepresentation' +meshGenerator_251foamDisplay.PolarAxes = 'PolarAxesRepresentation' +meshGenerator_251foamDisplay.ScalarOpacityUnitDistance = 0.059508142701040136 +meshGenerator_251foamDisplay.OpacityArrayName = ['FIELD', 'CasePath'] +meshGenerator_251foamDisplay.ExtractedBlockIndex = 1 + +# reset view to fit data +renderView1.ResetCamera() + +# get the material library +materialLibrary1 = GetMaterialLibrary() + +# update the view to ensure updated data information +renderView1.Update() + +# change representation type +meshGenerator_251foamDisplay.SetRepresentationType('Surface With Edges') + +# get layout +layout1 = GetLayout() + +# layout/tab size in pixels +layout1.SetSize(2152, 1248) + +# current camera placement for renderView1 +renderView1.CameraPosition = [-0.49, -0.637, 5.966] +renderView1.CameraFocalPoint = [0.1646, 0.333, 2.629] +renderView1.CameraViewUp = [-0.9634, 0.2397, -0.119] +renderView1.CameraParallelScale = 2.872 + +# save screenshot +SaveScreenshot(figure, + renderView1, + ImageResolution=[2152, 1248], + OverrideColorPalette='WhiteBackground') + +#renderView1.CameraPosition = [ +# -0.4909743067316212, -0.6369636364319943, 5.965816493518362 +#] +#renderView1.CameraFocalPoint = [ +# 0.1645780318611207, 0.33345944456707144, 2.6293232828637043 +#] +#renderView1.CameraViewUp = [ +# -0.9634575367333389, 0.23968412517237608, -0.11958718598612436 +#] +#renderView1.CameraParallelScale = 2.8722813232690143 + +#-------------------------------------------- +# uncomment the following to render all views +# RenderAllViews() +# alternatively, if you want to write images, you can use SaveScreenshot(...). diff --git a/Simulation_setup_and_evluation/BaseCase/print_figure_cele.py b/Simulation_setup_and_evluation/BaseCase/print_figure_cele.py new file mode 100644 index 0000000..fe7633b --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/print_figure_cele.py @@ -0,0 +1,107 @@ +from paraview.simple import * +#### disable automatic camera reset on 'Show' +paraview.simple._DisableFirstRenderCameraReset() + +# create a new 'OpenFOAMReader' +meshGenerator_251foam = OpenFOAMReader( + registrationName='MeshGenerator_2.5.1.foam', + FileName= + '/Users/polansky/Projects/MeshGenerator_2.5.1/MeshGenerator_2.5.1.foam') +meshGenerator_251foam.MeshRegions = ['internalMesh'] + +# get active view +renderView1 = GetActiveViewOrCreate('RenderView') + +# show data in view +meshGenerator_251foamDisplay = Show(meshGenerator_251foam, renderView1, + 'UnstructuredGridRepresentation') + +# trace defaults for the display properties. +meshGenerator_251foamDisplay.Representation = 'Surface' +meshGenerator_251foamDisplay.ColorArrayName = [None, ''] +meshGenerator_251foamDisplay.SelectTCoordArray = 'None' +meshGenerator_251foamDisplay.SelectNormalArray = 'None' +meshGenerator_251foamDisplay.SelectTangentArray = 'None' +meshGenerator_251foamDisplay.OSPRayScaleFunction = 'PiecewiseFunction' +meshGenerator_251foamDisplay.SelectOrientationVectors = 'None' +meshGenerator_251foamDisplay.ScaleFactor = 0.5 +meshGenerator_251foamDisplay.SelectScaleArray = 'None' +meshGenerator_251foamDisplay.GlyphType = 'Arrow' +meshGenerator_251foamDisplay.GlyphTableIndexArray = 'None' +meshGenerator_251foamDisplay.GaussianRadius = 0.025 +meshGenerator_251foamDisplay.SetScaleArray = [None, ''] +meshGenerator_251foamDisplay.ScaleTransferFunction = 'PiecewiseFunction' +meshGenerator_251foamDisplay.OpacityArray = [None, ''] +meshGenerator_251foamDisplay.OpacityTransferFunction = 'PiecewiseFunction' +meshGenerator_251foamDisplay.DataAxesGrid = 'GridAxesRepresentation' +meshGenerator_251foamDisplay.PolarAxes = 'PolarAxesRepresentation' +meshGenerator_251foamDisplay.ScalarOpacityUnitDistance = 0.059508142701040136 +meshGenerator_251foamDisplay.OpacityArrayName = ['FIELD', 'CasePath'] +meshGenerator_251foamDisplay.ExtractedBlockIndex = 1 + +# reset view to fit data +renderView1.ResetCamera() + +# get the material library +materialLibrary1 = GetMaterialLibrary() + +# update the view to ensure updated data information +renderView1.Update() + +# change representation type +meshGenerator_251foamDisplay.SetRepresentationType('Surface With Edges') + +# get layout +layout1 = GetLayout() + +# layout/tab size in pixels +layout1.SetSize(2152, 1248) + +# current camera placement for renderView1 +renderView1.CameraPosition = [ + -0.4909743067316212, -0.6369636364319943, 5.965816493518362 +] +renderView1.CameraFocalPoint = [ + 0.1645780318611207, 0.33345944456707144, 2.6293232828637043 +] +renderView1.CameraViewUp = [ + -0.9634575367333389, 0.23968412517237608, -0.11958718598612436 +] +renderView1.CameraParallelScale = 2.8722813232690143 + +# save screenshot +SaveScreenshot('/Users/polansky/Projects/MeshGenerator_2.5.1/BBB.png', + renderView1, + ImageResolution=[2152, 1248], + OverrideColorPalette='WhiteBackground') + +#================================================================ +# addendum: following script captures some of the application +# state to faithfully reproduce the visualization during playback +#================================================================ + +#-------------------------------- +# saving layout sizes for layouts + +# layout/tab size in pixels +layout1.SetSize(2152, 1248) + +#----------------------------------- +# saving camera placements for views + +# current camera placement for renderView1 +renderView1.CameraPosition = [ + -0.4909743067316212, -0.6369636364319943, 5.965816493518362 +] +renderView1.CameraFocalPoint = [ + 0.1645780318611207, 0.33345944456707144, 2.6293232828637043 +] +renderView1.CameraViewUp = [ + -0.9634575367333389, 0.23968412517237608, -0.11958718598612436 +] +renderView1.CameraParallelScale = 2.8722813232690143 + +#-------------------------------------------- +# uncomment the following to render all views +# RenderAllViews() +# alternatively, if you want to write images, you can use SaveScreenshot(...). diff --git a/Simulation_setup_and_evluation/BaseCase/start_simuOF2012.msub b/Simulation_setup_and_evluation/BaseCase/start_simuOF2012.msub new file mode 100644 index 0000000..042c45b --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/start_simuOF2012.msub @@ -0,0 +1,31 @@ +#!/bin/bash -l +#MSUB -o OpenFOAM.$PBS_JOBID +#MSUB -j +#MSUB -l nodes=1:ppn=28,walltime=24:00:00:00 +###,feature=E52690v4 + + +export MPI_BUFFER_SIZE=8192 + +module load comp/cmake/3-19.1 +module load parallel_studio_xe_2019.5.075 +module load comp/gcc/6.2.0 +. /home/cluster/Intel/compilers_and_libraries_2019.5.281/linux/bin/compilervars.sh intel64 +. /home/cluster/Intel/compilers_and_libraries_2019.5.281/linux/mpi/intel64/bin/mpivars.sh +export MPI_ROOT=/home/cluster/Intel/compilers_and_libraries_2019.5.281/linux/mpi/intel64/ +. /gpfs001/install_sources/OpenFOAM-v2012/etc/bashrc + +# let's go to the directory where the script was submitted +cd $PBS_O_WORKDIR + +echo "workdir: $PBS_O_WORKDIR" +echo "PBSNODEFILE: $PBS_NODEFILE" + +NSLOTS=$(wc -l < $PBS_NODEFILE) +echo "running on $NSLOTS cores ..." + +decomposePar -force +mpirun -np $NSLOTS simpleFoam -parallel > log.sim + +echo "Job ${PBS_JOBID} has finished." +exit 0 diff --git a/Simulation_setup_and_evluation/BaseCase/system/.blockMeshDict.swp b/Simulation_setup_and_evluation/BaseCase/system/.blockMeshDict.swp new file mode 100644 index 0000000000000000000000000000000000000000..4f6998943a5d72e02e483ffe6dea736745825c17 GIT binary patch literal 12288 zcmYc?2=nw+u+TGNU|?VnU|@JWWnV&m=my4<DGUq+`8kPs#o3i0DSX&5vq&!|KRGc6 zpCSeZhB}ym`aYRSMTtd~`o8%|nK`KnF8Rr&xv6<2#rnzlxpj#J1v#m8&N=y|DK7cR z#rgq7`B|ySCB^!_sl^%Ysd=eIi6!|(@kV;4dWQPNmBl5gx%x>t`N`QJd6&%O5(3T` zl^zX&krx7`C26`AybQ)hh6W(dD=R4~2n&URn4@?!1V%$(Gz3ONU^E0qLtr!nMnhmU z1V%$(goHpz0V6{_0|NsS)W2>}nh}kLa!0Ar5Eu=C(GVC7fzc2c4S~@R7!85Z5Eu=C z(GVC7fzc2c4S^vT0*NUM3{Tk^7$i9%^Z&5^|37{PhPC_*41N3z44(W94BY$-3=jAi z7!L9=Fck1HFr@J@FeLLaF!=H@FqrZ&Fi7w*F#O<UVED?*z_5gufngCZ14B7414Ah< z14AS)1A{Lw1A`+k1A{#;1A`SW1A_@K1A`JT0|PrR1H%U%28MS$3=E5T7#N~>7#R3@ z7#NOlGcZ(gGce?FGce?EGcZJPGcZJOGcb5^GcZ_kGccHQGcf3KGcX8qGcf$(Vqo~d z#lY~6i-F-L7X!m}E(V5UTnr3HxEL5VaxpN><zir%&Begb#Kpjn%f-Nu&BeeFz{S8| z&c(pM&&9y-ij#riJSPLgT22OrR!#<nW=;kM8%_oWD^3Om3r+?GSxyE9X--HODTBgk z2*&fMlSe~fGz3ONU^E0qLtr!n@Pz;`6fp2IC}-v+=ai<TDkvrAr=$j#6s0ES281{% zS@SZ0puWC>uCA`G0zy(DEx$;iAhRGfCo?Zq0kj@bAsx10QAeRn&q&WiN5RNa&(KiM z$iT<|q#b0C0u*RkgBbey3Mr{+iKRIu3L1tAaHz@40Fs4a0|kA3h1}Gl^wfaFlH`nl z#LS{%R27CG6-oJ}c`1oSl~|-wQ_@q56>{?P(lbj+Q!*2C6mTj^&MZnU%}q-!O3f?D zOw7Te4!i)fn3tirJhLP@Beh6DLqP%TfU^9elFa1PVvs)}0jA&|5aQ|Y=jfwgq-Sc) zps%lB3kC`hy%3%PNPTW<afX71nSzCap@D*lf`X<sFGx8!(0yHlJwV~73sRU?l$sil zlbDxUte^o_#mkVFUsaWps-U4@pkS<Eq+kdYh6EqTAP7qV6vieBAmfen3=|9$G~uDF zVW42B0LFTzAPHWE0#G0;Xn@@Y(+;9R#ub394=zYeR)8vi#$hmcfvSQ5IL&|*D?t1K zWr7_DWgCEL6(2*8I}{WYKzsuQ1p_^EQxH$j6vQ?$RZ!4WPyoekfRC<$2~wni{0cS# zqE$gb#m5-Rgd1gv+bClajWV{t=_(`qMuGH!913@p37Cb|gN6*?kS$iw!0;YO6F88- zgn@#Bp`HOq%mAxF2H<D|1+H>(VotJxl7fnlf|i1*f|7zY11O-7g!L74jrEL;!BUP2 z270E}3i|q%1_~*u>3X~jE((U$ybL}HhSm(c3`L14nWe!BV4>pV#GF(G2s^-2!C24G z#L(2z$jsE()WXu-(%8t@!o&=m5Fj}Ll#q3G6+(+si$GZ(RA!VV7G)+T<)jva)3z=+ zb?fUZXi*L7>+>?yLNaiE5@=mDC?XUT!1)(cV1X7;TSMfNa}tY-A<_ydnaL%Y`FV*& zl~BpF{G!~%5{PVKadKuRRJ<&;s5mn}4=iD%2TJzUybNyniMei>IjOu1F<KB$Q-##h zhd5LrCPp7@p|3(>US>gQP9n&y3JNt4>6jP=1+cuMLS7139fYV+2!lA*N<qOKtQ4dY zqSjxb0JP2==93zQ@YJN@%#u_q1%-@~l7eC@ef|7`)V#F(#9Y1nqI8gMh-R>MH-*g9 z9E4Rh3jPJDd2arWzE%n$8L42NLU4X*QF5w+vzv=TNPd1!Qho)<5O7HdA|OsgB5QaV Z^a%!@mac-cwzh&UL4~@yS}~xK695P|%(DOh literal 0 HcmV?d00001 diff --git a/Simulation_setup_and_evluation/BaseCase/system/.functionsPTB.H.swp b/Simulation_setup_and_evluation/BaseCase/system/.functionsPTB.H.swp new file mode 100644 index 0000000000000000000000000000000000000000..b805f665ce4f764b2c2c97cf68cb926c8ab04158 GIT binary patch literal 45056 zcmYc?2=nw+u+TGNU|?VnU|^87+n+Fd?gqw_DGUq+`8kPs#o3i0DSX&5vq&!|KRGc6 zpCSeZhB}ym`aYRSMTtd~`o8%|nK`KnF8Rr&xv6<2#rnzlxpj#J1v#m8&N=y|DK7cR z#rgq7`B|ySCB^!_sl^%Ysd=eIi6!|(@kV;4dWQPNmBl5gx%z3PdC4W2`FX_wAx?T8 z1l%zyJsJWdE(A(T(sV6&8H|k#4M2WZR#H?D777J1NAYL~jE2By2#kinXb6mkz-S1J zhQMeDjE2An34xLVPKJ601_mame|4cWBO1*K<!eA`a3_L+fdQtD6)MgPrNf{!Or8tM zkAl)EP#PxB2IXf#={-;yCeIG#!{pVV5>SeP11j$er6)iopcDfORJ<5U-+@X%DF$Y! zI847kG(ceTQ0Y->Gz3ONU^E0qLtr!nMnhmU1V%$(Gz3ONU^E0qLtr!nhGYmNrZ6zb zaxyTy1$FQR7#Lvv|5yAB3|IIW820cpFf8L|VCds#U?}EiU`XI+VDRQ=U@+xpU@+ll zV36ZyV36f!U|{EGU|`~BU|{5DVEDkt!0>{Pfnhx#14Aeu1A{0Z1H%el1_nD`1_nl6 z28I(n3=Eri7#Q++7#K8o7#O~AGcYXYW?<;xW?;zYW?%^AW?-=9W?-=5W?&HFW?&HH zW?=Zh#lUcai-F+?7Xw2s7Xw2k7XyPc7XyPm7X!mbsQX`XGBC{JWMG)Z$-q#^$-t1! z$-rR3$-wZBgMr})2Lr=G4hDuw4h9B44h9BM4hDuh><kQx*%=tJ*cliM*%=s~u`w{r zWMg2M!N$N4!N$N~%ErLJ$i~2MmX(2FFDnB>J1YZ2Dk}qn7%KzAVHO643Kj+iO%?`* zTg(g$?aT}en#>FgubCJaHZw6W)G{$JI59CWXfZJ`yk=xz*ucoZP>nj6prD|jkd|Mh zpplc9l$xWEX=|Whtπ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 Vqn?3*A!zO&J|civ?+4kQ3;@i{Cl&wz literal 0 HcmV?d00001 diff --git a/Simulation_setup_and_evluation/BaseCase/system/blockMeshDict b/Simulation_setup_and_evluation/BaseCase/system/blockMeshDict new file mode 100644 index 0000000..3149743 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/blockMeshDict @@ -0,0 +1,103 @@ + +/*--------------------------------*- C++ -*----------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | Website: https://openfoam.org + \\ / A nd | Version: 7 + \\/ M anipulation | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// --------- User define variables ------ + +PI 3.14159265358979323846; +scale 1; + +// the pipe Radius +radiuS 0.05; // findme radiuS +// the curvature radius +r_k 0.051; // findme r_k +// the inbetween length +d_l 0.001; // findme d_l +// the inlet length +i_l 0.7000000000000001; // findme i_l +// the outlet length +o_l 10.0; // findme o_l +// grid core radius +gc_r 0.6; +// grid core size +gc_s 0.5; + + // |translation |rotation axis |radius +planes (( 0 0 0 0 0 0 1 $gc_r $gc_s ) // PL-00 INLET + ( 0 0 $i_l 0 0 0 1 $gc_r $gc_s ) // PL-01 + ( 0 $r_k $r_k 0.5 0 0 1 $gc_r $gc_s ) // PL-02 + ( 0 $d_l 0 0 0 0 1 $gc_r $gc_s ) // PL-03 + ( $r_k $r_k 0 0 -0.5 0 1 $gc_r $gc_s ) // PL-04 + ( $o_l 0 0 0 0 0 1 $gc_r $gc_s ) // PL-05 OUTLET + ); + +/* +planes ((#calc "2*$rk+$dl" #calc "$rk+$il" #calc "-$rk" -0.5 0 0 1 0.5 0.4) // 0 + (0 #calc "-$il" 0 0 0 0 1 0.5 0.4) // 1 + (#calc "-$rk" #calc "-$rk" 0 0 0.5 0 1 0.5 0.4) // 2 + + + (#calc "-$dl" 0 0 0 0 0 1 0.5 0.4) // 3 + + + (#calc "-$rk" 0 $rk -0.5 0.5 -0.5 1 0.5 0.4) // 4 + (0 0 $ol 0 0 0 1 0.5 0.4) // 5 + ); +*/ + + + + + + +defaultSystem 0; + +planeSpec ( ); +// plane_from plane_to | +// 0 | +// number of element factor | +// refinement ratio < 1:backward >1 forward refinement | +// 0 +pairs ( + (0 1 0 0 0.05 0 ) // findme inflowpipe + (1 2 0 5 0 0 ) // findme firstelbow + (2 3 0 4 0 0 ) // findme inbetweenpipe + (3 4 0 5 0 0 ) // findme secondelbow + (4 5 0 0 10 0 ) // findme outflowpipe + ); + +freePlanes ( 0 5); + +// ---- MESH ---- +mesh (13 32 100 50 ); // findme mesh + +// ====== switch ===== +// --- OPTIONAL 2.5; + +switcher ( 1 // vortices + 1 // blocks + 1 // edges circumferential + 1 // edges longitudial + 1 // boundary + 0 // mergePatchPairs + ); // default (1 1 1 1 1 1) + +// ---- codeStream for pipeline Mesh generator, v.2.4, 29.11.2020 --- + + +#include "codeStreamPTB"; + + diff --git a/Simulation_setup_and_evluation/BaseCase/system/blockMeshDictZaloha b/Simulation_setup_and_evluation/BaseCase/system/blockMeshDictZaloha new file mode 100644 index 0000000..147e921 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/blockMeshDictZaloha @@ -0,0 +1,72 @@ + +/*--------------------------------*- C++ -*----------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | Website: https://openfoam.org + \\ / A nd | Version: 7 + \\/ M anipulation | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// --------- User define variables ------ + +PI 3.14159265358979323846; +scale 1; +radiuS 1; + +L 10; +D 0.1; +A 0.5; //90 deg. + +planes (( 0 0 0 0 0 0 1 0.5 0.45 ) // PL-00 + ( 0 0 $L 0 0 0 1 0.5 0.45 ) // PL-01 + ( 0 0 $D 0 0 0 1 0.5 0.45 ) // PL-02 + ( 0 0 $L 0 0 0 1 0.5 0.45 ) // PL-03 + ( 0 $D #calc "$L+$D" $A 0 0 1 0.5 0.45 ) // PL-04 abs + ( 0 $L 0 0 0 0 1 0.5 0.45 ) // PL-05 + ); + +defaultSystem 0; + +planeSpec ( + // (4 30) + (1 11) + (2 21) + (4 45) + ); + +pairs ( + (0 1 0 ) + (2 3 0 ) + (4 5 0 ) + ); + +freePlanes ( 0 3); + +// ---- MESH ---- +mesh (8 10 5 4 ); + +// ====== switch ===== +// --- OPTIONAL VARIABLES --- + +switcher ( 1 // vortices + 1 // blocks + 1 // edges circumferential + 0 // edges longitudial + 1 // boundary + 0 // mergePatchPairs + ); // default (1 1 1 1 1 1) + +// ---- codeStream for pipeline Mesh generator, v.2.4, 29.11.2020 --- + + +#include "codeStreamPTB"; + + diff --git a/Simulation_setup_and_evluation/BaseCase/system/blockMeshDict_temp b/Simulation_setup_and_evluation/BaseCase/system/blockMeshDict_temp new file mode 100644 index 0000000..b6ad330 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/blockMeshDict_temp @@ -0,0 +1,78 @@ + +/*--------------------------------*- C++ -*----------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | Website: https://openfoam.org + \\ / A nd | Version: 7 + \\/ M anipulation | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// --------- User define variables ------ + +PI 3.14159265358979323846; +scale 1; +radiuS 0.05; + +// Diameter +D 0.1; +// Radius +radiuS #calc "$D/2.0"; +// curvature radius +rk #calc "1.4*$D"; +// the inbetween distance +dl #calc "1*$D"; +// inlet length +il #calc "7*$D"; +// outlet length +ol #calc "10*$D"; + + + // |translation |rotation axis |radius +planes (( 0 0 0 0 0 0 1 0.5 0.45 ) // PL-00 INLET + ( 0 0 1 0 0 0 1 0.5 0.45 ) // PL-01 + ( 0 0.142 0.142 0.5 0 0 1 0.5 0.45 ) // PL-02 + ( 0.142 0.142 0 0 -0.5 0 1 0.5 0.45 ) // PL-03 + ( 4 0 0 0 0 0 1 0.5 0.45 ) // PL-04 OUTLET + ); + +defaultSystem 0; + +planeSpec ( ); + +pairs ( + (0 1 0 0 0.1 0 ) + (1 2 0 10 0 0 ) + (2 3 0 10 0 0 ) + (3 4 0 5 5 0 ) + ); + +freePlanes ( 0 3); + +// ---- MESH ---- +mesh (10 25 40 52 ); + +// ====== switch ===== +// --- OPTIONAL 2.5; + +switcher ( 1 // vortices + 1 // blocks + 1 // edges circumferential + 1 // edges longitudial + 1 // boundary + 0 // mergePatchPairs + ); // default (1 1 1 1 1 1) + +// ---- codeStream for pipeline Mesh generator, v.2.4, 29.11.2020 --- + + +#include "codeStreamPTB"; + + diff --git a/Simulation_setup_and_evluation/BaseCase/system/blockMeshDict_turn b/Simulation_setup_and_evluation/BaseCase/system/blockMeshDict_turn new file mode 100644 index 0000000..c10869b --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/blockMeshDict_turn @@ -0,0 +1,101 @@ + +/*--------------------------------*- C++ -*----------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | Website: https://openfoam.org + \\ / A nd | Version: 7 + \\/ M anipulation | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// --------- User define variables ------ + +PI 3.14159265358979323846; +scale 1; +// Diameter +D 0.1; +// Radius +radiuS #calc "$D/2.0"; +// curvature radius +rk #calc "1.4*$D"; +// the inbetween distance +dl #calc "1*$D"; +// inlet length +il #calc "7*$D"; +// outlet length +ol #calc "10*$D"; + +// relative = 0 , absolute = 1 // does not work why?? +defaultSystem 1; + +/* this works + // |translation |rotation axis |radius +planes ((0.38 0.84 -0.14 -0.5 0 0 1 0.5 0.45) // 0 + (0 -0.7 0 0 0 0 1 0.5 0.45) // 1 + (-0.14 -0.14 0 0 0.5 0 1 0.5 0.45) // 2 + (-0.1 0 0 0 0 0 1 0.5 0.45) // 3 + (-0.14 0 0.14 -0.5 0.5 -0.5 1 0.5 0.45) // 4 + ); + */ + +/* relative not working: + // |translation |rotation axis |radius +planes (( 0.38 0.84 -0.14 0.5 0 0 1 0.5 0.45) // 0 + ( 0 -0.7 0 0 0 0 1 0.5 0.45) // 1 + (-0.14 -0.14 0 0 0.5 0 1 0.5 0.45) // 2 + (-0.1 0 0 0 0 0 1 0.5 0.45) // 3 + (-0.14 0 0.14 0 0 0 1 0.5 0.45) // 4 + ( 0 0 1 0 0 0 1 0.5 0.45) // 5 + ); +*/ +// parametrized: + // |translation |rotation axis |radius +planes ((#calc "2*$rk+$dl" #calc "$rk+$il" #calc "-$rk" -0.5 0 0 1 0.5 0.4) // 0 + (0 #calc "-$il" 0 0 0 0 1 0.5 0.4) // 1 + (#calc "-$rk" #calc "-$rk" 0 0 0.5 0 1 0.5 0.4) // 2 + (#calc "-$dl" 0 0 0 0 0 1 0.5 0.4) // 3 + (#calc "-$rk" 0 $rk -0.5 0.5 -0.5 1 0.5 0.4) // 4 + (0 0 $ol 0 0 0 1 0.5 0.4) // 5 + ); + + + +planeSpec ( ); + +pairs ( + (0 1 0 1 1 0 ) + (1 2 0 1 1 0 ) + (2 3 0 1 1 0 ) + (3 4 0 1 1 0 ) + (4 5 0 1 1 0 ) + ); + +freePlanes ( 0 3); + +// ---- MESH ---- +mesh (10 25 100 2 ); + +// ====== switch ===== +// --- OPTIONAL 2.5; + +switcher ( 1 // vortices + 1 // blocks + 1 // edges circumferential + 1 // edges longitudial + 1 // boundary + 0 // mergePatchPairs + ); // default (1 1 1 1 1 1) + +// ---- codeStream for pipeline Mesh generator, v.2.4, 29.11.2020 --- + + +#include "codeStreamPTB"; + + diff --git a/Simulation_setup_and_evluation/BaseCase/system/blockMeshDicte b/Simulation_setup_and_evluation/BaseCase/system/blockMeshDicte new file mode 100644 index 0000000..b40f35d --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/blockMeshDicte @@ -0,0 +1,67 @@ + +/*--------------------------------*- C++ -*----------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | Website: https://openfoam.org + \\ / A nd | Version: 7 + \\/ M anipulation | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// --------- User define variables ------ + +PI 3.14159265358979323846; +scale 1; +radiuS 1; + +L 4.5; +D 1; +A 0.5; //90 deg. +L3 #calc " $L / -3.33 " ; + +planes (( 0 0 0 0 0 0 1.00 0.5 0.45 ) // PL-00 + ( 0 0 $L 0 0 0 0.30 0.5 0.45 ) // PL-01 + ( 0 0 $L3 0 0 0 0.35 0.5 0.45 ) // PL-02 + ( 0 0 $L3 0 0 0 0.95 0.5 0.45 ) // PL-03 + ); + +defaultSystem 0; + +planeSpec ( + ); + +pairs ( + (0 1 0 ) + ); + +nozzle ( 0 3 2 1 ); + +freePlanes ( 0 3); + +// ---- MESH ---- +mesh (16 20 50 4 ); + +// ====== switch ===== +// --- OPTIONAL 2.5; + +switcher ( 1 // vortices + 1 // blocks + 1 // edges circumferential + 1 // edges longitudial + 1 // boundary + 0 // mergePatchPairs + ); // default (1 1 1 1 1 1) + +// ---- codeStream for pipeline Mesh generator, v.2.4, 29.11.2020 --- + + +#include "codeStreamPTB"; + + diff --git a/Simulation_setup_and_evluation/BaseCase/system/centerPlane b/Simulation_setup_and_evluation/BaseCase/system/centerPlane new file mode 100644 index 0000000..fbf1b82 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/centerPlane @@ -0,0 +1,390 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ + + +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object centerPlane; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +probesTime + { + libs ( "libsampling.so" ); + type probes; + name pointsLine; + writeControl adjustableRunTime; + writeInterval $monitor_1; + fields + ( alpha.water p U k omega ); + // (orientation[0] radious[1] y[2] x[3]) + plane ((2 0.0385 0 -2.190) // Pressure P1 vertical (xy) 1-50 + (2 0.0385 0 -6.055) // Pressure P2 vertical (xy) 51-100 + (2 0.0385 0 -9.920) // Pressure P3 vertical (xy) 101-150 + (2 0.0385 2.605 0.427) // Pressure P4 vertical (xy) 151-200 + (1 0.0385 0.251 0 ) // Pressure P5 horizontal (xz) 201-250 + (1 0.0385 1.577 0 ) // Pressure Pu horizontal (xz) 251-300 + (1 0.0232 1.7235 0 ) // Pressure Pt horizontal (xz) 301-350 ventury + (1 0.0385 1.904 0 ) // Pressure Pd horizontal (xz) 351-400 + (2 0.0385 0 -3.190) // ECT z1 vertical (xy) 401-450 + (2 0.0385 0 -4.685) // ECT z2 vertical (xy) 451-500 + (2 0.0385 0 -3.937) // ECT zm vertical (xy) 501-550 + (2 0.0385 0 -1.390) // WMS horizontal vertical (xy) 551-600 + (2 0.0385 1.509 0 ) // WMS vertical y1 horizontal (xz) 601-650 + (2 0.0385 1.539 0 ));// WMS vertical y2 horizontal (xz) 651-700 + pointNo 50; + shift 0.0001; + + probeLocations + #codeStream + { + codeInclude + #{ + #include "pointField.H" + #include "tensor2D.H" + #}; + code + #{ + os << " ( " << nl; + Field<tensor2D> plane = Field<tensor2D>(dict.lookup("plane")); + scalar pointNo = readScalar(dict.lookup("pointNo")); + scalar shift = readScalar(dict.lookup("shift")); + point pointProbe(point(0,0,0)); + for (label p = 0; p < plane.size(); p++) + { + scalar dr = 2.0*(plane[p][1] - shift)/(pointNo - 1); + scalar r = plane[p][1] - shift ; + label a=0,b=0; + if (plane[p][0] == 2) {a = 1; b = 0;} + if (plane[p][0] == 1) {a = 0; b =-1;} + scalar y = plane[p][2] - r*a; + scalar x = plane[p][3] - r*b; + for (label i=0; i < pointNo ; i++) + { + pointProbe = point(x, y , -shift ); + os << pointProbe << nl; // Info << pointProbe << nl; + y = y + dr*a; x = x + dr*b; + } + } + os << " ); " << nl; + #}; + }; + } + + +__surfaceFieldValue +{ + type surfaceFieldValue; + writeControl adjustableRunTime; + writeInterval $monitor_1; + libs ("libfieldFunctionObjects.so"); + writeFields $enabled_1; + surfaceFormat vtk; + fields $field_1; + regionType sampledSurface; + operation areaAverage; + interpolationScheme cellPoint; + scaleFactor 1; + writeArea no; +} + + +__sampledSur +{ + type cuttingPlane; + planeType pointAndNormal; + source cells; + interpolate true; + bounds (-15 -1 -1) (0.5 5 1); + fields $field_1; +} + +__sampledSurNoBounds +{ + type cuttingPlane; + planeType pointAndNormal; + source cells; + interpolate true; + fields $field_1; +} + +P_Son +{ + ${__surfaceFieldValue} + name P1; + sampledSurfaceDict + { + ${__sampledSurNoBounds} + pointAndNormalDict { + point ( 1 0 $zShift ); // 0.9776 + normal (-1 0 0 ); // horizontal + } + }; +} + +P1 +{ + ${__surfaceFieldValue} + name P1; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (-2.190 0 $zShift ); + normal (-1 0 0 ); // horizontal + } + }; +} + +P2 +{ + ${__surfaceFieldValue} + name P2; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (-6.055 0 $zShift ); + normal (-1 0 0 ); // horizontal + } + }; +} + +P3 +{ + ${__surfaceFieldValue} + name P3; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (-9.920 0 $zShift ); + normal (-1 0 0 ); // horizontal + } + }; +} + +P4 +{ + ${__surfaceFieldValue} + name P4; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point ( 0.427 2.605 $zShift ); + normal (-1 0 0 ); // horizontal + } + }; +} + +P5 +{ + ${__surfaceFieldValue} + name P5; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (0 0.251 $zShift ); + normal (0 -1 0 ); // vertical + } + }; +} + +Pu +{ + ${__surfaceFieldValue} + name Pu; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (0 1.577 $zShift ); + normal (0 -1 0 ); // vertical + } + }; +} + +Pt +{ + ${__surfaceFieldValue} + name Pt; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (0 1.7235 $zShift ); + normal (0 -1 0 ); // vertical + } + }; +} + +Pd +{ + ${__surfaceFieldValue} + name Pd; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (0 1.904 $zShift ); + normal (0 -1 0 ); // vertical + } + }; +} + +ECT_z1 +{ + ${__surfaceFieldValue} + name ECT_z1; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (-3.190 0 $zShift ); + normal (-1 0 0 ); // horizontal + } + }; +} + +ECT_z2 +{ + ${__surfaceFieldValue} + name ECT_z2; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (-4.685 0 $zShift ); + normal (-1 0 0 ); // horizontal + } + }; +} + +ECT_zm +{ + ${__surfaceFieldValue} + name ECT_zm; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (-3.937 0 $zShift ); + normal (-1 0 0 ); // horizontal + } + }; +} + +WMS_hor +{ + ${__surfaceFieldValue} + name WMS_hor; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (-1.390 0 $zShift ); + normal (-1 0 0 ); // horizontal + } + }; +} + +WMS_ver_y1 +{ + ${__surfaceFieldValue} + name WMS_ver_y1; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (0 1.509 $zShift ); + normal (0 -1 0 ); // vertical + } + }; +} + +WMS_ver_y2 +{ + ${__surfaceFieldValue} + name WMS_ver_y2; + sampledSurfaceDict + { + ${__sampledSur} + pointAndNormalDict { + point (0 1.539 $zShift ); + normal (0 -1 0 ); // vertical + } + }; +} + +symmetryPlane +{ + type surfaces; + libs ("libsampling.so"); + writeControl adjustableRunTime; + writeInterval $monitor_2; + enabled $enabled_2; + surfaceFormat vtk; + fields $field_2; // ( alpha.water p U k omega); + + interpolationScheme cellPoint; + + surfaces + ( + yzvtk + { + type cuttingPlane; + planeType pointAndNormal; + pointAndNormalDict + { + point (0.0 0.0 $zShift); + normal (0.0 0.0 1); + } + interpolate true; + } + ); +} + +patch + { + type surfaces; + surfaceFormat boundaryData; + writeControl adjustableRunTime; + writeInterval $monitor_3; + interpolationScheme cell; + surfaceFormat vtk; + enabled $enabled_3; + surfaceFormat vtk; + fields $field_3; // ( alpha.water p U k omega); + surfaces + ( + symmetry + { + type patch; + patches (symmetry); + interpolate true; + } + walls + { + type patch; + patches ("wall.*"); + interpolate true; + } + ); + } + + +#remove "__.*" + + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/system/codeStreamPTB b/Simulation_setup_and_evluation/BaseCase/system/codeStreamPTB new file mode 100644 index 0000000..984f3ab --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/codeStreamPTB @@ -0,0 +1,120 @@ + +/*--------------------------------*- C++ -*----------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | Website: https://openfoam.org + \\ / A nd | Version: 7 + \\/ M anipulation | +\*---------------------------------------------------------------------------*/ + +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object blockMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// --- SYSTEM VARIABLES --- +// 0 1 2 3 4 5 6 7 8 +pointPAR ( + (7 0 0 0 0 1 0 1 -1) // 0 + (8 0 1 0 0 1 1 1 -1) // 1 + (7 0 1 0 0 1 1 -1 -1) // 2 + (8 0 1 1 0 0 1 -1 -1) // 3 + (7 0 1 1 0 0 1 -1 -1) // 4 + (8 0 0 1 1 0 -1 -1 -1) // 5 + (7 0 0 1 1 1 -1 -1 -1) // 6 + (8 0 0 0 1 1 -1 1 -1) // 7 + (6 0 0 0 1 1 -1 1 -1) // 8 + (6 0 1 0 0 1 1 1 -1) // 9 + (6 0 1 0 0 1 1 1 1) //10 + (6 0 1 1 0 0 1 -1 -1) //11 + (6 0 1 1 0 0 1 -1 -1) //12 + (6 0 0 1 1 0 -1 -1 -1) //13 + (6 0 0 1 1 0 -1 -1 -1) //14 + (6 0 0 0 1 1 -1 1 -1) //15 + (6 0 0 0 1 1 -1 1 -1) //16 + ); + +blockUsed (0 1 2 3 4 5 6 7 8 9 10 11 ); + +blockREF ( + (0 1 2 3) + (0 3 4 5) + (0 5 6 7) + (0 7 8 1) + (1 9 10 2) + (2 10 11 3) + (3 11 12 4) + (4 12 13 5) + (5 13 14 6) + (6 14 15 7) + (7 15 16 8) + (8 16 9 1) + ); + +deviation ( + (0 1 1 1 ) + (11 1 2 -1 ) + (12 3 1 1 ) + (13 1 4 1 ) + (14 5 1 -1 ) + (15 1 6 -1 ) + (16 1 6 1 ) + (17 7 1 -1 ) + (18 7 1 1 ) + (21 1 2 1 ) + (22 3 1 -1 ) + (23 1 4 -1 ) + (24 5 1 1 ) + ); + +R0 ( + (1 0) (0 1) (0 1) (-1 0) (-1 0) (0 -1) (0 -1) (1 0) + (0 0) (0 0) (0 0) ( 0 0) ( 0 0) (0 0) (0 0) (0 0) + ); + +// --- blockMesh main body --- +vertices +#codeStream +{ + codeInclude #{#include "functionsPTB.H" #}; + codeOptions #{-I$(FOAM_CASE)/system #}; + code #{generator genPTB; genPTB.VerticeS(os,dict);#}; +}; + +blocks +#codeStream +{ + codeInclude #{#include "functionsPTB.H" #}; + codeOptions #{-I$(FOAM_CASE)/system #}; + code #{generator genPTB; genPTB.BlockS(os,dict); #}; +}; + +edges +#codeStream +{ + codeInclude #{#include "functionsPTB.H" #}; + codeOptions #{-I$(FOAM_CASE)/system #}; + code #{generator genPTB; genPTB.EdgeS(os,dict); #}; +}; + +boundary +#codeStream +{ + codeInclude #{#include "functionsPTB.H" #}; + codeOptions #{-I$(FOAM_CASE)/system #}; + code #{generator genPTB; genPTB.BoundarY(os,dict); #}; +}; + +mergePatchPairs +#codeStream +{ + codeInclude #{#include "functionsPTB.H" #}; + codeOptions #{-I$(FOAM_CASE)/system #}; + code #{generator genPTB; genPTB.MergeP(os,dict); #}; +}; + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/system/controlDict b/Simulation_setup_and_evluation/BaseCase/system/controlDict new file mode 100644 index 0000000..7f46ab0 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/controlDict @@ -0,0 +1,49 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1912 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application simpleFoam; + +startFrom firstTime; //latestTime; + +startTime 0; + +stopAt endTime; + + endTime 9000; + +deltaT 1; + +// writeControl timeStep; + +writeInterval 1000; + +purgeWrite 1; + +writeFormat ascii; + +writePrecision 8; + +writeCompression off; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable true; + + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/system/controlDict.inter b/Simulation_setup_and_evluation/BaseCase/system/controlDict.inter new file mode 100644 index 0000000..a246ade --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/controlDict.inter @@ -0,0 +1,88 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object controlDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +application interFoam; + +startFrom latestTime; + +startTime 0; + +stopAt endTime; + +endTime 10; + +deltaT 0.02; + +writeControl adjustableRunTime; + +writeInterval 10; + +purgeWrite 0; + +writeFormat ascii; + +writePrecision 6; + +writeCompression on; + +timeFormat general; + +timePrecision 6; + +runTimeModifiable yes; + +adjustTimeStep yes;////no;// yes; + +maxCo 6; +maxAlphaCo 6; +maxDeltaT 1; + +// ----- fileds ------ + +fieldsAll ( + grad(p) grad(p_rgh) + p pMean pPrime2Mean + p_rgh p_rghMean p_rghPrime2Mean + U UMean UPrime2Mean + k kMean kPrime2Mean + nut nutMean nutPrime2Mean + omega omegaMean omegaPrime2Mean + vorticity Lambda2 Q + alpha.water alpha.waterMean alpha.waterPrime2Mean + ); + +fieldsMain ( + grad(p) + grad(p_rgh) + p + p_rgh + U + k + nut + omega + vorticity + Lambda2 + Q + alpha.water + ); + +functions +{ +// #include "centerPlaneEx" // center-plane monitoring +} + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/system/decomposeParDict b/Simulation_setup_and_evluation/BaseCase/system/decomposeParDict new file mode 100644 index 0000000..343dbc8 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/decomposeParDict @@ -0,0 +1,22 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object decomposeParDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +numberOfSubdomains 28; + +method scotch; + + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/system/functionsPTB.H b/Simulation_setup_and_evluation/BaseCase/system/functionsPTB.H new file mode 100644 index 0000000..c31fed5 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/functionsPTB.H @@ -0,0 +1,669 @@ +#include "Vector2D.H" +#include "tensor2D.H" +#include "pointField.H" +#include "IOstream.H" +#include "codeStream.H" +#include "functionEntry.H" +#include <math.h> +#include "IOmanip.H" +#include "OFstream.H" + +//#include <vector2D> + +using namespace Foam; + + +class generator{ +public: +symmTensor switcher; // 6 +label noPlanes, noPoints, noPointsA, noPairs, noBlocks, blockOnPlane;// 1 int +scalar radiuS, scale; // 1 +pointField pREF, pointsROT, cells, points, pointsA, pAUX, N, T, M, I, U, uniform, pointsC;// n * 3 +scalarField blockUsed, mesh, BL, BCa, BCb, freePlanes, usedPlane, nozzle; // n * 1 +labelField planeS; // n * 1 +Field<tensor2D> blockREF, deviation ; // n * 2 +Field<vector2D> R0; +symmTensorField BB, pairs; // n * 4 +tensorField planes, pointPAR, planesC; // n * 9 +# define PI 3.14159265358979323846264338327950288 +label NO=17; // no of points on plane +label NOAUX = 145; +word fName; +tensor tRef; +autoPtr<OFstream> LOGPTB; + +// --- generator member functions ---- + + // --- aditional functions --- + void SwitcheR(const dictionary& dict) + { + switcher =symmTensor(dict.lookupOrDefault("switcher", symmTensor(1,1,1,1,1,1))); + } + void NozzlE(const dictionary& dict) + { + nozzle = scalarField(dict.lookupOrDefault("nozzle", scalarField(0,0))); + } + + void LookuP(const dictionary& dict) + { + planes = tensorField(dict.lookup("planes")); + radiuS = readScalar(dict.lookup("radiuS")); + scale = readScalar(dict.lookup("scale")); + pointPAR = tensorField(dict.lookup("pointPAR")); + noPlanes = planes.size(); + noPoints = planes.size() * NO; + noPointsA = planes.size() * NOAUX; + points = pointField(noPoints, point(0,0,0)); + points = pointField(noPoints, point(0,0,0)); + points = pointField(noPoints, point(0,0,0)); + pointsA = pointField(noPointsA, point(0,0,0)); + pointsROT = pointField(noPoints, point(0,0,0)); + Field<vector2D> planeSpec = Field<vector2D>(dict.lookup("planeSpec")); + scalar defaultSystem(dict.lookupOrDefault<scalar>("defaultSystem", 0) ); + + planeS = labelField(noPlanes, label(defaultSystem)); + changeDef(planeS, planeSpec ); + pREF = pointField(NO, point(0,0,0)); + pAUX = pointField(NOAUX,point(0,0,0)); + planeSET(); + pairs = symmTensorField(dict.lookup("pairs")); + noPairs = pairs.size(); + N = pointField(noPlanes, point(0,0,0)); // normal unit vectro + T = pointField(noPlanes, point(0,0,0)); // tangential unit vector + M = pointField(noPairs, point(0,0,0)); // vector of pair + I = pointField(noPairs, point(0,0,0)); // angel + magnitud M + U = pointField(noPairs, point(0,0,0)); // angel + magnitud M + pointsC = pointField(NO*noPairs,point(9,9,9)); // points on midle planes + planesC = tensorField(noPairs, tensor(0,0,0,0,0,0,0,0,0)); // planes on the midle + blockREF = Field<tensor2D>(dict.lookup("blockREF")); + R0 = Field<vector2D>(dict.lookup("R0")); + mesh = scalarField(dict.lookup("mesh")); + blockUsed = scalarField(dict.lookup("blockUsed")); + blockOnPlane = 12; + deviation = Field<tensor2D>(dict.lookup("deviation")); + BL = scalarField(noPlanes * NO, scalar(0)); + for (label i=0 ; i < BL.size(); i++){BL[i] = i;} + BCa = scalarField(noPlanes * NO, scalar(0)); + BCb = scalarField(noPlanes * NO, scalar(0)); + freePlanes = scalarField(dict.lookup("freePlanes")); + usedPlane = scalarField(2*noPairs, scalar(0)); + LOGPTB.reset(new OFstream("log_PTB")); LOGPTB() << "# ====== logPTB ======" << endl; + label x =0; + for (label i=0; i < noPairs ; i++ ) + { + usedPlane[x] = pairs[i][0]; + usedPlane[x+1] = pairs[i][1]; + x=x+2; + } + // bool XXX = planeSpec.dict.isDict(); + } + + void checkDup() + { + scalar ERR = 0.001; + for (label i=0 ; i < BL.size() ; i++) + { + for (label j=i+1 ; j < BL.size(); j++) + { + scalar D = mag(points[BL[i]] - points[BL[j]]); + if (D < ERR ){ BL[j] = BL[i]; } + } + } + } + + void changeDef(labelField& A, Field<vector2D> B) + { + for (label i=0; i < B.size(); i++ )A[B[i][0]] = B[i][1]; + } + + void emptyCode(Ostream& os, word empty="function was bypassed") + { + INFO(empty); + os << " ( " << nl << " ) " << nl; + } + + + void forGnuplotLine() + { + autoPtr<OFstream> outputFilePtr; + outputFilePtr.reset(new OFstream("logGNU_3")); + outputFilePtr() << "# The list of planes central point, grouped according pairs, including middle plane" << endl; + + for (label pa=0; pa < noPairs; pa++) + { + label a = pairs[pa][0], b = pairs[pa][1]; + outputFilePtr() << "\"" << "(" << a << " " << b << ") ... \" " << nl; + outputFilePtr() << planes[a][0] << " " << planes[a][1] << " " << planes[a][2] << nl; + outputFilePtr() << planesC[pa][0] << " " << planesC[pa][1] << " " << planesC[pa][2] << nl; + outputFilePtr() << planes[b][0] << " " << planes[b][1] << " " << planes[b][2] << nl; + outputFilePtr() << nl; + outputFilePtr() << nl; + } + } + + void forGnuplotPoint() + { + autoPtr<OFstream> outputFilePoint; + outputFilePoint.reset(new OFstream("logGNU_2")); + outputFilePoint() << "# The list of points" << endl; + + for (label p=0; p < noPlanes; p++) + { + outputFilePoint() << "Plane:" << p << nl; + for (label i =9; i < NO; i++) + { + outputFilePoint() << points[i+NO*p][0] << "\t" << points[i+NO*p][1] << "\t" << points[i+NO*p][2] << nl; + } + outputFilePoint() << points[9+NO*p][0] << "\t" << points[9+NO*p][1] << "\t" << points[9+NO*p][2] << nl; + outputFilePoint() << nl; + outputFilePoint() << nl; + } + } + + + void pointSET(label pl, scalar S=0.25) + { + label k1,k2,k3, PLA; + PLA = planeS[pl]; + if ( PLA == 0 ){k1=1 ; k2=1; k3= 1; } + if ( PLA == 11 || PLA == 31 ){k1=1 ; k2=2; k3=-1; } + if ( PLA == 12 || PLA == 32 ){k1=3 ; k2=1; k3= 1; } + if ( PLA == 13 || PLA == 33 ){k1=1 ; k2=4; k3= 1; } + if ( PLA == 14 || PLA == 34 ){k1=5 ; k2=1; k3=-1; } + if ( PLA == 15 || PLA == 35 ){k1=1 ; k2=6; k3=-1; } + if ( PLA == 25 || PLA == 45 ){k1=1 ; k2=6; k3= 1; } + if ( PLA == 16 || PLA == 36 ){k1=7 ; k2=1; k3=-1; } + if ( PLA == 26 || PLA == 46 ){k1=7 ; k2=1; k3= 1; } + if ( PLA == 21 || PLA == 41 ){k1=1 ; k2=2; k3= 1; } + if ( PLA == 22 || PLA == 42 ){k1=3 ; k2=1; k3=-1; } + if ( PLA == 23 || PLA == 43 ){k1=1 ; k2=4; k3=-1; } + if ( PLA == 24 || PLA == 44 ){k1=5 ; k2=1; k3= 1; } + // ---- main reference list of points (17 per planes) + for (label i=0; i < NO-1 ; i++ ) + { + scalar R = planes[pl][pointPAR[i][0]]; + if ( i==1 || i==3 || i==5 || i==7 ){ R = R * std::pow(2.0,0.5);} + pREF[i+1] = point(std::cos(i*S*PI)*R, + std::sin(i*S*PI)*R, + (std::cos(i*S*PI)*R*pointPAR[i][k1] + +std::sin(i*S*PI)*R*pointPAR[i][k2])*k3); + } + if ( 1 > 0 ) //fName == "EdgeS") + { + // ---- auxilitary reference list of points ( per planes) + label po = 1; + for (label q = 0 ; q < 16; q++) + { + for ( scalar a = 0 ; a < 45 ; a=a+5) + { + scalar Alfa; + scalar R; + if (q < 8) + { + R = (pow(planes[pl][7]-planes[pl][8],2)+pow(planes[pl][8],2))/ + (planes[pl][7]-planes[pl][8]) * 0.5; + scalar RA = std::asin(planes[pl][8]/R)*1.25; + //Alfa = q * 45 + a * RA ; + if ( q % 2 == 0) {Alfa = q*45 + a*RA;} + if ( q % 2 != 0) {Alfa = (q+1)*45 + RA*(a-45);} + } + if (q >= 8) + { + Alfa = q * 45 + a; + R = planes[pl][pointPAR[q][0]]; + } + pAUX[po] = point(std::cos(Alfa*PI/180)*R + R0[q][0]*(planes[pl][7]-R), + std::sin(Alfa*PI/180)*R + R0[q][1]*(planes[pl][7]-R), + (std::cos(Alfa*PI/180)*R*pointPAR[q+1][k1] + +std::sin(Alfa*PI/180)*R*pointPAR[q+1][k2])*k3 ); + // +R0[q][0]*(planes[pl][7]-R) + R0[q][0]*(planes[pl][7]-R)); + po++; + } + } + } + } + + void planeSET() + { + for (label i =0 ; i < noPlanes; i++) + { + planes[i][6] = planes[i][6]*radiuS; + planes[i][7] = planes[i][6]*planes[i][7]; + planes[i][8] = planes[i][6]*planes[i][8]; + } + for (label i =1 ; i < noPlanes; i++) + { + if ( planeS[i] < 29 && planeS[i] != 3){for (label j=0; j <6; j++) + {planes[i][j]= planes[i][j] + planes[i-1][j];}} + } + } + + scalar SIN(label i,label j, label m=1) + { + if (m==1) {return std::sin( planes[i][j]*PI);} + else {return std::sin(planesC[i][j]*PI);} + } + + scalar COS(label i,label j, label m=1) + { + if (m==1) {return std::cos( planes[i][j]*PI);} + else {return std::cos(planesC[i][j]*PI);} + } + + void tRefGEN(label i, label m) + { + tRef = tensor( COS(i,4,m)*COS(i,5,m), COS(i,4,m)*SIN(i,5,m) , -1*SIN(i,4,m), + SIN(i,3,m)*SIN(i,4,m)*COS(i,5,m)-COS(i,3,m)*SIN(i,5,m) , + COS(i,3,m)*COS(i,5,m)+SIN(i,3,m)*SIN(i,4,m)*SIN(i,5,m) , SIN(i,3,m)*COS(i,4,m), + COS(i,3,m)*SIN(i,4,m)*COS(i,5,m)+SIN(i,3,m)*SIN(i,5,m) , + COS(i,3,m)*SIN(i,4,m)*SIN(i,5,m)-SIN(i,3,m)*COS(i,5,m) , COS(i,3,m)*COS(i,4,m)); + } + + void pointGen(word fName) + { + label po =0; + label poA=0; + //if ( fName == "VerticeS" ) + //{ + //Info << "PTB info: plane settings, "; + //for (label i; i < planeS.size() ; i++) {Info << planeS[i] << " , ";} + //Info << nl; + //} + if ( fName == "VerticeS" ) + { + Info << "PTB info: no.: specification of plane" + << "\t(plane)\t\t:(transformation tensor)\t :(M vector):(T vector)" << nl; + // LOGPTB << "No. & specification of plane" + // << "\t(plane)\t\t:(transformation tensor)\t :(M vector):(T vector)" << nl; + } + for (label i=0 ; i < noPlanes; i++ ) + { + tRefGEN(i,1); + // Info << "PTB info tREF for i (planes): " << i << "\t" << tRef << nl; + // for (label i=0; i < 9; i++){if (abs(tRef[i]) < 1e-12){tRef[i]=0;}} + T[i] = tRef & point(0,1,0); + N[i] = tRef & point(0,0,1); + if ( fName == "VerticeS" ) + { + Info << "PTB info : " << i << " : " << planeS[i] << " : " + << "\t" << planes[i] << "\t" << ":" + << tRef << "\t" << ":" << N[i] << ":" << T[i] << nl; + } + pointSET(i); + for (label p=0; p < NO; p++ ) // --- main points on plane --- + { + points[po] = (tRef & pREF[p]) + point(planes[i][0],planes[i][1],planes[i][2]); + po++ ; + } + for (label a=0; a < NOAUX; a++ ) // --- auxility points on plane --- + { + pointsA[poA] = (tRef & pAUX[a]) + point(planes[i][0],planes[i][1],planes[i][2]); + poA++ ; + } + } + label poC=0; + if ( fName == "elbow" ) + { + Info << "PTB info : pair " << "\t" << "Middle plane" << "\t\t\t\t" << "(A, B, R) " + << "\t\t" << "check for elbow" << nl; + } + for (label p=0; p < noPairs; p++) + { + word Z = "Angles OK, elbow "; + scalar PA = pairs[p][0]; + scalar PB = pairs[p][1]; + point pointA = point(planes[PA][0],planes[PA][1],planes[PA][2] ); + point pointB = point(planes[PB][0],planes[PB][1],planes[PB][2] ); + point angleA = point(planes[PA][3],planes[PA][4],planes[PA][5] ); + point angleB = point(planes[PB][3],planes[PB][4],planes[PB][5] ); + M[p] = (pointB - pointA); + // scalar Mm = mag(M[p]); + scalar BETA = std::acos((M[p] & N[PA])/(mag(M[p])*mag(N[PA])))/PI; + scalar BETB = std::acos((M[p] & N[PB])/(mag(M[p])*mag(N[PB])))/PI; + U[p] = angleB - angleA; + scalar R(0); + if (BETA != 0 && BETB != 0 ){R = mag(M[p])/2/std::sin(PI*BETA);} + I[p] = point(BETA*2,BETB*2,R); + point PO = normalised((M[p] ^ N[PA]) ^ M[p]); + PO = PO * (R*(1-std::cos(PI*BETA))); + planesC[p] = tensor(planes[PA][0] + M[p][0]/2 + PO[0], + planes[PA][1] + M[p][1]/2 + PO[1], + planes[PA][2] + M[p][2]/2 + PO[2], + 0.5*(planes[PA][3] + planes[PB][3]), + 0.5*(planes[PA][4] + planes[PB][4]), + 0.5*(planes[PA][5] + planes[PB][5]), + planes[PA][6], + planes[PA][7], + planes[PA][8]); + pointSET(PA); + tRefGEN(p,2); + if ( fName == "elbow" || fName == "VerticeS" ) + { + + if (abs(BETA-BETB) > 0.01) Z = "Warning, inconsistent angles, A != B !? "; + if (BETA == BETB && BETA == 0) Z = "Angles OK, linear "; + Info << "PTB info : " << pairs[p] << "\t" << planesC[p] << "\t" << I[p] << "\t"<< Z << nl; + } + for (label i=0; i < NO; i++ ) // --- main points on plane --- + { + pointsC[poC] = (tRef & pREF[i]) + point(planesC[p][0],planesC[p][1],planesC[p][2]); + poC++ ; + } + } + } + + bool CheckE(label A, label B) + { + for (label i=0 ; i < BCa.size() ; i++) + { + if (BCa[i] == A && BCb[i] == B){ return false;} + if (BCa[i] == B && BCb[i] == A){ return false;} + } + return true; + } + + bool checkP(label A) + { + for (label i=0 ; i < usedPlane.size() ; i++) + { + if (usedPlane[i] == A ){ return true;} + } + return false; + } + + label checkB(label A) + { label P=0; + for (label i=0 ; i < usedPlane.size() ; i++) + { + if (usedPlane[i] == A ){P++;} + } + return P; + } + + void INFO(word WORD) + { + Info << "PTB info : " << WORD << nl; + } + + // ====================== ENTITY GENERATORS =========== + + // --- VORTICES GENERATOR --- + void VerticeS(Ostream& os, const dictionary& dict) + { + INFO("MeshGenerator v.2.5.2, 10/06/2021, available on v.2012 "); + fName = __FUNCTION__; + SwitcheR(dict); + if (switcher[0] == 0){emptyCode(os, "vertices <OFF>");} + else + { + INFO("vertices <ON>"); + LookuP(dict); + pointGen(fName); + forGnuplotLine(); + system("gnuplot -e \"set grid; stats 'logGNU_3' u 1:2 nooutput;\ + set terminal png size 1600,1200;\ + set output 'graphGNU_3.png';blocks = STATS_blocks ;\ + set key autotitle columnheader;\ + set multiplot layout 2,2 columnsfirst;\ + set xlabel 'Z axis'; set ylabel 'Y axis';\ + plot for[i=0:blocks-1] 'logGNU_3' i i u 3:2 notitle w lines lw 10;\ + set xlabel 'Z axis'; set ylabel 'X axis';\ + plot for[i=0:blocks-1] 'logGNU_3' i i u 3:1 notitle w lines lw 10;\ + set xlabel 'X axis'; set ylabel 'Y axis';\ + plot for[i=0:blocks-1] 'logGNU_3' i i u 1:2 w lines lw 10;\ + set xlabel 'X'; set ylabel 'Z'; set zlabel 'Y';\ + splot for[i=0:blocks-1] 'logGNU_3' i i u 1:3:2 notitle w lines lw 10\" "); + + forGnuplotPoint(); + system("gnuplot -e \"set grid; stats 'logGNU_2' u 1:2 nooutput;\ + set terminal png size 1600,1200;\ + set output 'graphGNU_2.png';blocks = STATS_blocks ;\ + set key autotitle columnheader;\ + set style fill solid 1.00 border lt -1;\ + set multiplot layout 2,2 columnsfirst;\ + set xlabel 'Z axis'; set ylabel 'Y axis';\ + plot for[i=0:blocks-1] 'logGNU_2' i i u 3:2 notitle w lines lw 10;\ + set xlabel 'Z axis'; set ylabel 'X axis';\ + plot for[i=0:blocks-1] 'logGNU_2' i i u 3:1 notitle w lines lw 10;\ + set xlabel 'X axis'; set ylabel 'Y axis';\ + plot for[i=0:blocks-1] 'logGNU_2' i i u 1:2 w lines lw 10;\ + set xlabel 'X'; set ylabel 'Z'; set zlabel 'Y';\ + splot for[i=0:blocks-1] 'logGNU_2' i i u 1:3:2 notitle w lines lw 10\" "); + os << points; + } + } + + // --- BLOCKS GENERATOR --- + void BlockS(Ostream& os, const dictionary& dict) + { + SwitcheR(dict); + fName = __FUNCTION__; + if (switcher[1] == 0){emptyCode(os, "blocks <OFF>");} + else + { + INFO("block <ON>"); + LookuP(dict); + pointGen(fName); + checkDup(); + os << " ( " << nl; + noBlocks = noPairs * 12; + tensorField blocks = tensorField(noBlocks, tensor(0,0,0,0,0,0,0,0,0)); + pointField distribution = pointField(noBlocks, point(0,0,0)); + pointField cells = pointField(noBlocks, point(0,0,0)); + Info << "PTB info : Pairs : " ; + for (label p=0; p < noPairs; p++) + { + Info << pairs[p] ; + point point1 = point(planes[pairs[p][0]][0],planes[pairs[p][0]][1],planes[pairs[p][0]][2] ); + point point2 = point(planes[pairs[p][1]][0],planes[pairs[p][1]][1],planes[pairs[p][1]][2] ); + scalar L = mag( point1 - point2)/scale; + label Lmesh = round(mesh[2]*L*scale+1); + if ( pairs[p][3] != 0 ) {Lmesh = round(Lmesh * abs(pairs[p][3])); } + if ( mesh[2] > 1000 ) {Lmesh = mesh[2] - 1000;} + for (label b= 0 ; b < 12 ; b++) + { + label Bl = p * blockOnPlane + b; + blocks[Bl] = tensor( + BL[ blockREF[label(blockUsed[b])][0] + pairs[p][0]*NO] , + BL[ blockREF[label(blockUsed[b])][1] + pairs[p][0]*NO] , + BL[ blockREF[label(blockUsed[b])][2] + pairs[p][0]*NO] , + BL[ blockREF[label(blockUsed[b])][3] + pairs[p][0]*NO] , + BL[ blockREF[label(blockUsed[b])][0] + pairs[p][1]*NO] , + BL[ blockREF[label(blockUsed[b])][1] + pairs[p][1]*NO] , + BL[ blockREF[label(blockUsed[b])][2] + pairs[p][1]*NO] , + BL[ blockREF[label(blockUsed[b])][3] + pairs[p][1]*NO] , + 0 ); + if (blockUsed[b] < 4 ) + {distribution[Bl] = point(1, 1 , 1); cells[Bl] = point(mesh[0],mesh[0], Lmesh );} + else {distribution[Bl] = point(1/mesh[3],1,1); cells[Bl] = point(mesh[1],mesh[0], Lmesh );} + if ( pairs[p][4] != 0 ) { distribution[Bl][2] = abs(pairs[p][4]); } + os << "hex " << blocks[Bl] << " zone_" << b << " " << cells[Bl] << " simpleGrading " << distribution[Bl] << nl; + } + } + Info << nl; + os << " ) " << nl; + } + } + + // --- EDGE GENERATOR --- + void EdgeS(Ostream& os, const dictionary& dict) + { + os << " ( " << nl; + fName = __FUNCTION__; + SwitcheR(dict); + NozzlE(dict); + if (switcher[2] == 0 || switcher[1] == 0 ){INFO("edge circ <OFF>");} + else + { + INFO("edge circ <ON>"); + LookuP(dict); + pointGen(fName); + checkDup(); + label posBC=0; + for (label p=0 ; p < noPlanes ; p++ ) + { + if (checkP(p) == true) + { + for (label o=9 ; o < 17; o++ ) + { + label A, B; + A = BL[o+p*17]; + if (o < 16 ) B = BL[o+p*17+1] ; + if (o == 16 ) B = BL[9+p*17 ] ; + if ( CheckE(A,B) == true) + { + BCa[posBC] = A; + BCb[posBC] = B; + posBC++; + os << "arc " << A << " " << B << " "; + Info << "arc " << A << " " << B << " "; + for (label s=5; s < 6 ; s++ ) + { + os << pointsA[72 + (o-9)*9 + s + p*145]; + Info << pointsA[72 + (o-9)*9 + s + p*145]; + } + os << " " << nl; + Info << " " << nl; + } + } + } + } + // --- internal circl ---- + for (label p=0 ; p < noPlanes ; p++ ) // p=planes + { + if (checkP(p) == true) + { + if ( planeS[p]==0 || planeS[p]==1 || planeS[p]==3 || planeS[p]==30 ) + { + for (label o=1 ; o < 9; o++ ) // o=point pairs 1-8 + { + label A, B; + A = BL[o+p*17]; + if (o < 8 ) B = BL[o+p*17+1] ; + if (o == 8 ) B = BL[1+p*17 ] ; + if ( CheckE(A,B) == true) + { + BCa[posBC] = A; + BCb[posBC] = B; + posBC++; + os << "polyLine " << A << " " << B << " ( "; + Info << "polyLine " << A << " " << B << " ( "; + for (label s=2; s < 10 ; s++ ) //s=1-9 point betwean A-B + { + os << pointsA[0 + (o-1)*9 + s + p*145]; + Info << pointsA[0 + (o-1)*9 + s + p*145]; + } + os << " ) " << nl; + Info << " ) " << nl; + } + } + } + } + } + } + if (switcher[3] == 0){INFO("edge long <OFF>");} + else + { + //emptyCode(os, "edge long <ON>"); + INFO("edge long <ON>"); + LookuP(dict); + fName = "elbow"; + pointGen(fName); + for (label p=0 ; p < noPairs ; p++ ) + { + if (I[p][2] != 0) + { + label PA = pairs[p][0]; + label PB = pairs[p][1]; + for (label o=0 ; o < NO; o++ ) + { + label A = BL[o+PA*17]; + label B = BL[o+PB*17]; + os << "arc " << A << " " << B << " "; + Info << "arc " << A << " " << B << " "; + os << pointsC[o + p*17]; + Info << pointsC[o + p*17]; + os << " " << nl; + Info << " " << nl; + } + } + } + } + // --- NOZZLE --- + if (nozzle.size() < 2 ){INFO("There is no nozzle definition");Info << "PTB nozzle: " << nozzle << nl ;} + else{ + Info << "PTB: run nozzle, planes : " << nozzle << nl; + + label PA = nozzle[0]; + label PB = nozzle[nozzle.size()-1]; + + for (label o=0 ; o < NO; o++ ) + { + label A = BL[o+PA*NO]; + label B = BL[o+PB*NO]; + //os << "BSpline " << A << " " << B << " ( "; + os << "BSpline " << A << " " << B << " ( "; + for (label n=1; n < nozzle.size()-1 ; n++) + { + os << points[o+NO*nozzle[n]]; + } + os << " ) " << nl; + } + } + os << " ) " << nl; + + } + + // --- BOUNDARY GENERATOR --- + void BoundarY(Ostream& os, const dictionary& dict) + { + fName = __FUNCTION__; + SwitcheR(dict); + if (switcher[4] == 0 || switcher[1] == 0 ){emptyCode(os, "boundary <OFF>");} + else + { + INFO("boundary <ON>"); + LookuP(dict); + pointGen(fName); + checkDup(); + os << " ( " << nl; + Info << "PTB info: B.C. : " ; + label freeNO, bcNO; + if (freePlanes.size() > 0) { freeNO = freePlanes.size();} + else { freeNO = noPlanes;} + for (label F = 0; F < freeNO; F++) + { + if (freePlanes.size() > 0) { bcNO = freePlanes[F];} + else { bcNO = F;} + if ( checkB(bcNO) == 1 ) + { + Info << "P" << bcNO << " , " ; + os << " P" << bcNO << " { type patch; faces ( " << nl; + for (label i =0; i < blockUsed.size() ; i++) + { + os << blockREF[blockUsed[i]] + tensor2D(bcNO,bcNO,bcNO,bcNO)*NO << nl; + } + os << ");} " << nl; + } + } + os << " ) " << nl; + Info << nl; + } + } + + // --- MERGE-PAIRS GENERATOR --- + void MergeP(Ostream& os, const dictionary& dict) + { + SwitcheR(dict); + if (switcher[5] == 0){emptyCode(os, "merge <OFF>");} + else + { + emptyCode(os, "merge <ON>"); + LookuP(dict); + } + } + +}; + + + diff --git a/Simulation_setup_and_evluation/BaseCase/system/fvSchemes b/Simulation_setup_and_evluation/BaseCase/system/fvSchemes new file mode 100644 index 0000000..2580d9b --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/fvSchemes @@ -0,0 +1,80 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1912 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default steadyState; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + default none; + //div(phi,U) Gauss limitedLinearV 1; + div(phi,U) bounded Gauss linear; // Gauss deferredCorrection linear; //bounded Gauss linear; + div(phi,nuTilda) bounded Gauss linearUpwind grad(U); //Gauss deferredCorrection linear; //bounded Gauss linearUpwind grad(U); + // both are needed for RCFD and OF18+ + div((nuEff*dev(T(grad(U))))) Gauss linear; + div((nuEff*dev2(T(grad(U))))) Gauss linear; + // + // other variables for other models: + //div(phi,k) bounded Gauss linearUpwind grad(U); + //div(phi,omega) bounded Gauss linearUpwind grad(U); + //div(phi,k) bounded Gauss linear; + //div(phi,epsilon) bounded Gauss linearUpwind grad(U); + //div(phi,omega) bounded Gauss linear; + //div(phi,nut) bounded Gauss linear; + +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + +snGradSchemes +{ + default corrected; +} +fluxRequired +{ + default no; + p ; +} + +wallDist +{ + method meshWave; +} + + + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/system/fvSchemes.inter b/Simulation_setup_and_evluation/BaseCase/system/fvSchemes.inter new file mode 100644 index 0000000..771023e --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/fvSchemes.inter @@ -0,0 +1,64 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSchemes; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +ddtSchemes +{ + default Euler; +} + +gradSchemes +{ + default Gauss linear; +} + +divSchemes +{ + default none; + + div(rhoPhi,U) Gauss linearUpwind grad(U); + div(phi,alpha) Gauss vanLeer; + div(phirb,alpha) Gauss linear; + + "div\(phi,(k|omega)\)" Gauss upwind; + div(((rho*nuEff)*dev2(T(grad(U))))) Gauss linear; + + div(phi,s) Gauss vanLeer; + div(phirb,s) Gauss linear; +} + +laplacianSchemes +{ + default Gauss linear corrected; +} + +interpolationSchemes +{ + default linear; +} + +snGradSchemes +{ + default corrected; +} + +wallDist +{ + method meshWave; +} + + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/system/fvSolution b/Simulation_setup_and_evluation/BaseCase/system/fvSolution new file mode 100644 index 0000000..f611bdd --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/fvSolution @@ -0,0 +1,98 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1912 | +| \\ / A nd | Website: www.openfoam.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + p + { + solver GAMG; + tolerance 1e-15; + relTol 0.001; + smoother GaussSeidel; + nPreSweeps 1; + nPostSweeps 2; + cacheAgglomeration on; + agglomerator faceAreaPair; + nCellsInCoarsestLevel 1000; + mergeLevels 1; + minIter 2; + maxIter 500; + } + "(U|k|epsilon|omega|nut|nuTilda)" + { + solver PBiCGStab; + preconditioner DILU; + tolerance 1e-20; + relTol 0.001; + // maxIter 50; + } + + +} + +SIMPLE +{ + nNonOrthogonalCorrectors 1; + + residualControl + { + p 1e-10; + U 1e-10; + "(k|epsilon|omega|nut|nuTilda)" 1e-10; + } +} + +PIMPLE +{ + nNonOrthogonalCorrectors 1; + nCorrectors 2; + nOuterCorrectors 20; + turbOnFinalIterOnly false; + + residualControl + { + U + { + tolerance 1e-10; + relTol 0; + } + p + { + tolerance 1e-10; + relTol 0; + } + } +} + +relaxationFactors +{ + fields + { + p 0.3; + //pFinal 1; + } + equations + { + U 0.7; + "k|epsilon|omega|nut" 0.8; + nuTilda 0.7; + // "(U|k|epsilon|omega|nut)Final" 1; + } +} + + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/system/fvSolution.inter b/Simulation_setup_and_evluation/BaseCase/system/fvSolution.inter new file mode 100644 index 0000000..44029eb --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/fvSolution.inter @@ -0,0 +1,96 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + location "system"; + object fvSolution; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +solvers +{ + "alpha.water.*" + { + nAlphaCorr 1; + nAlphaSubCycles 1; + cAlpha 1; + + MULESCorr yes; + nLimiterIter 3; + + solver smoothSolver; + smoother symGaussSeidel; + tolerance 1e-8; + relTol 0; + } + + "pcorr.*" + { + solver PCG; + preconditioner + { + preconditioner GAMG; + tolerance 1e-5; + relTol 0; + smoother GaussSeidel; + } + tolerance 1e-5; + relTol 0; + maxIter 50; + } + + p_rgh + { + solver GAMG; + tolerance 5e-9; + relTol 0.01; + + smoother GaussSeidel; + + + + maxIter 50; + }; + + p_rghFinal + { + $p_rgh; + tolerance 5e-9; + relTol 0; + } + + "(U|k|omega|s).*" + { + solver smoothSolver; + smoother symGaussSeidel; + nSweeps 1; + tolerance 1e-6; + relTol 0.1; + }; +} + +PIMPLE +{ + momentumPredictor no; + nCorrectors 2; + nNonOrthogonalCorrectors 0; +} + +relaxationFactors +{ + equations + { + ".*" 1; + } +} + + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/system/singleGraph b/Simulation_setup_and_evluation/BaseCase/system/singleGraph new file mode 100644 index 0000000..8d40aa5 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/singleGraph @@ -0,0 +1,33 @@ +/*--------------------------------*- C++ -*----------------------------------*\ + ========= | + \\ / F ield | OpenFOAM: The Open Source CFD Toolbox + \\ / O peration | Website: https://openfoam.org + \\ / A nd | Version: 6 + \\/ M anipulation | +------------------------------------------------------------------------------- +Description + Writes graph data for specified fields along a line, specified by start + and end points. + +\*---------------------------------------------------------------------------*/ + +start (0 1e-06 0); +end (1 1e-06 0); +fields (U p); + +// Sampling and I/O settings +#includeEtc "caseDicts/postProcessing/graphs/sampleDict.cfg" + +// Override settings here, e.g. +/* +setConfig +{ + type lineCell; + axis x; // y, z, xyz +} +*/ + +// Must be last entry +#includeEtc "caseDicts/postProcessing/graphs/graph.cfg" + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/BaseCase/system/snappyHexMeshDict b/Simulation_setup_and_evluation/BaseCase/system/snappyHexMeshDict new file mode 100644 index 0000000..4d19133 --- /dev/null +++ b/Simulation_setup_and_evluation/BaseCase/system/snappyHexMeshDict @@ -0,0 +1,324 @@ +/*--------------------------------*- C++ -*----------------------------------*\ +| ========= | | +| \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | +| \\ / O peration | Version: v1812 | +| \\ / A nd | Web: www.OpenFOAM.com | +| \\/ M anipulation | | +\*---------------------------------------------------------------------------*/ +FoamFile +{ + version 2.0; + format ascii; + class dictionary; + object snappyHexMeshDict; +} +// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // + +// Which of the steps to run +castellatedMesh true; +snap true; +addLayers true; + + +// Geometry. Definition of all surfaces. All surfaces are of class +// searchableSurface. +// Surfaces are used +// - to specify refinement for any mesh cell intersecting it +// - to specify refinement for any mesh cell inside/outside/near +// - to 'snap' the mesh boundary to the surface +geometry +{ + pipeline.stl + { + type triSurfaceMesh; + scale 0.00104; + name walls; + } + + // Analytical shape; walls, sphere + //refinementBox + //{ + // type box; + // min (-1.0 -0.7 0.0); + // max ( 8.0 0.7 2.5); + //} +} + + +// Settings for the castellatedMesh generation. +castellatedMeshControls +{ + + // Refinement parameters + // ~~~~~~~~~~~~~~~~~~~~~ + + // If local number of cells is >= maxLocalCells on any processor + // switches from from refinement followed by balancing + // (current method) to (weighted) balancing before refinement. + maxLocalCells 100000; + + // Overall cell limit (approximately). Refinement will stop immediately + // upon reaching this number so a refinement level might not complete. + // Note that this is the number of cells before removing the part which + // is not 'visible' from the keepPoint. The final number of cells might + // actually be a lot less. + maxGlobalCells 7000000; + + // The surface refinement loop might spend lots of iterations refining just a + // few cells. This setting will cause refinement to stop if <= minimumRefine + // are selected for refinement. Note: it will at least do one iteration + // (unless the number of cells to refine is 0) + minRefinementCells 10; + + // Allow a certain level of imbalance during refining + // (since balancing is quite expensive) + // Expressed as fraction of perfect balance (= overall number of cells / + // nProcs). 0=balance always. + maxLoadUnbalance 0.10; + + + // Number of buffer layers between different levels. + // 1 means normal 2:1 refinement restriction, larger means slower + // refinement. + nCellsBetweenLevels 3; + + + + // Explicit feature edge refinement + // ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + // Specifies a level for any cell intersected by its edges. + // This is a featureEdgeMesh, read from constant/triSurface for now. + features + ( + //{ + // file "someLine.eMesh"; + // level 2; + //} + ); + + + + // Surface based refinement + // ~~~~~~~~~~~~~~~~~~~~~~~~ + + // Specifies two levels for every surface. The first is the minimum level, + // every cell intersecting a surface gets refined up to the minimum level. + // The second level is the maximum level. Cells that 'see' multiple + // intersections where the intersections make an + // angle > resolveFeatureAngle get refined up to the maximum level. + + refinementSurfaces + { + walls + { + // Surface-wise min and max refinement level + level (0 1); + } + } + + // Resolve sharp angles + resolveFeatureAngle 60; + + + // Region-wise refinement + // ~~~~~~~~~~~~~~~~~~~~~~ + + // Specifies refinement level for cells in relation to a surface. One of + // three modes + // - distance. 'levels' specifies per distance to the surface the + // wanted refinement level. The distances need to be specified in + // descending order. + // - inside. 'levels' is only one entry and only the level is used. All + // cells inside the surface get refined up to the level. The surface + // needs to be closed for this to be possible. + // - outside. Same but cells outside. + + refinementRegions + { + // refinementBox + // { + // mode inside; + // levels ((1E15 5)); + // } + } + + + // Mesh selection + // ~~~~~~~~~~~~~~ + + // After refinement patches get added for all refinementSurfaces and + // all cells intersecting the surfaces get put into these patches. The + // section reachable from the locationInMesh is kept. + // NOTE: This point should never be on a face, always inside a cell, even + // after refinement. + locationInMesh (0.01 0.01 0.01); + + + // Whether any faceZones (as specified in the refinementSurfaces) + // are only on the boundary of corresponding cellZones or also allow + // free-standing zone faces. Not used if there are no faceZones. + allowFreeStandingZoneFaces false; +} + + + +// Settings for the snapping. +snapControls +{ + //- Number of patch smoothing iterations before finding correspondence + // to surface + nSmoothPatch 3; + + //- Relative distance for points to be attracted by surface feature point + // or edge. True distance is this factor times local + // maximum edge length. + tolerance 4.0; + + //- Number of mesh displacement relaxation iterations. + nSolveIter 30; + + //- Maximum number of snapping relaxation iterations. Should stop + // before upon reaching a correct mesh. + nRelaxIter 5; +} + + + +// Settings for the layer addition. +addLayersControls +{ + // Are the thickness parameters below relative to the undistorted + // size of the refined cell outside layer (true) or absolute sizes (false). + relativeSizes true; + + // Per final patch (so not geometry!) the layer information + layers + { + walls + { + nSurfaceLayers 1; + } + } + + // Expansion factor for layer mesh + expansionRatio 1.1; + + // Wanted thickness of final added cell layer. If multiple layers + // is the thickness of the layer furthest away from the walls. + // Relative to undistorted size of cell outside layer. + // See relativeSizes parameter. + finalLayerThickness 0.7; + + // Minimum thickness of cell layer. If for any reason layer + // cannot be above minThickness do not add layer. + // Relative to undistorted size of cell outside layer. + minThickness 0.1; + + // If points get not extruded do nGrow layers of connected faces that are + // also not grown. This helps convergence of the layer addition process + // close to features. + nGrow 0; + + + // Advanced settings + + // When not to extrude surface. 0 is flat surface, 90 is when two faces + // are perpendicular + featureAngle 60; + + // Maximum number of snapping relaxation iterations. Should stop + // before upon reaching a correct mesh. + nRelaxIter 3; + + // Number of smoothing iterations of surface normals + nSmoothSurfaceNormals 1; + + // Number of smoothing iterations of interior mesh movement direction + nSmoothNormals 3; + + // Smooth layer thickness over surface patches + nSmoothThickness 2; + + // Stop layer growth on highly warped cells + maxFaceThicknessRatio 0.5; + + // Reduce layer growth where ratio thickness to medial + // distance is large + maxThicknessToMedialRatio 0.3; + + // Angle used to pick up medial axis points + minMedialAxisAngle 90; + + // Create buffer region for new layer terminations + nBufferCellsNoExtrude 0; + + // Overall max number of layer addition iterations + nLayerIter 50; +} + + + +// Generic mesh quality settings. At any undoable phase these determine +// where to undo. +meshQualityControls +{ + //- Maximum non-orthogonality allowed. Set to 180 to disable. + maxNonOrtho 65; + + //- Max skewness allowed. Set to <0 to disable. + maxBoundarySkewness 20; + maxInternalSkewness 4; + + //- Max concaveness allowed. Is angle (in degrees) below which concavity + // is allowed. 0 is straight face, <0 would be convex face. + // Set to 180 to disable. + maxConcave 80; + + //- Minimum projected area v.s. actual area. Set to -1 to disable. + minFlatness 0.5; + + //- Minimum pyramid volume. Is absolute volume of cell pyramid. + // Set to a sensible fraction of the smallest cell volume expected. + // Set to very negative number (e.g. -1E30) to disable. + minVol 1e-13; + minTetQuality 1e-30; + + //- Minimum face area. Set to <0 to disable. + minArea -1; + + //- Minimum face twist. Set to <-1 to disable. dot product of face normal + // and face centre triangles normal + minTwist 0.02; + + //- Minimum normalised cell determinant + // 1 = hex, <= 0 = folded or flattened illegal cell + minDeterminant 0.001; + + //- minFaceWeight (0 -> 0.5) + minFaceWeight 0.02; + + //- minVolRatio (0 -> 1) + minVolRatio 0.01; + + //must be >0 for Fluent compatibility + minTriangleTwist -1; + + + // Advanced + + //- Number of error distribution iterations + nSmoothScale 4; + //- Amount to scale back displacement at error points + errorReduction 0.75; +} + + +// Advanced + +// Merge tolerance. Is fraction of overall bounding box of initial mesh. +// Note: the write tolerance needs to be higher than this. +mergeTolerance 1E-6; + + +// ************************************************************************* // diff --git a/Simulation_setup_and_evluation/GenerateDoubleElbows.py b/Simulation_setup_and_evluation/GenerateDoubleElbows.py new file mode 100644 index 0000000..9b9dc42 --- /dev/null +++ b/Simulation_setup_and_evluation/GenerateDoubleElbows.py @@ -0,0 +1,198 @@ +# -*- coding: utf-8 -*- +""" +Created on Thu Oct 22 10:42:36 2020 + +@author: weisse02 +""" + +import os +import subprocess +import shutil +import sys +sys.path.append("/gpfs001/scratch/weisse02/OpenFOAM_Inlet/") +from Write_Inlet import write +# import write_InletData_func + +def replace_para(myfile, parameter, value): + f = open(myfile, "r") + sucessfull = 0 + new_str = "" + for line in f: + #print(line) + #find the elbow radius + findstr = "findme " + parameter + if findstr in line: + print("yes------") + sucessfull = 1 + line = parameter + " " + str(value) + "; // findme " + parameter + " \n" + #endif + new_str += line + #endfor + f.close() + writing_file = open(myfile, "w") + writing_file.write(new_str) + writing_file.close() + return sucessfull + + + +# define the aliases in the same way as in .bashrc +# +of1812='source /opt/OpenFOAM-v1812/etc/bashrc' +block = "[ -d dynamicCode ] && rm -r dynamicCode;\ + [ -d constant/polyMesh ] && rm -r constant/polyMesh;\ + blockMesh > logPTB 2>logERR ;\ + echo '--- warnings/errors ---'; cat logERR; echo '--- PTB actions ---'; cat logPTB | grep 'PTB';\ + sed -i'' -e s/'empty'/'wall'/g constant/polyMesh/boundary;\ + sed -i'' -e s/'defaultFaces'/'wall'/g constant/polyMesh/boundary;\ + sed -i'' -e s/'P0'/'inlet'/g constant/polyMesh/boundary;\ + sed -i'' -e s/'P5'/'outlet'/g constant/polyMesh/boundary;\ + echo '--- CheckMesh ---'; checkMesh | tail -n 4 " + + +subprocess.call(of1812, shell=True) + + +case_folder = "/gpfs001/scratch/weisse02/DoubleElbows_var/DE_var/" +os.chdir(case_folder) +input_file = "./system/blockMeshDict" +# must be in mm for generating the curvature radii +D = 100.0 +R = D/2.0 +# number of piperadius = number of cases that will be creasted +Nr = 10 +# maximum elbow kurvature ratius +Rkmax = 10. +Rk = [ (1 + R*(1 + Rkmax*(ri/Nr)**2.2))/1000 for ri in range(0,Nr + 1)] +#Rk = Rk/1000 +D = D/1000 +R = D/2.0 +print(Rk) +# set the inbetween distance +Ndl = 10 +dl_max = 10*D*1000 +d_ls = [(1 + ( dl_max*(ri/Ndl)**2))/1000 for ri in range(0,Ndl + 1)] +print([id_ls/D for id_ls in d_ls]) + +# ---- inlet length -------- +i_l = 7*D +replace_para(input_file,"i_l",i_l) +# ---- outlet length -------- +o_l = 100*D +replace_para(input_file,"o_l",o_l) + +''' +d_l = 0.3 +replace_para(input_file,"d_l", d_l) +print("d_l") +print(d_l) +''' +# loop over all curvature radii Rk and inbetween distance d_ls + +# find out of +def is_even(num): + if (num % 2) == 0: + return True + else: + return False + + +# def case -------------------------------- +# case = '/media/fastdata1/newhome/weisse02/BlockMeshTool_DE/DE_var' # if not in subdict needs full path to case +uvol = 0.4 +Re = 5e4 +wr = write(D,uvol,Re) +home = "/gpfs001/scratch/weisse02/OpenFOAM_Inlet" # "/media/fastdata1/newhome/weisse02/Gitlab_Projects/OpenFOAM_Inlet" # os.getcwd() # "~/Gitlab_Projects/OpenFOAM_Inlet" +path_to_interp_data = home+'/interp_data' +# ----------------------------------------- + + +# grid parameters for the midfine grid m +g_i = "(13 32 100 50 )" +# change the grid refinement +replace_para(input_file,"mesh",g_i) + + +for [i,r_k] in enumerate(Rk): + for [j,d_l] in enumerate(d_ls): + os.chdir(case_folder) + # change the parameters in the blockMeshDict: + # the inbetween length + replace_para(input_file,"d_l", d_l) + print("d_l") + print(d_l) + # set the curvature radius + print("r_k") + print(r_k) + replace_para(input_file,"r_k",r_k) + #------------------------------------------- + # generate the mesh + subprocess.call(block, shell=True) + print("now comes the rotation - - -- - - -- - - - -") + # rotate the mesh + subprocess.call('transformPoints -rotate "((1 0 0)(0 0 1))"', shell=True) + # translation in x,y,z to have the plane on the elbow exit at (0 0 0) + trans = [r_k+i_l, -(2*r_k+d_l) , -r_k] + trans_str = str(trans[0]) + " " + str(trans[1]) + " " + str(trans[2]) + print("now comes the translation - - -- - - -- - - - -trans_str:") + print(trans_str) + subprocess.call('transformPoints -translate "(' + trans_str + ')"', shell=True) + # + print("------- Make Inlet Profile------------------------------------------------------------------") + # set the inlet data for fully developed flow profiles + os.chdir(home) + wr.write_zero(case_folder, path_to_interp_data, method='interp') + # method = 'interp' for interpolation on inlet + # method = 'calc' for calculation of inlet values with functions + # + #subprocess.call('vglrun -c proxy paraFoam', shell=True) + # + # now copy the folder to a new one new case + # os.chdir(case_folder) + newcasepath = '../DE_Gm_Rk_' + str(r_k) + "_dl_" + str(d_l) + os.mkdir(newcasepath) + #subprocess.call('mkdir ./allElbows/Elbow_' + str(rk), shell=True) + subprocess.call('cp -r ./* ' + newcasepath, shell=True) + os.chdir(home) + + +''' + os.chdir(case_folder) + print(rk) + replace_para(input_file,"C", rk) + subprocess.call('rm -r dynamicCode', shell=True) + subprocess.call('blockMesh>blockMesh.log', shell=True) + subprocess.call('mirrorMesh -overwrite', shell=True) + # rotation + subprocess.call('transformPoints -rotate "((0 1 0)(0 0 1))"', shell=True) + subprocess.call('transformPoints -rotate "((-1 0 0)(0 1 0))"', shell=True) + subprocess.call('transformPoints -rotate "((1 0 0)(0 -1 0))"', shell=True) + + # translation in y direction = inletlength + curvature radius + ty = -0.7 - rk/1000. + # translation in z direction = + tz = -rk/1000. + tx = 0 + transformstr = 'transformPoints -translate "(' + str(tx) + ' ' + str(ty) + ' ' + str(tz) + ')"' + subprocess.call(transformstr, shell=True) + #subprocess.call("sed -i 's/inlet/INLET/' constant/polyMesh/boundary", shell=True) + #subprocess.call("sed -i 's/outlet/OUTLET/' constant/polyMesh/boundary", shell=True) + #subprocess.call("sed -i 's/walls/WALL/' constant/polyMesh/boundary", shell=True) + newcasepath = '/media/data2/weisse02/Elbow_variants_SA1/Elbow_' + str(rk) + if os.path.exists(newcasepath): shutil.rmtree(newcasepath) + os.mkdir(newcasepath) + #subprocess.call('mkdir ./allElbows/Elbow_' + str(rk), shell=True) + subprocess.call('cp -r ./* ' + newcasepath, shell=True) + # write the inlet profile data in the zero folder + bla = write_InletData_func.write(0.1,0.4,5e4) + source_SPA = "~/Fullys/fullywedge_SAProfileLine.csv" + source_kE = "~/test_GUI/vt_innen/fully_EnEff_Re5e4.csv" + flowdirection = [0, 1, 0] + # must be an absolute path + mypath = os.path.abspath(newcasepath) + bla.write_zero(mypath,source_kE,source_SPA,flowdirection) + os.chdir(mypath) + subprocess.call('checkMesh>mesh.log', shell=True) + subprocess.call('decomposePar>decompose.log', shell=True) + +''' diff --git a/Simulation_setup_and_evluation/ManipulateCases.py b/Simulation_setup_and_evluation/ManipulateCases.py new file mode 100644 index 0000000..ff30740 --- /dev/null +++ b/Simulation_setup_and_evluation/ManipulateCases.py @@ -0,0 +1,70 @@ +# -*- coding: utf-8 -*- +""" +Created on Thu Oct 22 10:42:36 2020 + +@author: weisse02 +""" + +import os +import subprocess +# import shutil +# import write_InletData_func + + + +def replace_para(myfile,fieldstr, parameter, value): + f = open(myfile, "r") + sucessfull = 0 + new_str = "" + thisfield = False + for line in f: + #print(line) + #find the elbow radius + findstr = parameter + #if fieldstr in line: thisfield = True + if thisfield and sucessfull == 0 and findstr in line: + print("yes------") + sucessfull = 1 + line = " " + parameter + " " + str(value) + "; \n" + if fieldstr in line: thisfield = True + #endif + new_str += line + #endfor + + f.close() + + writing_file = open(myfile, "w") + writing_file.write(new_str) + writing_file.close() + return sucessfull + + +rootdir = os.path.abspath("./") +print(rootdir) +dir_list = os.listdir(rootdir) +fvSol = '/system/fvSolution' +control = '/system/controlDict' +field = 'p' +count = 3; +ngpu = 0 +for i, mydir in enumerate(dir_list): + myabsdir = os.path.join(rootdir,mydir) + if os.path.isdir(myabsdir) and "DE" in mydir: + print("yes --- " + myabsdir) + myfilestr_sol = myabsdir + fvSol + myfilestr_control = myabsdir + control + #replace_para(myfilestr_sol,'solvers','relTol', 0.001) + #replace_para(myfilestr_sol,'solvers','nCellsInCoarsestLevel',30) + #replace_para(myfilestr_sol,'solvers','maxIter',1000) + #replace_para(myfilestr_control,'application','startFrom','startTime') + #replace_para(myfilestr_control,'application','purgeWrite','1') + #replace_para(myfilestr_sol,'(U|k|epsilon|omega|nut|nuTilda)','solver','PBiCGStab') + #replace_para(myfilestr_control,'stopAt','endTime','9000') + replace_para(myfilestr_sol,'solvers','nCellsInCoarsestLevel','1000') + #replace_para(myfilestr_sol,'PBiCGStab','tolerance','1e-10') + #replace_para(myfilestr_sol,'relaxationFactors','nuTilda','0.7') + # replace_para(myfilestr,'solvers','tolerance',1e-10) + #replace_para(myfilestr,'relaxationFactors','U',0.5) + + + diff --git a/Simulation_setup_and_evluation/MyPOD_allCases_allU_allPlanes.py b/Simulation_setup_and_evluation/MyPOD_allCases_allU_allPlanes.py new file mode 100644 index 0000000..794d874 --- /dev/null +++ b/Simulation_setup_and_evluation/MyPOD_allCases_allU_allPlanes.py @@ -0,0 +1,415 @@ +# -*- coding: utf-8 -*- +""" + +POD analysis for all three cases together +DoubleElbow SingleElbow and S-Elbow + + +@author: weisse02 +""" +# to run file in python console +# exec(open('MyPOD_allCases_allU_allPlanes.py').read()) + + +import os +import numpy as np +import scipy.interpolate as interpol +import matplotlib.pyplot as plt +import json +from math import pi +import sys +#from scipy.interpolate import Rbf +#sys.path.append('E:/NextCloud/FlowProfiles/') +#sys.path.append('../../FlowProfiles') +# import gh-class from global directory +#from class_flowprofiles import flowprofiles +#sys.path.append('E:/NextCloud/GlobalPyFunc/') +sys.path.append('/media/fastdata1/newhome/weisse02/GlobalPyFunc') +from niceplot import * +# from Integrate2D import Tri_Int +#sys.path.append('../Elbow_Variations/Auswertung/') +#from Fully_simu import get_fully_SA +sys.path.append('./') +#from GetElbowProfiles import GetElbowProfile +from Integrate2D import * +# define RC-Parameters for good looking plots + +# define the fonts +SMALL_SIZE = 8 +MEDIUM_SIZE = 20 +BIGGER_SIZE = 30 + +plt.rc('font', size=MEDIUM_SIZE) # controls default text sizes +plt.rc('axes', titlesize=MEDIUM_SIZE) # fontsize of the axes title +plt.rc('axes', labelsize=MEDIUM_SIZE) # fontsize of the x and y labels +plt.rc('xtick', labelsize=MEDIUM_SIZE) # fontsize of the tick labels +plt.rc('ytick', labelsize=MEDIUM_SIZE) # fontsize of the tick labels +plt.rc('legend', fontsize=MEDIUM_SIZE) # legend fontsize +plt.rc('figure', titlesize=BIGGER_SIZE) # fontsize of the figure title + +# set the linewidth value globally +# show all the keys: plt.rcParams.keys() +#plt.rcParams['axes.linewidth'] = 1.5 +plt.rcParams['lines.linewidth'] = 4 +plt.rcParams['lines.markersize'] = 10 +plt.rcParams['lines.markeredgewidth'] = 2 + + +# function definitions at first + +def do_POD(u,clip = 0): + Nt = u.shape[0] + #S = reshape(permute(S, [3 2 1]), Nt, [ ]); % Reshape data into a matrix S with Nt rows + umean = np.mean(u,0) + U = u - umean # Subtract the temporal mean from each row + # Create covariance matrix + C = (U.T @ U)/(Nt-1) + # Solve eigenvalue problem + lam , phi = np.linalg.eig(C) # lam are the eigenvalues lambda and phi the corrp. eigenvectors + # Sort eigenvalues and eigenvectors + ilam = np.argsort(-lam,axis=-1) + lamb = np.take_along_axis(lam,ilam,axis=-1) + phi = phi[:,ilam] # PHI(:, ilam); # These are the spatial modes + # Calculate time coefficients + A = U @ phi + if clip > 0: + A = A[:,0:clip] + phi = phi[:,0:clip] + return np.real(A), np.real(phi), umean, lamb + +def do_reconstruct(A,phi,Nmodes,umean = 0): + u_tilde = np.zeros((A.shape[0],phi.shape[0])) + for k in range(0,Nmodes): + u_tilde = u_tilde + np.tensordot(A[:,k],phi[:,k], axes = 0) + # + return umean + np.real(u_tilde) + +def do_reconstruct_add(A,phi,Nmodes,u_tilde,umean = 0,lastmodes = 0): + #u_tilde = np.zeros((A.shape[0],phi.shape[0])) + for k in range(lastmodes,Nmodes): + u_tilde = u_tilde + np.tensordot(A[:,k],phi[:,k], axes = 0) + # + return umean + np.real(u_tilde) + +# find angle +def rotate_profiles(phi,uall): + # find the angle the profile should be rotated: + # simple approach -> find the point with the lowest velocity + # at the radius ~0.6 index 17 + ind_r = 17 + allmins = np.argmin(uall[:,:,:,:,ind_r],3) + # the angle of rotation + allrotangles = phi[allmins] + ## + for (i,j,k),allminsi in np.ndenumerate(allmins): + #print(allminsi) + uall[i,j] = np.concatenate( (uall[i,j,k,allminsi:,:],uall[i,j,k,1:allminsi+1,:]), axis = 0 ) + # + return allmins,allrotangles,uall + +# +def collect_data(data_path,namestr,rotate=False,delete_last=False): + # ------------------------------------------------------------ + with open(os.path.join(data_path,"Dist_Coords.json")) as json_file: + coords = json.load(json_file) + # + D = coords["D"] + dist = np.array(coords["dist"])/D + # the courvature radius + Rk = np.array(coords["Rk"])/D/1000 + r = np.array(coords["r"]) + # remove the last value of the matrix this is where r = 1 + if delete_last: r = r[:,0:-1] + phi_a = np.array(coords["phi"]) + # remove the last value of the matrix this is where r = 1 + if delete_last: phi_a = phi_a[:,0:-1] + xm,ym = pol2cart(r,phi_a) + x = xm.ravel() + y = ym.ravel() + #dist = dist[0:-1] + + # Create snapshot matrix + #uall = [0]*len(Rk) + if coords["dl"] == [0,1]: coords["dl"] = [0] + if namestr == "all": + uall = np.zeros((len(Rk),len(coords["dl"]),len(dist),3*r.size)) + else: + uall = np.zeros((len(Rk),len(coords["dl"]),len(dist),r.size)) + for i,rki in enumerate(coords["Rk"]): + #uall[i] = [0]*len(coords["dl"]) + for j,dli in enumerate(coords["dl"]): + #x,y,ui = GetElbowProfile(1.41, dist,delete_last=delete_last) + if dli == 0: # for the single elbow case + filename = "DistProfile_" + str(rki) + ".json" + else: + filename = "DistProfile_" + str(rki) + "_" + str(dli) + ".json" + with open(os.path.join(data_path,filename)) as json_file: + ui = json.load(json_file) + if namestr == "all": + names = ["Ux","Uy","Udiff"] + for nn,name in enumerate(names): + utemp = np.array(ui[name]) + # flatten the r-phi space + utemp = np.reshape(utemp,(utemp.shape[0],-1)) + if nn == 0: + u0 = utemp.copy() + else: + u0 = np.append(u0,utemp.copy(),axis=1) + ui = u0 + else: + ui = np.array(ui[namestr]) + ui = np.reshape(ui,(ui.shape[0],-1)) + print(ui.shape) + #uall[i,j,:,:,:] = np.array([ bi for bi in ui[0:200]]) + uall[i,j] = ui[0:len(dist)] +# + print(uall.shape) + # Rotate before POD ---------------------------------------- + rotate = False + # rotate the profile for better POD-convergency + if rotate: + print("start Rotate") + allmins,allrotangles,uall = rotate_profiles(phi_a[:,0],uall) + print("finish Rotate") + + #print(uall.shape) + #print(uall[0].shape) + #print(uall[0][0].shape) + #u_paths = np.reshape(uall,(*uall.shape[0:-2],-1)) + #u_paths = np.array([u_paths[:,:,:,i].ravel() for i in range(0,u_paths.shape[-1])]).T + # could maybe also be done with reshape + uall = np.reshape(uall,(-1,uall.shape[-1])) + print(uall.shape) + return uall +# + +# ---------------- Main program ------------------------------- +# +rotate = False +delete_last=False +# load all velocity components +namestr = "all" # "Ux", "Uy" or "Udiff" +print(namestr) +data_paths = [os.path.abspath("../Single_Elbow_newGrid/AllDistPlanes/"), +os.path.abspath("../DoubleElbows/AllDistPlanes/"), +os.path.abspath("../Double_S_Elbows/AllDistPlanes/") ] +# the indices in which the planes for the cases are ending +case_ind = np.zeros(3,dtype=int) +# loop over all cases +for i,data_path in enumerate(data_paths): + if i ==0: + u_paths = collect_data(data_path,namestr) + else: + u_paths = np.append(u_paths,collect_data(data_path,namestr),axis=0) + print(u_paths.shape) + case_ind[i] = u_paths.shape[0] + +# +print(case_ind) +sys.exit() + +print("u_paths.shape") +print(u_paths.shape) +# just needed to save the coordinates xm +with open(os.path.join(data_path,"Dist_Coords.json")) as json_file: + coords = json.load(json_file) +xm,ym = pol2cart(np.array(coords["r"]),np.array(coords["phi"])) +# A = [0]*uall.shape[0] +# phi = [0]*uall.shape[0] +# for i,u in enumerate(uall): +# A[i],phi[i],umean[i] = do_POD(u,clip = 5) + + +# POD - ------------------------------------------------------ +maxModes = 800 + +import time + +start_time = time.time() +# +A,phi,umean,lamb = do_POD(u_paths,clip = maxModes) +# +end_time = time.time() + +print("Time to calculate POD:") +print(end_time - start_time) + + +# # prepare the calculation of the reconstruction error +# from scipy.spatial import Delaunay +# G_p = np.vstack([x.ravel(),y.ravel()]) +# tri = Delaunay(G_p.T) +# Js, t = make_jacoby(tri) +# def int_sum(Js,t,u): +# return np.sum( np.abs(Js) * np.sum(u[t],1)/6 ) +# # +# def get_L_norm_fast(Js,t,A,u,p=2): +# L = np.abs(1/A * int_sum(Js,t,abs(u)**p) )**(1/p) +# return L +# # +# Area = int_sum(Js,t, np.ones_like(x.ravel())) + +# define the weights for integration / innner-product +# weights = get_int_weights(r[0],phi_a[0:-1,0],method="polar" ) +# a_temp = np.zeros((1,weights.shape[1])) + 1e-10 +# weights = np.concatenate((weights,a_temp),axis=0) +# weights[:,0] += 1e-10 +# with triangles +weights = get_int_weights(x = xm,y = ym,method = "tri") +i0weights = np.where(weights==0) +weights[i0weights] = 1e-10 +weights_rav = weights.reshape((1,weights.size)) + +# +N_cs = xm.size +umean = umean.reshape((1,umean.size)) + +#Nm = np.arange(1,maxModes+1) +# the number of modes +Nm = np.append(np.append(np.arange(1,100,2),np.arange(100,200,4)),np.arange(200,maxModes+1,20)) +L2max = np.zeros((3,len(Nm))) +L2mean = np.zeros((3,len(Nm))) +Utilde_k = np.zeros(u_paths.shape) +for j,Nmodes in enumerate(Nm): + #Utilde_k = do_reconstruct(A,phi,Nmodes) + #Utilde_k = do_reconstruct_add(A,phi,Nmodes,Utilde_k) + if j == 0: lastmodes = 0 + else: lastmodes = Nm[j-1] + Utilde_k = do_reconstruct_add(A,phi,Nmodes,Utilde_k,lastmodes=lastmodes) + print(Nmodes) + #nicecontour(x,y,umean) + #nicecontour(x,y,umean + U[1].ravel()) + #nicecontour(x,y,umean + np.real( Utilde_k[1].ravel())) + # try calculate L-norms whitout a loop + eps = u_paths - (umean + Utilde_k) + # calculate the magnitue of all velocities + eps = np.sqrt(eps[:,0:N_cs]**2 + eps[:,N_cs:2*N_cs]**2 + eps[:,2*N_cs:]**2) + L2temp = np.sqrt(np.sum(weights_rav*eps**2, axis=1)) + # distinguish between the cases 0, 1, 2 for SE,DE,DSE + L2max[0][j] = np.max(L2temp[0:case_ind[0]]) + L2mean[0][j] = np.mean(L2temp[0:case_ind[0]]) + # for case DE + L2max[1][j] = np.max(L2temp[case_ind[0]:case_ind[1]]) + L2mean[1][j] = np.mean(L2temp[case_ind[0]:case_ind[1]]) + # for case DSE + L2max[2][j] = np.max(L2temp[case_ind[1]:case_ind[2]]) + L2mean[2][j] = np.mean(L2temp[case_ind[1]:case_ind[2]]) + # for i,ui in enumerate(u_paths): + # eps = ui - (umean + Utilde_k[i].ravel() ) + # #print(eps.shape) + # Ltemp = np.sqrt(np.sum(weights.ravel()*eps**2)) #get_L_norm_fast(Js,t,Area,eps.ravel(),p=2) + # L2max[j] = max(L2max[j],Ltemp) + # L2mean[j] += Ltemp + + # +#L2mean /= u_paths.shape[0] +print(L2max) +print(L2mean) + +# +saveornot = True +namestr = namestr + "_" +# + +if saveornot: + np.savez(namestr+'POD_allCases_parts.npz',coeffs=A,modes=phi,umean=umean,eig=lamb,L2max=L2max,L2mean=L2mean) + # + if rotate: + np.savez(namestr+'minindex_for_rot.npz',allmins) +# +# to load the data only if neccesary +# +maxModes = 800 +Nm = np.append(np.append(np.arange(1,100,2),np.arange(100,200,4)),np.arange(200,maxModes+1,20)) +namestr = "all_" +# +data = np.load("./all_POD_allCases_parts_800.npz") +L2max = data["L2max"] +L2mean = data["L2mean"] +lamb = data["eig"] +# +# lamb = np.load("rot_POD_eigs.npz")["arr_0"] +# +saveornot = True + +plt.figure(1) +plt.plot(Nm,L2max.T*100,'-' ) +plt.xlabel("Number of Modes") +plt.ylabel("L2-error max") +plt.legend(["SE","DE", "DSE"]) +plt.grid("on") +plt.tight_layout() +if saveornot: + plt.savefig(namestr+"AllPlanesPOD_L2max.pdf") + +# +# plot logarithmic +plt.figure(2) +plt.loglog(Nm,L2max.T*100,'-' ) +plt.xlabel("Number of Modes") +plt.ylabel("L²-error max") +plt.legend(["SE","DE", "DSE"]) +plt.grid("on") +plt.ylim(1e-3,150) +plt.tight_layout() +if saveornot: + plt.savefig(namestr+"AllPlanesPOD_L2maxlog.pdf") +# +plt.figure(3) +plt.plot(Nm,L2mean.T*100,'-' ) +plt.xlabel("Number of Modes") +plt.ylabel("L2-error mean") +plt.legend(["SE","DE", "DSE"]) +plt.grid("on") +plt.tight_layout() +if saveornot: + plt.savefig(namestr+"AllPlanesPOD_L2mean.pdf") +# +# plot logarithmic +plt.figure(4) +plt.loglog(Nm,L2mean.T*100,'-' ) +plt.xlabel("Number of Modes") +plt.ylabel("L²-error mean") +plt.legend(["SE","DE", "DSE"]) +plt.ylim(1e-3,150) +plt.grid("on") +plt.tight_layout() +if saveornot: + plt.savefig(namestr+"AllPlanesPOD_L2meanlog.pdf") + +lamb = np.real(lamb) +plt.figure(5) +plt.plot(lamb[0:30]) +plt.xlabel("mode number") +plt.ylabel("Eigenvalue") +plt.grid("on") +plt.tight_layout() +if saveornot: + plt.savefig(namestr+"AllPlanesPOD_Eig.pdf") + +energy = np.cumsum(lamb) +energy = energy/energy[-1] +plt.figure(6) +plt.plot(energy[0:30]) +plt.xlabel("Number of Modes") +plt.ylabel("Energy") +plt.grid("on") +plt.tight_layout() +if saveornot: + plt.savefig(namestr+"AllPlanesPOD_Energy.pdf") + +plt.show() + + + + + +''' +# calculate number of elements for the original data and for the reduced order model: +Noriginal = u_paths.size +N_red = u_paths.shape[0]*Nm + u_paths.shape[1]*Nm + +plt.figure() +plt.plot(Nm,N_red) +plt.tight_layout() +''' diff --git a/Simulation_setup_and_evluation/Observe_DoubleElbows.py b/Simulation_setup_and_evluation/Observe_DoubleElbows.py new file mode 100644 index 0000000..b1a49b1 --- /dev/null +++ b/Simulation_setup_and_evluation/Observe_DoubleElbows.py @@ -0,0 +1,65 @@ +# -*- coding: utf-8 -*- +""" +Created on Thu Oct 22 10:42:36 2020 + +@author: weisse02 +""" + +import os +import subprocess +import shutil +import sys +sys.path.append("/gpfs001/scratch/weisse02/OpenFOAM_Inlet/") +from Write_Inlet import write + + +D = 100.0 +R = D/2.0 +# number of piperadius = number of cases that will be creasted +Nr = 10 +# maximum elbow kurvature ratius +Rkmax = 10. +Rk = [ (1 + R*(1 + Rkmax*(ri/Nr)**2.2))/1000 for ri in range(0,Nr + 1)] +#Rk = Rk/1000 +D = D/1000 +R = D/2.0 +print(Rk) +# set the inbetween distance +Ndl = 10 +dl_max = 10*D*1000 +d_ls = [(1 + ( dl_max*(ri/Ndl)**2))/1000 for ri in range(0,Ndl + 1)] +print([id_ls/D for id_ls in d_ls]) + + + +# loop over all curvature radii Rk and inbetween distance d_ls + +# find out of +def is_even(num): + if (num % 2) == 0: + return True + else: + return False + + +Rk = Rk[9:11] +for [i,r_k] in enumerate(Rk): + for [j,d_l] in enumerate(d_ls): + # change the parameters in the blockMeshDict: + # the inbetween length + print("d_l") + print(d_l) + # set the curvature radius + print("r_k") + print(r_k) + # os.chdir(case_folder) + newcasepath = '/gpfs001/scratch/weisse02/DoubleElbows_var/DE_Gm_Rk_' + str(r_k) + "_dl_" + str(d_l) + # copy the system files in the new directory .. + os.chdir(newcasepath) + subprocess.call('gnuplot Residuals &', shell=True) + #os.chdir("/gpfs001/scratch/weisse02/DoubleElbows_var/") + + #break +#subprocess.call('pkill -x gnuplot ', shell=True) + + diff --git a/Simulation_setup_and_evluation/Reconstruct_DoubleElbows.py b/Simulation_setup_and_evluation/Reconstruct_DoubleElbows.py new file mode 100644 index 0000000..2b7a4cb --- /dev/null +++ b/Simulation_setup_and_evluation/Reconstruct_DoubleElbows.py @@ -0,0 +1,66 @@ +# -*- coding: utf-8 -*- +""" +Created on Thu Oct 22 10:42:36 2020 + +@author: weisse02 +""" + +import os +import subprocess +import shutil +import sys +sys.path.append("/gpfs001/scratch/weisse02/OpenFOAM_Inlet/") +from Write_Inlet import write + + +D = 100.0 +R = D/2.0 +# number of piperadius = number of cases that will be creasted +Nr = 10 +# maximum elbow kurvature ratius +Rkmax = 10. +Rk = [ (1 + R*(1 + Rkmax*(ri/Nr)**2.2))/1000 for ri in range(0,Nr + 1)] +#Rk = Rk/1000 +D = D/1000 +R = D/2.0 +print(Rk) +# set the inbetween distance +Ndl = 10 +dl_max = 10*D*1000 +d_ls = [(1 + ( dl_max*(ri/Ndl)**2))/1000 for ri in range(0,Ndl + 1)] +print([id_ls/D for id_ls in d_ls]) + + + +# loop over all curvature radii Rk and inbetween distance d_ls + +# find out of +def is_even(num): + if (num % 2) == 0: + return True + else: + return False + + +#Rk = Rk[9:11] +for [i,r_k] in enumerate(Rk): + for [j,d_l] in enumerate(d_ls): + # change the parameters in the blockMeshDict: + # the inbetween length + print("d_l") + print(d_l) + # set the curvature radius + print("r_k") + print(r_k) + # os.chdir(case_folder) + newcasepath = '/gpfs001/scratch/weisse02/DoubleElbows_var/DE_Gm_Rk_' + str(r_k) + "_dl_" + str(d_l) + # copy the system files in the new directory .. + os.chdir(newcasepath) + #subprocess.call('gnuplot Residuals &', shell=True) + subprocess.call('reconstructPar -latestTime', shell=True) + #os.chdir("/gpfs001/scratch/weisse02/DoubleElbows_var/") + + #break +#subprocess.call('pkill -x gnuplot ', shell=True) + + diff --git a/Simulation_setup_and_evluation/SaveAllPlanes.py b/Simulation_setup_and_evluation/SaveAllPlanes.py new file mode 100644 index 0000000..96c7ac3 --- /dev/null +++ b/Simulation_setup_and_evluation/SaveAllPlanes.py @@ -0,0 +1,101 @@ +# trace generated using paraview version 5.5.2 + +#### import the simple module from the paraview +from paraview.simple import * +#### disable automatic camera reset on 'Show' +paraview.simple._DisableFirstRenderCameraReset() + +import os +import subprocess +import sys + + +#from pathlib import Path +# to run through all cases +rootdir = "/gpfs001/scratch/weisse02/DoubleElbows_var/" +dir_list = os.listdir(rootdir) +# variables of the geometry +D = 0.1 +R = D/2. +# distance of the measurement places +planeDist = [0.243, 0.556, 1.070 , 1.569, 2.082, 3.082] +#distances = [0.25* i *D for i in range(0,20)] +#distances.extend([0.5* i *D for i in range(10,20)]) +#distances.extend([i *D for i in range(10,100)]) +Ndist = 200 +distances = [(float(i)/float(Ndist))**2.0 *100.0 *D for i in range(0,Ndist+1)] +print(distances) +print(dir_list) +start_flag = False +print("--------------- start loop ---------------") +for mydir in dir_list: + print(mydir) + #print(os.path.isdir(rootdir + mydir)) + #os.chdir(dirs) + if mydir == "DE_Gm_Rk_0.35703279993281184_dl_0.251": + #start_flag = True + sys.exit() + if os.path.isdir(rootdir + mydir): + print(mydir) + if "DE_Gm" in mydir: # and start_flag: + print("yes --- " + mydir) + #subprocess.call(["cd", dirs]) + #os.system('cd ' + rootdir + mydir) + os.chdir(rootdir + mydir) + print(rootdir + mydir) + subprocess.call('touch bla.foam', shell=True) + # create a new 'OpenFOAMReader' + blafoam = OpenFOAMReader(FileName=rootdir + mydir + '/bla.foam') + # get animation scene ------- try to load the last step + animationScene1 = GetAnimationScene() + # load the last time step + animationScene1.GoToLast() + # ---------------------------------- + blafoam.MeshRegions = ['internalMesh'] + # blafoam.CellArrays = ['U', 'UMean','UPrime2Mean','nuSgs', 'nuTilda', 'omega', 'p'] + blafoam.CellArrays = ['U', 'nuTilda', 'nut', 'p'] + # update the view to ensure updated data information + #renderView1.Update() + # find source + blafoam = FindSource('OpenFOAMReader1') + # set active source + SetActiveSource(blafoam) + # get animation scene + animationScene1 = GetAnimationScene() + # load the last time step + animationScene1.GoToLast() + # create a new 'Slice' + slice1 = Slice(Input=blafoam) + # make a new folder for the planes + planesdir = rootdir + '/allPlanes/' + if not os.path.exists(planesdir): + print('I will make that Planes directory') + os.makedirs(planesdir) + # else: os.remove(os.path.join(planesdir, '*.csv')) + # run through all measurement planes + for i in range(0,len(planeDist)): + # Properties modified on slice4.SliceType + slice1.SliceType.Origin = [0.0, 0.0, planeDist[i]] + slice1.SliceType.Normal = [0.0, 0.0, 1.0] + # get active source. + slice1 = GetActiveSource() + # save data + SaveData(planesdir+mydir+'Slice_Mi_'+str(i)+'.csv', proxy=slice1, Precision=8) + myflag = True + # run through all distances + for [i,disti] in enumerate(distances): + # Properties modified on slice4.SliceType + slice1.SliceType.Origin = [0.0, 0.0, disti] + slice1.SliceType.Normal = [0.0, 0.0, 1.0] + # get active source. + slice1 = GetActiveSource() + # save data + SaveData(planesdir+mydir+'Slice_Di_'+str(i).zfill(3) +'.csv', proxy=slice1, Precision=8) + #subprocess.call("..") + # destroy blafoam + Delete(blafoam) + Delete(slice1) + del blafoam + +#} + diff --git a/Simulation_setup_and_evluation/Start_DoubleElbows.py b/Simulation_setup_and_evluation/Start_DoubleElbows.py new file mode 100644 index 0000000..769fe5e --- /dev/null +++ b/Simulation_setup_and_evluation/Start_DoubleElbows.py @@ -0,0 +1,110 @@ +# -*- coding: utf-8 -*- +""" +Created on Thu Oct 22 10:42:36 2020 + +@author: weisse02 +""" + +import os +import subprocess +import shutil +import sys +sys.path.append("/gpfs001/scratch/weisse02/OpenFOAM_Inlet/") +from Write_Inlet import write + + +D = 100.0 +R = D/2.0 +# number of piperadius = number of cases that will be creasted +Nr = 10 +# maximum elbow kurvature ratius +Rkmax = 10. +Rk = [ (1 + R*(1 + Rkmax*(ri/Nr)**2.2))/1000 for ri in range(0,Nr + 1)] +#Rk = Rk/1000 +D = D/1000 +R = D/2.0 +print(Rk) +# set the inbetween distance +Ndl = 10 +dl_max = 10*D*1000 +d_ls = [(1 + ( dl_max*(ri/Ndl)**2))/1000 for ri in range(0,Ndl + 1)] +print([id_ls/D for id_ls in d_ls]) + + + +# loop over all curvature radii Rk and inbetween distance d_ls + +# find out of +def is_even(num): + if (num % 2) == 0: + return True + else: + return False + + +Rk = Rk[11] +for [i,r_k] in enumerate(Rk): + for [j,d_l] in enumerate(d_ls): + # change the parameters in the blockMeshDict: + # the inbetween length + print("d_l") + print(d_l) + # set the curvature radius + print("r_k") + print(r_k) + # os.chdir(case_folder) + newcasepath = '/gpfs001/scratch/weisse02/DoubleElbows_var/DE_Gm_Rk_' + str(r_k) + "_dl_" + str(d_l) + # copy the system files in the new directory .. + subprocess.call('cp ./DE_var/system/fv* ' + newcasepath + '/system', shell=True) + subprocess.call('cp ./DE_var/system/controlDict ' + newcasepath + '/system', shell=True) + subprocess.call('cp ./DE_var/system/decomposeParDict ' + newcasepath + '/system/', shell=True) + subprocess.call('cp ./DE_var/start_simuOF2012.msub ' + newcasepath, shell=True) + subprocess.call('cp ./DE_var/constant/turbulenceProperties ' + newcasepath + '/constant/', shell=True) + subprocess.call('cp ./Residuals ' + newcasepath, shell=True) + os.chdir(newcasepath) + subprocess.call('msub start_simuOF2012.msub ', shell=True) + os.chdir("/gpfs001/scratch/weisse02/DoubleElbows_var/") + + #break + + +''' + os.chdir(case_folder) + print(rk) + replace_para(input_file,"C", rk) + subprocess.call('rm -r dynamicCode', shell=True) + subprocess.call('blockMesh>blockMesh.log', shell=True) + subprocess.call('mirrorMesh -overwrite', shell=True) + # rotation + subprocess.call('transformPoints -rotate "((0 1 0)(0 0 1))"', shell=True) + subprocess.call('transformPoints -rotate "((-1 0 0)(0 1 0))"', shell=True) + subprocess.call('transformPoints -rotate "((1 0 0)(0 -1 0))"', shell=True) + + # translation in y direction = inletlength + curvature radius + ty = -0.7 - rk/1000. + # translation in z direction = + tz = -rk/1000. + tx = 0 + transformstr = 'transformPoints -translate "(' + str(tx) + ' ' + str(ty) + ' ' + str(tz) + ')"' + subprocess.call(transformstr, shell=True) + #subprocess.call("sed -i 's/inlet/INLET/' constant/polyMesh/boundary", shell=True) + #subprocess.call("sed -i 's/outlet/OUTLET/' constant/polyMesh/boundary", shell=True) + #subprocess.call("sed -i 's/walls/WALL/' constant/polyMesh/boundary", shell=True) + newcasepath = '/media/data2/weisse02/Elbow_variants_SA1/Elbow_' + str(rk) + if os.path.exists(newcasepath): shutil.rmtree(newcasepath) + os.mkdir(newcasepath) + #subprocess.call('mkdir ./allElbows/Elbow_' + str(rk), shell=True) + subprocess.call('cp -r ./* ' + newcasepath, shell=True) + # write the inlet profile data in the zero folder + bla = write_InletData_func.write(0.1,0.4,5e4) + source_SPA = "~/Fullys/fullywedge_SAProfileLine.csv" + source_kE = "~/test_GUI/vt_innen/fully_EnEff_Re5e4.csv" + flowdirection = [0, 1, 0] + # must be an absolute path + mypath = os.path.abspath(newcasepath) + bla.write_zero(mypath,source_kE,source_SPA,flowdirection) + os.chdir(mypath) + subprocess.call('checkMesh>mesh.log', shell=True) + subprocess.call('decomposePar>decompose.log', shell=True) + +''' -- GitLab